[PATCH] W1: w1_netlink: New init/fini netlink callbacks.
[linux-2.6/verdex.git] / drivers / pci / pcie / portdrv_pci.c
blob30bac7ed7c16268d26c1f841a05b70a9e3a99fcf
1 /*
2 * File: portdrv_pci.c
3 * Purpose: PCI Express Port Bus Driver
5 * Copyright (C) 2004 Intel
6 * Copyright (C) Tom Long Nguyen (tom.l.nguyen@intel.com)
7 */
9 #include <linux/module.h>
10 #include <linux/pci.h>
11 #include <linux/kernel.h>
12 #include <linux/errno.h>
13 #include <linux/pm.h>
14 #include <linux/init.h>
15 #include <linux/pcieport_if.h>
17 #include "portdrv.h"
20 * Version Information
22 #define DRIVER_VERSION "v1.0"
23 #define DRIVER_AUTHOR "tom.l.nguyen@intel.com"
24 #define DRIVER_DESC "PCIE Port Bus Driver"
25 MODULE_AUTHOR(DRIVER_AUTHOR);
26 MODULE_DESCRIPTION(DRIVER_DESC);
27 MODULE_LICENSE("GPL");
29 /* global data */
30 static const char device_name[] = "pcieport-driver";
32 static void pci_save_msi_state(struct pci_dev *dev)
34 struct pcie_port_device_ext *p_ext = pci_get_drvdata(dev);
35 int i = 0, pos;
36 u16 control;
38 if ((pos = pci_find_capability(dev, PCI_CAP_ID_MSI)) <= 0)
39 return;
41 pci_read_config_dword(dev, pos, &p_ext->saved_msi_config_space[i++]);
42 control = p_ext->saved_msi_config_space[0] >> 16;
43 pci_read_config_dword(dev, pos + PCI_MSI_ADDRESS_LO,
44 &p_ext->saved_msi_config_space[i++]);
45 if (control & PCI_MSI_FLAGS_64BIT) {
46 pci_read_config_dword(dev, pos + PCI_MSI_ADDRESS_HI,
47 &p_ext->saved_msi_config_space[i++]);
48 pci_read_config_dword(dev, pos + PCI_MSI_DATA_64,
49 &p_ext->saved_msi_config_space[i++]);
50 } else
51 pci_read_config_dword(dev, pos + PCI_MSI_DATA_32,
52 &p_ext->saved_msi_config_space[i++]);
53 if (control & PCI_MSI_FLAGS_MASKBIT)
54 pci_read_config_dword(dev, pos + PCI_MSI_MASK_BIT,
55 &p_ext->saved_msi_config_space[i++]);
58 static void pci_restore_msi_state(struct pci_dev *dev)
60 struct pcie_port_device_ext *p_ext = pci_get_drvdata(dev);
61 int i = 0, pos;
62 u16 control;
64 if ((pos = pci_find_capability(dev, PCI_CAP_ID_MSI)) <= 0)
65 return;
67 control = p_ext->saved_msi_config_space[i++] >> 16;
68 pci_write_config_word(dev, pos + PCI_MSI_FLAGS, control);
69 pci_write_config_dword(dev, pos + PCI_MSI_ADDRESS_LO,
70 p_ext->saved_msi_config_space[i++]);
71 if (control & PCI_MSI_FLAGS_64BIT) {
72 pci_write_config_dword(dev, pos + PCI_MSI_ADDRESS_HI,
73 p_ext->saved_msi_config_space[i++]);
74 pci_write_config_dword(dev, pos + PCI_MSI_DATA_64,
75 p_ext->saved_msi_config_space[i++]);
76 } else
77 pci_write_config_dword(dev, pos + PCI_MSI_DATA_32,
78 p_ext->saved_msi_config_space[i++]);
79 if (control & PCI_MSI_FLAGS_MASKBIT)
80 pci_write_config_dword(dev, pos + PCI_MSI_MASK_BIT,
81 p_ext->saved_msi_config_space[i++]);
84 static void pcie_portdrv_save_config(struct pci_dev *dev)
86 struct pcie_port_device_ext *p_ext = pci_get_drvdata(dev);
88 pci_save_state(dev);
89 if (p_ext->interrupt_mode == PCIE_PORT_MSI_MODE)
90 pci_save_msi_state(dev);
93 static void pcie_portdrv_restore_config(struct pci_dev *dev)
95 struct pcie_port_device_ext *p_ext = pci_get_drvdata(dev);
97 pci_restore_state(dev);
98 if (p_ext->interrupt_mode == PCIE_PORT_MSI_MODE)
99 pci_restore_msi_state(dev);
100 pci_enable_device(dev);
101 pci_set_master(dev);
105 * pcie_portdrv_probe - Probe PCI-Express port devices
106 * @dev: PCI-Express port device being probed
108 * If detected invokes the pcie_port_device_register() method for
109 * this port device.
112 static int __devinit pcie_portdrv_probe (struct pci_dev *dev,
113 const struct pci_device_id *id )
115 int status;
117 status = pcie_port_device_probe(dev);
118 if (status)
119 return status;
121 if (pci_enable_device(dev) < 0)
122 return -ENODEV;
124 pci_set_master(dev);
125 if (!dev->irq) {
126 printk(KERN_WARNING
127 "%s->Dev[%04x:%04x] has invalid IRQ. Check vendor BIOS\n",
128 __FUNCTION__, dev->device, dev->vendor);
130 if (pcie_port_device_register(dev))
131 return -ENOMEM;
133 return 0;
136 static void pcie_portdrv_remove (struct pci_dev *dev)
138 pcie_port_device_remove(dev);
139 kfree(pci_get_drvdata(dev));
142 #ifdef CONFIG_PM
143 static int pcie_portdrv_suspend (struct pci_dev *dev, pm_message_t state)
145 int ret = pcie_port_device_suspend(dev, state);
147 pcie_portdrv_save_config(dev);
148 return ret;
151 static int pcie_portdrv_resume (struct pci_dev *dev)
153 pcie_portdrv_restore_config(dev);
154 return pcie_port_device_resume(dev);
156 #endif
159 * LINUX Device Driver Model
161 static const struct pci_device_id port_pci_ids[] = { {
162 /* handle any PCI-Express port */
163 PCI_DEVICE_CLASS(((PCI_CLASS_BRIDGE_PCI << 8) | 0x00), ~0),
164 }, { /* end: all zeroes */ }
166 MODULE_DEVICE_TABLE(pci, port_pci_ids);
168 static struct pci_driver pcie_portdrv = {
169 .name = (char *)device_name,
170 .id_table = &port_pci_ids[0],
172 .probe = pcie_portdrv_probe,
173 .remove = pcie_portdrv_remove,
175 #ifdef CONFIG_PM
176 .suspend = pcie_portdrv_suspend,
177 .resume = pcie_portdrv_resume,
178 #endif /* PM */
181 static int __init pcie_portdrv_init(void)
183 int retval = 0;
185 pcie_port_bus_register();
186 retval = pci_register_driver(&pcie_portdrv);
187 if (retval)
188 pcie_port_bus_unregister();
189 return retval;
192 static void __exit pcie_portdrv_exit(void)
194 pci_unregister_driver(&pcie_portdrv);
195 pcie_port_bus_unregister();
198 module_init(pcie_portdrv_init);
199 module_exit(pcie_portdrv_exit);