2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
6 * Copyright (C) 2005-2006 Silicon Graphics, Inc. All rights reserved.
8 * This work was based on the 2.4/2.6 kernel development by Dick Reigner.
9 * Work to add BIOS PROM support was completed by Mike Habeck.
12 #include <linux/init.h>
13 #include <linux/kernel.h>
14 #include <linux/module.h>
15 #include <linux/pci.h>
16 #include <linux/proc_fs.h>
17 #include <linux/types.h>
18 #include <linux/mutex.h>
20 #include <asm/sn/addrs.h>
21 #include <asm/sn/geo.h>
22 #include <asm/sn/l1.h>
23 #include <asm/sn/module.h>
24 #include <asm/sn/pcibr_provider.h>
25 #include <asm/sn/pcibus_provider_defs.h>
26 #include <asm/sn/pcidev.h>
27 #include <asm/sn/sn_feature_sets.h>
28 #include <asm/sn/sn_sal.h>
29 #include <asm/sn/types.h>
32 #include "pci_hotplug.h"
34 MODULE_LICENSE("GPL");
35 MODULE_AUTHOR("SGI (prarit@sgi.com, dickie@sgi.com, habeck@sgi.com)");
36 MODULE_DESCRIPTION("SGI Altix Hot Plug PCI Controller Driver");
38 #define PCIIO_ASIC_TYPE_TIOCA 4
39 #define PCI_SLOT_ALREADY_UP 2 /* slot already up */
40 #define PCI_SLOT_ALREADY_DOWN 3 /* slot already down */
41 #define PCI_L1_ERR 7 /* L1 console command error */
42 #define PCI_EMPTY_33MHZ 15 /* empty 33 MHz bus */
43 #define PCI_L1_QSIZE 128 /* our L1 message buffer size */
44 #define SN_MAX_HP_SLOTS 32 /* max hotplug slots */
45 #define SGI_HOTPLUG_PROM_REV 0x0430 /* Min. required PROM version */
46 #define SN_SLOT_NAME_SIZE 33 /* size of name string */
48 /* internal list head */
49 static struct list_head sn_hp_list
;
51 /* hotplug_slot struct's private pointer */
54 struct pci_bus
*pci_bus
;
55 /* this struct for glue internal only */
56 struct hotplug_slot
*hotplug_slot
;
57 struct list_head hp_list
;
58 char physical_path
[SN_SLOT_NAME_SIZE
];
61 struct pcibr_slot_enable_resp
{
63 char resp_l1_msg
[PCI_L1_QSIZE
+ 1];
66 struct pcibr_slot_disable_resp
{
68 char resp_l1_msg
[PCI_L1_QSIZE
+ 1];
72 PCI_REQ_SLOT_ELIGIBLE
,
76 static int enable_slot(struct hotplug_slot
*slot
);
77 static int disable_slot(struct hotplug_slot
*slot
);
78 static inline int get_power_status(struct hotplug_slot
*slot
, u8
*value
);
80 static struct hotplug_slot_ops sn_hotplug_slot_ops
= {
82 .enable_slot
= enable_slot
,
83 .disable_slot
= disable_slot
,
84 .get_power_status
= get_power_status
,
87 static DEFINE_MUTEX(sn_hotplug_mutex
);
89 static ssize_t
path_show (struct hotplug_slot
*bss_hotplug_slot
,
93 struct slot
*slot
= bss_hotplug_slot
->private;
98 retval
= sprintf (buf
, "%s\n", slot
->physical_path
);
102 static struct hotplug_slot_attribute sn_slot_path_attr
= __ATTR_RO(path
);
104 static int sn_pci_slot_valid(struct pci_bus
*pci_bus
, int device
)
106 struct pcibus_info
*pcibus_info
;
107 u16 busnum
, segment
, ioboard_type
;
109 pcibus_info
= SN_PCIBUS_BUSSOFT_INFO(pci_bus
);
111 /* Check to see if this is a valid slot on 'pci_bus' */
112 if (!(pcibus_info
->pbi_valid_devices
& (1 << device
)))
115 ioboard_type
= sn_ioboard_to_pci_bus(pci_bus
);
116 busnum
= pcibus_info
->pbi_buscommon
.bs_persist_busnum
;
117 segment
= pci_domain_nr(pci_bus
) & 0xf;
119 /* Do not allow hotplug operations on base I/O cards */
120 if ((ioboard_type
== L1_BRICKTYPE_IX
||
121 ioboard_type
== L1_BRICKTYPE_IA
) &&
122 (segment
== 1 && busnum
== 0 && device
!= 1))
128 static int sn_pci_bus_valid(struct pci_bus
*pci_bus
)
130 struct pcibus_info
*pcibus_info
;
134 /* Don't register slots hanging off the TIOCA bus */
135 pcibus_info
= SN_PCIBUS_BUSSOFT_INFO(pci_bus
);
136 asic_type
= pcibus_info
->pbi_buscommon
.bs_asic_type
;
137 if (asic_type
== PCIIO_ASIC_TYPE_TIOCA
)
140 /* Only register slots in I/O Bricks that support hotplug */
141 ioboard_type
= sn_ioboard_to_pci_bus(pci_bus
);
142 switch (ioboard_type
) {
143 case L1_BRICKTYPE_IX
:
144 case L1_BRICKTYPE_PX
:
145 case L1_BRICKTYPE_IA
:
146 case L1_BRICKTYPE_PA
:
147 case L1_BOARDTYPE_PCIX3SLOT
:
158 static int sn_hp_slot_private_alloc(struct hotplug_slot
*bss_hotplug_slot
,
159 struct pci_bus
*pci_bus
, int device
)
161 struct pcibus_info
*pcibus_info
;
164 pcibus_info
= SN_PCIBUS_BUSSOFT_INFO(pci_bus
);
166 slot
= kzalloc(sizeof(*slot
), GFP_KERNEL
);
169 bss_hotplug_slot
->private = slot
;
171 bss_hotplug_slot
->name
= kmalloc(SN_SLOT_NAME_SIZE
, GFP_KERNEL
);
172 if (!bss_hotplug_slot
->name
) {
173 kfree(bss_hotplug_slot
->private);
177 slot
->device_num
= device
;
178 slot
->pci_bus
= pci_bus
;
179 sprintf(bss_hotplug_slot
->name
, "%04x:%02x:%02x",
180 pci_domain_nr(pci_bus
),
181 ((u16
)pcibus_info
->pbi_buscommon
.bs_persist_busnum
),
184 sn_generate_path(pci_bus
, slot
->physical_path
);
186 slot
->hotplug_slot
= bss_hotplug_slot
;
187 list_add(&slot
->hp_list
, &sn_hp_list
);
192 static struct hotplug_slot
* sn_hp_destroy(void)
195 struct hotplug_slot
*bss_hotplug_slot
= NULL
;
197 list_for_each_entry(slot
, &sn_hp_list
, hp_list
) {
198 bss_hotplug_slot
= slot
->hotplug_slot
;
199 list_del(&((struct slot
*)bss_hotplug_slot
->private)->
201 sysfs_remove_file(&bss_hotplug_slot
->kobj
,
202 &sn_slot_path_attr
.attr
);
205 return bss_hotplug_slot
;
208 static void sn_bus_alloc_data(struct pci_dev
*dev
)
210 struct pci_bus
*subordinate_bus
;
211 struct pci_dev
*child
;
213 sn_pci_fixup_slot(dev
);
215 /* Recursively sets up the sn_irq_info structs */
216 if (dev
->subordinate
) {
217 subordinate_bus
= dev
->subordinate
;
218 list_for_each_entry(child
, &subordinate_bus
->devices
, bus_list
)
219 sn_bus_alloc_data(child
);
223 static void sn_bus_free_data(struct pci_dev
*dev
)
225 struct pci_bus
*subordinate_bus
;
226 struct pci_dev
*child
;
228 /* Recursively clean up sn_irq_info structs */
229 if (dev
->subordinate
) {
230 subordinate_bus
= dev
->subordinate
;
231 list_for_each_entry(child
, &subordinate_bus
->devices
, bus_list
)
232 sn_bus_free_data(child
);
235 * Some drivers may use dma accesses during the
236 * driver remove function. We release the sysdata
237 * areas after the driver remove functions have
240 sn_bus_store_sysdata(dev
);
241 sn_pci_unfixup_slot(dev
);
244 static int sn_slot_enable(struct hotplug_slot
*bss_hotplug_slot
,
247 struct slot
*slot
= bss_hotplug_slot
->private;
248 struct pcibus_info
*pcibus_info
;
249 struct pcibr_slot_enable_resp resp
;
252 pcibus_info
= SN_PCIBUS_BUSSOFT_INFO(slot
->pci_bus
);
255 * Power-on and initialize the slot in the SN
256 * PCI infrastructure.
258 rc
= sal_pcibr_slot_enable(pcibus_info
, device_num
, &resp
);
260 if (rc
== PCI_SLOT_ALREADY_UP
) {
261 dev_dbg(slot
->pci_bus
->self
, "is already active\n");
262 return 1; /* return 1 to user */
265 if (rc
== PCI_L1_ERR
) {
266 dev_dbg(slot
->pci_bus
->self
,
267 "L1 failure %d with message: %s",
268 resp
.resp_sub_errno
, resp
.resp_l1_msg
);
273 dev_dbg(slot
->pci_bus
->self
,
274 "insert failed with error %d sub-error %d\n",
275 rc
, resp
.resp_sub_errno
);
279 pcibus_info
= SN_PCIBUS_BUSSOFT_INFO(slot
->pci_bus
);
280 pcibus_info
->pbi_enabled_devices
|= (1 << device_num
);
285 static int sn_slot_disable(struct hotplug_slot
*bss_hotplug_slot
,
286 int device_num
, int action
)
288 struct slot
*slot
= bss_hotplug_slot
->private;
289 struct pcibus_info
*pcibus_info
;
290 struct pcibr_slot_disable_resp resp
;
293 pcibus_info
= SN_PCIBUS_BUSSOFT_INFO(slot
->pci_bus
);
295 rc
= sal_pcibr_slot_disable(pcibus_info
, device_num
, action
, &resp
);
297 if ((action
== PCI_REQ_SLOT_ELIGIBLE
) &&
298 (rc
== PCI_SLOT_ALREADY_DOWN
)) {
299 dev_dbg(slot
->pci_bus
->self
, "Slot %s already inactive\n");
300 return 1; /* return 1 to user */
303 if ((action
== PCI_REQ_SLOT_ELIGIBLE
) && (rc
== PCI_EMPTY_33MHZ
)) {
304 dev_dbg(slot
->pci_bus
->self
,
305 "Cannot remove last 33MHz card\n");
309 if ((action
== PCI_REQ_SLOT_ELIGIBLE
) && (rc
== PCI_L1_ERR
)) {
310 dev_dbg(slot
->pci_bus
->self
,
311 "L1 failure %d with message \n%s\n",
312 resp
.resp_sub_errno
, resp
.resp_l1_msg
);
316 if ((action
== PCI_REQ_SLOT_ELIGIBLE
) && rc
) {
317 dev_dbg(slot
->pci_bus
->self
,
318 "remove failed with error %d sub-error %d\n",
319 rc
, resp
.resp_sub_errno
);
323 if ((action
== PCI_REQ_SLOT_ELIGIBLE
) && !rc
)
326 if ((action
== PCI_REQ_SLOT_DISABLE
) && !rc
) {
327 pcibus_info
= SN_PCIBUS_BUSSOFT_INFO(slot
->pci_bus
);
328 pcibus_info
->pbi_enabled_devices
&= ~(1 << device_num
);
329 dev_dbg(slot
->pci_bus
->self
, "remove successful\n");
333 if ((action
== PCI_REQ_SLOT_DISABLE
) && rc
) {
334 dev_dbg(slot
->pci_bus
->self
,"remove failed rc = %d\n", rc
);
340 static int enable_slot(struct hotplug_slot
*bss_hotplug_slot
)
342 struct slot
*slot
= bss_hotplug_slot
->private;
343 struct pci_bus
*new_bus
= NULL
;
349 /* Serialize the Linux PCI infrastructure */
350 mutex_lock(&sn_hotplug_mutex
);
353 * Power-on and initialize the slot in the SN
354 * PCI infrastructure.
356 rc
= sn_slot_enable(bss_hotplug_slot
, slot
->device_num
);
358 mutex_unlock(&sn_hotplug_mutex
);
362 num_funcs
= pci_scan_slot(slot
->pci_bus
,
363 PCI_DEVFN(slot
->device_num
+ 1, 0));
365 dev_dbg(slot
->pci_bus
->self
, "no device in slot\n");
366 mutex_unlock(&sn_hotplug_mutex
);
370 sn_pci_controller_fixup(pci_domain_nr(slot
->pci_bus
),
371 slot
->pci_bus
->number
,
374 * Map SN resources for all functions on the card
375 * to the Linux PCI interface and tell the drivers
378 for (func
= 0; func
< num_funcs
; func
++) {
379 dev
= pci_get_slot(slot
->pci_bus
,
380 PCI_DEVFN(slot
->device_num
+ 1,
383 if (dev
->hdr_type
== PCI_HEADER_TYPE_BRIDGE
) {
384 unsigned char sec_bus
;
385 pci_read_config_byte(dev
, PCI_SECONDARY_BUS
,
387 new_bus
= pci_add_new_bus(dev
->bus
, dev
,
389 pci_scan_child_bus(new_bus
);
390 sn_pci_controller_fixup(pci_domain_nr(new_bus
),
395 sn_bus_alloc_data(dev
);
400 /* Call the driver for the new device */
401 pci_bus_add_devices(slot
->pci_bus
);
402 /* Call the drivers for the new devices subordinate to PPB */
404 pci_bus_add_devices(new_bus
);
406 mutex_unlock(&sn_hotplug_mutex
);
409 dev_dbg(slot
->pci_bus
->self
,
410 "insert operation successful\n");
412 dev_dbg(slot
->pci_bus
->self
,
413 "insert operation failed rc = %d\n", rc
);
418 static int disable_slot(struct hotplug_slot
*bss_hotplug_slot
)
420 struct slot
*slot
= bss_hotplug_slot
->private;
425 /* Acquire update access to the bus */
426 mutex_lock(&sn_hotplug_mutex
);
428 /* is it okay to bring this slot down? */
429 rc
= sn_slot_disable(bss_hotplug_slot
, slot
->device_num
,
430 PCI_REQ_SLOT_ELIGIBLE
);
434 /* Free the SN resources assigned to the Linux device.*/
435 for (func
= 0; func
< 8; func
++) {
436 dev
= pci_get_slot(slot
->pci_bus
,
437 PCI_DEVFN(slot
->device_num
+ 1,
440 sn_bus_free_data(dev
);
441 pci_remove_bus_device(dev
);
446 /* free the collected sysdata pointers */
447 sn_bus_free_sysdata();
449 /* Deactivate slot */
450 rc
= sn_slot_disable(bss_hotplug_slot
, slot
->device_num
,
451 PCI_REQ_SLOT_DISABLE
);
453 /* Release the bus lock */
454 mutex_unlock(&sn_hotplug_mutex
);
459 static inline int get_power_status(struct hotplug_slot
*bss_hotplug_slot
,
462 struct slot
*slot
= bss_hotplug_slot
->private;
463 struct pcibus_info
*pcibus_info
;
466 pcibus_info
= SN_PCIBUS_BUSSOFT_INFO(slot
->pci_bus
);
467 mutex_lock(&sn_hotplug_mutex
);
468 power
= pcibus_info
->pbi_enabled_devices
& (1 << slot
->device_num
);
469 *value
= power
? 1 : 0;
470 mutex_unlock(&sn_hotplug_mutex
);
474 static void sn_release_slot(struct hotplug_slot
*bss_hotplug_slot
)
476 kfree(bss_hotplug_slot
->info
);
477 kfree(bss_hotplug_slot
->name
);
478 kfree(bss_hotplug_slot
->private);
479 kfree(bss_hotplug_slot
);
482 static int sn_hotplug_slot_register(struct pci_bus
*pci_bus
)
485 struct hotplug_slot
*bss_hotplug_slot
;
489 * Currently only four devices are supported,
490 * in the future there maybe more -- up to 32.
493 for (device
= 0; device
< SN_MAX_HP_SLOTS
; device
++) {
494 if (sn_pci_slot_valid(pci_bus
, device
) != 1)
497 bss_hotplug_slot
= kzalloc(sizeof(*bss_hotplug_slot
),
499 if (!bss_hotplug_slot
) {
504 bss_hotplug_slot
->info
=
505 kzalloc(sizeof(struct hotplug_slot_info
),
507 if (!bss_hotplug_slot
->info
) {
512 if (sn_hp_slot_private_alloc(bss_hotplug_slot
,
518 bss_hotplug_slot
->ops
= &sn_hotplug_slot_ops
;
519 bss_hotplug_slot
->release
= &sn_release_slot
;
521 rc
= pci_hp_register(bss_hotplug_slot
);
525 rc
= sysfs_create_file(&bss_hotplug_slot
->kobj
,
526 &sn_slot_path_attr
.attr
);
530 dev_dbg(pci_bus
->self
, "Registered bus with hotplug\n");
534 dev_dbg(pci_bus
->self
, "bus failed to register with err = %d\n",
539 dev_dbg(pci_bus
->self
, "Memory allocation error\n");
541 /* destroy THIS element */
542 if (bss_hotplug_slot
)
543 sn_release_slot(bss_hotplug_slot
);
545 /* destroy anything else on the list */
546 while ((bss_hotplug_slot
= sn_hp_destroy()))
547 pci_hp_deregister(bss_hotplug_slot
);
552 static int sn_pci_hotplug_init(void)
554 struct pci_bus
*pci_bus
= NULL
;
558 if (!sn_prom_feature_available(PRF_HOTPLUG_SUPPORT
)) {
559 printk(KERN_ERR
"%s: PROM version does not support hotplug.\n",
564 INIT_LIST_HEAD(&sn_hp_list
);
566 while ((pci_bus
= pci_find_next_bus(pci_bus
))) {
567 if (!pci_bus
->sysdata
)
570 rc
= sn_pci_bus_valid(pci_bus
);
572 dev_dbg(pci_bus
->self
, "not a valid hotplug bus\n");
575 dev_dbg(pci_bus
->self
, "valid hotplug bus\n");
577 rc
= sn_hotplug_slot_register(pci_bus
);
586 return registered
== 1 ? 0 : -ENODEV
;
589 static void sn_pci_hotplug_exit(void)
591 struct hotplug_slot
*bss_hotplug_slot
;
593 while ((bss_hotplug_slot
= sn_hp_destroy()))
594 pci_hp_deregister(bss_hotplug_slot
);
596 if (!list_empty(&sn_hp_list
))
597 printk(KERN_ERR
"%s: internal list is not empty\n", __FILE__
);
600 module_init(sn_pci_hotplug_init
);
601 module_exit(sn_pci_hotplug_exit
);