2 * PCI Express Hot Plug Controller Driver
4 * Copyright (C) 1995,2001 Compaq Computer Corporation
5 * Copyright (C) 2001 Greg Kroah-Hartman (greg@kroah.com)
6 * Copyright (C) 2001 IBM Corp.
7 * Copyright (C) 2003-2004 Intel Corporation
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or (at
14 * your option) any later version.
16 * This program is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
19 * NON INFRINGEMENT. See the GNU General Public License for more
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
26 * Send feedback to <greg@kroah.com>, <kristen.c.accardi@intel.com>
30 #include <linux/module.h>
31 #include <linux/kernel.h>
32 #include <linux/types.h>
33 #include <linux/pci.h>
37 static void program_hpp_type0(struct pci_dev
*dev
, struct hpp_type0
*hpp
)
39 u16 pci_cmd
, pci_bctl
;
41 if (hpp
->revision
> 1) {
42 printk(KERN_WARNING
"%s: Rev.%d type0 record not supported\n",
43 __FUNCTION__
, hpp
->revision
);
47 pci_write_config_byte(dev
, PCI_CACHE_LINE_SIZE
, hpp
->cache_line_size
);
48 pci_write_config_byte(dev
, PCI_LATENCY_TIMER
, hpp
->latency_timer
);
49 pci_read_config_word(dev
, PCI_COMMAND
, &pci_cmd
);
51 pci_cmd
|= PCI_COMMAND_SERR
;
53 pci_cmd
&= ~PCI_COMMAND_SERR
;
55 pci_cmd
|= PCI_COMMAND_PARITY
;
57 pci_cmd
&= ~PCI_COMMAND_PARITY
;
58 pci_write_config_word(dev
, PCI_COMMAND
, pci_cmd
);
60 /* Program bridge control value */
61 if ((dev
->class >> 8) == PCI_CLASS_BRIDGE_PCI
) {
62 pci_write_config_byte(dev
, PCI_SEC_LATENCY_TIMER
,
64 pci_read_config_word(dev
, PCI_BRIDGE_CONTROL
, &pci_bctl
);
66 pci_bctl
|= PCI_BRIDGE_CTL_SERR
;
68 pci_bctl
&= ~PCI_BRIDGE_CTL_SERR
;
70 pci_bctl
|= PCI_BRIDGE_CTL_PARITY
;
72 pci_bctl
&= ~PCI_BRIDGE_CTL_PARITY
;
73 pci_write_config_word(dev
, PCI_BRIDGE_CONTROL
, pci_bctl
);
77 static void program_hpp_type2(struct pci_dev
*dev
, struct hpp_type2
*hpp
)
83 if (hpp
->revision
> 1) {
84 printk(KERN_WARNING
"%s: Rev.%d type2 record not supported\n",
85 __FUNCTION__
, hpp
->revision
);
89 /* Find PCI Express capability */
90 pos
= pci_find_capability(dev
, PCI_CAP_ID_EXP
);
94 /* Initialize Device Control Register */
95 pci_read_config_word(dev
, pos
+ PCI_EXP_DEVCTL
, ®16
);
96 reg16
= (reg16
& hpp
->pci_exp_devctl_and
) | hpp
->pci_exp_devctl_or
;
97 pci_write_config_word(dev
, pos
+ PCI_EXP_DEVCTL
, reg16
);
99 /* Initialize Link Control Register */
100 if (dev
->subordinate
) {
101 pci_read_config_word(dev
, pos
+ PCI_EXP_LNKCTL
, ®16
);
102 reg16
= (reg16
& hpp
->pci_exp_lnkctl_and
)
103 | hpp
->pci_exp_lnkctl_or
;
104 pci_write_config_word(dev
, pos
+ PCI_EXP_LNKCTL
, reg16
);
107 /* Find Advanced Error Reporting Enhanced Capability */
108 pos
= pci_find_ext_capability(dev
, PCI_EXT_CAP_ID_ERR
);
112 /* Initialize Uncorrectable Error Mask Register */
113 pci_read_config_dword(dev
, pos
+ PCI_ERR_UNCOR_MASK
, ®32
);
114 reg32
= (reg32
& hpp
->unc_err_mask_and
) | hpp
->unc_err_mask_or
;
115 pci_write_config_dword(dev
, pos
+ PCI_ERR_UNCOR_MASK
, reg32
);
117 /* Initialize Uncorrectable Error Severity Register */
118 pci_read_config_dword(dev
, pos
+ PCI_ERR_UNCOR_SEVER
, ®32
);
119 reg32
= (reg32
& hpp
->unc_err_sever_and
) | hpp
->unc_err_sever_or
;
120 pci_write_config_dword(dev
, pos
+ PCI_ERR_UNCOR_SEVER
, reg32
);
122 /* Initialize Correctable Error Mask Register */
123 pci_read_config_dword(dev
, pos
+ PCI_ERR_COR_MASK
, ®32
);
124 reg32
= (reg32
& hpp
->cor_err_mask_and
) | hpp
->cor_err_mask_or
;
125 pci_write_config_dword(dev
, pos
+ PCI_ERR_COR_MASK
, reg32
);
127 /* Initialize Advanced Error Capabilities and Control Register */
128 pci_read_config_dword(dev
, pos
+ PCI_ERR_CAP
, ®32
);
129 reg32
= (reg32
& hpp
->adv_err_cap_and
) | hpp
->adv_err_cap_or
;
130 pci_write_config_dword(dev
, pos
+ PCI_ERR_CAP
, reg32
);
133 * FIXME: The following two registers are not supported yet.
135 * o Secondary Uncorrectable Error Severity Register
136 * o Secondary Uncorrectable Error Mask Register
140 static void program_fw_provided_values(struct pci_dev
*dev
)
142 struct pci_dev
*cdev
;
143 struct hotplug_params hpp
;
145 /* Program hpp values for this device */
146 if (!(dev
->hdr_type
== PCI_HEADER_TYPE_NORMAL
||
147 (dev
->hdr_type
== PCI_HEADER_TYPE_BRIDGE
&&
148 (dev
->class >> 8) == PCI_CLASS_BRIDGE_PCI
)))
151 if (pciehp_get_hp_params_from_firmware(dev
, &hpp
)) {
152 printk(KERN_WARNING
"%s: Could not get hotplug parameters\n",
158 program_hpp_type2(dev
, hpp
.t2
);
160 program_hpp_type0(dev
, hpp
.t0
);
162 /* Program child devices */
163 if (dev
->subordinate
) {
164 list_for_each_entry(cdev
, &dev
->subordinate
->devices
,
166 program_fw_provided_values(cdev
);
170 static int __ref
pciehp_add_bridge(struct pci_dev
*dev
)
172 struct pci_bus
*parent
= dev
->bus
;
173 int pass
, busnr
, start
= parent
->secondary
;
174 int end
= parent
->subordinate
;
176 for (busnr
= start
; busnr
<= end
; busnr
++) {
177 if (!pci_find_bus(pci_domain_nr(parent
), busnr
))
181 err("No bus number available for hot-added bridge %s\n",
185 for (pass
= 0; pass
< 2; pass
++)
186 busnr
= pci_scan_bridge(parent
, dev
, busnr
, pass
);
187 if (!dev
->subordinate
)
189 pci_bus_size_bridges(dev
->subordinate
);
190 pci_bus_assign_resources(parent
);
191 pci_enable_bridges(parent
);
192 pci_bus_add_devices(parent
);
196 int pciehp_configure_device(struct slot
*p_slot
)
199 struct pci_bus
*parent
= p_slot
->ctrl
->pci_dev
->subordinate
;
202 dev
= pci_get_slot(parent
, PCI_DEVFN(p_slot
->device
, 0));
204 err("Device %s already exists at %x:%x, cannot hot-add\n",
205 pci_name(dev
), p_slot
->bus
, p_slot
->device
);
210 num
= pci_scan_slot(parent
, PCI_DEVFN(p_slot
->device
, 0));
212 err("No new device found\n");
216 for (fn
= 0; fn
< 8; fn
++) {
217 dev
= pci_get_slot(parent
, PCI_DEVFN(p_slot
->device
, fn
));
220 if ((dev
->class >> 16) == PCI_BASE_CLASS_DISPLAY
) {
221 err("Cannot hot-add display device %s\n",
226 if ((dev
->hdr_type
== PCI_HEADER_TYPE_BRIDGE
) ||
227 (dev
->hdr_type
== PCI_HEADER_TYPE_CARDBUS
)) {
228 pciehp_add_bridge(dev
);
230 program_fw_provided_values(dev
);
234 pci_bus_assign_resources(parent
);
235 pci_bus_add_devices(parent
);
239 int pciehp_unconfigure_device(struct slot
*p_slot
)
245 struct pci_bus
*parent
= p_slot
->ctrl
->pci_dev
->subordinate
;
248 dbg("%s: bus/dev = %x/%x\n", __FUNCTION__
, p_slot
->bus
,
250 ret
= p_slot
->hpc_ops
->get_adapter_status(p_slot
, &presence
);
254 for (j
= 0; j
< 8; j
++) {
255 struct pci_dev
* temp
= pci_get_slot(parent
,
256 (p_slot
->device
<< 3) | j
);
259 if ((temp
->class >> 16) == PCI_BASE_CLASS_DISPLAY
) {
260 err("Cannot remove display device %s\n",
265 if (temp
->hdr_type
== PCI_HEADER_TYPE_BRIDGE
&& presence
) {
266 pci_read_config_byte(temp
, PCI_BRIDGE_CONTROL
, &bctl
);
267 if (bctl
& PCI_BRIDGE_CTL_VGA
) {
268 err("Cannot remove display device %s\n",
274 pci_remove_bus_device(temp
);
276 * Ensure that no new Requests will be generated from
280 pci_read_config_word(temp
, PCI_COMMAND
, &command
);
281 command
&= ~(PCI_COMMAND_MASTER
| PCI_COMMAND_SERR
);
282 command
|= PCI_COMMAND_INTX_DISABLE
;
283 pci_write_config_word(temp
, PCI_COMMAND
, command
);
288 * Some PCI Express root ports require fixup after hot-plug operation.
291 pci_fixup_device(pci_fixup_final
, p_slot
->ctrl
->pci_dev
);