1 // SPDX-License-Identifier: GPL-2.0+
3 * CompactPCI Hot Plug Driver
5 * Copyright (C) 2002,2005 SOMA Networks, Inc.
6 * Copyright (C) 2001 Greg Kroah-Hartman (greg@kroah.com)
7 * Copyright (C) 2001 IBM Corp.
11 * Send feedback to <scottm@somanetworks.com>
14 #include <linux/module.h>
15 #include <linux/kernel.h>
16 #include <linux/sched/signal.h>
17 #include <linux/slab.h>
18 #include <linux/pci.h>
19 #include <linux/pci_hotplug.h>
20 #include <linux/init.h>
21 #include <linux/interrupt.h>
22 #include <linux/atomic.h>
23 #include <linux/delay.h>
24 #include <linux/kthread.h>
25 #include "cpci_hotplug.h"
27 #define DRIVER_AUTHOR "Scott Murray <scottm@somanetworks.com>"
28 #define DRIVER_DESC "CompactPCI Hot Plug Core"
30 #define MY_NAME "cpci_hotplug"
32 #define dbg(format, arg...) \
35 printk(KERN_DEBUG "%s: " format "\n", \
38 #define err(format, arg...) printk(KERN_ERR "%s: " format "\n", MY_NAME, ## arg)
39 #define info(format, arg...) printk(KERN_INFO "%s: " format "\n", MY_NAME, ## arg)
40 #define warn(format, arg...) printk(KERN_WARNING "%s: " format "\n", MY_NAME, ## arg)
43 static DECLARE_RWSEM(list_rwsem
);
44 static LIST_HEAD(slot_list
);
46 static atomic_t extracting
;
48 static struct cpci_hp_controller
*controller
;
49 static struct task_struct
*cpci_thread
;
50 static int thread_finished
;
52 static int enable_slot(struct hotplug_slot
*slot
);
53 static int disable_slot(struct hotplug_slot
*slot
);
54 static int set_attention_status(struct hotplug_slot
*slot
, u8 value
);
55 static int get_power_status(struct hotplug_slot
*slot
, u8
*value
);
56 static int get_attention_status(struct hotplug_slot
*slot
, u8
*value
);
57 static int get_adapter_status(struct hotplug_slot
*slot
, u8
*value
);
58 static int get_latch_status(struct hotplug_slot
*slot
, u8
*value
);
60 static const struct hotplug_slot_ops cpci_hotplug_slot_ops
= {
61 .enable_slot
= enable_slot
,
62 .disable_slot
= disable_slot
,
63 .set_attention_status
= set_attention_status
,
64 .get_power_status
= get_power_status
,
65 .get_attention_status
= get_attention_status
,
66 .get_adapter_status
= get_adapter_status
,
67 .get_latch_status
= get_latch_status
,
71 enable_slot(struct hotplug_slot
*hotplug_slot
)
73 struct slot
*slot
= to_slot(hotplug_slot
);
76 dbg("%s - physical_slot = %s", __func__
, slot_name(slot
));
78 if (controller
->ops
->set_power
)
79 retval
= controller
->ops
->set_power(slot
, 1);
84 disable_slot(struct hotplug_slot
*hotplug_slot
)
86 struct slot
*slot
= to_slot(hotplug_slot
);
89 dbg("%s - physical_slot = %s", __func__
, slot_name(slot
));
91 down_write(&list_rwsem
);
93 /* Unconfigure device */
94 dbg("%s - unconfiguring slot %s", __func__
, slot_name(slot
));
95 retval
= cpci_unconfigure_slot(slot
);
97 err("%s - could not unconfigure slot %s",
98 __func__
, slot_name(slot
));
101 dbg("%s - finished unconfiguring slot %s", __func__
, slot_name(slot
));
103 /* Clear EXT (by setting it) */
104 if (cpci_clear_ext(slot
)) {
105 err("%s - could not clear EXT for slot %s",
106 __func__
, slot_name(slot
));
112 if (controller
->ops
->set_power
) {
113 retval
= controller
->ops
->set_power(slot
, 0);
118 slot
->adapter_status
= 0;
120 if (slot
->extracting
) {
121 slot
->extracting
= 0;
122 atomic_dec(&extracting
);
125 up_write(&list_rwsem
);
130 cpci_get_power_status(struct slot
*slot
)
134 if (controller
->ops
->get_power
)
135 power
= controller
->ops
->get_power(slot
);
140 get_power_status(struct hotplug_slot
*hotplug_slot
, u8
*value
)
142 struct slot
*slot
= to_slot(hotplug_slot
);
144 *value
= cpci_get_power_status(slot
);
149 get_attention_status(struct hotplug_slot
*hotplug_slot
, u8
*value
)
151 struct slot
*slot
= to_slot(hotplug_slot
);
153 *value
= cpci_get_attention_status(slot
);
158 set_attention_status(struct hotplug_slot
*hotplug_slot
, u8 status
)
160 return cpci_set_attention_status(to_slot(hotplug_slot
), status
);
164 get_adapter_status(struct hotplug_slot
*hotplug_slot
, u8
*value
)
166 struct slot
*slot
= to_slot(hotplug_slot
);
168 *value
= slot
->adapter_status
;
173 get_latch_status(struct hotplug_slot
*hotplug_slot
, u8
*value
)
175 struct slot
*slot
= to_slot(hotplug_slot
);
177 *value
= slot
->latch_status
;
181 static void release_slot(struct slot
*slot
)
183 pci_dev_put(slot
->dev
);
187 #define SLOT_NAME_SIZE 6
190 cpci_hp_register_bus(struct pci_bus
*bus
, u8 first
, u8 last
)
193 char name
[SLOT_NAME_SIZE
];
197 if (!(controller
&& bus
))
201 * Create a structure for each slot, and register that slot
202 * with the pci_hotplug subsystem.
204 for (i
= first
; i
<= last
; ++i
) {
205 slot
= kzalloc(sizeof(struct slot
), GFP_KERNEL
);
213 slot
->devfn
= PCI_DEVFN(i
, 0);
215 snprintf(name
, SLOT_NAME_SIZE
, "%02x:%02x", bus
->number
, i
);
217 slot
->hotplug_slot
.ops
= &cpci_hotplug_slot_ops
;
219 dbg("registering slot %s", name
);
220 status
= pci_hp_register(&slot
->hotplug_slot
, bus
, i
, name
);
222 err("pci_hp_register failed with error %d", status
);
225 dbg("slot registered with name: %s", slot_name(slot
));
227 /* Add slot to our internal list */
228 down_write(&list_rwsem
);
229 list_add(&slot
->slot_list
, &slot_list
);
231 up_write(&list_rwsem
);
239 EXPORT_SYMBOL_GPL(cpci_hp_register_bus
);
242 cpci_hp_unregister_bus(struct pci_bus
*bus
)
248 down_write(&list_rwsem
);
250 up_write(&list_rwsem
);
253 list_for_each_entry_safe(slot
, tmp
, &slot_list
, slot_list
) {
254 if (slot
->bus
== bus
) {
255 list_del(&slot
->slot_list
);
258 dbg("deregistering slot %s", slot_name(slot
));
259 pci_hp_deregister(&slot
->hotplug_slot
);
263 up_write(&list_rwsem
);
266 EXPORT_SYMBOL_GPL(cpci_hp_unregister_bus
);
268 /* This is the interrupt mode interrupt handler */
270 cpci_hp_intr(int irq
, void *data
)
272 dbg("entered cpci_hp_intr");
274 /* Check to see if it was our interrupt */
275 if ((controller
->irq_flags
& IRQF_SHARED
) &&
276 !controller
->ops
->check_irq(controller
->dev_id
)) {
277 dbg("exited cpci_hp_intr, not our interrupt");
281 /* Disable ENUM interrupt */
282 controller
->ops
->disable_irq();
284 /* Trigger processing by the event thread */
285 wake_up_process(cpci_thread
);
290 * According to PICMG 2.1 R2.0, section 6.3.2, upon
291 * initialization, the system driver shall clear the
292 * INS bits of the cold-inserted devices.
295 init_slots(int clear_ins
)
300 dbg("%s - enter", __func__
);
301 down_read(&list_rwsem
);
303 up_read(&list_rwsem
);
306 list_for_each_entry(slot
, &slot_list
, slot_list
) {
307 dbg("%s - looking at slot %s", __func__
, slot_name(slot
));
308 if (clear_ins
&& cpci_check_and_clear_ins(slot
))
309 dbg("%s - cleared INS for slot %s",
310 __func__
, slot_name(slot
));
311 dev
= pci_get_slot(slot
->bus
, PCI_DEVFN(slot
->number
, 0));
313 slot
->adapter_status
= 1;
314 slot
->latch_status
= 1;
318 up_read(&list_rwsem
);
319 dbg("%s - exit", __func__
);
331 down_read(&list_rwsem
);
333 up_read(&list_rwsem
);
334 err("no slots registered, shutting down");
337 extracted
= inserted
= 0;
338 list_for_each_entry(slot
, &slot_list
, slot_list
) {
339 dbg("%s - looking at slot %s", __func__
, slot_name(slot
));
340 if (cpci_check_and_clear_ins(slot
)) {
342 * Some broken hardware (e.g. PLX 9054AB) asserts
346 warn("slot %s already inserted",
352 /* Process insertion */
353 dbg("%s - slot %s inserted", __func__
, slot_name(slot
));
356 hs_csr
= cpci_get_hs_csr(slot
);
357 dbg("%s - slot %s HS_CSR (1) = %04x",
358 __func__
, slot_name(slot
), hs_csr
);
360 /* Configure device */
361 dbg("%s - configuring slot %s",
362 __func__
, slot_name(slot
));
363 if (cpci_configure_slot(slot
)) {
364 err("%s - could not configure slot %s",
365 __func__
, slot_name(slot
));
368 dbg("%s - finished configuring slot %s",
369 __func__
, slot_name(slot
));
372 hs_csr
= cpci_get_hs_csr(slot
);
373 dbg("%s - slot %s HS_CSR (2) = %04x",
374 __func__
, slot_name(slot
), hs_csr
);
376 slot
->latch_status
= 1;
377 slot
->adapter_status
= 1;
382 hs_csr
= cpci_get_hs_csr(slot
);
383 dbg("%s - slot %s HS_CSR (3) = %04x",
384 __func__
, slot_name(slot
), hs_csr
);
387 } else if (cpci_check_ext(slot
)) {
388 /* Process extraction request */
389 dbg("%s - slot %s extracted",
390 __func__
, slot_name(slot
));
393 hs_csr
= cpci_get_hs_csr(slot
);
394 dbg("%s - slot %s HS_CSR = %04x",
395 __func__
, slot_name(slot
), hs_csr
);
397 if (!slot
->extracting
) {
398 slot
->latch_status
= 0;
399 slot
->extracting
= 1;
400 atomic_inc(&extracting
);
403 } else if (slot
->extracting
) {
404 hs_csr
= cpci_get_hs_csr(slot
);
405 if (hs_csr
== 0xffff) {
407 * Hmmm, we're likely hosed at this point, should we
408 * bother trying to tell the driver or not?
410 err("card in slot %s was improperly removed",
412 slot
->adapter_status
= 0;
413 slot
->extracting
= 0;
414 atomic_dec(&extracting
);
418 up_read(&list_rwsem
);
419 dbg("inserted=%d, extracted=%d, extracting=%d",
420 inserted
, extracted
, atomic_read(&extracting
));
421 if (inserted
|| extracted
)
423 else if (!atomic_read(&extracting
)) {
424 err("cannot find ENUM# source, shutting down");
430 /* This is the interrupt mode worker thread body */
432 event_thread(void *data
)
436 dbg("%s - event thread started", __func__
);
438 dbg("event thread sleeping");
439 set_current_state(TASK_INTERRUPTIBLE
);
441 if (kthread_should_stop())
446 /* Give userspace a chance to handle extraction */
449 dbg("%s - error checking slots", __func__
);
453 } while (atomic_read(&extracting
) && !kthread_should_stop());
454 if (kthread_should_stop())
457 /* Re-enable ENUM# interrupt */
458 dbg("%s - re-enabling irq", __func__
);
459 controller
->ops
->enable_irq();
465 /* This is the polling mode worker thread body */
467 poll_thread(void *data
)
472 if (kthread_should_stop() || signal_pending(current
))
474 if (controller
->ops
->query_enum()) {
478 /* Give userspace a chance to handle extraction */
481 dbg("%s - error checking slots", __func__
);
485 } while (atomic_read(&extracting
) && !kthread_should_stop());
494 cpci_start_thread(void)
497 cpci_thread
= kthread_run(event_thread
, NULL
, "cpci_hp_eventd");
499 cpci_thread
= kthread_run(poll_thread
, NULL
, "cpci_hp_polld");
500 if (IS_ERR(cpci_thread
)) {
501 err("Can't start up our thread");
502 return PTR_ERR(cpci_thread
);
509 cpci_stop_thread(void)
511 kthread_stop(cpci_thread
);
516 cpci_hp_register_controller(struct cpci_hp_controller
*new_controller
)
522 if (!(new_controller
&& new_controller
->ops
))
524 if (new_controller
->irq
) {
525 if (!(new_controller
->ops
->enable_irq
&&
526 new_controller
->ops
->disable_irq
))
528 if (request_irq(new_controller
->irq
,
530 new_controller
->irq_flags
,
532 new_controller
->dev_id
)) {
533 err("Can't get irq %d for the hotplug cPCI controller",
534 new_controller
->irq
);
537 dbg("%s - acquired controller irq %d",
538 __func__
, new_controller
->irq
);
541 controller
= new_controller
;
544 EXPORT_SYMBOL_GPL(cpci_hp_register_controller
);
553 * Unregister all of our slots with the pci_hotplug subsystem,
554 * and free up all memory that we had allocated.
556 down_write(&list_rwsem
);
559 list_for_each_entry_safe(slot
, tmp
, &slot_list
, slot_list
) {
560 list_del(&slot
->slot_list
);
561 pci_hp_deregister(&slot
->hotplug_slot
);
565 up_write(&list_rwsem
);
569 cpci_hp_unregister_controller(struct cpci_hp_controller
*old_controller
)
574 if (!thread_finished
)
577 free_irq(controller
->irq
, controller
->dev_id
);
584 EXPORT_SYMBOL_GPL(cpci_hp_unregister_controller
);
589 static int first
= 1;
592 dbg("%s - enter", __func__
);
596 down_read(&list_rwsem
);
597 if (list_empty(&slot_list
)) {
598 up_read(&list_rwsem
);
601 up_read(&list_rwsem
);
603 status
= init_slots(first
);
609 status
= cpci_start_thread();
612 dbg("%s - thread started", __func__
);
614 if (controller
->irq
) {
615 /* Start enum interrupt processing */
616 dbg("%s - enabling irq", __func__
);
617 controller
->ops
->enable_irq();
619 dbg("%s - exit", __func__
);
622 EXPORT_SYMBOL_GPL(cpci_hp_start
);
629 if (controller
->irq
) {
630 /* Stop enum interrupt processing */
631 dbg("%s - disabling irq", __func__
);
632 controller
->ops
->disable_irq();
637 EXPORT_SYMBOL_GPL(cpci_hp_stop
);
640 cpci_hotplug_init(int debug
)