blob: b62ad31a9739934e1c38b6138cf12f65e6629ee2 [file] [log] [blame]
Prarit Bhargava6f354b02005-07-06 15:29:53 -07001/*
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 Keller8e77af62006-03-08 13:21:34 -06006 * Copyright (C) 2005-2006 Silicon Graphics, Inc. All rights reserved.
Prarit Bhargava6f354b02005-07-06 15:29:53 -07007 *
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
12#include <linux/init.h>
13#include <linux/kernel.h>
14#include <linux/module.h>
15#include <linux/pci.h>
Greg Kroah-Hartman7a54f252006-10-13 20:05:19 -070016#include <linux/pci_hotplug.h>
Prarit Bhargava6f354b02005-07-06 15:29:53 -070017#include <linux/proc_fs.h>
18#include <linux/types.h>
Ingo Molnar14cc3e22006-03-26 01:37:14 -080019#include <linux/mutex.h>
Prarit Bhargava6f354b02005-07-06 15:29:53 -070020
21#include <asm/sn/addrs.h>
Prarit Bhargavae55dea52006-04-04 09:26:46 -040022#include <asm/sn/geo.h>
Prarit Bhargava6f354b02005-07-06 15:29:53 -070023#include <asm/sn/l1.h>
24#include <asm/sn/module.h>
25#include <asm/sn/pcibr_provider.h>
26#include <asm/sn/pcibus_provider_defs.h>
27#include <asm/sn/pcidev.h>
Prarit Bhargavae55dea52006-04-04 09:26:46 -040028#include <asm/sn/sn_feature_sets.h>
Prarit Bhargava6f354b02005-07-06 15:29:53 -070029#include <asm/sn/sn_sal.h>
30#include <asm/sn/types.h>
31
32#include "../pci.h"
Prarit Bhargava6f354b02005-07-06 15:29:53 -070033
34MODULE_LICENSE("GPL");
35MODULE_AUTHOR("SGI (prarit@sgi.com, dickie@sgi.com, habeck@sgi.com)");
36MODULE_DESCRIPTION("SGI Altix Hot Plug PCI Controller Driver");
37
Prarit Bhargava1d2450a2005-08-12 10:13:34 -040038#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 */
Prarit Bhargava6f354b02005-07-06 15:29:53 -070047
48/* internal list head */
49static struct list_head sn_hp_list;
50
51/* hotplug_slot struct's private pointer */
52struct slot {
53 int device_num;
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;
Prarit Bhargava1d2450a2005-08-12 10:13:34 -040058 char physical_path[SN_SLOT_NAME_SIZE];
Prarit Bhargava6f354b02005-07-06 15:29:53 -070059};
60
61struct pcibr_slot_enable_resp {
62 int resp_sub_errno;
63 char resp_l1_msg[PCI_L1_QSIZE + 1];
64};
65
66struct pcibr_slot_disable_resp {
67 int resp_sub_errno;
68 char resp_l1_msg[PCI_L1_QSIZE + 1];
69};
70
71enum sn_pci_req_e {
72 PCI_REQ_SLOT_ELIGIBLE,
73 PCI_REQ_SLOT_DISABLE
74};
75
76static int enable_slot(struct hotplug_slot *slot);
77static int disable_slot(struct hotplug_slot *slot);
Prarit Bhargava1d2450a2005-08-12 10:13:34 -040078static inline int get_power_status(struct hotplug_slot *slot, u8 *value);
Prarit Bhargava6f354b02005-07-06 15:29:53 -070079
80static struct hotplug_slot_ops sn_hotplug_slot_ops = {
81 .owner = THIS_MODULE,
82 .enable_slot = enable_slot,
83 .disable_slot = disable_slot,
84 .get_power_status = get_power_status,
85};
86
Ingo Molnar14cc3e22006-03-26 01:37:14 -080087static DEFINE_MUTEX(sn_hotplug_mutex);
Prarit Bhargava6f354b02005-07-06 15:29:53 -070088
Prarit Bhargava1d2450a2005-08-12 10:13:34 -040089static ssize_t path_show (struct hotplug_slot *bss_hotplug_slot,
90 char *buf)
91{
92 int retval = -ENOENT;
93 struct slot *slot = bss_hotplug_slot->private;
94
95 if (!slot)
96 return retval;
97
98 retval = sprintf (buf, "%s\n", slot->physical_path);
99 return retval;
100}
101
102static struct hotplug_slot_attribute sn_slot_path_attr = __ATTR_RO(path);
103
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700104static int sn_pci_slot_valid(struct pci_bus *pci_bus, int device)
105{
106 struct pcibus_info *pcibus_info;
Prarit Bhargavae55dea52006-04-04 09:26:46 -0400107 u16 busnum, segment, ioboard_type;
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700108
109 pcibus_info = SN_PCIBUS_BUSSOFT_INFO(pci_bus);
110
111 /* Check to see if this is a valid slot on 'pci_bus' */
112 if (!(pcibus_info->pbi_valid_devices & (1 << device)))
113 return -EPERM;
114
Prarit Bhargavae55dea52006-04-04 09:26:46 -0400115 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;
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700118
119 /* Do not allow hotplug operations on base I/O cards */
Prarit Bhargavae55dea52006-04-04 09:26:46 -0400120 if ((ioboard_type == L1_BRICKTYPE_IX ||
121 ioboard_type == L1_BRICKTYPE_IA) &&
122 (segment == 1 && busnum == 0 && device != 1))
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700123 return -EPERM;
124
125 return 1;
126}
127
128static int sn_pci_bus_valid(struct pci_bus *pci_bus)
129{
130 struct pcibus_info *pcibus_info;
Prarit Bhargavae55dea52006-04-04 09:26:46 -0400131 u32 asic_type;
132 u16 ioboard_type;
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700133
134 /* Don't register slots hanging off the TIOCA bus */
Prarit Bhargavae55dea52006-04-04 09:26:46 -0400135 pcibus_info = SN_PCIBUS_BUSSOFT_INFO(pci_bus);
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700136 asic_type = pcibus_info->pbi_buscommon.bs_asic_type;
137 if (asic_type == PCIIO_ASIC_TYPE_TIOCA)
138 return -EPERM;
139
140 /* Only register slots in I/O Bricks that support hotplug */
Prarit Bhargavae55dea52006-04-04 09:26:46 -0400141 ioboard_type = sn_ioboard_to_pci_bus(pci_bus);
142 switch (ioboard_type) {
Prarit Bhargava1d2450a2005-08-12 10:13:34 -0400143 case L1_BRICKTYPE_IX:
144 case L1_BRICKTYPE_PX:
145 case L1_BRICKTYPE_IA:
146 case L1_BRICKTYPE_PA:
Prarit Bhargavae55dea52006-04-04 09:26:46 -0400147 case L1_BOARDTYPE_PCIX3SLOT:
Prarit Bhargava1d2450a2005-08-12 10:13:34 -0400148 return 1;
149 break;
150 default:
151 return -EPERM;
152 break;
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700153 }
154
155 return -EIO;
156}
157
158static int sn_hp_slot_private_alloc(struct hotplug_slot *bss_hotplug_slot,
159 struct pci_bus *pci_bus, int device)
160{
161 struct pcibus_info *pcibus_info;
162 struct slot *slot;
163
164 pcibus_info = SN_PCIBUS_BUSSOFT_INFO(pci_bus);
165
Pekka Enberg656da9d2005-09-22 00:48:11 -0700166 slot = kzalloc(sizeof(*slot), GFP_KERNEL);
Prarit Bhargava1d2450a2005-08-12 10:13:34 -0400167 if (!slot)
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700168 return -ENOMEM;
Prarit Bhargava1d2450a2005-08-12 10:13:34 -0400169 bss_hotplug_slot->private = slot;
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700170
Prarit Bhargava1d2450a2005-08-12 10:13:34 -0400171 bss_hotplug_slot->name = kmalloc(SN_SLOT_NAME_SIZE, GFP_KERNEL);
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700172 if (!bss_hotplug_slot->name) {
173 kfree(bss_hotplug_slot->private);
174 return -ENOMEM;
175 }
176
177 slot->device_num = device;
178 slot->pci_bus = pci_bus;
Prarit Bhargava1d2450a2005-08-12 10:13:34 -0400179 sprintf(bss_hotplug_slot->name, "%04x:%02x:%02x",
180 pci_domain_nr(pci_bus),
Prarit Bhargavae55dea52006-04-04 09:26:46 -0400181 ((u16)pcibus_info->pbi_buscommon.bs_persist_busnum),
Prarit Bhargava1d2450a2005-08-12 10:13:34 -0400182 device + 1);
Prarit Bhargavae55dea52006-04-04 09:26:46 -0400183
184 sn_generate_path(pci_bus, slot->physical_path);
185
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700186 slot->hotplug_slot = bss_hotplug_slot;
187 list_add(&slot->hp_list, &sn_hp_list);
188
189 return 0;
190}
191
192static struct hotplug_slot * sn_hp_destroy(void)
193{
194 struct slot *slot;
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700195 struct hotplug_slot *bss_hotplug_slot = NULL;
196
Prarit Bhargava1d2450a2005-08-12 10:13:34 -0400197 list_for_each_entry(slot, &sn_hp_list, hp_list) {
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700198 bss_hotplug_slot = slot->hotplug_slot;
199 list_del(&((struct slot *)bss_hotplug_slot->private)->
200 hp_list);
Prarit Bhargava1d2450a2005-08-12 10:13:34 -0400201 sysfs_remove_file(&bss_hotplug_slot->kobj,
202 &sn_slot_path_attr.attr);
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700203 break;
204 }
205 return bss_hotplug_slot;
206}
207
208static void sn_bus_alloc_data(struct pci_dev *dev)
209{
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700210 struct pci_bus *subordinate_bus;
211 struct pci_dev *child;
212
213 sn_pci_fixup_slot(dev);
214
215 /* Recursively sets up the sn_irq_info structs */
216 if (dev->subordinate) {
217 subordinate_bus = dev->subordinate;
Prarit Bhargava1d2450a2005-08-12 10:13:34 -0400218 list_for_each_entry(child, &subordinate_bus->devices, bus_list)
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700219 sn_bus_alloc_data(child);
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700220 }
221}
222
223static void sn_bus_free_data(struct pci_dev *dev)
224{
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700225 struct pci_bus *subordinate_bus;
226 struct pci_dev *child;
227
228 /* Recursively clean up sn_irq_info structs */
229 if (dev->subordinate) {
230 subordinate_bus = dev->subordinate;
Prarit Bhargava1d2450a2005-08-12 10:13:34 -0400231 list_for_each_entry(child, &subordinate_bus->devices, bus_list)
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700232 sn_bus_free_data(child);
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700233 }
John Keller8e77af62006-03-08 13:21:34 -0600234 /*
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
238 * been called.
239 */
240 sn_bus_store_sysdata(dev);
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700241 sn_pci_unfixup_slot(dev);
242}
243
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700244static int sn_slot_enable(struct hotplug_slot *bss_hotplug_slot,
245 int device_num)
246{
Prarit Bhargava1d2450a2005-08-12 10:13:34 -0400247 struct slot *slot = bss_hotplug_slot->private;
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700248 struct pcibus_info *pcibus_info;
249 struct pcibr_slot_enable_resp resp;
250 int rc;
251
252 pcibus_info = SN_PCIBUS_BUSSOFT_INFO(slot->pci_bus);
253
254 /*
255 * Power-on and initialize the slot in the SN
256 * PCI infrastructure.
257 */
258 rc = sal_pcibr_slot_enable(pcibus_info, device_num, &resp);
259
260 if (rc == PCI_SLOT_ALREADY_UP) {
261 dev_dbg(slot->pci_bus->self, "is already active\n");
Prarit Bhargava1d2450a2005-08-12 10:13:34 -0400262 return 1; /* return 1 to user */
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700263 }
264
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);
269 return -EPERM;
270 }
271
272 if (rc) {
273 dev_dbg(slot->pci_bus->self,
274 "insert failed with error %d sub-error %d\n",
275 rc, resp.resp_sub_errno);
276 return -EIO;
277 }
278
Prarit Bhargava1d2450a2005-08-12 10:13:34 -0400279 pcibus_info = SN_PCIBUS_BUSSOFT_INFO(slot->pci_bus);
280 pcibus_info->pbi_enabled_devices |= (1 << device_num);
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700281
282 return 0;
283}
284
285static int sn_slot_disable(struct hotplug_slot *bss_hotplug_slot,
286 int device_num, int action)
287{
Prarit Bhargava1d2450a2005-08-12 10:13:34 -0400288 struct slot *slot = bss_hotplug_slot->private;
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700289 struct pcibus_info *pcibus_info;
290 struct pcibr_slot_disable_resp resp;
291 int rc;
292
293 pcibus_info = SN_PCIBUS_BUSSOFT_INFO(slot->pci_bus);
294
295 rc = sal_pcibr_slot_disable(pcibus_info, device_num, action, &resp);
296
Prarit Bhargava1d2450a2005-08-12 10:13:34 -0400297 if ((action == PCI_REQ_SLOT_ELIGIBLE) &&
298 (rc == PCI_SLOT_ALREADY_DOWN)) {
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700299 dev_dbg(slot->pci_bus->self, "Slot %s already inactive\n");
Prarit Bhargava1d2450a2005-08-12 10:13:34 -0400300 return 1; /* return 1 to user */
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700301 }
302
Prarit Bhargava1d2450a2005-08-12 10:13:34 -0400303 if ((action == PCI_REQ_SLOT_ELIGIBLE) && (rc == PCI_EMPTY_33MHZ)) {
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700304 dev_dbg(slot->pci_bus->self,
305 "Cannot remove last 33MHz card\n");
306 return -EPERM;
307 }
308
Prarit Bhargava1d2450a2005-08-12 10:13:34 -0400309 if ((action == PCI_REQ_SLOT_ELIGIBLE) && (rc == PCI_L1_ERR)) {
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700310 dev_dbg(slot->pci_bus->self,
311 "L1 failure %d with message \n%s\n",
312 resp.resp_sub_errno, resp.resp_l1_msg);
313 return -EPERM;
314 }
315
Prarit Bhargava1d2450a2005-08-12 10:13:34 -0400316 if ((action == PCI_REQ_SLOT_ELIGIBLE) && rc) {
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700317 dev_dbg(slot->pci_bus->self,
318 "remove failed with error %d sub-error %d\n",
319 rc, resp.resp_sub_errno);
320 return -EIO;
321 }
322
Prarit Bhargava1d2450a2005-08-12 10:13:34 -0400323 if ((action == PCI_REQ_SLOT_ELIGIBLE) && !rc)
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700324 return 0;
325
Prarit Bhargava1d2450a2005-08-12 10:13:34 -0400326 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);
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700329 dev_dbg(slot->pci_bus->self, "remove successful\n");
330 return 0;
331 }
332
Prarit Bhargava1d2450a2005-08-12 10:13:34 -0400333 if ((action == PCI_REQ_SLOT_DISABLE) && rc) {
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700334 dev_dbg(slot->pci_bus->self,"remove failed rc = %d\n", rc);
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700335 }
336
337 return rc;
338}
339
340static int enable_slot(struct hotplug_slot *bss_hotplug_slot)
341{
Prarit Bhargava1d2450a2005-08-12 10:13:34 -0400342 struct slot *slot = bss_hotplug_slot->private;
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700343 struct pci_bus *new_bus = NULL;
344 struct pci_dev *dev;
345 int func, num_funcs;
346 int new_ppb = 0;
347 int rc;
348
349 /* Serialize the Linux PCI infrastructure */
Ingo Molnar14cc3e22006-03-26 01:37:14 -0800350 mutex_lock(&sn_hotplug_mutex);
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700351
352 /*
353 * Power-on and initialize the slot in the SN
354 * PCI infrastructure.
355 */
356 rc = sn_slot_enable(bss_hotplug_slot, slot->device_num);
357 if (rc) {
Ingo Molnar14cc3e22006-03-26 01:37:14 -0800358 mutex_unlock(&sn_hotplug_mutex);
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700359 return rc;
360 }
361
Prarit Bhargava1d2450a2005-08-12 10:13:34 -0400362 num_funcs = pci_scan_slot(slot->pci_bus,
363 PCI_DEVFN(slot->device_num + 1, 0));
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700364 if (!num_funcs) {
365 dev_dbg(slot->pci_bus->self, "no device in slot\n");
Ingo Molnar14cc3e22006-03-26 01:37:14 -0800366 mutex_unlock(&sn_hotplug_mutex);
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700367 return -ENODEV;
368 }
369
370 sn_pci_controller_fixup(pci_domain_nr(slot->pci_bus),
371 slot->pci_bus->number,
372 slot->pci_bus);
373 /*
374 * Map SN resources for all functions on the card
375 * to the Linux PCI interface and tell the drivers
376 * about them.
377 */
378 for (func = 0; func < num_funcs; func++) {
379 dev = pci_get_slot(slot->pci_bus,
380 PCI_DEVFN(slot->device_num + 1,
381 PCI_FUNC(func)));
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700382 if (dev) {
383 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE) {
384 unsigned char sec_bus;
385 pci_read_config_byte(dev, PCI_SECONDARY_BUS,
386 &sec_bus);
387 new_bus = pci_add_new_bus(dev->bus, dev,
388 sec_bus);
389 pci_scan_child_bus(new_bus);
390 sn_pci_controller_fixup(pci_domain_nr(new_bus),
391 new_bus->number,
392 new_bus);
393 new_ppb = 1;
394 }
395 sn_bus_alloc_data(dev);
396 pci_dev_put(dev);
397 }
398 }
399
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 */
403 if (new_ppb)
404 pci_bus_add_devices(new_bus);
405
Ingo Molnar14cc3e22006-03-26 01:37:14 -0800406 mutex_unlock(&sn_hotplug_mutex);
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700407
408 if (rc == 0)
409 dev_dbg(slot->pci_bus->self,
410 "insert operation successful\n");
411 else
412 dev_dbg(slot->pci_bus->self,
413 "insert operation failed rc = %d\n", rc);
414
415 return rc;
416}
417
418static int disable_slot(struct hotplug_slot *bss_hotplug_slot)
419{
Prarit Bhargava1d2450a2005-08-12 10:13:34 -0400420 struct slot *slot = bss_hotplug_slot->private;
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700421 struct pci_dev *dev;
422 int func;
423 int rc;
424
425 /* Acquire update access to the bus */
Ingo Molnar14cc3e22006-03-26 01:37:14 -0800426 mutex_lock(&sn_hotplug_mutex);
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700427
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);
431 if (rc)
432 goto leaving;
433
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,
Prarit Bhargava1d2450a2005-08-12 10:13:34 -0400437 PCI_DEVFN(slot->device_num + 1,
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700438 PCI_FUNC(func)));
439 if (dev) {
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700440 sn_bus_free_data(dev);
441 pci_remove_bus_device(dev);
442 pci_dev_put(dev);
443 }
444 }
445
446 /* free the collected sysdata pointers */
447 sn_bus_free_sysdata();
448
449 /* Deactivate slot */
450 rc = sn_slot_disable(bss_hotplug_slot, slot->device_num,
451 PCI_REQ_SLOT_DISABLE);
452 leaving:
453 /* Release the bus lock */
Ingo Molnar14cc3e22006-03-26 01:37:14 -0800454 mutex_unlock(&sn_hotplug_mutex);
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700455
456 return rc;
457}
458
Prarit Bhargava1d2450a2005-08-12 10:13:34 -0400459static inline int get_power_status(struct hotplug_slot *bss_hotplug_slot,
460 u8 *value)
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700461{
Prarit Bhargava1d2450a2005-08-12 10:13:34 -0400462 struct slot *slot = bss_hotplug_slot->private;
463 struct pcibus_info *pcibus_info;
Mike Habeck466ee362006-05-06 09:01:59 -0500464 u32 power;
Prarit Bhargava1d2450a2005-08-12 10:13:34 -0400465
466 pcibus_info = SN_PCIBUS_BUSSOFT_INFO(slot->pci_bus);
Ingo Molnar14cc3e22006-03-26 01:37:14 -0800467 mutex_lock(&sn_hotplug_mutex);
Mike Habeck466ee362006-05-06 09:01:59 -0500468 power = pcibus_info->pbi_enabled_devices & (1 << slot->device_num);
469 *value = power ? 1 : 0;
Ingo Molnar14cc3e22006-03-26 01:37:14 -0800470 mutex_unlock(&sn_hotplug_mutex);
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700471 return 0;
472}
473
474static void sn_release_slot(struct hotplug_slot *bss_hotplug_slot)
475{
476 kfree(bss_hotplug_slot->info);
477 kfree(bss_hotplug_slot->name);
478 kfree(bss_hotplug_slot->private);
479 kfree(bss_hotplug_slot);
480}
481
482static int sn_hotplug_slot_register(struct pci_bus *pci_bus)
483{
484 int device;
485 struct hotplug_slot *bss_hotplug_slot;
486 int rc = 0;
487
488 /*
489 * Currently only four devices are supported,
490 * in the future there maybe more -- up to 32.
491 */
492
493 for (device = 0; device < SN_MAX_HP_SLOTS ; device++) {
494 if (sn_pci_slot_valid(pci_bus, device) != 1)
495 continue;
496
Pekka Enberg656da9d2005-09-22 00:48:11 -0700497 bss_hotplug_slot = kzalloc(sizeof(*bss_hotplug_slot),
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700498 GFP_KERNEL);
499 if (!bss_hotplug_slot) {
500 rc = -ENOMEM;
501 goto alloc_err;
502 }
503
504 bss_hotplug_slot->info =
Pekka Enberg656da9d2005-09-22 00:48:11 -0700505 kzalloc(sizeof(struct hotplug_slot_info),
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700506 GFP_KERNEL);
507 if (!bss_hotplug_slot->info) {
508 rc = -ENOMEM;
509 goto alloc_err;
510 }
511
512 if (sn_hp_slot_private_alloc(bss_hotplug_slot,
513 pci_bus, device)) {
514 rc = -ENOMEM;
515 goto alloc_err;
516 }
517
518 bss_hotplug_slot->ops = &sn_hotplug_slot_ops;
519 bss_hotplug_slot->release = &sn_release_slot;
520
521 rc = pci_hp_register(bss_hotplug_slot);
522 if (rc)
523 goto register_err;
Prarit Bhargava1d2450a2005-08-12 10:13:34 -0400524
525 rc = sysfs_create_file(&bss_hotplug_slot->kobj,
526 &sn_slot_path_attr.attr);
527 if (rc)
528 goto register_err;
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700529 }
530 dev_dbg(pci_bus->self, "Registered bus with hotplug\n");
531 return rc;
532
533register_err:
534 dev_dbg(pci_bus->self, "bus failed to register with err = %d\n",
535 rc);
536
537alloc_err:
538 if (rc == -ENOMEM)
539 dev_dbg(pci_bus->self, "Memory allocation error\n");
540
541 /* destroy THIS element */
542 if (bss_hotplug_slot)
543 sn_release_slot(bss_hotplug_slot);
544
545 /* destroy anything else on the list */
546 while ((bss_hotplug_slot = sn_hp_destroy()))
547 pci_hp_deregister(bss_hotplug_slot);
548
549 return rc;
550}
551
552static int sn_pci_hotplug_init(void)
553{
554 struct pci_bus *pci_bus = NULL;
555 int rc;
556 int registered = 0;
557
Prarit Bhargavae55dea52006-04-04 09:26:46 -0400558 if (!sn_prom_feature_available(PRF_HOTPLUG_SUPPORT)) {
559 printk(KERN_ERR "%s: PROM version does not support hotplug.\n",
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700560 __FUNCTION__);
561 return -EPERM;
562 }
563
Prarit Bhargava1d2450a2005-08-12 10:13:34 -0400564 INIT_LIST_HEAD(&sn_hp_list);
565
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700566 while ((pci_bus = pci_find_next_bus(pci_bus))) {
567 if (!pci_bus->sysdata)
568 continue;
569
570 rc = sn_pci_bus_valid(pci_bus);
571 if (rc != 1) {
572 dev_dbg(pci_bus->self, "not a valid hotplug bus\n");
573 continue;
574 }
575 dev_dbg(pci_bus->self, "valid hotplug bus\n");
576
577 rc = sn_hotplug_slot_register(pci_bus);
Prarit Bhargava1d2450a2005-08-12 10:13:34 -0400578 if (!rc) {
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700579 registered = 1;
Prarit Bhargava1d2450a2005-08-12 10:13:34 -0400580 } else {
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700581 registered = 0;
582 break;
583 }
584 }
585
586 return registered == 1 ? 0 : -ENODEV;
587}
588
589static void sn_pci_hotplug_exit(void)
590{
591 struct hotplug_slot *bss_hotplug_slot;
592
Prarit Bhargava1d2450a2005-08-12 10:13:34 -0400593 while ((bss_hotplug_slot = sn_hp_destroy()))
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700594 pci_hp_deregister(bss_hotplug_slot);
Prarit Bhargava6f354b02005-07-06 15:29:53 -0700595
596 if (!list_empty(&sn_hp_list))
597 printk(KERN_ERR "%s: internal list is not empty\n", __FILE__);
598}
599
600module_init(sn_pci_hotplug_init);
601module_exit(sn_pci_hotplug_exit);