blob: dd70fd41c77d06957513eda59b41e9f671f02ca4 [file] [log] [blame]
Michael Buesch61e115a2007-09-18 15:12:50 -04001/*
2 * Sonics Silicon Backplane
3 * PCI Hostdevice wrapper
4 *
5 * Copyright (c) 2005 Martin Langer <martin-langer@gmx.de>
6 * Copyright (c) 2005 Stefano Brivio <st3@riseup.net>
7 * Copyright (c) 2005 Danny van Dyk <kugelfang@gentoo.org>
8 * Copyright (c) 2005 Andreas Jaggi <andreas.jaggi@waterwave.ch>
Michael Büscheb032b92011-07-04 20:50:05 +02009 * Copyright (c) 2005-2007 Michael Buesch <m@bues.ch>
Michael Buesch61e115a2007-09-18 15:12:50 -040010 *
11 * Licensed under the GNU/GPL. See COPYING for details.
12 */
13
Andrey Skvortsov55803732014-12-04 11:32:46 -050014#include <linux/pm.h>
Michael Buesch61e115a2007-09-18 15:12:50 -040015#include <linux/pci.h>
Paul Gortmaker1014c222011-07-27 22:07:02 -040016#include <linux/export.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/slab.h>
Michael Buesch61e115a2007-09-18 15:12:50 -040018#include <linux/ssb/ssb.h>
19
20
Andrey Skvortsov55803732014-12-04 11:32:46 -050021#ifdef CONFIG_PM_SLEEP
22static int ssb_pcihost_suspend(struct device *d)
Michael Buesch61e115a2007-09-18 15:12:50 -040023{
Andrey Skvortsov55803732014-12-04 11:32:46 -050024 struct pci_dev *dev = to_pci_dev(d);
Michael Buesch8fe2b652008-03-30 00:10:50 +010025 struct ssb_bus *ssb = pci_get_drvdata(dev);
26 int err;
27
28 err = ssb_bus_suspend(ssb);
29 if (err)
30 return err;
Michael Buesch61e115a2007-09-18 15:12:50 -040031 pci_save_state(dev);
32 pci_disable_device(dev);
Andrey Skvortsov55803732014-12-04 11:32:46 -050033
34 /* if there is a wakeup enabled child device on ssb bus,
35 enable pci wakeup posibility. */
36 device_set_wakeup_enable(d, d->power.wakeup_path);
37
38 pci_prepare_to_sleep(dev);
Michael Buesch61e115a2007-09-18 15:12:50 -040039
40 return 0;
41}
42
Andrey Skvortsov55803732014-12-04 11:32:46 -050043static int ssb_pcihost_resume(struct device *d)
Michael Buesch61e115a2007-09-18 15:12:50 -040044{
Andrey Skvortsov55803732014-12-04 11:32:46 -050045 struct pci_dev *dev = to_pci_dev(d);
Michael Buesch8fe2b652008-03-30 00:10:50 +010046 struct ssb_bus *ssb = pci_get_drvdata(dev);
Michael Buesch61e115a2007-09-18 15:12:50 -040047 int err;
48
Andrey Skvortsov55803732014-12-04 11:32:46 -050049 pci_back_from_sleep(dev);
Michael Buesch61e115a2007-09-18 15:12:50 -040050 err = pci_enable_device(dev);
51 if (err)
52 return err;
53 pci_restore_state(dev);
Michael Buesch8fe2b652008-03-30 00:10:50 +010054 err = ssb_bus_resume(ssb);
55 if (err)
56 return err;
Michael Buesch61e115a2007-09-18 15:12:50 -040057
58 return 0;
59}
Andrey Skvortsov55803732014-12-04 11:32:46 -050060
61static const struct dev_pm_ops ssb_pcihost_pm_ops = {
62 SET_SYSTEM_SLEEP_PM_OPS(ssb_pcihost_suspend, ssb_pcihost_resume)
63};
64
65#endif /* CONFIG_PM_SLEEP */
Michael Buesch61e115a2007-09-18 15:12:50 -040066
Greg Kroah-Hartman163247c2012-12-21 15:10:52 -080067static int ssb_pcihost_probe(struct pci_dev *dev,
68 const struct pci_device_id *id)
Michael Buesch61e115a2007-09-18 15:12:50 -040069{
70 struct ssb_bus *ssb;
71 int err = -ENOMEM;
Larry Fingere0816852010-10-20 09:59:33 -050072 u32 val;
Michael Buesch61e115a2007-09-18 15:12:50 -040073
74 ssb = kzalloc(sizeof(*ssb), GFP_KERNEL);
75 if (!ssb)
76 goto out;
77 err = pci_enable_device(dev);
78 if (err)
79 goto err_kfree_ssb;
Uwe Kleine-König7c3b2c92021-10-04 14:59:30 +020080 err = pci_request_regions(dev, dev_driver_string(&dev->dev));
Michael Buesch61e115a2007-09-18 15:12:50 -040081 if (err)
82 goto err_pci_disable;
83 pci_set_master(dev);
84
Larry Fingere0816852010-10-20 09:59:33 -050085 /* Disable the RETRY_TIMEOUT register (0x41) to keep
86 * PCI Tx retries from interfering with C3 CPU state */
87 pci_read_config_dword(dev, 0x40, &val);
88 if ((val & 0x0000ff00) != 0)
89 pci_write_config_dword(dev, 0x40, val & 0xffff00ff);
90
Michael Buesch61e115a2007-09-18 15:12:50 -040091 err = ssb_bus_pcibus_register(ssb, dev);
92 if (err)
93 goto err_pci_release_regions;
94
95 pci_set_drvdata(dev, ssb);
96
97out:
98 return err;
99
100err_pci_release_regions:
101 pci_release_regions(dev);
102err_pci_disable:
103 pci_disable_device(dev);
104err_kfree_ssb:
105 kfree(ssb);
106 return err;
107}
108
109static void ssb_pcihost_remove(struct pci_dev *dev)
110{
111 struct ssb_bus *ssb = pci_get_drvdata(dev);
112
113 ssb_bus_unregister(ssb);
114 pci_release_regions(dev);
115 pci_disable_device(dev);
116 kfree(ssb);
117 pci_set_drvdata(dev, NULL);
118}
119
Greg Kroah-Hartman163247c2012-12-21 15:10:52 -0800120int ssb_pcihost_register(struct pci_driver *driver)
Michael Buesch61e115a2007-09-18 15:12:50 -0400121{
122 driver->probe = ssb_pcihost_probe;
123 driver->remove = ssb_pcihost_remove;
Andrey Skvortsov55803732014-12-04 11:32:46 -0500124#ifdef CONFIG_PM_SLEEP
125 driver->driver.pm = &ssb_pcihost_pm_ops;
126#endif
Michael Buesch61e115a2007-09-18 15:12:50 -0400127
128 return pci_register_driver(driver);
129}
130EXPORT_SYMBOL(ssb_pcihost_register);