mfd: kempld-core: Constify variables that point to const structure
[linux-2.6-block.git] / drivers / pci / hotplug / cpci_hotplug_core.c
CommitLineData
736759ef 1// SPDX-License-Identifier: GPL-2.0+
1da177e4
LT
2/*
3 * CompactPCI Hot Plug Driver
4 *
bcc488ab 5 * Copyright (C) 2002,2005 SOMA Networks, Inc.
1da177e4
LT
6 * Copyright (C) 2001 Greg Kroah-Hartman (greg@kroah.com)
7 * Copyright (C) 2001 IBM Corp.
8 *
9 * All rights reserved.
10 *
1da177e4
LT
11 * Send feedback to <scottm@somanetworks.com>
12 */
13
1da177e4
LT
14#include <linux/module.h>
15#include <linux/kernel.h>
174cd4b1 16#include <linux/sched/signal.h>
1da177e4
LT
17#include <linux/slab.h>
18#include <linux/pci.h>
7a54f25c 19#include <linux/pci_hotplug.h>
1da177e4
LT
20#include <linux/init.h>
21#include <linux/interrupt.h>
60063497 22#include <linux/atomic.h>
1da177e4 23#include <linux/delay.h>
0bec2c85 24#include <linux/kthread.h>
1da177e4
LT
25#include "cpci_hotplug.h"
26
1da177e4
LT
27#define DRIVER_AUTHOR "Scott Murray <scottm@somanetworks.com>"
28#define DRIVER_DESC "CompactPCI Hot Plug Core"
29
30#define MY_NAME "cpci_hotplug"
31
32#define dbg(format, arg...) \
33 do { \
bcc488ab 34 if (cpci_debug) \
ff3ce480
BS
35 printk(KERN_DEBUG "%s: " format "\n", \
36 MY_NAME, ## arg); \
bcc488ab 37 } while (0)
ff3ce480
BS
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)
1da177e4
LT
41
42/* local variables */
43b7d7cf 43static DECLARE_RWSEM(list_rwsem);
1da177e4
LT
44static LIST_HEAD(slot_list);
45static int slots;
43b7d7cf 46static atomic_t extracting;
1da177e4
LT
47int cpci_debug;
48static struct cpci_hp_controller *controller;
0bec2c85
SM
49static struct task_struct *cpci_thread;
50static int thread_finished;
1da177e4
LT
51
52static int enable_slot(struct hotplug_slot *slot);
53static int disable_slot(struct hotplug_slot *slot);
54static int set_attention_status(struct hotplug_slot *slot, u8 value);
3c78bc61
RD
55static int get_power_status(struct hotplug_slot *slot, u8 *value);
56static int get_attention_status(struct hotplug_slot *slot, u8 *value);
57static int get_adapter_status(struct hotplug_slot *slot, u8 *value);
58static int get_latch_status(struct hotplug_slot *slot, u8 *value);
1da177e4
LT
59
60static struct hotplug_slot_ops cpci_hotplug_slot_ops = {
1da177e4
LT
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,
43b7d7cf
SM
66 .get_adapter_status = get_adapter_status,
67 .get_latch_status = get_latch_status,
1da177e4
LT
68};
69
70static int
71update_latch_status(struct hotplug_slot *hotplug_slot, u8 value)
72{
73 struct hotplug_slot_info info;
74
75 memcpy(&info, hotplug_slot->info, sizeof(struct hotplug_slot_info));
76 info.latch_status = value;
77 return pci_hp_change_slot_info(hotplug_slot, &info);
78}
79
80static int
81update_adapter_status(struct hotplug_slot *hotplug_slot, u8 value)
82{
83 struct hotplug_slot_info info;
84
85 memcpy(&info, hotplug_slot->info, sizeof(struct hotplug_slot_info));
86 info.adapter_status = value;
87 return pci_hp_change_slot_info(hotplug_slot, &info);
88}
89
90static int
91enable_slot(struct hotplug_slot *hotplug_slot)
92{
93 struct slot *slot = hotplug_slot->private;
94 int retval = 0;
95
d6c479e0 96 dbg("%s - physical_slot = %s", __func__, slot_name(slot));
1da177e4 97
bcc488ab 98 if (controller->ops->set_power)
1da177e4 99 retval = controller->ops->set_power(slot, 1);
1da177e4
LT
100 return retval;
101}
102
103static int
104disable_slot(struct hotplug_slot *hotplug_slot)
105{
106 struct slot *slot = hotplug_slot->private;
107 int retval = 0;
108
d6c479e0 109 dbg("%s - physical_slot = %s", __func__, slot_name(slot));
1da177e4 110
bcc488ab
SM
111 down_write(&list_rwsem);
112
1da177e4 113 /* Unconfigure device */
d6c479e0 114 dbg("%s - unconfiguring slot %s", __func__, slot_name(slot));
79e50e72
QL
115 retval = cpci_unconfigure_slot(slot);
116 if (retval) {
1da177e4 117 err("%s - could not unconfigure slot %s",
d6c479e0 118 __func__, slot_name(slot));
bcc488ab 119 goto disable_error;
1da177e4 120 }
d6c479e0 121 dbg("%s - finished unconfiguring slot %s", __func__, slot_name(slot));
1da177e4
LT
122
123 /* Clear EXT (by setting it) */
bcc488ab 124 if (cpci_clear_ext(slot)) {
1da177e4 125 err("%s - could not clear EXT for slot %s",
d6c479e0 126 __func__, slot_name(slot));
1da177e4 127 retval = -ENODEV;
bcc488ab 128 goto disable_error;
1da177e4
LT
129 }
130 cpci_led_on(slot);
131
79e50e72
QL
132 if (controller->ops->set_power) {
133 retval = controller->ops->set_power(slot, 0);
134 if (retval)
bcc488ab 135 goto disable_error;
79e50e72 136 }
1da177e4 137
bcc488ab 138 if (update_adapter_status(slot->hotplug_slot, 0))
1da177e4 139 warn("failure to update adapter file");
1da177e4 140
bcc488ab 141 if (slot->extracting) {
43b7d7cf
SM
142 slot->extracting = 0;
143 atomic_dec(&extracting);
144 }
bcc488ab
SM
145disable_error:
146 up_write(&list_rwsem);
1da177e4
LT
147 return retval;
148}
149
150static u8
151cpci_get_power_status(struct slot *slot)
152{
153 u8 power = 1;
154
bcc488ab 155 if (controller->ops->get_power)
1da177e4 156 power = controller->ops->get_power(slot);
1da177e4
LT
157 return power;
158}
159
160static int
3c78bc61 161get_power_status(struct hotplug_slot *hotplug_slot, u8 *value)
1da177e4
LT
162{
163 struct slot *slot = hotplug_slot->private;
164
165 *value = cpci_get_power_status(slot);
166 return 0;
167}
168
169static int
3c78bc61 170get_attention_status(struct hotplug_slot *hotplug_slot, u8 *value)
1da177e4
LT
171{
172 struct slot *slot = hotplug_slot->private;
173
174 *value = cpci_get_attention_status(slot);
175 return 0;
176}
177
178static int
179set_attention_status(struct hotplug_slot *hotplug_slot, u8 status)
180{
181 return cpci_set_attention_status(hotplug_slot->private, status);
182}
183
43b7d7cf 184static int
3c78bc61 185get_adapter_status(struct hotplug_slot *hotplug_slot, u8 *value)
43b7d7cf
SM
186{
187 *value = hotplug_slot->info->adapter_status;
188 return 0;
189}
190
191static int
3c78bc61 192get_latch_status(struct hotplug_slot *hotplug_slot, u8 *value)
43b7d7cf
SM
193{
194 *value = hotplug_slot->info->latch_status;
195 return 0;
196}
197
1da177e4
LT
198static void release_slot(struct hotplug_slot *hotplug_slot)
199{
200 struct slot *slot = hotplug_slot->private;
201
202 kfree(slot->hotplug_slot->info);
1da177e4 203 kfree(slot->hotplug_slot);
17f14b51 204 pci_dev_put(slot->dev);
1da177e4
LT
205 kfree(slot);
206}
207
208#define SLOT_NAME_SIZE 6
1da177e4
LT
209
210int
211cpci_hp_register_bus(struct pci_bus *bus, u8 first, u8 last)
212{
213 struct slot *slot;
214 struct hotplug_slot *hotplug_slot;
215 struct hotplug_slot_info *info;
d6c479e0 216 char name[SLOT_NAME_SIZE];
83d05710 217 int status;
1da177e4
LT
218 int i;
219
bcc488ab 220 if (!(controller && bus))
1da177e4 221 return -ENODEV;
1da177e4
LT
222
223 /*
224 * Create a structure for each slot, and register that slot
225 * with the pci_hotplug subsystem.
226 */
227 for (i = first; i <= last; ++i) {
ff3ce480 228 slot = kzalloc(sizeof(struct slot), GFP_KERNEL);
83d05710
JL
229 if (!slot) {
230 status = -ENOMEM;
1da177e4 231 goto error;
83d05710 232 }
1da177e4
LT
233
234 hotplug_slot =
ff3ce480 235 kzalloc(sizeof(struct hotplug_slot), GFP_KERNEL);
83d05710
JL
236 if (!hotplug_slot) {
237 status = -ENOMEM;
1da177e4 238 goto error_slot;
83d05710 239 }
1da177e4
LT
240 slot->hotplug_slot = hotplug_slot;
241
ff3ce480 242 info = kzalloc(sizeof(struct hotplug_slot_info), GFP_KERNEL);
83d05710
JL
243 if (!info) {
244 status = -ENOMEM;
1da177e4 245 goto error_hpslot;
83d05710 246 }
1da177e4
LT
247 hotplug_slot->info = info;
248
1da177e4
LT
249 slot->bus = bus;
250 slot->number = i;
251 slot->devfn = PCI_DEVFN(i, 0);
252
d6c479e0
AC
253 snprintf(name, SLOT_NAME_SIZE, "%02x:%02x", bus->number, i);
254
1da177e4
LT
255 hotplug_slot->private = slot;
256 hotplug_slot->release = &release_slot;
1da177e4
LT
257 hotplug_slot->ops = &cpci_hotplug_slot_ops;
258
259 /*
260 * Initialize the slot info structure with some known
261 * good values.
262 */
d6c479e0 263 dbg("initializing slot %s", name);
1da177e4
LT
264 info->power_status = cpci_get_power_status(slot);
265 info->attention_status = cpci_get_attention_status(slot);
266
d6c479e0
AC
267 dbg("registering slot %s", name);
268 status = pci_hp_register(slot->hotplug_slot, bus, i, name);
1da177e4
LT
269 if (status) {
270 err("pci_hp_register failed with error %d", status);
d6c479e0 271 goto error_info;
1da177e4 272 }
d6c479e0 273 dbg("slot registered with name: %s", slot_name(slot));
1da177e4
LT
274
275 /* Add slot to our internal list */
43b7d7cf 276 down_write(&list_rwsem);
1da177e4
LT
277 list_add(&slot->slot_list, &slot_list);
278 slots++;
43b7d7cf 279 up_write(&list_rwsem);
1da177e4
LT
280 }
281 return 0;
1da177e4
LT
282error_info:
283 kfree(info);
284error_hpslot:
285 kfree(hotplug_slot);
286error_slot:
287 kfree(slot);
288error:
289 return status;
290}
b7fe9434 291EXPORT_SYMBOL_GPL(cpci_hp_register_bus);
1da177e4
LT
292
293int
294cpci_hp_unregister_bus(struct pci_bus *bus)
295{
296 struct slot *slot;
bcc488ab
SM
297 struct slot *tmp;
298 int status = 0;
1da177e4 299
43b7d7cf 300 down_write(&list_rwsem);
bcc488ab 301 if (!slots) {
43b7d7cf 302 up_write(&list_rwsem);
1da177e4
LT
303 return -1;
304 }
bcc488ab
SM
305 list_for_each_entry_safe(slot, tmp, &slot_list, slot_list) {
306 if (slot->bus == bus) {
307 list_del(&slot->slot_list);
308 slots--;
309
d6c479e0 310 dbg("deregistering slot %s", slot_name(slot));
1da177e4 311 status = pci_hp_deregister(slot->hotplug_slot);
bcc488ab 312 if (status) {
1da177e4
LT
313 err("pci_hp_deregister failed with error %d",
314 status);
bcc488ab 315 break;
1da177e4 316 }
1da177e4
LT
317 }
318 }
43b7d7cf 319 up_write(&list_rwsem);
bcc488ab 320 return status;
1da177e4 321}
b7fe9434 322EXPORT_SYMBOL_GPL(cpci_hp_unregister_bus);
1da177e4
LT
323
324/* This is the interrupt mode interrupt handler */
325static irqreturn_t
7d12e780 326cpci_hp_intr(int irq, void *data)
1da177e4
LT
327{
328 dbg("entered cpci_hp_intr");
329
330 /* Check to see if it was our interrupt */
6b4486e2 331 if ((controller->irq_flags & IRQF_SHARED) &&
1da177e4
LT
332 !controller->ops->check_irq(controller->dev_id)) {
333 dbg("exited cpci_hp_intr, not our interrupt");
334 return IRQ_NONE;
335 }
336
337 /* Disable ENUM interrupt */
338 controller->ops->disable_irq();
339
340 /* Trigger processing by the event thread */
0bec2c85 341 wake_up_process(cpci_thread);
1da177e4
LT
342 return IRQ_HANDLED;
343}
344
345/*
43b7d7cf 346 * According to PICMG 2.1 R2.0, section 6.3.2, upon
1da177e4
LT
347 * initialization, the system driver shall clear the
348 * INS bits of the cold-inserted devices.
349 */
350static int
bcc488ab 351init_slots(int clear_ins)
1da177e4
LT
352{
353 struct slot *slot;
3c78bc61 354 struct pci_dev *dev;
1da177e4 355
66bef8c0 356 dbg("%s - enter", __func__);
43b7d7cf 357 down_read(&list_rwsem);
bcc488ab 358 if (!slots) {
43b7d7cf 359 up_read(&list_rwsem);
1da177e4
LT
360 return -1;
361 }
bcc488ab 362 list_for_each_entry(slot, &slot_list, slot_list) {
d6c479e0 363 dbg("%s - looking at slot %s", __func__, slot_name(slot));
bcc488ab 364 if (clear_ins && cpci_check_and_clear_ins(slot))
1da177e4 365 dbg("%s - cleared INS for slot %s",
d6c479e0 366 __func__, slot_name(slot));
bcc488ab
SM
367 dev = pci_get_slot(slot->bus, PCI_DEVFN(slot->number, 0));
368 if (dev) {
369 if (update_adapter_status(slot->hotplug_slot, 1))
370 warn("failure to update adapter file");
371 if (update_latch_status(slot->hotplug_slot, 1))
372 warn("failure to update latch file");
373 slot->dev = dev;
1da177e4
LT
374 }
375 }
43b7d7cf 376 up_read(&list_rwsem);
66bef8c0 377 dbg("%s - exit", __func__);
1da177e4
LT
378 return 0;
379}
380
381static int
382check_slots(void)
383{
384 struct slot *slot;
1da177e4
LT
385 int extracted;
386 int inserted;
43b7d7cf 387 u16 hs_csr;
1da177e4 388
43b7d7cf 389 down_read(&list_rwsem);
bcc488ab 390 if (!slots) {
43b7d7cf 391 up_read(&list_rwsem);
1da177e4
LT
392 err("no slots registered, shutting down");
393 return -1;
394 }
395 extracted = inserted = 0;
bcc488ab 396 list_for_each_entry(slot, &slot_list, slot_list) {
d6c479e0 397 dbg("%s - looking at slot %s", __func__, slot_name(slot));
bcc488ab
SM
398 if (cpci_check_and_clear_ins(slot)) {
399 /*
400 * Some broken hardware (e.g. PLX 9054AB) asserts
401 * ENUM# twice...
402 */
403 if (slot->dev) {
404 warn("slot %s already inserted",
d6c479e0 405 slot_name(slot));
1da177e4
LT
406 inserted++;
407 continue;
408 }
409
410 /* Process insertion */
d6c479e0 411 dbg("%s - slot %s inserted", __func__, slot_name(slot));
1da177e4
LT
412
413 /* GSM, debug */
414 hs_csr = cpci_get_hs_csr(slot);
415 dbg("%s - slot %s HS_CSR (1) = %04x",
d6c479e0 416 __func__, slot_name(slot), hs_csr);
1da177e4
LT
417
418 /* Configure device */
419 dbg("%s - configuring slot %s",
d6c479e0 420 __func__, slot_name(slot));
bcc488ab 421 if (cpci_configure_slot(slot)) {
1da177e4 422 err("%s - could not configure slot %s",
d6c479e0 423 __func__, slot_name(slot));
1da177e4
LT
424 continue;
425 }
426 dbg("%s - finished configuring slot %s",
d6c479e0 427 __func__, slot_name(slot));
1da177e4
LT
428
429 /* GSM, debug */
430 hs_csr = cpci_get_hs_csr(slot);
431 dbg("%s - slot %s HS_CSR (2) = %04x",
d6c479e0 432 __func__, slot_name(slot), hs_csr);
1da177e4 433
bcc488ab 434 if (update_latch_status(slot->hotplug_slot, 1))
1da177e4 435 warn("failure to update latch file");
1da177e4 436
bcc488ab 437 if (update_adapter_status(slot->hotplug_slot, 1))
1da177e4 438 warn("failure to update adapter file");
1da177e4
LT
439
440 cpci_led_off(slot);
441
442 /* GSM, debug */
443 hs_csr = cpci_get_hs_csr(slot);
444 dbg("%s - slot %s HS_CSR (3) = %04x",
d6c479e0 445 __func__, slot_name(slot), hs_csr);
1da177e4
LT
446
447 inserted++;
bcc488ab 448 } else if (cpci_check_ext(slot)) {
1da177e4
LT
449 /* Process extraction request */
450 dbg("%s - slot %s extracted",
d6c479e0 451 __func__, slot_name(slot));
1da177e4
LT
452
453 /* GSM, debug */
454 hs_csr = cpci_get_hs_csr(slot);
455 dbg("%s - slot %s HS_CSR = %04x",
d6c479e0 456 __func__, slot_name(slot), hs_csr);
1da177e4 457
bcc488ab 458 if (!slot->extracting) {
656f978f 459 if (update_latch_status(slot->hotplug_slot, 0))
1da177e4 460 warn("failure to update latch file");
656f978f 461
1da177e4 462 slot->extracting = 1;
bcc488ab 463 atomic_inc(&extracting);
1da177e4
LT
464 }
465 extracted++;
bcc488ab 466 } else if (slot->extracting) {
43b7d7cf 467 hs_csr = cpci_get_hs_csr(slot);
bcc488ab 468 if (hs_csr == 0xffff) {
43b7d7cf
SM
469 /*
470 * Hmmm, we're likely hosed at this point, should we
471 * bother trying to tell the driver or not?
472 */
473 err("card in slot %s was improperly removed",
d6c479e0 474 slot_name(slot));
bcc488ab 475 if (update_adapter_status(slot->hotplug_slot, 0))
43b7d7cf 476 warn("failure to update adapter file");
43b7d7cf
SM
477 slot->extracting = 0;
478 atomic_dec(&extracting);
479 }
1da177e4
LT
480 }
481 }
43b7d7cf
SM
482 up_read(&list_rwsem);
483 dbg("inserted=%d, extracted=%d, extracting=%d",
484 inserted, extracted, atomic_read(&extracting));
bcc488ab 485 if (inserted || extracted)
1da177e4 486 return extracted;
bcc488ab 487 else if (!atomic_read(&extracting)) {
1da177e4
LT
488 err("cannot find ENUM# source, shutting down");
489 return -1;
490 }
43b7d7cf 491 return 0;
1da177e4
LT
492}
493
494/* This is the interrupt mode worker thread body */
495static int
496event_thread(void *data)
497{
498 int rc;
1da177e4 499
66bef8c0 500 dbg("%s - event thread started", __func__);
bcc488ab 501 while (1) {
1da177e4 502 dbg("event thread sleeping");
0bec2c85
SM
503 set_current_state(TASK_INTERRUPTIBLE);
504 schedule();
505 if (kthread_should_stop())
1da177e4 506 break;
43b7d7cf 507 do {
1da177e4 508 rc = check_slots();
43b7d7cf 509 if (rc > 0) {
1da177e4
LT
510 /* Give userspace a chance to handle extraction */
511 msleep(500);
43b7d7cf 512 } else if (rc < 0) {
66bef8c0 513 dbg("%s - error checking slots", __func__);
1da177e4 514 thread_finished = 1;
0bec2c85 515 goto out;
1da177e4 516 }
0bec2c85
SM
517 } while (atomic_read(&extracting) && !kthread_should_stop());
518 if (kthread_should_stop())
bcc488ab 519 break;
1da177e4
LT
520
521 /* Re-enable ENUM# interrupt */
66bef8c0 522 dbg("%s - re-enabling irq", __func__);
1da177e4
LT
523 controller->ops->enable_irq();
524 }
0bec2c85 525 out:
1da177e4
LT
526 return 0;
527}
528
529/* This is the polling mode worker thread body */
530static int
531poll_thread(void *data)
532{
533 int rc;
1da177e4 534
bcc488ab 535 while (1) {
0bec2c85 536 if (kthread_should_stop() || signal_pending(current))
1da177e4 537 break;
bcc488ab 538 if (controller->ops->query_enum()) {
43b7d7cf
SM
539 do {
540 rc = check_slots();
bcc488ab 541 if (rc > 0) {
43b7d7cf
SM
542 /* Give userspace a chance to handle extraction */
543 msleep(500);
bcc488ab 544 } else if (rc < 0) {
66bef8c0 545 dbg("%s - error checking slots", __func__);
43b7d7cf 546 thread_finished = 1;
0bec2c85 547 goto out;
1da177e4 548 }
0bec2c85 549 } while (atomic_read(&extracting) && !kthread_should_stop());
1da177e4 550 }
1da177e4
LT
551 msleep(100);
552 }
0bec2c85 553 out:
1da177e4
LT
554 return 0;
555}
556
557static int
558cpci_start_thread(void)
559{
bcc488ab 560 if (controller->irq)
0bec2c85 561 cpci_thread = kthread_run(event_thread, NULL, "cpci_hp_eventd");
bcc488ab 562 else
0bec2c85
SM
563 cpci_thread = kthread_run(poll_thread, NULL, "cpci_hp_polld");
564 if (IS_ERR(cpci_thread)) {
1da177e4 565 err("Can't start up our thread");
0bec2c85 566 return PTR_ERR(cpci_thread);
1da177e4 567 }
0bec2c85 568 thread_finished = 0;
1da177e4
LT
569 return 0;
570}
571
572static void
573cpci_stop_thread(void)
574{
0bec2c85 575 kthread_stop(cpci_thread);
1da177e4 576 thread_finished = 1;
1da177e4
LT
577}
578
579int
580cpci_hp_register_controller(struct cpci_hp_controller *new_controller)
581{
582 int status = 0;
583
bcc488ab
SM
584 if (controller)
585 return -1;
586 if (!(new_controller && new_controller->ops))
587 return -EINVAL;
588 if (new_controller->irq) {
589 if (!(new_controller->ops->enable_irq &&
590 new_controller->ops->disable_irq))
591 status = -EINVAL;
592 if (request_irq(new_controller->irq,
593 cpci_hp_intr,
594 new_controller->irq_flags,
595 MY_NAME,
596 new_controller->dev_id)) {
597 err("Can't get irq %d for the hotplug cPCI controller",
598 new_controller->irq);
599 status = -ENODEV;
1da177e4 600 }
bcc488ab 601 dbg("%s - acquired controller irq %d",
66bef8c0 602 __func__, new_controller->irq);
1da177e4 603 }
bcc488ab
SM
604 if (!status)
605 controller = new_controller;
1da177e4
LT
606 return status;
607}
b7fe9434 608EXPORT_SYMBOL_GPL(cpci_hp_register_controller);
1da177e4 609
bcc488ab
SM
610static void
611cleanup_slots(void)
612{
613 struct slot *slot;
614 struct slot *tmp;
615
616 /*
617 * Unregister all of our slots with the pci_hotplug subsystem,
618 * and free up all memory that we had allocated.
619 */
620 down_write(&list_rwsem);
621 if (!slots)
622 goto cleanup_null;
623 list_for_each_entry_safe(slot, tmp, &slot_list, slot_list) {
624 list_del(&slot->slot_list);
625 pci_hp_deregister(slot->hotplug_slot);
626 }
627cleanup_null:
628 up_write(&list_rwsem);
629 return;
630}
631
1da177e4
LT
632int
633cpci_hp_unregister_controller(struct cpci_hp_controller *old_controller)
634{
635 int status = 0;
636
bcc488ab
SM
637 if (controller) {
638 if (!thread_finished)
1da177e4 639 cpci_stop_thread();
bcc488ab 640 if (controller->irq)
1da177e4 641 free_irq(controller->irq, controller->dev_id);
1da177e4 642 controller = NULL;
bcc488ab
SM
643 cleanup_slots();
644 } else
1da177e4 645 status = -ENODEV;
1da177e4
LT
646 return status;
647}
b7fe9434 648EXPORT_SYMBOL_GPL(cpci_hp_unregister_controller);
1da177e4
LT
649
650int
651cpci_hp_start(void)
652{
653 static int first = 1;
654 int status;
655
66bef8c0 656 dbg("%s - enter", __func__);
bcc488ab 657 if (!controller)
1da177e4 658 return -ENODEV;
1da177e4 659
43b7d7cf 660 down_read(&list_rwsem);
bcc488ab 661 if (list_empty(&slot_list)) {
43b7d7cf 662 up_read(&list_rwsem);
1da177e4
LT
663 return -ENODEV;
664 }
43b7d7cf 665 up_read(&list_rwsem);
1da177e4 666
bcc488ab
SM
667 status = init_slots(first);
668 if (first)
1da177e4 669 first = 0;
bcc488ab
SM
670 if (status)
671 return status;
1da177e4
LT
672
673 status = cpci_start_thread();
bcc488ab 674 if (status)
1da177e4 675 return status;
66bef8c0 676 dbg("%s - thread started", __func__);
1da177e4 677
bcc488ab 678 if (controller->irq) {
1da177e4 679 /* Start enum interrupt processing */
66bef8c0 680 dbg("%s - enabling irq", __func__);
1da177e4
LT
681 controller->ops->enable_irq();
682 }
66bef8c0 683 dbg("%s - exit", __func__);
1da177e4
LT
684 return 0;
685}
b7fe9434 686EXPORT_SYMBOL_GPL(cpci_hp_start);
1da177e4
LT
687
688int
689cpci_hp_stop(void)
690{
bcc488ab 691 if (!controller)
1da177e4 692 return -ENODEV;
bcc488ab 693 if (controller->irq) {
1da177e4 694 /* Stop enum interrupt processing */
66bef8c0 695 dbg("%s - disabling irq", __func__);
1da177e4
LT
696 controller->ops->disable_irq();
697 }
698 cpci_stop_thread();
699 return 0;
700}
b7fe9434 701EXPORT_SYMBOL_GPL(cpci_hp_stop);
1da177e4 702
1da177e4
LT
703int __init
704cpci_hotplug_init(int debug)
705{
1da177e4 706 cpci_debug = debug;
1da177e4
LT
707 return 0;
708}