blob: 2b4c412f94c36b181049e0389260d11cd4285fe3 [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>
Arun Sharma600634972011-07-26 16:09:06 -070035#include <linux/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/delay.h>
Scott Murray0bec2c82007-07-09 11:55:57 -070037#include <linux/kthread.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include "cpci_hotplug.h"
39
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#define DRIVER_AUTHOR "Scott Murray <scottm@somanetworks.com>"
41#define DRIVER_DESC "CompactPCI Hot Plug Core"
42
43#define MY_NAME "cpci_hotplug"
44
45#define dbg(format, arg...) \
46 do { \
Scott Murraybcc488a2005-05-27 16:48:52 -040047 if (cpci_debug) \
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 printk (KERN_DEBUG "%s: " format "\n", \
49 MY_NAME , ## arg); \
Scott Murraybcc488a2005-05-27 16:48:52 -040050 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#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)
54
55/* local variables */
Scott Murray43b7d7c2005-05-09 17:31:50 -040056static DECLARE_RWSEM(list_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057static LIST_HEAD(slot_list);
58static int slots;
Scott Murray43b7d7c2005-05-09 17:31:50 -040059static atomic_t extracting;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060int cpci_debug;
61static struct cpci_hp_controller *controller;
Scott Murray0bec2c82007-07-09 11:55:57 -070062static struct task_struct *cpci_thread;
63static int thread_finished;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65static int enable_slot(struct hotplug_slot *slot);
66static int disable_slot(struct hotplug_slot *slot);
67static int set_attention_status(struct hotplug_slot *slot, u8 value);
68static int get_power_status(struct hotplug_slot *slot, u8 * value);
69static int get_attention_status(struct hotplug_slot *slot, u8 * value);
Scott Murray43b7d7c2005-05-09 17:31:50 -040070static int get_adapter_status(struct hotplug_slot *slot, u8 * value);
71static int get_latch_status(struct hotplug_slot *slot, u8 * value);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73static struct hotplug_slot_ops cpci_hotplug_slot_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 .enable_slot = enable_slot,
75 .disable_slot = disable_slot,
76 .set_attention_status = set_attention_status,
77 .get_power_status = get_power_status,
78 .get_attention_status = get_attention_status,
Scott Murray43b7d7c2005-05-09 17:31:50 -040079 .get_adapter_status = get_adapter_status,
80 .get_latch_status = get_latch_status,
Linus Torvalds1da177e2005-04-16 15:20:36 -070081};
82
83static int
84update_latch_status(struct hotplug_slot *hotplug_slot, u8 value)
85{
86 struct hotplug_slot_info info;
87
88 memcpy(&info, hotplug_slot->info, sizeof(struct hotplug_slot_info));
89 info.latch_status = value;
90 return pci_hp_change_slot_info(hotplug_slot, &info);
91}
92
93static int
94update_adapter_status(struct hotplug_slot *hotplug_slot, u8 value)
95{
96 struct hotplug_slot_info info;
97
98 memcpy(&info, hotplug_slot->info, sizeof(struct hotplug_slot_info));
99 info.adapter_status = value;
100 return pci_hp_change_slot_info(hotplug_slot, &info);
101}
102
103static int
104enable_slot(struct hotplug_slot *hotplug_slot)
105{
106 struct slot *slot = hotplug_slot->private;
107 int retval = 0;
108
Alex Chiangd6c479e2008-10-20 17:41:17 -0600109 dbg("%s - physical_slot = %s", __func__, slot_name(slot));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Scott Murraybcc488a2005-05-27 16:48:52 -0400111 if (controller->ops->set_power)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 retval = controller->ops->set_power(slot, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 return retval;
114}
115
116static int
117disable_slot(struct hotplug_slot *hotplug_slot)
118{
119 struct slot *slot = hotplug_slot->private;
120 int retval = 0;
121
Alex Chiangd6c479e2008-10-20 17:41:17 -0600122 dbg("%s - physical_slot = %s", __func__, slot_name(slot));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Scott Murraybcc488a2005-05-27 16:48:52 -0400124 down_write(&list_rwsem);
125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 /* Unconfigure device */
Alex Chiangd6c479e2008-10-20 17:41:17 -0600127 dbg("%s - unconfiguring slot %s", __func__, slot_name(slot));
Scott Murraybcc488a2005-05-27 16:48:52 -0400128 if ((retval = cpci_unconfigure_slot(slot))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 err("%s - could not unconfigure slot %s",
Alex Chiangd6c479e2008-10-20 17:41:17 -0600130 __func__, slot_name(slot));
Scott Murraybcc488a2005-05-27 16:48:52 -0400131 goto disable_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 }
Alex Chiangd6c479e2008-10-20 17:41:17 -0600133 dbg("%s - finished unconfiguring slot %s", __func__, slot_name(slot));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
135 /* Clear EXT (by setting it) */
Scott Murraybcc488a2005-05-27 16:48:52 -0400136 if (cpci_clear_ext(slot)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 err("%s - could not clear EXT for slot %s",
Alex Chiangd6c479e2008-10-20 17:41:17 -0600138 __func__, slot_name(slot));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 retval = -ENODEV;
Scott Murraybcc488a2005-05-27 16:48:52 -0400140 goto disable_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 }
142 cpci_led_on(slot);
143
Scott Murraybcc488a2005-05-27 16:48:52 -0400144 if (controller->ops->set_power)
145 if ((retval = controller->ops->set_power(slot, 0)))
146 goto disable_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Scott Murraybcc488a2005-05-27 16:48:52 -0400148 if (update_adapter_status(slot->hotplug_slot, 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 warn("failure to update adapter file");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Scott Murraybcc488a2005-05-27 16:48:52 -0400151 if (slot->extracting) {
Scott Murray43b7d7c2005-05-09 17:31:50 -0400152 slot->extracting = 0;
153 atomic_dec(&extracting);
154 }
Scott Murraybcc488a2005-05-27 16:48:52 -0400155disable_error:
156 up_write(&list_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 return retval;
158}
159
160static u8
161cpci_get_power_status(struct slot *slot)
162{
163 u8 power = 1;
164
Scott Murraybcc488a2005-05-27 16:48:52 -0400165 if (controller->ops->get_power)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 power = controller->ops->get_power(slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 return power;
168}
169
170static int
171get_power_status(struct hotplug_slot *hotplug_slot, u8 * value)
172{
173 struct slot *slot = hotplug_slot->private;
174
175 *value = cpci_get_power_status(slot);
176 return 0;
177}
178
179static int
180get_attention_status(struct hotplug_slot *hotplug_slot, u8 * value)
181{
182 struct slot *slot = hotplug_slot->private;
183
184 *value = cpci_get_attention_status(slot);
185 return 0;
186}
187
188static int
189set_attention_status(struct hotplug_slot *hotplug_slot, u8 status)
190{
191 return cpci_set_attention_status(hotplug_slot->private, status);
192}
193
Scott Murray43b7d7c2005-05-09 17:31:50 -0400194static int
195get_adapter_status(struct hotplug_slot *hotplug_slot, u8 * value)
196{
197 *value = hotplug_slot->info->adapter_status;
198 return 0;
199}
200
201static int
202get_latch_status(struct hotplug_slot *hotplug_slot, u8 * value)
203{
204 *value = hotplug_slot->info->latch_status;
205 return 0;
206}
207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208static void release_slot(struct hotplug_slot *hotplug_slot)
209{
210 struct slot *slot = hotplug_slot->private;
211
212 kfree(slot->hotplug_slot->info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 kfree(slot->hotplug_slot);
Scott Murray03e49d42005-06-06 15:48:04 -0400214 if (slot->dev)
215 pci_dev_put(slot->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 kfree(slot);
217}
218
219#define SLOT_NAME_SIZE 6
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
221int
222cpci_hp_register_bus(struct pci_bus *bus, u8 first, u8 last)
223{
224 struct slot *slot;
225 struct hotplug_slot *hotplug_slot;
226 struct hotplug_slot_info *info;
Alex Chiangd6c479e2008-10-20 17:41:17 -0600227 char name[SLOT_NAME_SIZE];
Julia Lawall83d05712012-07-16 09:25:56 -0600228 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 int i;
230
Scott Murraybcc488a2005-05-27 16:48:52 -0400231 if (!(controller && bus))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
234 /*
235 * Create a structure for each slot, and register that slot
236 * with the pci_hotplug subsystem.
237 */
238 for (i = first; i <= last; ++i) {
Eric Sesterhennf5afe802006-02-28 15:34:49 +0100239 slot = kzalloc(sizeof (struct slot), GFP_KERNEL);
Julia Lawall83d05712012-07-16 09:25:56 -0600240 if (!slot) {
241 status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 goto error;
Julia Lawall83d05712012-07-16 09:25:56 -0600243 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
245 hotplug_slot =
Eric Sesterhennf5afe802006-02-28 15:34:49 +0100246 kzalloc(sizeof (struct hotplug_slot), GFP_KERNEL);
Julia Lawall83d05712012-07-16 09:25:56 -0600247 if (!hotplug_slot) {
248 status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 goto error_slot;
Julia Lawall83d05712012-07-16 09:25:56 -0600250 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 slot->hotplug_slot = hotplug_slot;
252
Eric Sesterhennf5afe802006-02-28 15:34:49 +0100253 info = kzalloc(sizeof (struct hotplug_slot_info), GFP_KERNEL);
Julia Lawall83d05712012-07-16 09:25:56 -0600254 if (!info) {
255 status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 goto error_hpslot;
Julia Lawall83d05712012-07-16 09:25:56 -0600257 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 hotplug_slot->info = info;
259
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 slot->bus = bus;
261 slot->number = i;
262 slot->devfn = PCI_DEVFN(i, 0);
263
Alex Chiangd6c479e2008-10-20 17:41:17 -0600264 snprintf(name, SLOT_NAME_SIZE, "%02x:%02x", bus->number, i);
265
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 hotplug_slot->private = slot;
267 hotplug_slot->release = &release_slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 hotplug_slot->ops = &cpci_hotplug_slot_ops;
269
270 /*
271 * Initialize the slot info structure with some known
272 * good values.
273 */
Alex Chiangd6c479e2008-10-20 17:41:17 -0600274 dbg("initializing slot %s", name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 info->power_status = cpci_get_power_status(slot);
276 info->attention_status = cpci_get_attention_status(slot);
277
Alex Chiangd6c479e2008-10-20 17:41:17 -0600278 dbg("registering slot %s", name);
279 status = pci_hp_register(slot->hotplug_slot, bus, i, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 if (status) {
281 err("pci_hp_register failed with error %d", status);
Alex Chiangd6c479e2008-10-20 17:41:17 -0600282 goto error_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 }
Alex Chiangd6c479e2008-10-20 17:41:17 -0600284 dbg("slot registered with name: %s", slot_name(slot));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
286 /* Add slot to our internal list */
Scott Murray43b7d7c2005-05-09 17:31:50 -0400287 down_write(&list_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 list_add(&slot->slot_list, &slot_list);
289 slots++;
Scott Murray43b7d7c2005-05-09 17:31:50 -0400290 up_write(&list_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 }
292 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293error_info:
294 kfree(info);
295error_hpslot:
296 kfree(hotplug_slot);
297error_slot:
298 kfree(slot);
299error:
300 return status;
301}
302
303int
304cpci_hp_unregister_bus(struct pci_bus *bus)
305{
306 struct slot *slot;
Scott Murraybcc488a2005-05-27 16:48:52 -0400307 struct slot *tmp;
308 int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Scott Murray43b7d7c2005-05-09 17:31:50 -0400310 down_write(&list_rwsem);
Scott Murraybcc488a2005-05-27 16:48:52 -0400311 if (!slots) {
Scott Murray43b7d7c2005-05-09 17:31:50 -0400312 up_write(&list_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 return -1;
314 }
Scott Murraybcc488a2005-05-27 16:48:52 -0400315 list_for_each_entry_safe(slot, tmp, &slot_list, slot_list) {
316 if (slot->bus == bus) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 list_del(&slot->slot_list);
318 slots--;
Scott Murraybcc488a2005-05-27 16:48:52 -0400319
Alex Chiangd6c479e2008-10-20 17:41:17 -0600320 dbg("deregistering slot %s", slot_name(slot));
Scott Murraybcc488a2005-05-27 16:48:52 -0400321 status = pci_hp_deregister(slot->hotplug_slot);
322 if (status) {
323 err("pci_hp_deregister failed with error %d",
324 status);
325 break;
326 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 }
328 }
Scott Murray43b7d7c2005-05-09 17:31:50 -0400329 up_write(&list_rwsem);
Scott Murraybcc488a2005-05-27 16:48:52 -0400330 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331}
332
333/* This is the interrupt mode interrupt handler */
334static irqreturn_t
David Howells7d12e782006-10-05 14:55:46 +0100335cpci_hp_intr(int irq, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336{
337 dbg("entered cpci_hp_intr");
338
339 /* Check to see if it was our interrupt */
Thomas Gleixner6b4486e2006-07-01 19:29:41 -0700340 if ((controller->irq_flags & IRQF_SHARED) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 !controller->ops->check_irq(controller->dev_id)) {
342 dbg("exited cpci_hp_intr, not our interrupt");
343 return IRQ_NONE;
344 }
345
346 /* Disable ENUM interrupt */
347 controller->ops->disable_irq();
348
349 /* Trigger processing by the event thread */
Scott Murray0bec2c82007-07-09 11:55:57 -0700350 wake_up_process(cpci_thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 return IRQ_HANDLED;
352}
353
354/*
Scott Murray43b7d7c2005-05-09 17:31:50 -0400355 * According to PICMG 2.1 R2.0, section 6.3.2, upon
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 * initialization, the system driver shall clear the
357 * INS bits of the cold-inserted devices.
358 */
359static int
Scott Murraybcc488a2005-05-27 16:48:52 -0400360init_slots(int clear_ins)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361{
362 struct slot *slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 struct pci_dev* dev;
364
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800365 dbg("%s - enter", __func__);
Scott Murray43b7d7c2005-05-09 17:31:50 -0400366 down_read(&list_rwsem);
Scott Murraybcc488a2005-05-27 16:48:52 -0400367 if (!slots) {
Scott Murray43b7d7c2005-05-09 17:31:50 -0400368 up_read(&list_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 return -1;
370 }
Scott Murraybcc488a2005-05-27 16:48:52 -0400371 list_for_each_entry(slot, &slot_list, slot_list) {
Alex Chiangd6c479e2008-10-20 17:41:17 -0600372 dbg("%s - looking at slot %s", __func__, slot_name(slot));
Scott Murraybcc488a2005-05-27 16:48:52 -0400373 if (clear_ins && cpci_check_and_clear_ins(slot))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 dbg("%s - cleared INS for slot %s",
Alex Chiangd6c479e2008-10-20 17:41:17 -0600375 __func__, slot_name(slot));
Scott Murraybcc488a2005-05-27 16:48:52 -0400376 dev = pci_get_slot(slot->bus, PCI_DEVFN(slot->number, 0));
377 if (dev) {
378 if (update_adapter_status(slot->hotplug_slot, 1))
379 warn("failure to update adapter file");
380 if (update_latch_status(slot->hotplug_slot, 1))
381 warn("failure to update latch file");
382 slot->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 }
384 }
Scott Murray43b7d7c2005-05-09 17:31:50 -0400385 up_read(&list_rwsem);
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800386 dbg("%s - exit", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 return 0;
388}
389
390static int
391check_slots(void)
392{
393 struct slot *slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 int extracted;
395 int inserted;
Scott Murray43b7d7c2005-05-09 17:31:50 -0400396 u16 hs_csr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
Scott Murray43b7d7c2005-05-09 17:31:50 -0400398 down_read(&list_rwsem);
Scott Murraybcc488a2005-05-27 16:48:52 -0400399 if (!slots) {
Scott Murray43b7d7c2005-05-09 17:31:50 -0400400 up_read(&list_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 err("no slots registered, shutting down");
402 return -1;
403 }
404 extracted = inserted = 0;
Scott Murraybcc488a2005-05-27 16:48:52 -0400405 list_for_each_entry(slot, &slot_list, slot_list) {
Alex Chiangd6c479e2008-10-20 17:41:17 -0600406 dbg("%s - looking at slot %s", __func__, slot_name(slot));
Scott Murraybcc488a2005-05-27 16:48:52 -0400407 if (cpci_check_and_clear_ins(slot)) {
408 /*
409 * Some broken hardware (e.g. PLX 9054AB) asserts
410 * ENUM# twice...
411 */
412 if (slot->dev) {
413 warn("slot %s already inserted",
Alex Chiangd6c479e2008-10-20 17:41:17 -0600414 slot_name(slot));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 inserted++;
416 continue;
417 }
418
419 /* Process insertion */
Alex Chiangd6c479e2008-10-20 17:41:17 -0600420 dbg("%s - slot %s inserted", __func__, slot_name(slot));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
422 /* GSM, debug */
423 hs_csr = cpci_get_hs_csr(slot);
424 dbg("%s - slot %s HS_CSR (1) = %04x",
Alex Chiangd6c479e2008-10-20 17:41:17 -0600425 __func__, slot_name(slot), hs_csr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
427 /* Configure device */
428 dbg("%s - configuring slot %s",
Alex Chiangd6c479e2008-10-20 17:41:17 -0600429 __func__, slot_name(slot));
Scott Murraybcc488a2005-05-27 16:48:52 -0400430 if (cpci_configure_slot(slot)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 err("%s - could not configure slot %s",
Alex Chiangd6c479e2008-10-20 17:41:17 -0600432 __func__, slot_name(slot));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 continue;
434 }
435 dbg("%s - finished configuring slot %s",
Alex Chiangd6c479e2008-10-20 17:41:17 -0600436 __func__, slot_name(slot));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
438 /* GSM, debug */
439 hs_csr = cpci_get_hs_csr(slot);
440 dbg("%s - slot %s HS_CSR (2) = %04x",
Alex Chiangd6c479e2008-10-20 17:41:17 -0600441 __func__, slot_name(slot), hs_csr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Scott Murraybcc488a2005-05-27 16:48:52 -0400443 if (update_latch_status(slot->hotplug_slot, 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 warn("failure to update latch file");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
Scott Murraybcc488a2005-05-27 16:48:52 -0400446 if (update_adapter_status(slot->hotplug_slot, 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 warn("failure to update adapter file");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
449 cpci_led_off(slot);
450
451 /* GSM, debug */
452 hs_csr = cpci_get_hs_csr(slot);
453 dbg("%s - slot %s HS_CSR (3) = %04x",
Alex Chiangd6c479e2008-10-20 17:41:17 -0600454 __func__, slot_name(slot), hs_csr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
456 inserted++;
Scott Murraybcc488a2005-05-27 16:48:52 -0400457 } else if (cpci_check_ext(slot)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 /* Process extraction request */
459 dbg("%s - slot %s extracted",
Alex Chiangd6c479e2008-10-20 17:41:17 -0600460 __func__, slot_name(slot));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
462 /* GSM, debug */
463 hs_csr = cpci_get_hs_csr(slot);
464 dbg("%s - slot %s HS_CSR = %04x",
Alex Chiangd6c479e2008-10-20 17:41:17 -0600465 __func__, slot_name(slot), hs_csr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
Scott Murraybcc488a2005-05-27 16:48:52 -0400467 if (!slot->extracting) {
468 if (update_latch_status(slot->hotplug_slot, 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 warn("failure to update latch file");
470 }
471 slot->extracting = 1;
Scott Murraybcc488a2005-05-27 16:48:52 -0400472 atomic_inc(&extracting);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 }
474 extracted++;
Scott Murraybcc488a2005-05-27 16:48:52 -0400475 } else if (slot->extracting) {
Scott Murray43b7d7c2005-05-09 17:31:50 -0400476 hs_csr = cpci_get_hs_csr(slot);
Scott Murraybcc488a2005-05-27 16:48:52 -0400477 if (hs_csr == 0xffff) {
Scott Murray43b7d7c2005-05-09 17:31:50 -0400478 /*
479 * Hmmm, we're likely hosed at this point, should we
480 * bother trying to tell the driver or not?
481 */
482 err("card in slot %s was improperly removed",
Alex Chiangd6c479e2008-10-20 17:41:17 -0600483 slot_name(slot));
Scott Murraybcc488a2005-05-27 16:48:52 -0400484 if (update_adapter_status(slot->hotplug_slot, 0))
Scott Murray43b7d7c2005-05-09 17:31:50 -0400485 warn("failure to update adapter file");
Scott Murray43b7d7c2005-05-09 17:31:50 -0400486 slot->extracting = 0;
487 atomic_dec(&extracting);
488 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 }
490 }
Scott Murray43b7d7c2005-05-09 17:31:50 -0400491 up_read(&list_rwsem);
492 dbg("inserted=%d, extracted=%d, extracting=%d",
493 inserted, extracted, atomic_read(&extracting));
Scott Murraybcc488a2005-05-27 16:48:52 -0400494 if (inserted || extracted)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 return extracted;
Scott Murraybcc488a2005-05-27 16:48:52 -0400496 else if (!atomic_read(&extracting)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 err("cannot find ENUM# source, shutting down");
498 return -1;
499 }
Scott Murray43b7d7c2005-05-09 17:31:50 -0400500 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501}
502
503/* This is the interrupt mode worker thread body */
504static int
505event_thread(void *data)
506{
507 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800509 dbg("%s - event thread started", __func__);
Scott Murraybcc488a2005-05-27 16:48:52 -0400510 while (1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 dbg("event thread sleeping");
Scott Murray0bec2c82007-07-09 11:55:57 -0700512 set_current_state(TASK_INTERRUPTIBLE);
513 schedule();
514 if (kthread_should_stop())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 break;
Scott Murray43b7d7c2005-05-09 17:31:50 -0400516 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 rc = check_slots();
Scott Murray43b7d7c2005-05-09 17:31:50 -0400518 if (rc > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 /* Give userspace a chance to handle extraction */
520 msleep(500);
Scott Murray43b7d7c2005-05-09 17:31:50 -0400521 } else if (rc < 0) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800522 dbg("%s - error checking slots", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 thread_finished = 1;
Scott Murray0bec2c82007-07-09 11:55:57 -0700524 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 }
Scott Murray0bec2c82007-07-09 11:55:57 -0700526 } while (atomic_read(&extracting) && !kthread_should_stop());
527 if (kthread_should_stop())
Scott Murraybcc488a2005-05-27 16:48:52 -0400528 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
530 /* Re-enable ENUM# interrupt */
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800531 dbg("%s - re-enabling irq", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 controller->ops->enable_irq();
533 }
Scott Murray0bec2c82007-07-09 11:55:57 -0700534 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 return 0;
536}
537
538/* This is the polling mode worker thread body */
539static int
540poll_thread(void *data)
541{
542 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Scott Murraybcc488a2005-05-27 16:48:52 -0400544 while (1) {
Scott Murray0bec2c82007-07-09 11:55:57 -0700545 if (kthread_should_stop() || signal_pending(current))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 break;
Scott Murraybcc488a2005-05-27 16:48:52 -0400547 if (controller->ops->query_enum()) {
Scott Murray43b7d7c2005-05-09 17:31:50 -0400548 do {
549 rc = check_slots();
Scott Murraybcc488a2005-05-27 16:48:52 -0400550 if (rc > 0) {
Scott Murray43b7d7c2005-05-09 17:31:50 -0400551 /* Give userspace a chance to handle extraction */
552 msleep(500);
Scott Murraybcc488a2005-05-27 16:48:52 -0400553 } else if (rc < 0) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800554 dbg("%s - error checking slots", __func__);
Scott Murray43b7d7c2005-05-09 17:31:50 -0400555 thread_finished = 1;
Scott Murray0bec2c82007-07-09 11:55:57 -0700556 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 }
Scott Murray0bec2c82007-07-09 11:55:57 -0700558 } while (atomic_read(&extracting) && !kthread_should_stop());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 msleep(100);
561 }
Scott Murray0bec2c82007-07-09 11:55:57 -0700562 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 return 0;
564}
565
566static int
567cpci_start_thread(void)
568{
Scott Murraybcc488a2005-05-27 16:48:52 -0400569 if (controller->irq)
Scott Murray0bec2c82007-07-09 11:55:57 -0700570 cpci_thread = kthread_run(event_thread, NULL, "cpci_hp_eventd");
Scott Murraybcc488a2005-05-27 16:48:52 -0400571 else
Scott Murray0bec2c82007-07-09 11:55:57 -0700572 cpci_thread = kthread_run(poll_thread, NULL, "cpci_hp_polld");
573 if (IS_ERR(cpci_thread)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 err("Can't start up our thread");
Scott Murray0bec2c82007-07-09 11:55:57 -0700575 return PTR_ERR(cpci_thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 }
Scott Murray0bec2c82007-07-09 11:55:57 -0700577 thread_finished = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 return 0;
579}
580
581static void
582cpci_stop_thread(void)
583{
Scott Murray0bec2c82007-07-09 11:55:57 -0700584 kthread_stop(cpci_thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 thread_finished = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586}
587
588int
589cpci_hp_register_controller(struct cpci_hp_controller *new_controller)
590{
591 int status = 0;
592
Scott Murraybcc488a2005-05-27 16:48:52 -0400593 if (controller)
594 return -1;
595 if (!(new_controller && new_controller->ops))
596 return -EINVAL;
597 if (new_controller->irq) {
598 if (!(new_controller->ops->enable_irq &&
599 new_controller->ops->disable_irq))
600 status = -EINVAL;
601 if (request_irq(new_controller->irq,
602 cpci_hp_intr,
603 new_controller->irq_flags,
604 MY_NAME,
605 new_controller->dev_id)) {
606 err("Can't get irq %d for the hotplug cPCI controller",
607 new_controller->irq);
608 status = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 }
Scott Murraybcc488a2005-05-27 16:48:52 -0400610 dbg("%s - acquired controller irq %d",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800611 __func__, new_controller->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 }
Scott Murraybcc488a2005-05-27 16:48:52 -0400613 if (!status)
614 controller = new_controller;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 return status;
616}
617
Scott Murraybcc488a2005-05-27 16:48:52 -0400618static void
619cleanup_slots(void)
620{
621 struct slot *slot;
622 struct slot *tmp;
623
624 /*
625 * Unregister all of our slots with the pci_hotplug subsystem,
626 * and free up all memory that we had allocated.
627 */
628 down_write(&list_rwsem);
629 if (!slots)
630 goto cleanup_null;
631 list_for_each_entry_safe(slot, tmp, &slot_list, slot_list) {
632 list_del(&slot->slot_list);
633 pci_hp_deregister(slot->hotplug_slot);
634 }
635cleanup_null:
636 up_write(&list_rwsem);
637 return;
638}
639
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640int
641cpci_hp_unregister_controller(struct cpci_hp_controller *old_controller)
642{
643 int status = 0;
644
Scott Murraybcc488a2005-05-27 16:48:52 -0400645 if (controller) {
646 if (!thread_finished)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 cpci_stop_thread();
Scott Murraybcc488a2005-05-27 16:48:52 -0400648 if (controller->irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 free_irq(controller->irq, controller->dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 controller = NULL;
Scott Murraybcc488a2005-05-27 16:48:52 -0400651 cleanup_slots();
652 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 status = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 return status;
655}
656
657int
658cpci_hp_start(void)
659{
660 static int first = 1;
661 int status;
662
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800663 dbg("%s - enter", __func__);
Scott Murraybcc488a2005-05-27 16:48:52 -0400664 if (!controller)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
Scott Murray43b7d7c2005-05-09 17:31:50 -0400667 down_read(&list_rwsem);
Scott Murraybcc488a2005-05-27 16:48:52 -0400668 if (list_empty(&slot_list)) {
Scott Murray43b7d7c2005-05-09 17:31:50 -0400669 up_read(&list_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 return -ENODEV;
671 }
Scott Murray43b7d7c2005-05-09 17:31:50 -0400672 up_read(&list_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Scott Murraybcc488a2005-05-27 16:48:52 -0400674 status = init_slots(first);
675 if (first)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 first = 0;
Scott Murraybcc488a2005-05-27 16:48:52 -0400677 if (status)
678 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
680 status = cpci_start_thread();
Scott Murraybcc488a2005-05-27 16:48:52 -0400681 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 return status;
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800683 dbg("%s - thread started", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
Scott Murraybcc488a2005-05-27 16:48:52 -0400685 if (controller->irq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 /* Start enum interrupt processing */
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800687 dbg("%s - enabling irq", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 controller->ops->enable_irq();
689 }
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800690 dbg("%s - exit", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 return 0;
692}
693
694int
695cpci_hp_stop(void)
696{
Scott Murraybcc488a2005-05-27 16:48:52 -0400697 if (!controller)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 return -ENODEV;
Scott Murraybcc488a2005-05-27 16:48:52 -0400699 if (controller->irq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 /* Stop enum interrupt processing */
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800701 dbg("%s - disabling irq", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 controller->ops->disable_irq();
703 }
704 cpci_stop_thread();
705 return 0;
706}
707
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708int __init
709cpci_hotplug_init(int debug)
710{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 cpci_debug = debug;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 return 0;
713}
714
715void __exit
716cpci_hotplug_exit(void)
717{
718 /*
719 * Clean everything up.
720 */
Scott Murraybcc488a2005-05-27 16:48:52 -0400721 cpci_hp_stop();
722 cpci_hp_unregister_controller(controller);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723}
724
725EXPORT_SYMBOL_GPL(cpci_hp_register_controller);
726EXPORT_SYMBOL_GPL(cpci_hp_unregister_controller);
727EXPORT_SYMBOL_GPL(cpci_hp_register_bus);
728EXPORT_SYMBOL_GPL(cpci_hp_unregister_bus);
729EXPORT_SYMBOL_GPL(cpci_hp_start);
730EXPORT_SYMBOL_GPL(cpci_hp_stop);