2 * CompactPCI Hot Plug Driver
4 * Copyright (C) 2002,2005 SOMA Networks, Inc.
5 * Copyright (C) 2001 Greg Kroah-Hartman (greg@kroah.com)
6 * Copyright (C) 2001 IBM Corp.
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.
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
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.
25 * Send feedback to <scottm@somanetworks.com>
28 #include <linux/module.h>
29 #include <linux/kernel.h>
30 #include <linux/slab.h>
31 #include <linux/pci.h>
32 #include <linux/pci_hotplug.h>
33 #include <linux/init.h>
34 #include <linux/interrupt.h>
35 #include <linux/smp_lock.h>
36 #include <asm/atomic.h>
37 #include <linux/delay.h>
38 #include "cpci_hotplug.h"
40 #define DRIVER_AUTHOR "Scott Murray <scottm@somanetworks.com>"
41 #define DRIVER_DESC "CompactPCI Hot Plug Core"
43 #define MY_NAME "cpci_hotplug"
45 #define dbg(format, arg...) \
48 printk (KERN_DEBUG "%s: " format "\n", \
51 #define err(format, arg...) printk(KERN_ERR "%s: " format "\n", MY_NAME , ## arg)
52 #define info(format, arg...) printk(KERN_INFO "%s: " format "\n", MY_NAME , ## arg)
53 #define warn(format, arg...) printk(KERN_WARNING "%s: " format "\n", MY_NAME , ## arg)
56 static DECLARE_RWSEM(list_rwsem);
57 static LIST_HEAD(slot_list);
59 static atomic_t extracting;
61 static struct cpci_hp_controller *controller;
62 static struct semaphore event_semaphore; /* mutex for process loop (up if something to process) */
63 static struct semaphore thread_exit; /* guard ensure thread has exited before calling it quits */
64 static int thread_finished = 1;
66 static int enable_slot(struct hotplug_slot *slot);
67 static int disable_slot(struct hotplug_slot *slot);
68 static int set_attention_status(struct hotplug_slot *slot, u8 value);
69 static int get_power_status(struct hotplug_slot *slot, u8 * value);
70 static int get_attention_status(struct hotplug_slot *slot, u8 * value);
71 static int get_adapter_status(struct hotplug_slot *slot, u8 * value);
72 static int get_latch_status(struct hotplug_slot *slot, u8 * value);
74 static struct hotplug_slot_ops cpci_hotplug_slot_ops = {
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,
81 .get_adapter_status = get_adapter_status,
82 .get_latch_status = get_latch_status,
86 update_latch_status(struct hotplug_slot *hotplug_slot, u8 value)
88 struct hotplug_slot_info info;
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);
96 update_adapter_status(struct hotplug_slot *hotplug_slot, u8 value)
98 struct hotplug_slot_info info;
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);
106 enable_slot(struct hotplug_slot *hotplug_slot)
108 struct slot *slot = hotplug_slot->private;
111 dbg("%s - physical_slot = %s", __FUNCTION__, hotplug_slot->name);
113 if (controller->ops->set_power)
114 retval = controller->ops->set_power(slot, 1);
119 disable_slot(struct hotplug_slot *hotplug_slot)
121 struct slot *slot = hotplug_slot->private;
124 dbg("%s - physical_slot = %s", __FUNCTION__, hotplug_slot->name);
126 down_write(&list_rwsem);
128 /* Unconfigure device */
129 dbg("%s - unconfiguring slot %s",
130 __FUNCTION__, slot->hotplug_slot->name);
131 if ((retval = cpci_unconfigure_slot(slot))) {
132 err("%s - could not unconfigure slot %s",
133 __FUNCTION__, slot->hotplug_slot->name);
136 dbg("%s - finished unconfiguring slot %s",
137 __FUNCTION__, slot->hotplug_slot->name);
139 /* Clear EXT (by setting it) */
140 if (cpci_clear_ext(slot)) {
141 err("%s - could not clear EXT for slot %s",
142 __FUNCTION__, slot->hotplug_slot->name);
148 if (controller->ops->set_power)
149 if ((retval = controller->ops->set_power(slot, 0)))
152 if (update_adapter_status(slot->hotplug_slot, 0))
153 warn("failure to update adapter file");
155 if (slot->extracting) {
156 slot->extracting = 0;
157 atomic_dec(&extracting);
160 up_write(&list_rwsem);
165 cpci_get_power_status(struct slot *slot)
169 if (controller->ops->get_power)
170 power = controller->ops->get_power(slot);
175 get_power_status(struct hotplug_slot *hotplug_slot, u8 * value)
177 struct slot *slot = hotplug_slot->private;
179 *value = cpci_get_power_status(slot);
184 get_attention_status(struct hotplug_slot *hotplug_slot, u8 * value)
186 struct slot *slot = hotplug_slot->private;
188 *value = cpci_get_attention_status(slot);
193 set_attention_status(struct hotplug_slot *hotplug_slot, u8 status)
195 return cpci_set_attention_status(hotplug_slot->private, status);
199 get_adapter_status(struct hotplug_slot *hotplug_slot, u8 * value)
201 *value = hotplug_slot->info->adapter_status;
206 get_latch_status(struct hotplug_slot *hotplug_slot, u8 * value)
208 *value = hotplug_slot->info->latch_status;
212 static void release_slot(struct hotplug_slot *hotplug_slot)
214 struct slot *slot = hotplug_slot->private;
216 kfree(slot->hotplug_slot->info);
217 kfree(slot->hotplug_slot->name);
218 kfree(slot->hotplug_slot);
220 pci_dev_put(slot->dev);
224 #define SLOT_NAME_SIZE 6
226 make_slot_name(struct slot *slot)
228 snprintf(slot->hotplug_slot->name,
229 SLOT_NAME_SIZE, "%02x:%02x", slot->bus->number, slot->number);
233 cpci_hp_register_bus(struct pci_bus *bus, u8 first, u8 last)
236 struct hotplug_slot *hotplug_slot;
237 struct hotplug_slot_info *info;
239 int status = -ENOMEM;
242 if (!(controller && bus))
246 * Create a structure for each slot, and register that slot
247 * with the pci_hotplug subsystem.
249 for (i = first; i <= last; ++i) {
250 slot = kzalloc(sizeof (struct slot), GFP_KERNEL);
255 kzalloc(sizeof (struct hotplug_slot), GFP_KERNEL);
258 slot->hotplug_slot = hotplug_slot;
260 info = kzalloc(sizeof (struct hotplug_slot_info), GFP_KERNEL);
263 hotplug_slot->info = info;
265 name = kmalloc(SLOT_NAME_SIZE, GFP_KERNEL);
268 hotplug_slot->name = name;
272 slot->devfn = PCI_DEVFN(i, 0);
274 hotplug_slot->private = slot;
275 hotplug_slot->release = &release_slot;
276 make_slot_name(slot);
277 hotplug_slot->ops = &cpci_hotplug_slot_ops;
280 * Initialize the slot info structure with some known
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);
287 dbg("registering slot %s", slot->hotplug_slot->name);
288 status = pci_hp_register(slot->hotplug_slot);
290 err("pci_hp_register failed with error %d", status);
294 /* Add slot to our internal list */
295 down_write(&list_rwsem);
296 list_add(&slot->slot_list, &slot_list);
298 up_write(&list_rwsem);
314 cpci_hp_unregister_bus(struct pci_bus *bus)
320 down_write(&list_rwsem);
322 up_write(&list_rwsem);
325 list_for_each_entry_safe(slot, tmp, &slot_list, slot_list) {
326 if (slot->bus == bus) {
327 list_del(&slot->slot_list);
330 dbg("deregistering slot %s", slot->hotplug_slot->name);
331 status = pci_hp_deregister(slot->hotplug_slot);
333 err("pci_hp_deregister failed with error %d",
339 up_write(&list_rwsem);
343 /* This is the interrupt mode interrupt handler */
345 cpci_hp_intr(int irq, void *data)
347 dbg("entered cpci_hp_intr");
349 /* Check to see if it was our interrupt */
350 if ((controller->irq_flags & IRQF_SHARED) &&
351 !controller->ops->check_irq(controller->dev_id)) {
352 dbg("exited cpci_hp_intr, not our interrupt");
356 /* Disable ENUM interrupt */
357 controller->ops->disable_irq();
359 /* Trigger processing by the event thread */
360 dbg("Signal event_semaphore");
361 up(&event_semaphore);
362 dbg("exited cpci_hp_intr");
367 * According to PICMG 2.1 R2.0, section 6.3.2, upon
368 * initialization, the system driver shall clear the
369 * INS bits of the cold-inserted devices.
372 init_slots(int clear_ins)
377 dbg("%s - enter", __FUNCTION__);
378 down_read(&list_rwsem);
380 up_read(&list_rwsem);
383 list_for_each_entry(slot, &slot_list, slot_list) {
384 dbg("%s - looking at slot %s",
385 __FUNCTION__, slot->hotplug_slot->name);
386 if (clear_ins && cpci_check_and_clear_ins(slot))
387 dbg("%s - cleared INS for slot %s",
388 __FUNCTION__, slot->hotplug_slot->name);
389 dev = pci_get_slot(slot->bus, PCI_DEVFN(slot->number, 0));
391 if (update_adapter_status(slot->hotplug_slot, 1))
392 warn("failure to update adapter file");
393 if (update_latch_status(slot->hotplug_slot, 1))
394 warn("failure to update latch file");
398 up_read(&list_rwsem);
399 dbg("%s - exit", __FUNCTION__);
411 down_read(&list_rwsem);
413 up_read(&list_rwsem);
414 err("no slots registered, shutting down");
417 extracted = inserted = 0;
418 list_for_each_entry(slot, &slot_list, slot_list) {
419 dbg("%s - looking at slot %s",
420 __FUNCTION__, slot->hotplug_slot->name);
421 if (cpci_check_and_clear_ins(slot)) {
423 * Some broken hardware (e.g. PLX 9054AB) asserts
427 warn("slot %s already inserted",
428 slot->hotplug_slot->name);
433 /* Process insertion */
434 dbg("%s - slot %s inserted",
435 __FUNCTION__, slot->hotplug_slot->name);
438 hs_csr = cpci_get_hs_csr(slot);
439 dbg("%s - slot %s HS_CSR (1) = %04x",
440 __FUNCTION__, slot->hotplug_slot->name, hs_csr);
442 /* Configure device */
443 dbg("%s - configuring slot %s",
444 __FUNCTION__, slot->hotplug_slot->name);
445 if (cpci_configure_slot(slot)) {
446 err("%s - could not configure slot %s",
447 __FUNCTION__, slot->hotplug_slot->name);
450 dbg("%s - finished configuring slot %s",
451 __FUNCTION__, slot->hotplug_slot->name);
454 hs_csr = cpci_get_hs_csr(slot);
455 dbg("%s - slot %s HS_CSR (2) = %04x",
456 __FUNCTION__, slot->hotplug_slot->name, hs_csr);
458 if (update_latch_status(slot->hotplug_slot, 1))
459 warn("failure to update latch file");
461 if (update_adapter_status(slot->hotplug_slot, 1))
462 warn("failure to update adapter file");
467 hs_csr = cpci_get_hs_csr(slot);
468 dbg("%s - slot %s HS_CSR (3) = %04x",
469 __FUNCTION__, slot->hotplug_slot->name, hs_csr);
472 } else if (cpci_check_ext(slot)) {
473 /* Process extraction request */
474 dbg("%s - slot %s extracted",
475 __FUNCTION__, slot->hotplug_slot->name);
478 hs_csr = cpci_get_hs_csr(slot);
479 dbg("%s - slot %s HS_CSR = %04x",
480 __FUNCTION__, slot->hotplug_slot->name, hs_csr);
482 if (!slot->extracting) {
483 if (update_latch_status(slot->hotplug_slot, 0)) {
484 warn("failure to update latch file");
486 slot->extracting = 1;
487 atomic_inc(&extracting);
490 } else if (slot->extracting) {
491 hs_csr = cpci_get_hs_csr(slot);
492 if (hs_csr == 0xffff) {
494 * Hmmm, we're likely hosed at this point, should we
495 * bother trying to tell the driver or not?
497 err("card in slot %s was improperly removed",
498 slot->hotplug_slot->name);
499 if (update_adapter_status(slot->hotplug_slot, 0))
500 warn("failure to update adapter file");
501 slot->extracting = 0;
502 atomic_dec(&extracting);
506 up_read(&list_rwsem);
507 dbg("inserted=%d, extracted=%d, extracting=%d",
508 inserted, extracted, atomic_read(&extracting));
509 if (inserted || extracted)
511 else if (!atomic_read(&extracting)) {
512 err("cannot find ENUM# source, shutting down");
518 /* This is the interrupt mode worker thread body */
520 event_thread(void *data)
525 daemonize("cpci_hp_eventd");
528 dbg("%s - event thread started", __FUNCTION__);
530 dbg("event thread sleeping");
531 down_interruptible(&event_semaphore);
532 dbg("event thread woken, thread_finished = %d",
534 if (thread_finished || signal_pending(current))
539 /* Give userspace a chance to handle extraction */
542 dbg("%s - error checking slots", __FUNCTION__);
546 } while (atomic_read(&extracting) && !thread_finished);
550 /* Re-enable ENUM# interrupt */
551 dbg("%s - re-enabling irq", __FUNCTION__);
552 controller->ops->enable_irq();
554 dbg("%s - event thread signals exit", __FUNCTION__);
559 /* This is the polling mode worker thread body */
561 poll_thread(void *data)
566 daemonize("cpci_hp_polld");
570 if (thread_finished || signal_pending(current))
572 if (controller->ops->query_enum()) {
576 /* Give userspace a chance to handle extraction */
579 dbg("%s - error checking slots", __FUNCTION__);
583 } while (atomic_read(&extracting) && !thread_finished);
587 dbg("poll thread signals exit");
593 cpci_start_thread(void)
597 /* initialize our semaphores */
598 init_MUTEX_LOCKED(&event_semaphore);
599 init_MUTEX_LOCKED(&thread_exit);
603 pid = kernel_thread(event_thread, NULL, 0);
605 pid = kernel_thread(poll_thread, NULL, 0);
607 err("Can't start up our thread");
610 dbg("Our thread pid = %d", pid);
615 cpci_stop_thread(void)
618 dbg("thread finish command given");
620 up(&event_semaphore);
621 dbg("wait for thread to exit");
626 cpci_hp_register_controller(struct cpci_hp_controller *new_controller)
632 if (!(new_controller && new_controller->ops))
634 if (new_controller->irq) {
635 if (!(new_controller->ops->enable_irq &&
636 new_controller->ops->disable_irq))
638 if (request_irq(new_controller->irq,
640 new_controller->irq_flags,
642 new_controller->dev_id)) {
643 err("Can't get irq %d for the hotplug cPCI controller",
644 new_controller->irq);
647 dbg("%s - acquired controller irq %d",
648 __FUNCTION__, new_controller->irq);
651 controller = new_controller;
662 * Unregister all of our slots with the pci_hotplug subsystem,
663 * and free up all memory that we had allocated.
665 down_write(&list_rwsem);
668 list_for_each_entry_safe(slot, tmp, &slot_list, slot_list) {
669 list_del(&slot->slot_list);
670 pci_hp_deregister(slot->hotplug_slot);
673 up_write(&list_rwsem);
678 cpci_hp_unregister_controller(struct cpci_hp_controller *old_controller)
683 if (!thread_finished)
686 free_irq(controller->irq, controller->dev_id);
697 static int first = 1;
700 dbg("%s - enter", __FUNCTION__);
704 down_read(&list_rwsem);
705 if (list_empty(&slot_list)) {
706 up_read(&list_rwsem);
709 up_read(&list_rwsem);
711 status = init_slots(first);
717 status = cpci_start_thread();
720 dbg("%s - thread started", __FUNCTION__);
722 if (controller->irq) {
723 /* Start enum interrupt processing */
724 dbg("%s - enabling irq", __FUNCTION__);
725 controller->ops->enable_irq();
727 dbg("%s - exit", __FUNCTION__);
736 if (controller->irq) {
737 /* Stop enum interrupt processing */
738 dbg("%s - disabling irq", __FUNCTION__);
739 controller->ops->disable_irq();
746 cpci_hotplug_init(int debug)
753 cpci_hotplug_exit(void)
756 * Clean everything up.
759 cpci_hp_unregister_controller(controller);
762 EXPORT_SYMBOL_GPL(cpci_hp_register_controller);
763 EXPORT_SYMBOL_GPL(cpci_hp_unregister_controller);
764 EXPORT_SYMBOL_GPL(cpci_hp_register_bus);
765 EXPORT_SYMBOL_GPL(cpci_hp_unregister_bus);
766 EXPORT_SYMBOL_GPL(cpci_hp_start);
767 EXPORT_SYMBOL_GPL(cpci_hp_stop);