Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 1 | /* |
| 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 |
| 4 | * for more details. |
| 5 | * |
John Keller | 8e77af6 | 2006-03-08 13:21:34 -0600 | [diff] [blame] | 6 | * Copyright (C) 2005-2006 Silicon Graphics, Inc. All rights reserved. |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 7 | * |
| 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. |
| 10 | */ |
| 11 | |
Rafael J. Wysocki | 7b19981 | 2013-11-11 22:41:56 +0100 | [diff] [blame] | 12 | #include <linux/acpi.h> |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 13 | #include <linux/init.h> |
| 14 | #include <linux/kernel.h> |
| 15 | #include <linux/module.h> |
| 16 | #include <linux/pci.h> |
Greg Kroah-Hartman | 7a54f25 | 2006-10-13 20:05:19 -0700 | [diff] [blame] | 17 | #include <linux/pci_hotplug.h> |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 18 | #include <linux/proc_fs.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 19 | #include <linux/slab.h> |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 20 | #include <linux/types.h> |
Ingo Molnar | 14cc3e2 | 2006-03-26 01:37:14 -0800 | [diff] [blame] | 21 | #include <linux/mutex.h> |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 22 | |
| 23 | #include <asm/sn/addrs.h> |
Prarit Bhargava | e55dea5 | 2006-04-04 09:26:46 -0400 | [diff] [blame] | 24 | #include <asm/sn/geo.h> |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 25 | #include <asm/sn/l1.h> |
| 26 | #include <asm/sn/module.h> |
| 27 | #include <asm/sn/pcibr_provider.h> |
| 28 | #include <asm/sn/pcibus_provider_defs.h> |
| 29 | #include <asm/sn/pcidev.h> |
Prarit Bhargava | e55dea5 | 2006-04-04 09:26:46 -0400 | [diff] [blame] | 30 | #include <asm/sn/sn_feature_sets.h> |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 31 | #include <asm/sn/sn_sal.h> |
| 32 | #include <asm/sn/types.h> |
John Keller | 3e643e7 | 2007-01-30 01:18:38 -0500 | [diff] [blame] | 33 | #include <asm/sn/acpi.h> |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 34 | |
| 35 | #include "../pci.h" |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 36 | |
| 37 | MODULE_LICENSE("GPL"); |
| 38 | MODULE_AUTHOR("SGI (prarit@sgi.com, dickie@sgi.com, habeck@sgi.com)"); |
| 39 | MODULE_DESCRIPTION("SGI Altix Hot Plug PCI Controller Driver"); |
| 40 | |
John Keller | 3e643e7 | 2007-01-30 01:18:38 -0500 | [diff] [blame] | 41 | |
| 42 | /* SAL call error codes. Keep in sync with prom header io/include/pcibr.h */ |
Prarit Bhargava | 1d2450a | 2005-08-12 10:13:34 -0400 | [diff] [blame] | 43 | #define PCI_SLOT_ALREADY_UP 2 /* slot already up */ |
| 44 | #define PCI_SLOT_ALREADY_DOWN 3 /* slot already down */ |
| 45 | #define PCI_L1_ERR 7 /* L1 console command error */ |
| 46 | #define PCI_EMPTY_33MHZ 15 /* empty 33 MHz bus */ |
John Keller | 3e643e7 | 2007-01-30 01:18:38 -0500 | [diff] [blame] | 47 | |
| 48 | |
| 49 | #define PCIIO_ASIC_TYPE_TIOCA 4 |
Prarit Bhargava | 1d2450a | 2005-08-12 10:13:34 -0400 | [diff] [blame] | 50 | #define PCI_L1_QSIZE 128 /* our L1 message buffer size */ |
| 51 | #define SN_MAX_HP_SLOTS 32 /* max hotplug slots */ |
Prarit Bhargava | 1d2450a | 2005-08-12 10:13:34 -0400 | [diff] [blame] | 52 | #define SN_SLOT_NAME_SIZE 33 /* size of name string */ |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 53 | |
| 54 | /* internal list head */ |
| 55 | static struct list_head sn_hp_list; |
| 56 | |
| 57 | /* hotplug_slot struct's private pointer */ |
| 58 | struct slot { |
| 59 | int device_num; |
| 60 | struct pci_bus *pci_bus; |
| 61 | /* this struct for glue internal only */ |
| 62 | struct hotplug_slot *hotplug_slot; |
| 63 | struct list_head hp_list; |
Prarit Bhargava | 1d2450a | 2005-08-12 10:13:34 -0400 | [diff] [blame] | 64 | char physical_path[SN_SLOT_NAME_SIZE]; |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 65 | }; |
| 66 | |
| 67 | struct pcibr_slot_enable_resp { |
| 68 | int resp_sub_errno; |
| 69 | char resp_l1_msg[PCI_L1_QSIZE + 1]; |
| 70 | }; |
| 71 | |
| 72 | struct pcibr_slot_disable_resp { |
| 73 | int resp_sub_errno; |
| 74 | char resp_l1_msg[PCI_L1_QSIZE + 1]; |
| 75 | }; |
| 76 | |
| 77 | enum sn_pci_req_e { |
| 78 | PCI_REQ_SLOT_ELIGIBLE, |
| 79 | PCI_REQ_SLOT_DISABLE |
| 80 | }; |
| 81 | |
| 82 | static int enable_slot(struct hotplug_slot *slot); |
| 83 | static int disable_slot(struct hotplug_slot *slot); |
Prarit Bhargava | 1d2450a | 2005-08-12 10:13:34 -0400 | [diff] [blame] | 84 | static inline int get_power_status(struct hotplug_slot *slot, u8 *value); |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 85 | |
| 86 | static struct hotplug_slot_ops sn_hotplug_slot_ops = { |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 87 | .enable_slot = enable_slot, |
| 88 | .disable_slot = disable_slot, |
| 89 | .get_power_status = get_power_status, |
| 90 | }; |
| 91 | |
Ingo Molnar | 14cc3e2 | 2006-03-26 01:37:14 -0800 | [diff] [blame] | 92 | static DEFINE_MUTEX(sn_hotplug_mutex); |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 93 | |
Kenji Kaneshige | 94f81a4 | 2009-07-27 12:06:46 +0900 | [diff] [blame] | 94 | static ssize_t path_show(struct pci_slot *pci_slot, char *buf) |
Prarit Bhargava | 1d2450a | 2005-08-12 10:13:34 -0400 | [diff] [blame] | 95 | { |
| 96 | int retval = -ENOENT; |
Kenji Kaneshige | 94f81a4 | 2009-07-27 12:06:46 +0900 | [diff] [blame] | 97 | struct slot *slot = pci_slot->hotplug->private; |
Prarit Bhargava | 1d2450a | 2005-08-12 10:13:34 -0400 | [diff] [blame] | 98 | |
| 99 | if (!slot) |
| 100 | return retval; |
| 101 | |
| 102 | retval = sprintf (buf, "%s\n", slot->physical_path); |
| 103 | return retval; |
| 104 | } |
| 105 | |
Kenji Kaneshige | 94f81a4 | 2009-07-27 12:06:46 +0900 | [diff] [blame] | 106 | static struct pci_slot_attribute sn_slot_path_attr = __ATTR_RO(path); |
Prarit Bhargava | 1d2450a | 2005-08-12 10:13:34 -0400 | [diff] [blame] | 107 | |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 108 | static int sn_pci_slot_valid(struct pci_bus *pci_bus, int device) |
| 109 | { |
| 110 | struct pcibus_info *pcibus_info; |
Prarit Bhargava | e55dea5 | 2006-04-04 09:26:46 -0400 | [diff] [blame] | 111 | u16 busnum, segment, ioboard_type; |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 112 | |
| 113 | pcibus_info = SN_PCIBUS_BUSSOFT_INFO(pci_bus); |
| 114 | |
| 115 | /* Check to see if this is a valid slot on 'pci_bus' */ |
| 116 | if (!(pcibus_info->pbi_valid_devices & (1 << device))) |
| 117 | return -EPERM; |
| 118 | |
Prarit Bhargava | e55dea5 | 2006-04-04 09:26:46 -0400 | [diff] [blame] | 119 | ioboard_type = sn_ioboard_to_pci_bus(pci_bus); |
| 120 | busnum = pcibus_info->pbi_buscommon.bs_persist_busnum; |
| 121 | segment = pci_domain_nr(pci_bus) & 0xf; |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 122 | |
| 123 | /* Do not allow hotplug operations on base I/O cards */ |
Prarit Bhargava | e55dea5 | 2006-04-04 09:26:46 -0400 | [diff] [blame] | 124 | if ((ioboard_type == L1_BRICKTYPE_IX || |
| 125 | ioboard_type == L1_BRICKTYPE_IA) && |
| 126 | (segment == 1 && busnum == 0 && device != 1)) |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 127 | return -EPERM; |
| 128 | |
| 129 | return 1; |
| 130 | } |
| 131 | |
| 132 | static int sn_pci_bus_valid(struct pci_bus *pci_bus) |
| 133 | { |
| 134 | struct pcibus_info *pcibus_info; |
Prarit Bhargava | e55dea5 | 2006-04-04 09:26:46 -0400 | [diff] [blame] | 135 | u32 asic_type; |
| 136 | u16 ioboard_type; |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 137 | |
| 138 | /* Don't register slots hanging off the TIOCA bus */ |
Prarit Bhargava | e55dea5 | 2006-04-04 09:26:46 -0400 | [diff] [blame] | 139 | pcibus_info = SN_PCIBUS_BUSSOFT_INFO(pci_bus); |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 140 | asic_type = pcibus_info->pbi_buscommon.bs_asic_type; |
| 141 | if (asic_type == PCIIO_ASIC_TYPE_TIOCA) |
| 142 | return -EPERM; |
| 143 | |
| 144 | /* Only register slots in I/O Bricks that support hotplug */ |
Prarit Bhargava | e55dea5 | 2006-04-04 09:26:46 -0400 | [diff] [blame] | 145 | ioboard_type = sn_ioboard_to_pci_bus(pci_bus); |
| 146 | switch (ioboard_type) { |
Prarit Bhargava | 1d2450a | 2005-08-12 10:13:34 -0400 | [diff] [blame] | 147 | case L1_BRICKTYPE_IX: |
| 148 | case L1_BRICKTYPE_PX: |
| 149 | case L1_BRICKTYPE_IA: |
| 150 | case L1_BRICKTYPE_PA: |
Prarit Bhargava | e55dea5 | 2006-04-04 09:26:46 -0400 | [diff] [blame] | 151 | case L1_BOARDTYPE_PCIX3SLOT: |
Prarit Bhargava | 1d2450a | 2005-08-12 10:13:34 -0400 | [diff] [blame] | 152 | return 1; |
| 153 | break; |
| 154 | default: |
| 155 | return -EPERM; |
| 156 | break; |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 157 | } |
| 158 | |
| 159 | return -EIO; |
| 160 | } |
| 161 | |
| 162 | static int sn_hp_slot_private_alloc(struct hotplug_slot *bss_hotplug_slot, |
Alex Chiang | 85234ce | 2008-10-20 17:41:48 -0600 | [diff] [blame] | 163 | struct pci_bus *pci_bus, int device, |
| 164 | char *name) |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 165 | { |
| 166 | struct pcibus_info *pcibus_info; |
| 167 | struct slot *slot; |
| 168 | |
| 169 | pcibus_info = SN_PCIBUS_BUSSOFT_INFO(pci_bus); |
| 170 | |
Pekka Enberg | 656da9d | 2005-09-22 00:48:11 -0700 | [diff] [blame] | 171 | slot = kzalloc(sizeof(*slot), GFP_KERNEL); |
Prarit Bhargava | 1d2450a | 2005-08-12 10:13:34 -0400 | [diff] [blame] | 172 | if (!slot) |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 173 | return -ENOMEM; |
Prarit Bhargava | 1d2450a | 2005-08-12 10:13:34 -0400 | [diff] [blame] | 174 | bss_hotplug_slot->private = slot; |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 175 | |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 176 | slot->device_num = device; |
| 177 | slot->pci_bus = pci_bus; |
Alex Chiang | 85234ce | 2008-10-20 17:41:48 -0600 | [diff] [blame] | 178 | sprintf(name, "%04x:%02x:%02x", |
Prarit Bhargava | 1d2450a | 2005-08-12 10:13:34 -0400 | [diff] [blame] | 179 | pci_domain_nr(pci_bus), |
Prarit Bhargava | e55dea5 | 2006-04-04 09:26:46 -0400 | [diff] [blame] | 180 | ((u16)pcibus_info->pbi_buscommon.bs_persist_busnum), |
Prarit Bhargava | 1d2450a | 2005-08-12 10:13:34 -0400 | [diff] [blame] | 181 | device + 1); |
Prarit Bhargava | e55dea5 | 2006-04-04 09:26:46 -0400 | [diff] [blame] | 182 | |
| 183 | sn_generate_path(pci_bus, slot->physical_path); |
| 184 | |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 185 | slot->hotplug_slot = bss_hotplug_slot; |
| 186 | list_add(&slot->hp_list, &sn_hp_list); |
| 187 | |
| 188 | return 0; |
| 189 | } |
| 190 | |
Ryan Desfosses | 3c78bc6 | 2014-04-18 20:13:49 -0400 | [diff] [blame] | 191 | static struct hotplug_slot *sn_hp_destroy(void) |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 192 | { |
| 193 | struct slot *slot; |
Alex Chiang | f46753c | 2008-06-10 15:28:50 -0600 | [diff] [blame] | 194 | struct pci_slot *pci_slot; |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 195 | struct hotplug_slot *bss_hotplug_slot = NULL; |
| 196 | |
Prarit Bhargava | 1d2450a | 2005-08-12 10:13:34 -0400 | [diff] [blame] | 197 | list_for_each_entry(slot, &sn_hp_list, hp_list) { |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 198 | bss_hotplug_slot = slot->hotplug_slot; |
Alex Chiang | f46753c | 2008-06-10 15:28:50 -0600 | [diff] [blame] | 199 | pci_slot = bss_hotplug_slot->pci_slot; |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 200 | list_del(&((struct slot *)bss_hotplug_slot->private)-> |
| 201 | hp_list); |
Alex Chiang | f46753c | 2008-06-10 15:28:50 -0600 | [diff] [blame] | 202 | sysfs_remove_file(&pci_slot->kobj, |
Prarit Bhargava | 1d2450a | 2005-08-12 10:13:34 -0400 | [diff] [blame] | 203 | &sn_slot_path_attr.attr); |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 204 | break; |
| 205 | } |
| 206 | return bss_hotplug_slot; |
| 207 | } |
| 208 | |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 209 | static void sn_bus_free_data(struct pci_dev *dev) |
| 210 | { |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 211 | struct pci_bus *subordinate_bus; |
| 212 | struct pci_dev *child; |
| 213 | |
| 214 | /* Recursively clean up sn_irq_info structs */ |
| 215 | if (dev->subordinate) { |
| 216 | subordinate_bus = dev->subordinate; |
Prarit Bhargava | 1d2450a | 2005-08-12 10:13:34 -0400 | [diff] [blame] | 217 | list_for_each_entry(child, &subordinate_bus->devices, bus_list) |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 218 | sn_bus_free_data(child); |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 219 | } |
John Keller | 8e77af6 | 2006-03-08 13:21:34 -0600 | [diff] [blame] | 220 | /* |
| 221 | * Some drivers may use dma accesses during the |
| 222 | * driver remove function. We release the sysdata |
| 223 | * areas after the driver remove functions have |
| 224 | * been called. |
| 225 | */ |
| 226 | sn_bus_store_sysdata(dev); |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 227 | sn_pci_unfixup_slot(dev); |
| 228 | } |
| 229 | |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 230 | static int sn_slot_enable(struct hotplug_slot *bss_hotplug_slot, |
John Keller | 3e643e7 | 2007-01-30 01:18:38 -0500 | [diff] [blame] | 231 | int device_num, char **ssdt) |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 232 | { |
Prarit Bhargava | 1d2450a | 2005-08-12 10:13:34 -0400 | [diff] [blame] | 233 | struct slot *slot = bss_hotplug_slot->private; |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 234 | struct pcibus_info *pcibus_info; |
| 235 | struct pcibr_slot_enable_resp resp; |
| 236 | int rc; |
| 237 | |
| 238 | pcibus_info = SN_PCIBUS_BUSSOFT_INFO(slot->pci_bus); |
| 239 | |
| 240 | /* |
| 241 | * Power-on and initialize the slot in the SN |
| 242 | * PCI infrastructure. |
| 243 | */ |
John Keller | 3e643e7 | 2007-01-30 01:18:38 -0500 | [diff] [blame] | 244 | rc = sal_pcibr_slot_enable(pcibus_info, device_num, &resp, ssdt); |
| 245 | |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 246 | |
| 247 | if (rc == PCI_SLOT_ALREADY_UP) { |
Tony Luck | 34ef30c | 2007-05-10 09:39:41 -0700 | [diff] [blame] | 248 | dev_dbg(&slot->pci_bus->self->dev, "is already active\n"); |
Prarit Bhargava | 1d2450a | 2005-08-12 10:13:34 -0400 | [diff] [blame] | 249 | return 1; /* return 1 to user */ |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 250 | } |
| 251 | |
| 252 | if (rc == PCI_L1_ERR) { |
Ryan Desfosses | 227f064 | 2014-04-18 20:13:50 -0400 | [diff] [blame] | 253 | dev_dbg(&slot->pci_bus->self->dev, "L1 failure %d with message: %s", |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 254 | resp.resp_sub_errno, resp.resp_l1_msg); |
| 255 | return -EPERM; |
| 256 | } |
| 257 | |
| 258 | if (rc) { |
Ryan Desfosses | 227f064 | 2014-04-18 20:13:50 -0400 | [diff] [blame] | 259 | dev_dbg(&slot->pci_bus->self->dev, "insert failed with error %d sub-error %d\n", |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 260 | rc, resp.resp_sub_errno); |
| 261 | return -EIO; |
| 262 | } |
| 263 | |
Prarit Bhargava | 1d2450a | 2005-08-12 10:13:34 -0400 | [diff] [blame] | 264 | pcibus_info = SN_PCIBUS_BUSSOFT_INFO(slot->pci_bus); |
| 265 | pcibus_info->pbi_enabled_devices |= (1 << device_num); |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 266 | |
| 267 | return 0; |
| 268 | } |
| 269 | |
| 270 | static int sn_slot_disable(struct hotplug_slot *bss_hotplug_slot, |
| 271 | int device_num, int action) |
| 272 | { |
Prarit Bhargava | 1d2450a | 2005-08-12 10:13:34 -0400 | [diff] [blame] | 273 | struct slot *slot = bss_hotplug_slot->private; |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 274 | struct pcibus_info *pcibus_info; |
| 275 | struct pcibr_slot_disable_resp resp; |
| 276 | int rc; |
| 277 | |
| 278 | pcibus_info = SN_PCIBUS_BUSSOFT_INFO(slot->pci_bus); |
| 279 | |
| 280 | rc = sal_pcibr_slot_disable(pcibus_info, device_num, action, &resp); |
| 281 | |
Prarit Bhargava | 1d2450a | 2005-08-12 10:13:34 -0400 | [diff] [blame] | 282 | if ((action == PCI_REQ_SLOT_ELIGIBLE) && |
| 283 | (rc == PCI_SLOT_ALREADY_DOWN)) { |
Tony Luck | 34ef30c | 2007-05-10 09:39:41 -0700 | [diff] [blame] | 284 | dev_dbg(&slot->pci_bus->self->dev, "Slot %s already inactive\n", slot->physical_path); |
Prarit Bhargava | 1d2450a | 2005-08-12 10:13:34 -0400 | [diff] [blame] | 285 | return 1; /* return 1 to user */ |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 286 | } |
| 287 | |
Prarit Bhargava | 1d2450a | 2005-08-12 10:13:34 -0400 | [diff] [blame] | 288 | if ((action == PCI_REQ_SLOT_ELIGIBLE) && (rc == PCI_EMPTY_33MHZ)) { |
Ryan Desfosses | 227f064 | 2014-04-18 20:13:50 -0400 | [diff] [blame] | 289 | dev_dbg(&slot->pci_bus->self->dev, "Cannot remove last 33MHz card\n"); |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 290 | return -EPERM; |
| 291 | } |
| 292 | |
Prarit Bhargava | 1d2450a | 2005-08-12 10:13:34 -0400 | [diff] [blame] | 293 | if ((action == PCI_REQ_SLOT_ELIGIBLE) && (rc == PCI_L1_ERR)) { |
Ryan Desfosses | 227f064 | 2014-04-18 20:13:50 -0400 | [diff] [blame] | 294 | dev_dbg(&slot->pci_bus->self->dev, "L1 failure %d with message \n%s\n", |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 295 | resp.resp_sub_errno, resp.resp_l1_msg); |
| 296 | return -EPERM; |
| 297 | } |
| 298 | |
Prarit Bhargava | 1d2450a | 2005-08-12 10:13:34 -0400 | [diff] [blame] | 299 | if ((action == PCI_REQ_SLOT_ELIGIBLE) && rc) { |
Ryan Desfosses | 227f064 | 2014-04-18 20:13:50 -0400 | [diff] [blame] | 300 | dev_dbg(&slot->pci_bus->self->dev, "remove failed with error %d sub-error %d\n", |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 301 | rc, resp.resp_sub_errno); |
| 302 | return -EIO; |
| 303 | } |
| 304 | |
Prarit Bhargava | 1d2450a | 2005-08-12 10:13:34 -0400 | [diff] [blame] | 305 | if ((action == PCI_REQ_SLOT_ELIGIBLE) && !rc) |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 306 | return 0; |
| 307 | |
Prarit Bhargava | 1d2450a | 2005-08-12 10:13:34 -0400 | [diff] [blame] | 308 | if ((action == PCI_REQ_SLOT_DISABLE) && !rc) { |
| 309 | pcibus_info = SN_PCIBUS_BUSSOFT_INFO(slot->pci_bus); |
| 310 | pcibus_info->pbi_enabled_devices &= ~(1 << device_num); |
Tony Luck | 34ef30c | 2007-05-10 09:39:41 -0700 | [diff] [blame] | 311 | dev_dbg(&slot->pci_bus->self->dev, "remove successful\n"); |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 312 | return 0; |
| 313 | } |
| 314 | |
Prarit Bhargava | 1d2450a | 2005-08-12 10:13:34 -0400 | [diff] [blame] | 315 | if ((action == PCI_REQ_SLOT_DISABLE) && rc) { |
Tony Luck | 34ef30c | 2007-05-10 09:39:41 -0700 | [diff] [blame] | 316 | dev_dbg(&slot->pci_bus->self->dev,"remove failed rc = %d\n", rc); |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 317 | } |
| 318 | |
| 319 | return rc; |
| 320 | } |
| 321 | |
John Keller | 9f581f1 | 2006-10-04 16:49:35 -0500 | [diff] [blame] | 322 | /* |
| 323 | * Power up and configure the slot via a SAL call to PROM. |
| 324 | * Scan slot (and any children), do any platform specific fixup, |
| 325 | * and find device driver. |
| 326 | */ |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 327 | static int enable_slot(struct hotplug_slot *bss_hotplug_slot) |
| 328 | { |
Prarit Bhargava | 1d2450a | 2005-08-12 10:13:34 -0400 | [diff] [blame] | 329 | struct slot *slot = bss_hotplug_slot->private; |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 330 | struct pci_bus *new_bus = NULL; |
| 331 | struct pci_dev *dev; |
Yijing Wang | ab6380e | 2013-01-15 11:12:21 +0800 | [diff] [blame] | 332 | int num_funcs; |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 333 | int new_ppb = 0; |
| 334 | int rc; |
John Keller | 3e643e7 | 2007-01-30 01:18:38 -0500 | [diff] [blame] | 335 | char *ssdt = NULL; |
John Keller | 9f581f1 | 2006-10-04 16:49:35 -0500 | [diff] [blame] | 336 | void pcibios_fixup_device_resources(struct pci_dev *); |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 337 | |
| 338 | /* Serialize the Linux PCI infrastructure */ |
Ingo Molnar | 14cc3e2 | 2006-03-26 01:37:14 -0800 | [diff] [blame] | 339 | mutex_lock(&sn_hotplug_mutex); |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 340 | |
| 341 | /* |
| 342 | * Power-on and initialize the slot in the SN |
John Keller | 3e643e7 | 2007-01-30 01:18:38 -0500 | [diff] [blame] | 343 | * PCI infrastructure. Also, retrieve the ACPI SSDT |
| 344 | * table for the slot (if ACPI capable PROM). |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 345 | */ |
John Keller | 3e643e7 | 2007-01-30 01:18:38 -0500 | [diff] [blame] | 346 | rc = sn_slot_enable(bss_hotplug_slot, slot->device_num, &ssdt); |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 347 | if (rc) { |
Ingo Molnar | 14cc3e2 | 2006-03-26 01:37:14 -0800 | [diff] [blame] | 348 | mutex_unlock(&sn_hotplug_mutex); |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 349 | return rc; |
| 350 | } |
| 351 | |
John Keller | 3e643e7 | 2007-01-30 01:18:38 -0500 | [diff] [blame] | 352 | if (ssdt) |
| 353 | ssdt = __va(ssdt); |
| 354 | /* Add the new SSDT for the slot to the ACPI namespace */ |
| 355 | if (SN_ACPI_BASE_SUPPORT() && ssdt) { |
| 356 | acpi_status ret; |
| 357 | |
| 358 | ret = acpi_load_table((struct acpi_table_header *)ssdt); |
| 359 | if (ACPI_FAILURE(ret)) { |
| 360 | printk(KERN_ERR "%s: acpi_load_table failed (0x%x)\n", |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 361 | __func__, ret); |
John Keller | 3e643e7 | 2007-01-30 01:18:38 -0500 | [diff] [blame] | 362 | /* try to continue on */ |
| 363 | } |
| 364 | } |
| 365 | |
Prarit Bhargava | 1d2450a | 2005-08-12 10:13:34 -0400 | [diff] [blame] | 366 | num_funcs = pci_scan_slot(slot->pci_bus, |
| 367 | PCI_DEVFN(slot->device_num + 1, 0)); |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 368 | if (!num_funcs) { |
Tony Luck | 34ef30c | 2007-05-10 09:39:41 -0700 | [diff] [blame] | 369 | dev_dbg(&slot->pci_bus->self->dev, "no device in slot\n"); |
Ingo Molnar | 14cc3e2 | 2006-03-26 01:37:14 -0800 | [diff] [blame] | 370 | mutex_unlock(&sn_hotplug_mutex); |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 371 | return -ENODEV; |
| 372 | } |
| 373 | |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 374 | /* |
| 375 | * Map SN resources for all functions on the card |
| 376 | * to the Linux PCI interface and tell the drivers |
| 377 | * about them. |
| 378 | */ |
Yijing Wang | ab6380e | 2013-01-15 11:12:21 +0800 | [diff] [blame] | 379 | list_for_each_entry(dev, &slot->pci_bus->devices, bus_list) { |
| 380 | if (PCI_SLOT(dev->devfn) != slot->device_num + 1) |
| 381 | continue; |
| 382 | |
| 383 | /* Need to do slot fixup on PPB before fixup of children |
| 384 | * (PPB's pcidev_info needs to be in pcidev_info list |
| 385 | * before child's SN_PCIDEV_INFO() call to setup |
| 386 | * pdi_host_pcidev_info). |
| 387 | */ |
| 388 | pcibios_fixup_device_resources(dev); |
| 389 | if (SN_ACPI_BASE_SUPPORT()) |
| 390 | sn_acpi_slot_fixup(dev); |
| 391 | else |
| 392 | sn_io_slot_fixup(dev); |
| 393 | if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE) { |
| 394 | pci_hp_add_bridge(dev); |
| 395 | if (dev->subordinate) { |
| 396 | new_bus = dev->subordinate; |
| 397 | new_ppb = 1; |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 398 | } |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 399 | } |
| 400 | } |
| 401 | |
John Keller | 3e643e7 | 2007-01-30 01:18:38 -0500 | [diff] [blame] | 402 | /* |
| 403 | * Add the slot's devices to the ACPI infrastructure */ |
| 404 | if (SN_ACPI_BASE_SUPPORT() && ssdt) { |
Matthew Wilcox | 27663c5 | 2008-10-10 02:22:59 -0400 | [diff] [blame] | 405 | unsigned long long adr; |
John Keller | 3e643e7 | 2007-01-30 01:18:38 -0500 | [diff] [blame] | 406 | struct acpi_device *pdevice; |
John Keller | 3e643e7 | 2007-01-30 01:18:38 -0500 | [diff] [blame] | 407 | acpi_handle phandle; |
| 408 | acpi_handle chandle = NULL; |
| 409 | acpi_handle rethandle; |
| 410 | acpi_status ret; |
| 411 | |
Rafael J. Wysocki | 7b19981 | 2013-11-11 22:41:56 +0100 | [diff] [blame] | 412 | phandle = acpi_device_handle(PCI_CONTROLLER(slot->pci_bus)->companion); |
John Keller | 3e643e7 | 2007-01-30 01:18:38 -0500 | [diff] [blame] | 413 | |
| 414 | if (acpi_bus_get_device(phandle, &pdevice)) { |
Ryan Desfosses | 227f064 | 2014-04-18 20:13:50 -0400 | [diff] [blame] | 415 | dev_dbg(&slot->pci_bus->self->dev, "no parent device, assuming NULL\n"); |
John Keller | 3e643e7 | 2007-01-30 01:18:38 -0500 | [diff] [blame] | 416 | pdevice = NULL; |
| 417 | } |
| 418 | |
Rafael J. Wysocki | 3757b94 | 2013-02-13 14:36:47 +0100 | [diff] [blame] | 419 | acpi_scan_lock_acquire(); |
John Keller | 3e643e7 | 2007-01-30 01:18:38 -0500 | [diff] [blame] | 420 | /* |
| 421 | * Walk the rootbus node's immediate children looking for |
| 422 | * the slot's device node(s). There can be more than |
| 423 | * one for multifunction devices. |
| 424 | */ |
| 425 | for (;;) { |
| 426 | rethandle = NULL; |
| 427 | ret = acpi_get_next_object(ACPI_TYPE_DEVICE, |
| 428 | phandle, chandle, |
| 429 | &rethandle); |
| 430 | |
| 431 | if (ret == AE_NOT_FOUND || rethandle == NULL) |
| 432 | break; |
| 433 | |
| 434 | chandle = rethandle; |
| 435 | |
| 436 | ret = acpi_evaluate_integer(chandle, METHOD_NAME__ADR, |
| 437 | NULL, &adr); |
| 438 | |
| 439 | if (ACPI_SUCCESS(ret) && |
| 440 | (adr>>16) == (slot->device_num + 1)) { |
| 441 | |
Rafael J. Wysocki | b8bd759 | 2013-01-19 01:27:35 +0100 | [diff] [blame] | 442 | ret = acpi_bus_scan(chandle); |
John Keller | 3e643e7 | 2007-01-30 01:18:38 -0500 | [diff] [blame] | 443 | if (ACPI_FAILURE(ret)) { |
Ryan Desfosses | 227f064 | 2014-04-18 20:13:50 -0400 | [diff] [blame] | 444 | printk(KERN_ERR "%s: acpi_bus_scan failed (0x%x) for slot %d func %d\n", |
| 445 | __func__, ret, (int)(adr>>16), |
John Keller | 3e643e7 | 2007-01-30 01:18:38 -0500 | [diff] [blame] | 446 | (int)(adr&0xffff)); |
| 447 | /* try to continue on */ |
John Keller | 3e643e7 | 2007-01-30 01:18:38 -0500 | [diff] [blame] | 448 | } |
| 449 | } |
| 450 | } |
Rafael J. Wysocki | 3757b94 | 2013-02-13 14:36:47 +0100 | [diff] [blame] | 451 | acpi_scan_lock_release(); |
John Keller | 3e643e7 | 2007-01-30 01:18:38 -0500 | [diff] [blame] | 452 | } |
| 453 | |
Rafael J. Wysocki | c4ec84c | 2014-01-14 12:03:14 -0700 | [diff] [blame] | 454 | pci_lock_rescan_remove(); |
| 455 | |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 456 | /* Call the driver for the new device */ |
| 457 | pci_bus_add_devices(slot->pci_bus); |
| 458 | /* Call the drivers for the new devices subordinate to PPB */ |
| 459 | if (new_ppb) |
| 460 | pci_bus_add_devices(new_bus); |
| 461 | |
Rafael J. Wysocki | c4ec84c | 2014-01-14 12:03:14 -0700 | [diff] [blame] | 462 | pci_unlock_rescan_remove(); |
Ingo Molnar | 14cc3e2 | 2006-03-26 01:37:14 -0800 | [diff] [blame] | 463 | mutex_unlock(&sn_hotplug_mutex); |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 464 | |
| 465 | if (rc == 0) |
Ryan Desfosses | 227f064 | 2014-04-18 20:13:50 -0400 | [diff] [blame] | 466 | dev_dbg(&slot->pci_bus->self->dev, "insert operation successful\n"); |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 467 | else |
Ryan Desfosses | 227f064 | 2014-04-18 20:13:50 -0400 | [diff] [blame] | 468 | dev_dbg(&slot->pci_bus->self->dev, "insert operation failed rc = %d\n", rc); |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 469 | |
| 470 | return rc; |
| 471 | } |
| 472 | |
| 473 | static int disable_slot(struct hotplug_slot *bss_hotplug_slot) |
| 474 | { |
Prarit Bhargava | 1d2450a | 2005-08-12 10:13:34 -0400 | [diff] [blame] | 475 | struct slot *slot = bss_hotplug_slot->private; |
Yijing Wang | ab6380e | 2013-01-15 11:12:21 +0800 | [diff] [blame] | 476 | struct pci_dev *dev, *temp; |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 477 | int rc; |
Lv Zheng | e044d8f | 2015-01-26 16:58:48 +0800 | [diff] [blame] | 478 | acpi_handle ssdt_hdl = NULL; |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 479 | |
| 480 | /* Acquire update access to the bus */ |
Ingo Molnar | 14cc3e2 | 2006-03-26 01:37:14 -0800 | [diff] [blame] | 481 | mutex_lock(&sn_hotplug_mutex); |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 482 | |
| 483 | /* is it okay to bring this slot down? */ |
| 484 | rc = sn_slot_disable(bss_hotplug_slot, slot->device_num, |
| 485 | PCI_REQ_SLOT_ELIGIBLE); |
| 486 | if (rc) |
| 487 | goto leaving; |
| 488 | |
John Keller | 3e643e7 | 2007-01-30 01:18:38 -0500 | [diff] [blame] | 489 | /* free the ACPI resources for the slot */ |
| 490 | if (SN_ACPI_BASE_SUPPORT() && |
Rafael J. Wysocki | 7b19981 | 2013-11-11 22:41:56 +0100 | [diff] [blame] | 491 | PCI_CONTROLLER(slot->pci_bus)->companion) { |
Matthew Wilcox | 27663c5 | 2008-10-10 02:22:59 -0400 | [diff] [blame] | 492 | unsigned long long adr; |
John Keller | 3e643e7 | 2007-01-30 01:18:38 -0500 | [diff] [blame] | 493 | struct acpi_device *device; |
| 494 | acpi_handle phandle; |
| 495 | acpi_handle chandle = NULL; |
| 496 | acpi_handle rethandle; |
| 497 | acpi_status ret; |
| 498 | |
| 499 | /* Get the rootbus node pointer */ |
Rafael J. Wysocki | 7b19981 | 2013-11-11 22:41:56 +0100 | [diff] [blame] | 500 | phandle = acpi_device_handle(PCI_CONTROLLER(slot->pci_bus)->companion); |
John Keller | 3e643e7 | 2007-01-30 01:18:38 -0500 | [diff] [blame] | 501 | |
Rafael J. Wysocki | 3757b94 | 2013-02-13 14:36:47 +0100 | [diff] [blame] | 502 | acpi_scan_lock_acquire(); |
John Keller | 3e643e7 | 2007-01-30 01:18:38 -0500 | [diff] [blame] | 503 | /* |
| 504 | * Walk the rootbus node's immediate children looking for |
| 505 | * the slot's device node(s). There can be more than |
| 506 | * one for multifunction devices. |
| 507 | */ |
| 508 | for (;;) { |
| 509 | rethandle = NULL; |
| 510 | ret = acpi_get_next_object(ACPI_TYPE_DEVICE, |
| 511 | phandle, chandle, |
| 512 | &rethandle); |
| 513 | |
| 514 | if (ret == AE_NOT_FOUND || rethandle == NULL) |
| 515 | break; |
| 516 | |
| 517 | chandle = rethandle; |
| 518 | |
| 519 | ret = acpi_evaluate_integer(chandle, |
| 520 | METHOD_NAME__ADR, |
| 521 | NULL, &adr); |
| 522 | if (ACPI_SUCCESS(ret) && |
| 523 | (adr>>16) == (slot->device_num + 1)) { |
| 524 | /* retain the owner id */ |
Lv Zheng | e044d8f | 2015-01-26 16:58:48 +0800 | [diff] [blame] | 525 | ssdt_hdl = chandle; |
John Keller | 3e643e7 | 2007-01-30 01:18:38 -0500 | [diff] [blame] | 526 | |
| 527 | ret = acpi_bus_get_device(chandle, |
| 528 | &device); |
| 529 | if (ACPI_SUCCESS(ret)) |
Rafael J. Wysocki | ae28179 | 2013-01-15 13:23:53 +0100 | [diff] [blame] | 530 | acpi_bus_trim(device); |
John Keller | 3e643e7 | 2007-01-30 01:18:38 -0500 | [diff] [blame] | 531 | } |
| 532 | } |
Rafael J. Wysocki | 3757b94 | 2013-02-13 14:36:47 +0100 | [diff] [blame] | 533 | acpi_scan_lock_release(); |
John Keller | 3e643e7 | 2007-01-30 01:18:38 -0500 | [diff] [blame] | 534 | } |
| 535 | |
Rafael J. Wysocki | c4ec84c | 2014-01-14 12:03:14 -0700 | [diff] [blame] | 536 | pci_lock_rescan_remove(); |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 537 | /* Free the SN resources assigned to the Linux device.*/ |
Yijing Wang | ab6380e | 2013-01-15 11:12:21 +0800 | [diff] [blame] | 538 | list_for_each_entry_safe(dev, temp, &slot->pci_bus->devices, bus_list) { |
| 539 | if (PCI_SLOT(dev->devfn) != slot->device_num + 1) |
| 540 | continue; |
| 541 | |
| 542 | pci_dev_get(dev); |
| 543 | sn_bus_free_data(dev); |
| 544 | pci_stop_and_remove_bus_device(dev); |
| 545 | pci_dev_put(dev); |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 546 | } |
Rafael J. Wysocki | c4ec84c | 2014-01-14 12:03:14 -0700 | [diff] [blame] | 547 | pci_unlock_rescan_remove(); |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 548 | |
John Keller | 3e643e7 | 2007-01-30 01:18:38 -0500 | [diff] [blame] | 549 | /* Remove the SSDT for the slot from the ACPI namespace */ |
Lv Zheng | e044d8f | 2015-01-26 16:58:48 +0800 | [diff] [blame] | 550 | if (SN_ACPI_BASE_SUPPORT() && ssdt_hdl) { |
John Keller | 3e643e7 | 2007-01-30 01:18:38 -0500 | [diff] [blame] | 551 | acpi_status ret; |
Lv Zheng | e044d8f | 2015-01-26 16:58:48 +0800 | [diff] [blame] | 552 | ret = acpi_unload_parent_table(ssdt_hdl); |
John Keller | 3e643e7 | 2007-01-30 01:18:38 -0500 | [diff] [blame] | 553 | if (ACPI_FAILURE(ret)) { |
Lv Zheng | e044d8f | 2015-01-26 16:58:48 +0800 | [diff] [blame] | 554 | acpi_handle_err(ssdt_hdl, |
| 555 | "%s: acpi_unload_parent_table failed (0x%x)\n", |
| 556 | __func__, ret); |
John Keller | 3e643e7 | 2007-01-30 01:18:38 -0500 | [diff] [blame] | 557 | /* try to continue on */ |
| 558 | } |
| 559 | } |
| 560 | |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 561 | /* free the collected sysdata pointers */ |
| 562 | sn_bus_free_sysdata(); |
| 563 | |
| 564 | /* Deactivate slot */ |
| 565 | rc = sn_slot_disable(bss_hotplug_slot, slot->device_num, |
| 566 | PCI_REQ_SLOT_DISABLE); |
| 567 | leaving: |
| 568 | /* Release the bus lock */ |
Ingo Molnar | 14cc3e2 | 2006-03-26 01:37:14 -0800 | [diff] [blame] | 569 | mutex_unlock(&sn_hotplug_mutex); |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 570 | |
| 571 | return rc; |
| 572 | } |
| 573 | |
Prarit Bhargava | 1d2450a | 2005-08-12 10:13:34 -0400 | [diff] [blame] | 574 | static inline int get_power_status(struct hotplug_slot *bss_hotplug_slot, |
| 575 | u8 *value) |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 576 | { |
Prarit Bhargava | 1d2450a | 2005-08-12 10:13:34 -0400 | [diff] [blame] | 577 | struct slot *slot = bss_hotplug_slot->private; |
| 578 | struct pcibus_info *pcibus_info; |
Mike Habeck | 466ee36 | 2006-05-06 09:01:59 -0500 | [diff] [blame] | 579 | u32 power; |
Prarit Bhargava | 1d2450a | 2005-08-12 10:13:34 -0400 | [diff] [blame] | 580 | |
| 581 | pcibus_info = SN_PCIBUS_BUSSOFT_INFO(slot->pci_bus); |
Ingo Molnar | 14cc3e2 | 2006-03-26 01:37:14 -0800 | [diff] [blame] | 582 | mutex_lock(&sn_hotplug_mutex); |
Mike Habeck | 466ee36 | 2006-05-06 09:01:59 -0500 | [diff] [blame] | 583 | power = pcibus_info->pbi_enabled_devices & (1 << slot->device_num); |
| 584 | *value = power ? 1 : 0; |
Ingo Molnar | 14cc3e2 | 2006-03-26 01:37:14 -0800 | [diff] [blame] | 585 | mutex_unlock(&sn_hotplug_mutex); |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 586 | return 0; |
| 587 | } |
| 588 | |
| 589 | static void sn_release_slot(struct hotplug_slot *bss_hotplug_slot) |
| 590 | { |
| 591 | kfree(bss_hotplug_slot->info); |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 592 | kfree(bss_hotplug_slot->private); |
| 593 | kfree(bss_hotplug_slot); |
| 594 | } |
| 595 | |
| 596 | static int sn_hotplug_slot_register(struct pci_bus *pci_bus) |
| 597 | { |
| 598 | int device; |
Alex Chiang | f46753c | 2008-06-10 15:28:50 -0600 | [diff] [blame] | 599 | struct pci_slot *pci_slot; |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 600 | struct hotplug_slot *bss_hotplug_slot; |
Alex Chiang | 85234ce | 2008-10-20 17:41:48 -0600 | [diff] [blame] | 601 | char name[SN_SLOT_NAME_SIZE]; |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 602 | int rc = 0; |
| 603 | |
| 604 | /* |
| 605 | * Currently only four devices are supported, |
| 606 | * in the future there maybe more -- up to 32. |
| 607 | */ |
| 608 | |
| 609 | for (device = 0; device < SN_MAX_HP_SLOTS ; device++) { |
| 610 | if (sn_pci_slot_valid(pci_bus, device) != 1) |
| 611 | continue; |
| 612 | |
Pekka Enberg | 656da9d | 2005-09-22 00:48:11 -0700 | [diff] [blame] | 613 | bss_hotplug_slot = kzalloc(sizeof(*bss_hotplug_slot), |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 614 | GFP_KERNEL); |
| 615 | if (!bss_hotplug_slot) { |
| 616 | rc = -ENOMEM; |
| 617 | goto alloc_err; |
| 618 | } |
| 619 | |
| 620 | bss_hotplug_slot->info = |
Pekka Enberg | 656da9d | 2005-09-22 00:48:11 -0700 | [diff] [blame] | 621 | kzalloc(sizeof(struct hotplug_slot_info), |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 622 | GFP_KERNEL); |
| 623 | if (!bss_hotplug_slot->info) { |
| 624 | rc = -ENOMEM; |
| 625 | goto alloc_err; |
| 626 | } |
| 627 | |
| 628 | if (sn_hp_slot_private_alloc(bss_hotplug_slot, |
Alex Chiang | 85234ce | 2008-10-20 17:41:48 -0600 | [diff] [blame] | 629 | pci_bus, device, name)) { |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 630 | rc = -ENOMEM; |
| 631 | goto alloc_err; |
| 632 | } |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 633 | bss_hotplug_slot->ops = &sn_hotplug_slot_ops; |
| 634 | bss_hotplug_slot->release = &sn_release_slot; |
| 635 | |
Alex Chiang | 85234ce | 2008-10-20 17:41:48 -0600 | [diff] [blame] | 636 | rc = pci_hp_register(bss_hotplug_slot, pci_bus, device, name); |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 637 | if (rc) |
| 638 | goto register_err; |
Prarit Bhargava | 1d2450a | 2005-08-12 10:13:34 -0400 | [diff] [blame] | 639 | |
Alex Chiang | f46753c | 2008-06-10 15:28:50 -0600 | [diff] [blame] | 640 | pci_slot = bss_hotplug_slot->pci_slot; |
| 641 | rc = sysfs_create_file(&pci_slot->kobj, |
Prarit Bhargava | 1d2450a | 2005-08-12 10:13:34 -0400 | [diff] [blame] | 642 | &sn_slot_path_attr.attr); |
| 643 | if (rc) |
| 644 | goto register_err; |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 645 | } |
Tony Luck | 34ef30c | 2007-05-10 09:39:41 -0700 | [diff] [blame] | 646 | dev_dbg(&pci_bus->self->dev, "Registered bus with hotplug\n"); |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 647 | return rc; |
| 648 | |
| 649 | register_err: |
Tony Luck | 34ef30c | 2007-05-10 09:39:41 -0700 | [diff] [blame] | 650 | dev_dbg(&pci_bus->self->dev, "bus failed to register with err = %d\n", |
Alex Chiang | 8344b56 | 2008-06-10 15:30:42 -0600 | [diff] [blame] | 651 | rc); |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 652 | |
| 653 | alloc_err: |
| 654 | if (rc == -ENOMEM) |
Tony Luck | 34ef30c | 2007-05-10 09:39:41 -0700 | [diff] [blame] | 655 | dev_dbg(&pci_bus->self->dev, "Memory allocation error\n"); |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 656 | |
| 657 | /* destroy THIS element */ |
| 658 | if (bss_hotplug_slot) |
| 659 | sn_release_slot(bss_hotplug_slot); |
| 660 | |
| 661 | /* destroy anything else on the list */ |
| 662 | while ((bss_hotplug_slot = sn_hp_destroy())) |
| 663 | pci_hp_deregister(bss_hotplug_slot); |
| 664 | |
| 665 | return rc; |
| 666 | } |
| 667 | |
Peter Huewe | db5ed9b | 2009-06-06 14:58:56 +0200 | [diff] [blame] | 668 | static int __init sn_pci_hotplug_init(void) |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 669 | { |
| 670 | struct pci_bus *pci_bus = NULL; |
| 671 | int rc; |
| 672 | int registered = 0; |
| 673 | |
Prarit Bhargava | e55dea5 | 2006-04-04 09:26:46 -0400 | [diff] [blame] | 674 | if (!sn_prom_feature_available(PRF_HOTPLUG_SUPPORT)) { |
| 675 | printk(KERN_ERR "%s: PROM version does not support hotplug.\n", |
Harvey Harrison | 66bef8c | 2008-03-03 19:09:46 -0800 | [diff] [blame] | 676 | __func__); |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 677 | return -EPERM; |
| 678 | } |
| 679 | |
Prarit Bhargava | 1d2450a | 2005-08-12 10:13:34 -0400 | [diff] [blame] | 680 | INIT_LIST_HEAD(&sn_hp_list); |
| 681 | |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 682 | while ((pci_bus = pci_find_next_bus(pci_bus))) { |
| 683 | if (!pci_bus->sysdata) |
| 684 | continue; |
| 685 | |
| 686 | rc = sn_pci_bus_valid(pci_bus); |
| 687 | if (rc != 1) { |
Tony Luck | 34ef30c | 2007-05-10 09:39:41 -0700 | [diff] [blame] | 688 | dev_dbg(&pci_bus->self->dev, "not a valid hotplug bus\n"); |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 689 | continue; |
| 690 | } |
Tony Luck | 34ef30c | 2007-05-10 09:39:41 -0700 | [diff] [blame] | 691 | dev_dbg(&pci_bus->self->dev, "valid hotplug bus\n"); |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 692 | |
| 693 | rc = sn_hotplug_slot_register(pci_bus); |
Prarit Bhargava | 1d2450a | 2005-08-12 10:13:34 -0400 | [diff] [blame] | 694 | if (!rc) { |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 695 | registered = 1; |
Prarit Bhargava | 1d2450a | 2005-08-12 10:13:34 -0400 | [diff] [blame] | 696 | } else { |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 697 | registered = 0; |
| 698 | break; |
| 699 | } |
| 700 | } |
| 701 | |
| 702 | return registered == 1 ? 0 : -ENODEV; |
| 703 | } |
| 704 | |
Peter Huewe | db5ed9b | 2009-06-06 14:58:56 +0200 | [diff] [blame] | 705 | static void __exit sn_pci_hotplug_exit(void) |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 706 | { |
| 707 | struct hotplug_slot *bss_hotplug_slot; |
| 708 | |
Prarit Bhargava | 1d2450a | 2005-08-12 10:13:34 -0400 | [diff] [blame] | 709 | while ((bss_hotplug_slot = sn_hp_destroy())) |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 710 | pci_hp_deregister(bss_hotplug_slot); |
Prarit Bhargava | 6f354b0 | 2005-07-06 15:29:53 -0700 | [diff] [blame] | 711 | |
| 712 | if (!list_empty(&sn_hp_list)) |
| 713 | printk(KERN_ERR "%s: internal list is not empty\n", __FILE__); |
| 714 | } |
| 715 | |
| 716 | module_init(sn_pci_hotplug_init); |
| 717 | module_exit(sn_pci_hotplug_exit); |