blob: 935947991dc98649dfaa8794fb55604ee12cb895 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * CompactPCI Hot Plug Driver
3 *
Scott Murraybcc488a2005-05-27 16:48:52 -04004 * Copyright (C) 2002,2005 SOMA Networks, Inc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Copyright (C) 2001 Greg Kroah-Hartman (greg@kroah.com)
6 * Copyright (C) 2001 IBM Corp.
7 *
8 * All rights reserved.
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or (at
13 * your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
18 * NON INFRINGEMENT. See the GNU General Public License for more
19 * details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 *
25 * Send feedback to <scottm@somanetworks.com>
26 */
27
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/module.h>
29#include <linux/kernel.h>
30#include <linux/slab.h>
31#include <linux/pci.h>
Greg Kroah-Hartman7a54f252006-10-13 20:05:19 -070032#include <linux/pci_hotplug.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/init.h>
34#include <linux/interrupt.h>
35#include <linux/smp_lock.h>
Scott Murray43b7d7c2005-05-09 17:31:50 -040036#include <asm/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <linux/delay.h>
Scott Murray0bec2c82007-07-09 11:55:57 -070038#include <linux/kthread.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include "cpci_hotplug.h"
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#define DRIVER_AUTHOR "Scott Murray <scottm@somanetworks.com>"
42#define DRIVER_DESC "CompactPCI Hot Plug Core"
43
44#define MY_NAME "cpci_hotplug"
45
46#define dbg(format, arg...) \
47 do { \
Scott Murraybcc488a2005-05-27 16:48:52 -040048 if (cpci_debug) \
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 printk (KERN_DEBUG "%s: " format "\n", \
50 MY_NAME , ## arg); \
Scott Murraybcc488a2005-05-27 16:48:52 -040051 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#define err(format, arg...) printk(KERN_ERR "%s: " format "\n", MY_NAME , ## arg)
53#define info(format, arg...) printk(KERN_INFO "%s: " format "\n", MY_NAME , ## arg)
54#define warn(format, arg...) printk(KERN_WARNING "%s: " format "\n", MY_NAME , ## arg)
55
56/* local variables */
Scott Murray43b7d7c2005-05-09 17:31:50 -040057static DECLARE_RWSEM(list_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058static LIST_HEAD(slot_list);
59static int slots;
Scott Murray43b7d7c2005-05-09 17:31:50 -040060static atomic_t extracting;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061int cpci_debug;
62static struct cpci_hp_controller *controller;
Scott Murray0bec2c82007-07-09 11:55:57 -070063static struct task_struct *cpci_thread;
64static int thread_finished;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
66static int enable_slot(struct hotplug_slot *slot);
67static int disable_slot(struct hotplug_slot *slot);
68static int set_attention_status(struct hotplug_slot *slot, u8 value);
69static int get_power_status(struct hotplug_slot *slot, u8 * value);
70static int get_attention_status(struct hotplug_slot *slot, u8 * value);
Scott Murray43b7d7c2005-05-09 17:31:50 -040071static int get_adapter_status(struct hotplug_slot *slot, u8 * value);
72static int get_latch_status(struct hotplug_slot *slot, u8 * value);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74static struct hotplug_slot_ops cpci_hotplug_slot_ops = {
75 .owner = THIS_MODULE,
76 .enable_slot = enable_slot,
77 .disable_slot = disable_slot,
78 .set_attention_status = set_attention_status,
79 .get_power_status = get_power_status,
80 .get_attention_status = get_attention_status,
Scott Murray43b7d7c2005-05-09 17:31:50 -040081 .get_adapter_status = get_adapter_status,
82 .get_latch_status = get_latch_status,
Linus Torvalds1da177e2005-04-16 15:20:36 -070083};
84
85static int
86update_latch_status(struct hotplug_slot *hotplug_slot, u8 value)
87{
88 struct hotplug_slot_info info;
89
90 memcpy(&info, hotplug_slot->info, sizeof(struct hotplug_slot_info));
91 info.latch_status = value;
92 return pci_hp_change_slot_info(hotplug_slot, &info);
93}
94
95static int
96update_adapter_status(struct hotplug_slot *hotplug_slot, u8 value)
97{
98 struct hotplug_slot_info info;
99
100 memcpy(&info, hotplug_slot->info, sizeof(struct hotplug_slot_info));
101 info.adapter_status = value;
102 return pci_hp_change_slot_info(hotplug_slot, &info);
103}
104
105static int
106enable_slot(struct hotplug_slot *hotplug_slot)
107{
108 struct slot *slot = hotplug_slot->private;
109 int retval = 0;
110
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800111 dbg("%s - physical_slot = %s", __func__, hotplug_slot->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
Scott Murraybcc488a2005-05-27 16:48:52 -0400113 if (controller->ops->set_power)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 retval = controller->ops->set_power(slot, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 return retval;
116}
117
118static int
119disable_slot(struct hotplug_slot *hotplug_slot)
120{
121 struct slot *slot = hotplug_slot->private;
122 int retval = 0;
123
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800124 dbg("%s - physical_slot = %s", __func__, hotplug_slot->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Scott Murraybcc488a2005-05-27 16:48:52 -0400126 down_write(&list_rwsem);
127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 /* Unconfigure device */
129 dbg("%s - unconfiguring slot %s",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800130 __func__, slot->hotplug_slot->name);
Scott Murraybcc488a2005-05-27 16:48:52 -0400131 if ((retval = cpci_unconfigure_slot(slot))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 err("%s - could not unconfigure slot %s",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800133 __func__, slot->hotplug_slot->name);
Scott Murraybcc488a2005-05-27 16:48:52 -0400134 goto disable_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 }
136 dbg("%s - finished unconfiguring slot %s",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800137 __func__, slot->hotplug_slot->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
139 /* Clear EXT (by setting it) */
Scott Murraybcc488a2005-05-27 16:48:52 -0400140 if (cpci_clear_ext(slot)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 err("%s - could not clear EXT for slot %s",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800142 __func__, slot->hotplug_slot->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 retval = -ENODEV;
Scott Murraybcc488a2005-05-27 16:48:52 -0400144 goto disable_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 }
146 cpci_led_on(slot);
147
Scott Murraybcc488a2005-05-27 16:48:52 -0400148 if (controller->ops->set_power)
149 if ((retval = controller->ops->set_power(slot, 0)))
150 goto disable_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Scott Murraybcc488a2005-05-27 16:48:52 -0400152 if (update_adapter_status(slot->hotplug_slot, 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 warn("failure to update adapter file");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Scott Murraybcc488a2005-05-27 16:48:52 -0400155 if (slot->extracting) {
Scott Murray43b7d7c2005-05-09 17:31:50 -0400156 slot->extracting = 0;
157 atomic_dec(&extracting);
158 }
Scott Murraybcc488a2005-05-27 16:48:52 -0400159disable_error:
160 up_write(&list_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 return retval;
162}
163
164static u8
165cpci_get_power_status(struct slot *slot)
166{
167 u8 power = 1;
168
Scott Murraybcc488a2005-05-27 16:48:52 -0400169 if (controller->ops->get_power)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 power = controller->ops->get_power(slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 return power;
172}
173
174static int
175get_power_status(struct hotplug_slot *hotplug_slot, u8 * value)
176{
177 struct slot *slot = hotplug_slot->private;
178
179 *value = cpci_get_power_status(slot);
180 return 0;
181}
182
183static int
184get_attention_status(struct hotplug_slot *hotplug_slot, u8 * value)
185{
186 struct slot *slot = hotplug_slot->private;
187
188 *value = cpci_get_attention_status(slot);
189 return 0;
190}
191
192static int
193set_attention_status(struct hotplug_slot *hotplug_slot, u8 status)
194{
195 return cpci_set_attention_status(hotplug_slot->private, status);
196}
197
Scott Murray43b7d7c2005-05-09 17:31:50 -0400198static int
199get_adapter_status(struct hotplug_slot *hotplug_slot, u8 * value)
200{
201 *value = hotplug_slot->info->adapter_status;
202 return 0;
203}
204
205static int
206get_latch_status(struct hotplug_slot *hotplug_slot, u8 * value)
207{
208 *value = hotplug_slot->info->latch_status;
209 return 0;
210}
211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212static void release_slot(struct hotplug_slot *hotplug_slot)
213{
214 struct slot *slot = hotplug_slot->private;
215
216 kfree(slot->hotplug_slot->info);
217 kfree(slot->hotplug_slot->name);
218 kfree(slot->hotplug_slot);
Scott Murray03e49d42005-06-06 15:48:04 -0400219 if (slot->dev)
220 pci_dev_put(slot->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 kfree(slot);
222}
223
224#define SLOT_NAME_SIZE 6
225static void
226make_slot_name(struct slot *slot)
227{
228 snprintf(slot->hotplug_slot->name,
229 SLOT_NAME_SIZE, "%02x:%02x", slot->bus->number, slot->number);
230}
231
232int
233cpci_hp_register_bus(struct pci_bus *bus, u8 first, u8 last)
234{
235 struct slot *slot;
236 struct hotplug_slot *hotplug_slot;
237 struct hotplug_slot_info *info;
238 char *name;
239 int status = -ENOMEM;
240 int i;
241
Scott Murraybcc488a2005-05-27 16:48:52 -0400242 if (!(controller && bus))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
245 /*
246 * Create a structure for each slot, and register that slot
247 * with the pci_hotplug subsystem.
248 */
249 for (i = first; i <= last; ++i) {
Eric Sesterhennf5afe802006-02-28 15:34:49 +0100250 slot = kzalloc(sizeof (struct slot), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 if (!slot)
252 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
254 hotplug_slot =
Eric Sesterhennf5afe802006-02-28 15:34:49 +0100255 kzalloc(sizeof (struct hotplug_slot), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 if (!hotplug_slot)
257 goto error_slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 slot->hotplug_slot = hotplug_slot;
259
Eric Sesterhennf5afe802006-02-28 15:34:49 +0100260 info = kzalloc(sizeof (struct hotplug_slot_info), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 if (!info)
262 goto error_hpslot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 hotplug_slot->info = info;
264
265 name = kmalloc(SLOT_NAME_SIZE, GFP_KERNEL);
266 if (!name)
267 goto error_info;
268 hotplug_slot->name = name;
269
270 slot->bus = bus;
271 slot->number = i;
272 slot->devfn = PCI_DEVFN(i, 0);
273
274 hotplug_slot->private = slot;
275 hotplug_slot->release = &release_slot;
276 make_slot_name(slot);
277 hotplug_slot->ops = &cpci_hotplug_slot_ops;
278
279 /*
280 * Initialize the slot info structure with some known
281 * good values.
282 */
283 dbg("initializing slot %s", slot->hotplug_slot->name);
284 info->power_status = cpci_get_power_status(slot);
285 info->attention_status = cpci_get_attention_status(slot);
286
287 dbg("registering slot %s", slot->hotplug_slot->name);
Alex Chiangf46753c2008-06-10 15:28:50 -0600288 status = pci_hp_register(slot->hotplug_slot, bus, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 if (status) {
290 err("pci_hp_register failed with error %d", status);
291 goto error_name;
292 }
293
294 /* Add slot to our internal list */
Scott Murray43b7d7c2005-05-09 17:31:50 -0400295 down_write(&list_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 list_add(&slot->slot_list, &slot_list);
297 slots++;
Scott Murray43b7d7c2005-05-09 17:31:50 -0400298 up_write(&list_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 }
300 return 0;
301error_name:
302 kfree(name);
303error_info:
304 kfree(info);
305error_hpslot:
306 kfree(hotplug_slot);
307error_slot:
308 kfree(slot);
309error:
310 return status;
311}
312
313int
314cpci_hp_unregister_bus(struct pci_bus *bus)
315{
316 struct slot *slot;
Scott Murraybcc488a2005-05-27 16:48:52 -0400317 struct slot *tmp;
318 int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Scott Murray43b7d7c2005-05-09 17:31:50 -0400320 down_write(&list_rwsem);
Scott Murraybcc488a2005-05-27 16:48:52 -0400321 if (!slots) {
Scott Murray43b7d7c2005-05-09 17:31:50 -0400322 up_write(&list_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 return -1;
324 }
Scott Murraybcc488a2005-05-27 16:48:52 -0400325 list_for_each_entry_safe(slot, tmp, &slot_list, slot_list) {
326 if (slot->bus == bus) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 list_del(&slot->slot_list);
328 slots--;
Scott Murraybcc488a2005-05-27 16:48:52 -0400329
330 dbg("deregistering slot %s", slot->hotplug_slot->name);
331 status = pci_hp_deregister(slot->hotplug_slot);
332 if (status) {
333 err("pci_hp_deregister failed with error %d",
334 status);
335 break;
336 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 }
338 }
Scott Murray43b7d7c2005-05-09 17:31:50 -0400339 up_write(&list_rwsem);
Scott Murraybcc488a2005-05-27 16:48:52 -0400340 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341}
342
343/* This is the interrupt mode interrupt handler */
344static irqreturn_t
David Howells7d12e782006-10-05 14:55:46 +0100345cpci_hp_intr(int irq, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346{
347 dbg("entered cpci_hp_intr");
348
349 /* Check to see if it was our interrupt */
Thomas Gleixner6b4486e2006-07-01 19:29:41 -0700350 if ((controller->irq_flags & IRQF_SHARED) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 !controller->ops->check_irq(controller->dev_id)) {
352 dbg("exited cpci_hp_intr, not our interrupt");
353 return IRQ_NONE;
354 }
355
356 /* Disable ENUM interrupt */
357 controller->ops->disable_irq();
358
359 /* Trigger processing by the event thread */
Scott Murray0bec2c82007-07-09 11:55:57 -0700360 wake_up_process(cpci_thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 return IRQ_HANDLED;
362}
363
364/*
Scott Murray43b7d7c2005-05-09 17:31:50 -0400365 * According to PICMG 2.1 R2.0, section 6.3.2, upon
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 * initialization, the system driver shall clear the
367 * INS bits of the cold-inserted devices.
368 */
369static int
Scott Murraybcc488a2005-05-27 16:48:52 -0400370init_slots(int clear_ins)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371{
372 struct slot *slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 struct pci_dev* dev;
374
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800375 dbg("%s - enter", __func__);
Scott Murray43b7d7c2005-05-09 17:31:50 -0400376 down_read(&list_rwsem);
Scott Murraybcc488a2005-05-27 16:48:52 -0400377 if (!slots) {
Scott Murray43b7d7c2005-05-09 17:31:50 -0400378 up_read(&list_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 return -1;
380 }
Scott Murraybcc488a2005-05-27 16:48:52 -0400381 list_for_each_entry(slot, &slot_list, slot_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 dbg("%s - looking at slot %s",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800383 __func__, slot->hotplug_slot->name);
Scott Murraybcc488a2005-05-27 16:48:52 -0400384 if (clear_ins && cpci_check_and_clear_ins(slot))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 dbg("%s - cleared INS for slot %s",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800386 __func__, slot->hotplug_slot->name);
Scott Murraybcc488a2005-05-27 16:48:52 -0400387 dev = pci_get_slot(slot->bus, PCI_DEVFN(slot->number, 0));
388 if (dev) {
389 if (update_adapter_status(slot->hotplug_slot, 1))
390 warn("failure to update adapter file");
391 if (update_latch_status(slot->hotplug_slot, 1))
392 warn("failure to update latch file");
393 slot->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 }
395 }
Scott Murray43b7d7c2005-05-09 17:31:50 -0400396 up_read(&list_rwsem);
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800397 dbg("%s - exit", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 return 0;
399}
400
401static int
402check_slots(void)
403{
404 struct slot *slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 int extracted;
406 int inserted;
Scott Murray43b7d7c2005-05-09 17:31:50 -0400407 u16 hs_csr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Scott Murray43b7d7c2005-05-09 17:31:50 -0400409 down_read(&list_rwsem);
Scott Murraybcc488a2005-05-27 16:48:52 -0400410 if (!slots) {
Scott Murray43b7d7c2005-05-09 17:31:50 -0400411 up_read(&list_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 err("no slots registered, shutting down");
413 return -1;
414 }
415 extracted = inserted = 0;
Scott Murraybcc488a2005-05-27 16:48:52 -0400416 list_for_each_entry(slot, &slot_list, slot_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 dbg("%s - looking at slot %s",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800418 __func__, slot->hotplug_slot->name);
Scott Murraybcc488a2005-05-27 16:48:52 -0400419 if (cpci_check_and_clear_ins(slot)) {
420 /*
421 * Some broken hardware (e.g. PLX 9054AB) asserts
422 * ENUM# twice...
423 */
424 if (slot->dev) {
425 warn("slot %s already inserted",
426 slot->hotplug_slot->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 inserted++;
428 continue;
429 }
430
431 /* Process insertion */
432 dbg("%s - slot %s inserted",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800433 __func__, slot->hotplug_slot->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
435 /* GSM, debug */
436 hs_csr = cpci_get_hs_csr(slot);
437 dbg("%s - slot %s HS_CSR (1) = %04x",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800438 __func__, slot->hotplug_slot->name, hs_csr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
440 /* Configure device */
441 dbg("%s - configuring slot %s",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800442 __func__, slot->hotplug_slot->name);
Scott Murraybcc488a2005-05-27 16:48:52 -0400443 if (cpci_configure_slot(slot)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 err("%s - could not configure slot %s",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800445 __func__, slot->hotplug_slot->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 continue;
447 }
448 dbg("%s - finished configuring slot %s",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800449 __func__, slot->hotplug_slot->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
451 /* GSM, debug */
452 hs_csr = cpci_get_hs_csr(slot);
453 dbg("%s - slot %s HS_CSR (2) = %04x",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800454 __func__, slot->hotplug_slot->name, hs_csr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Scott Murraybcc488a2005-05-27 16:48:52 -0400456 if (update_latch_status(slot->hotplug_slot, 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 warn("failure to update latch file");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
Scott Murraybcc488a2005-05-27 16:48:52 -0400459 if (update_adapter_status(slot->hotplug_slot, 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 warn("failure to update adapter file");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
462 cpci_led_off(slot);
463
464 /* GSM, debug */
465 hs_csr = cpci_get_hs_csr(slot);
466 dbg("%s - slot %s HS_CSR (3) = %04x",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800467 __func__, slot->hotplug_slot->name, hs_csr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
469 inserted++;
Scott Murraybcc488a2005-05-27 16:48:52 -0400470 } else if (cpci_check_ext(slot)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 /* Process extraction request */
472 dbg("%s - slot %s extracted",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800473 __func__, slot->hotplug_slot->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
475 /* GSM, debug */
476 hs_csr = cpci_get_hs_csr(slot);
477 dbg("%s - slot %s HS_CSR = %04x",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800478 __func__, slot->hotplug_slot->name, hs_csr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Scott Murraybcc488a2005-05-27 16:48:52 -0400480 if (!slot->extracting) {
481 if (update_latch_status(slot->hotplug_slot, 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 warn("failure to update latch file");
483 }
484 slot->extracting = 1;
Scott Murraybcc488a2005-05-27 16:48:52 -0400485 atomic_inc(&extracting);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 }
487 extracted++;
Scott Murraybcc488a2005-05-27 16:48:52 -0400488 } else if (slot->extracting) {
Scott Murray43b7d7c2005-05-09 17:31:50 -0400489 hs_csr = cpci_get_hs_csr(slot);
Scott Murraybcc488a2005-05-27 16:48:52 -0400490 if (hs_csr == 0xffff) {
Scott Murray43b7d7c2005-05-09 17:31:50 -0400491 /*
492 * Hmmm, we're likely hosed at this point, should we
493 * bother trying to tell the driver or not?
494 */
495 err("card in slot %s was improperly removed",
496 slot->hotplug_slot->name);
Scott Murraybcc488a2005-05-27 16:48:52 -0400497 if (update_adapter_status(slot->hotplug_slot, 0))
Scott Murray43b7d7c2005-05-09 17:31:50 -0400498 warn("failure to update adapter file");
Scott Murray43b7d7c2005-05-09 17:31:50 -0400499 slot->extracting = 0;
500 atomic_dec(&extracting);
501 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 }
503 }
Scott Murray43b7d7c2005-05-09 17:31:50 -0400504 up_read(&list_rwsem);
505 dbg("inserted=%d, extracted=%d, extracting=%d",
506 inserted, extracted, atomic_read(&extracting));
Scott Murraybcc488a2005-05-27 16:48:52 -0400507 if (inserted || extracted)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 return extracted;
Scott Murraybcc488a2005-05-27 16:48:52 -0400509 else if (!atomic_read(&extracting)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 err("cannot find ENUM# source, shutting down");
511 return -1;
512 }
Scott Murray43b7d7c2005-05-09 17:31:50 -0400513 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514}
515
516/* This is the interrupt mode worker thread body */
517static int
518event_thread(void *data)
519{
520 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800522 dbg("%s - event thread started", __func__);
Scott Murraybcc488a2005-05-27 16:48:52 -0400523 while (1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 dbg("event thread sleeping");
Scott Murray0bec2c82007-07-09 11:55:57 -0700525 set_current_state(TASK_INTERRUPTIBLE);
526 schedule();
527 if (kthread_should_stop())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 break;
Scott Murray43b7d7c2005-05-09 17:31:50 -0400529 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 rc = check_slots();
Scott Murray43b7d7c2005-05-09 17:31:50 -0400531 if (rc > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 /* Give userspace a chance to handle extraction */
533 msleep(500);
Scott Murray43b7d7c2005-05-09 17:31:50 -0400534 } else if (rc < 0) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800535 dbg("%s - error checking slots", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 thread_finished = 1;
Scott Murray0bec2c82007-07-09 11:55:57 -0700537 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 }
Scott Murray0bec2c82007-07-09 11:55:57 -0700539 } while (atomic_read(&extracting) && !kthread_should_stop());
540 if (kthread_should_stop())
Scott Murraybcc488a2005-05-27 16:48:52 -0400541 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
543 /* Re-enable ENUM# interrupt */
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800544 dbg("%s - re-enabling irq", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 controller->ops->enable_irq();
546 }
Scott Murray0bec2c82007-07-09 11:55:57 -0700547 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 return 0;
549}
550
551/* This is the polling mode worker thread body */
552static int
553poll_thread(void *data)
554{
555 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
Scott Murraybcc488a2005-05-27 16:48:52 -0400557 while (1) {
Scott Murray0bec2c82007-07-09 11:55:57 -0700558 if (kthread_should_stop() || signal_pending(current))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 break;
Scott Murraybcc488a2005-05-27 16:48:52 -0400560 if (controller->ops->query_enum()) {
Scott Murray43b7d7c2005-05-09 17:31:50 -0400561 do {
562 rc = check_slots();
Scott Murraybcc488a2005-05-27 16:48:52 -0400563 if (rc > 0) {
Scott Murray43b7d7c2005-05-09 17:31:50 -0400564 /* Give userspace a chance to handle extraction */
565 msleep(500);
Scott Murraybcc488a2005-05-27 16:48:52 -0400566 } else if (rc < 0) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800567 dbg("%s - error checking slots", __func__);
Scott Murray43b7d7c2005-05-09 17:31:50 -0400568 thread_finished = 1;
Scott Murray0bec2c82007-07-09 11:55:57 -0700569 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 }
Scott Murray0bec2c82007-07-09 11:55:57 -0700571 } while (atomic_read(&extracting) && !kthread_should_stop());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 msleep(100);
574 }
Scott Murray0bec2c82007-07-09 11:55:57 -0700575 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 return 0;
577}
578
579static int
580cpci_start_thread(void)
581{
Scott Murraybcc488a2005-05-27 16:48:52 -0400582 if (controller->irq)
Scott Murray0bec2c82007-07-09 11:55:57 -0700583 cpci_thread = kthread_run(event_thread, NULL, "cpci_hp_eventd");
Scott Murraybcc488a2005-05-27 16:48:52 -0400584 else
Scott Murray0bec2c82007-07-09 11:55:57 -0700585 cpci_thread = kthread_run(poll_thread, NULL, "cpci_hp_polld");
586 if (IS_ERR(cpci_thread)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 err("Can't start up our thread");
Scott Murray0bec2c82007-07-09 11:55:57 -0700588 return PTR_ERR(cpci_thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 }
Scott Murray0bec2c82007-07-09 11:55:57 -0700590 thread_finished = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 return 0;
592}
593
594static void
595cpci_stop_thread(void)
596{
Scott Murray0bec2c82007-07-09 11:55:57 -0700597 kthread_stop(cpci_thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 thread_finished = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599}
600
601int
602cpci_hp_register_controller(struct cpci_hp_controller *new_controller)
603{
604 int status = 0;
605
Scott Murraybcc488a2005-05-27 16:48:52 -0400606 if (controller)
607 return -1;
608 if (!(new_controller && new_controller->ops))
609 return -EINVAL;
610 if (new_controller->irq) {
611 if (!(new_controller->ops->enable_irq &&
612 new_controller->ops->disable_irq))
613 status = -EINVAL;
614 if (request_irq(new_controller->irq,
615 cpci_hp_intr,
616 new_controller->irq_flags,
617 MY_NAME,
618 new_controller->dev_id)) {
619 err("Can't get irq %d for the hotplug cPCI controller",
620 new_controller->irq);
621 status = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 }
Scott Murraybcc488a2005-05-27 16:48:52 -0400623 dbg("%s - acquired controller irq %d",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800624 __func__, new_controller->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 }
Scott Murraybcc488a2005-05-27 16:48:52 -0400626 if (!status)
627 controller = new_controller;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 return status;
629}
630
Scott Murraybcc488a2005-05-27 16:48:52 -0400631static void
632cleanup_slots(void)
633{
634 struct slot *slot;
635 struct slot *tmp;
636
637 /*
638 * Unregister all of our slots with the pci_hotplug subsystem,
639 * and free up all memory that we had allocated.
640 */
641 down_write(&list_rwsem);
642 if (!slots)
643 goto cleanup_null;
644 list_for_each_entry_safe(slot, tmp, &slot_list, slot_list) {
645 list_del(&slot->slot_list);
646 pci_hp_deregister(slot->hotplug_slot);
647 }
648cleanup_null:
649 up_write(&list_rwsem);
650 return;
651}
652
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653int
654cpci_hp_unregister_controller(struct cpci_hp_controller *old_controller)
655{
656 int status = 0;
657
Scott Murraybcc488a2005-05-27 16:48:52 -0400658 if (controller) {
659 if (!thread_finished)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 cpci_stop_thread();
Scott Murraybcc488a2005-05-27 16:48:52 -0400661 if (controller->irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 free_irq(controller->irq, controller->dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 controller = NULL;
Scott Murraybcc488a2005-05-27 16:48:52 -0400664 cleanup_slots();
665 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 status = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 return status;
668}
669
670int
671cpci_hp_start(void)
672{
673 static int first = 1;
674 int status;
675
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800676 dbg("%s - enter", __func__);
Scott Murraybcc488a2005-05-27 16:48:52 -0400677 if (!controller)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
Scott Murray43b7d7c2005-05-09 17:31:50 -0400680 down_read(&list_rwsem);
Scott Murraybcc488a2005-05-27 16:48:52 -0400681 if (list_empty(&slot_list)) {
Scott Murray43b7d7c2005-05-09 17:31:50 -0400682 up_read(&list_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 return -ENODEV;
684 }
Scott Murray43b7d7c2005-05-09 17:31:50 -0400685 up_read(&list_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
Scott Murraybcc488a2005-05-27 16:48:52 -0400687 status = init_slots(first);
688 if (first)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 first = 0;
Scott Murraybcc488a2005-05-27 16:48:52 -0400690 if (status)
691 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
693 status = cpci_start_thread();
Scott Murraybcc488a2005-05-27 16:48:52 -0400694 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 return status;
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800696 dbg("%s - thread started", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
Scott Murraybcc488a2005-05-27 16:48:52 -0400698 if (controller->irq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 /* Start enum interrupt processing */
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800700 dbg("%s - enabling irq", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 controller->ops->enable_irq();
702 }
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800703 dbg("%s - exit", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 return 0;
705}
706
707int
708cpci_hp_stop(void)
709{
Scott Murraybcc488a2005-05-27 16:48:52 -0400710 if (!controller)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 return -ENODEV;
Scott Murraybcc488a2005-05-27 16:48:52 -0400712 if (controller->irq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 /* Stop enum interrupt processing */
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800714 dbg("%s - disabling irq", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 controller->ops->disable_irq();
716 }
717 cpci_stop_thread();
718 return 0;
719}
720
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721int __init
722cpci_hotplug_init(int debug)
723{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 cpci_debug = debug;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 return 0;
726}
727
728void __exit
729cpci_hotplug_exit(void)
730{
731 /*
732 * Clean everything up.
733 */
Scott Murraybcc488a2005-05-27 16:48:52 -0400734 cpci_hp_stop();
735 cpci_hp_unregister_controller(controller);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736}
737
738EXPORT_SYMBOL_GPL(cpci_hp_register_controller);
739EXPORT_SYMBOL_GPL(cpci_hp_unregister_controller);
740EXPORT_SYMBOL_GPL(cpci_hp_register_bus);
741EXPORT_SYMBOL_GPL(cpci_hp_unregister_bus);
742EXPORT_SYMBOL_GPL(cpci_hp_start);
743EXPORT_SYMBOL_GPL(cpci_hp_stop);