blob: a5b9f6ae507bb5cf23ab4cf614e97c1fa7e2c6d3 [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 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 .enable_slot = enable_slot,
76 .disable_slot = disable_slot,
77 .set_attention_status = set_attention_status,
78 .get_power_status = get_power_status,
79 .get_attention_status = get_attention_status,
Scott Murray43b7d7c2005-05-09 17:31:50 -040080 .get_adapter_status = get_adapter_status,
81 .get_latch_status = get_latch_status,
Linus Torvalds1da177e2005-04-16 15:20:36 -070082};
83
84static int
85update_latch_status(struct hotplug_slot *hotplug_slot, u8 value)
86{
87 struct hotplug_slot_info info;
88
89 memcpy(&info, hotplug_slot->info, sizeof(struct hotplug_slot_info));
90 info.latch_status = value;
91 return pci_hp_change_slot_info(hotplug_slot, &info);
92}
93
94static int
95update_adapter_status(struct hotplug_slot *hotplug_slot, u8 value)
96{
97 struct hotplug_slot_info info;
98
99 memcpy(&info, hotplug_slot->info, sizeof(struct hotplug_slot_info));
100 info.adapter_status = value;
101 return pci_hp_change_slot_info(hotplug_slot, &info);
102}
103
104static int
105enable_slot(struct hotplug_slot *hotplug_slot)
106{
107 struct slot *slot = hotplug_slot->private;
108 int retval = 0;
109
Alex Chiangd6c479e2008-10-20 17:41:17 -0600110 dbg("%s - physical_slot = %s", __func__, slot_name(slot));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Scott Murraybcc488a2005-05-27 16:48:52 -0400112 if (controller->ops->set_power)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 retval = controller->ops->set_power(slot, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 return retval;
115}
116
117static int
118disable_slot(struct hotplug_slot *hotplug_slot)
119{
120 struct slot *slot = hotplug_slot->private;
121 int retval = 0;
122
Alex Chiangd6c479e2008-10-20 17:41:17 -0600123 dbg("%s - physical_slot = %s", __func__, slot_name(slot));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Scott Murraybcc488a2005-05-27 16:48:52 -0400125 down_write(&list_rwsem);
126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 /* Unconfigure device */
Alex Chiangd6c479e2008-10-20 17:41:17 -0600128 dbg("%s - unconfiguring slot %s", __func__, slot_name(slot));
Scott Murraybcc488a2005-05-27 16:48:52 -0400129 if ((retval = cpci_unconfigure_slot(slot))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 err("%s - could not unconfigure slot %s",
Alex Chiangd6c479e2008-10-20 17:41:17 -0600131 __func__, slot_name(slot));
Scott Murraybcc488a2005-05-27 16:48:52 -0400132 goto disable_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 }
Alex Chiangd6c479e2008-10-20 17:41:17 -0600134 dbg("%s - finished unconfiguring slot %s", __func__, slot_name(slot));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
136 /* Clear EXT (by setting it) */
Scott Murraybcc488a2005-05-27 16:48:52 -0400137 if (cpci_clear_ext(slot)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 err("%s - could not clear EXT for slot %s",
Alex Chiangd6c479e2008-10-20 17:41:17 -0600139 __func__, slot_name(slot));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 retval = -ENODEV;
Scott Murraybcc488a2005-05-27 16:48:52 -0400141 goto disable_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 }
143 cpci_led_on(slot);
144
Scott Murraybcc488a2005-05-27 16:48:52 -0400145 if (controller->ops->set_power)
146 if ((retval = controller->ops->set_power(slot, 0)))
147 goto disable_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Scott Murraybcc488a2005-05-27 16:48:52 -0400149 if (update_adapter_status(slot->hotplug_slot, 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 warn("failure to update adapter file");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Scott Murraybcc488a2005-05-27 16:48:52 -0400152 if (slot->extracting) {
Scott Murray43b7d7c2005-05-09 17:31:50 -0400153 slot->extracting = 0;
154 atomic_dec(&extracting);
155 }
Scott Murraybcc488a2005-05-27 16:48:52 -0400156disable_error:
157 up_write(&list_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 return retval;
159}
160
161static u8
162cpci_get_power_status(struct slot *slot)
163{
164 u8 power = 1;
165
Scott Murraybcc488a2005-05-27 16:48:52 -0400166 if (controller->ops->get_power)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 power = controller->ops->get_power(slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 return power;
169}
170
171static int
172get_power_status(struct hotplug_slot *hotplug_slot, u8 * value)
173{
174 struct slot *slot = hotplug_slot->private;
175
176 *value = cpci_get_power_status(slot);
177 return 0;
178}
179
180static int
181get_attention_status(struct hotplug_slot *hotplug_slot, u8 * value)
182{
183 struct slot *slot = hotplug_slot->private;
184
185 *value = cpci_get_attention_status(slot);
186 return 0;
187}
188
189static int
190set_attention_status(struct hotplug_slot *hotplug_slot, u8 status)
191{
192 return cpci_set_attention_status(hotplug_slot->private, status);
193}
194
Scott Murray43b7d7c2005-05-09 17:31:50 -0400195static int
196get_adapter_status(struct hotplug_slot *hotplug_slot, u8 * value)
197{
198 *value = hotplug_slot->info->adapter_status;
199 return 0;
200}
201
202static int
203get_latch_status(struct hotplug_slot *hotplug_slot, u8 * value)
204{
205 *value = hotplug_slot->info->latch_status;
206 return 0;
207}
208
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209static void release_slot(struct hotplug_slot *hotplug_slot)
210{
211 struct slot *slot = hotplug_slot->private;
212
213 kfree(slot->hotplug_slot->info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 kfree(slot->hotplug_slot);
Scott Murray03e49d42005-06-06 15:48:04 -0400215 if (slot->dev)
216 pci_dev_put(slot->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 kfree(slot);
218}
219
220#define SLOT_NAME_SIZE 6
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
222int
223cpci_hp_register_bus(struct pci_bus *bus, u8 first, u8 last)
224{
225 struct slot *slot;
226 struct hotplug_slot *hotplug_slot;
227 struct hotplug_slot_info *info;
Alex Chiangd6c479e2008-10-20 17:41:17 -0600228 char name[SLOT_NAME_SIZE];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 int status = -ENOMEM;
230 int i;
231
Scott Murraybcc488a2005-05-27 16:48:52 -0400232 if (!(controller && bus))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
235 /*
236 * Create a structure for each slot, and register that slot
237 * with the pci_hotplug subsystem.
238 */
239 for (i = first; i <= last; ++i) {
Eric Sesterhennf5afe802006-02-28 15:34:49 +0100240 slot = kzalloc(sizeof (struct slot), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 if (!slot)
242 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
244 hotplug_slot =
Eric Sesterhennf5afe802006-02-28 15:34:49 +0100245 kzalloc(sizeof (struct hotplug_slot), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 if (!hotplug_slot)
247 goto error_slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 slot->hotplug_slot = hotplug_slot;
249
Eric Sesterhennf5afe802006-02-28 15:34:49 +0100250 info = kzalloc(sizeof (struct hotplug_slot_info), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 if (!info)
252 goto error_hpslot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 hotplug_slot->info = info;
254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 slot->bus = bus;
256 slot->number = i;
257 slot->devfn = PCI_DEVFN(i, 0);
258
Alex Chiangd6c479e2008-10-20 17:41:17 -0600259 snprintf(name, SLOT_NAME_SIZE, "%02x:%02x", bus->number, i);
260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 hotplug_slot->private = slot;
262 hotplug_slot->release = &release_slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 hotplug_slot->ops = &cpci_hotplug_slot_ops;
264
265 /*
266 * Initialize the slot info structure with some known
267 * good values.
268 */
Alex Chiangd6c479e2008-10-20 17:41:17 -0600269 dbg("initializing slot %s", name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 info->power_status = cpci_get_power_status(slot);
271 info->attention_status = cpci_get_attention_status(slot);
272
Alex Chiangd6c479e2008-10-20 17:41:17 -0600273 dbg("registering slot %s", name);
274 status = pci_hp_register(slot->hotplug_slot, bus, i, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 if (status) {
276 err("pci_hp_register failed with error %d", status);
Alex Chiangd6c479e2008-10-20 17:41:17 -0600277 goto error_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 }
Alex Chiangd6c479e2008-10-20 17:41:17 -0600279 dbg("slot registered with name: %s", slot_name(slot));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
281 /* Add slot to our internal list */
Scott Murray43b7d7c2005-05-09 17:31:50 -0400282 down_write(&list_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 list_add(&slot->slot_list, &slot_list);
284 slots++;
Scott Murray43b7d7c2005-05-09 17:31:50 -0400285 up_write(&list_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 }
287 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288error_info:
289 kfree(info);
290error_hpslot:
291 kfree(hotplug_slot);
292error_slot:
293 kfree(slot);
294error:
295 return status;
296}
297
298int
299cpci_hp_unregister_bus(struct pci_bus *bus)
300{
301 struct slot *slot;
Scott Murraybcc488a2005-05-27 16:48:52 -0400302 struct slot *tmp;
303 int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Scott Murray43b7d7c2005-05-09 17:31:50 -0400305 down_write(&list_rwsem);
Scott Murraybcc488a2005-05-27 16:48:52 -0400306 if (!slots) {
Scott Murray43b7d7c2005-05-09 17:31:50 -0400307 up_write(&list_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 return -1;
309 }
Scott Murraybcc488a2005-05-27 16:48:52 -0400310 list_for_each_entry_safe(slot, tmp, &slot_list, slot_list) {
311 if (slot->bus == bus) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 list_del(&slot->slot_list);
313 slots--;
Scott Murraybcc488a2005-05-27 16:48:52 -0400314
Alex Chiangd6c479e2008-10-20 17:41:17 -0600315 dbg("deregistering slot %s", slot_name(slot));
Scott Murraybcc488a2005-05-27 16:48:52 -0400316 status = pci_hp_deregister(slot->hotplug_slot);
317 if (status) {
318 err("pci_hp_deregister failed with error %d",
319 status);
320 break;
321 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 }
323 }
Scott Murray43b7d7c2005-05-09 17:31:50 -0400324 up_write(&list_rwsem);
Scott Murraybcc488a2005-05-27 16:48:52 -0400325 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326}
327
328/* This is the interrupt mode interrupt handler */
329static irqreturn_t
David Howells7d12e782006-10-05 14:55:46 +0100330cpci_hp_intr(int irq, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331{
332 dbg("entered cpci_hp_intr");
333
334 /* Check to see if it was our interrupt */
Thomas Gleixner6b4486e2006-07-01 19:29:41 -0700335 if ((controller->irq_flags & IRQF_SHARED) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 !controller->ops->check_irq(controller->dev_id)) {
337 dbg("exited cpci_hp_intr, not our interrupt");
338 return IRQ_NONE;
339 }
340
341 /* Disable ENUM interrupt */
342 controller->ops->disable_irq();
343
344 /* Trigger processing by the event thread */
Scott Murray0bec2c82007-07-09 11:55:57 -0700345 wake_up_process(cpci_thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 return IRQ_HANDLED;
347}
348
349/*
Scott Murray43b7d7c2005-05-09 17:31:50 -0400350 * According to PICMG 2.1 R2.0, section 6.3.2, upon
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 * initialization, the system driver shall clear the
352 * INS bits of the cold-inserted devices.
353 */
354static int
Scott Murraybcc488a2005-05-27 16:48:52 -0400355init_slots(int clear_ins)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356{
357 struct slot *slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 struct pci_dev* dev;
359
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800360 dbg("%s - enter", __func__);
Scott Murray43b7d7c2005-05-09 17:31:50 -0400361 down_read(&list_rwsem);
Scott Murraybcc488a2005-05-27 16:48:52 -0400362 if (!slots) {
Scott Murray43b7d7c2005-05-09 17:31:50 -0400363 up_read(&list_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 return -1;
365 }
Scott Murraybcc488a2005-05-27 16:48:52 -0400366 list_for_each_entry(slot, &slot_list, slot_list) {
Alex Chiangd6c479e2008-10-20 17:41:17 -0600367 dbg("%s - looking at slot %s", __func__, slot_name(slot));
Scott Murraybcc488a2005-05-27 16:48:52 -0400368 if (clear_ins && cpci_check_and_clear_ins(slot))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 dbg("%s - cleared INS for slot %s",
Alex Chiangd6c479e2008-10-20 17:41:17 -0600370 __func__, slot_name(slot));
Scott Murraybcc488a2005-05-27 16:48:52 -0400371 dev = pci_get_slot(slot->bus, PCI_DEVFN(slot->number, 0));
372 if (dev) {
373 if (update_adapter_status(slot->hotplug_slot, 1))
374 warn("failure to update adapter file");
375 if (update_latch_status(slot->hotplug_slot, 1))
376 warn("failure to update latch file");
377 slot->dev = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 }
379 }
Scott Murray43b7d7c2005-05-09 17:31:50 -0400380 up_read(&list_rwsem);
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800381 dbg("%s - exit", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 return 0;
383}
384
385static int
386check_slots(void)
387{
388 struct slot *slot;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 int extracted;
390 int inserted;
Scott Murray43b7d7c2005-05-09 17:31:50 -0400391 u16 hs_csr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Scott Murray43b7d7c2005-05-09 17:31:50 -0400393 down_read(&list_rwsem);
Scott Murraybcc488a2005-05-27 16:48:52 -0400394 if (!slots) {
Scott Murray43b7d7c2005-05-09 17:31:50 -0400395 up_read(&list_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 err("no slots registered, shutting down");
397 return -1;
398 }
399 extracted = inserted = 0;
Scott Murraybcc488a2005-05-27 16:48:52 -0400400 list_for_each_entry(slot, &slot_list, slot_list) {
Alex Chiangd6c479e2008-10-20 17:41:17 -0600401 dbg("%s - looking at slot %s", __func__, slot_name(slot));
Scott Murraybcc488a2005-05-27 16:48:52 -0400402 if (cpci_check_and_clear_ins(slot)) {
403 /*
404 * Some broken hardware (e.g. PLX 9054AB) asserts
405 * ENUM# twice...
406 */
407 if (slot->dev) {
408 warn("slot %s already inserted",
Alex Chiangd6c479e2008-10-20 17:41:17 -0600409 slot_name(slot));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 inserted++;
411 continue;
412 }
413
414 /* Process insertion */
Alex Chiangd6c479e2008-10-20 17:41:17 -0600415 dbg("%s - slot %s inserted", __func__, slot_name(slot));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
417 /* GSM, debug */
418 hs_csr = cpci_get_hs_csr(slot);
419 dbg("%s - slot %s HS_CSR (1) = %04x",
Alex Chiangd6c479e2008-10-20 17:41:17 -0600420 __func__, slot_name(slot), hs_csr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
422 /* Configure device */
423 dbg("%s - configuring slot %s",
Alex Chiangd6c479e2008-10-20 17:41:17 -0600424 __func__, slot_name(slot));
Scott Murraybcc488a2005-05-27 16:48:52 -0400425 if (cpci_configure_slot(slot)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 err("%s - could not configure slot %s",
Alex Chiangd6c479e2008-10-20 17:41:17 -0600427 __func__, slot_name(slot));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 continue;
429 }
430 dbg("%s - finished configuring slot %s",
Alex Chiangd6c479e2008-10-20 17:41:17 -0600431 __func__, slot_name(slot));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
433 /* GSM, debug */
434 hs_csr = cpci_get_hs_csr(slot);
435 dbg("%s - slot %s HS_CSR (2) = %04x",
Alex Chiangd6c479e2008-10-20 17:41:17 -0600436 __func__, slot_name(slot), hs_csr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
Scott Murraybcc488a2005-05-27 16:48:52 -0400438 if (update_latch_status(slot->hotplug_slot, 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 warn("failure to update latch file");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Scott Murraybcc488a2005-05-27 16:48:52 -0400441 if (update_adapter_status(slot->hotplug_slot, 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 warn("failure to update adapter file");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
444 cpci_led_off(slot);
445
446 /* GSM, debug */
447 hs_csr = cpci_get_hs_csr(slot);
448 dbg("%s - slot %s HS_CSR (3) = %04x",
Alex Chiangd6c479e2008-10-20 17:41:17 -0600449 __func__, slot_name(slot), hs_csr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
451 inserted++;
Scott Murraybcc488a2005-05-27 16:48:52 -0400452 } else if (cpci_check_ext(slot)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 /* Process extraction request */
454 dbg("%s - slot %s extracted",
Alex Chiangd6c479e2008-10-20 17:41:17 -0600455 __func__, slot_name(slot));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
457 /* GSM, debug */
458 hs_csr = cpci_get_hs_csr(slot);
459 dbg("%s - slot %s HS_CSR = %04x",
Alex Chiangd6c479e2008-10-20 17:41:17 -0600460 __func__, slot_name(slot), hs_csr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
Scott Murraybcc488a2005-05-27 16:48:52 -0400462 if (!slot->extracting) {
463 if (update_latch_status(slot->hotplug_slot, 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 warn("failure to update latch file");
465 }
466 slot->extracting = 1;
Scott Murraybcc488a2005-05-27 16:48:52 -0400467 atomic_inc(&extracting);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 }
469 extracted++;
Scott Murraybcc488a2005-05-27 16:48:52 -0400470 } else if (slot->extracting) {
Scott Murray43b7d7c2005-05-09 17:31:50 -0400471 hs_csr = cpci_get_hs_csr(slot);
Scott Murraybcc488a2005-05-27 16:48:52 -0400472 if (hs_csr == 0xffff) {
Scott Murray43b7d7c2005-05-09 17:31:50 -0400473 /*
474 * Hmmm, we're likely hosed at this point, should we
475 * bother trying to tell the driver or not?
476 */
477 err("card in slot %s was improperly removed",
Alex Chiangd6c479e2008-10-20 17:41:17 -0600478 slot_name(slot));
Scott Murraybcc488a2005-05-27 16:48:52 -0400479 if (update_adapter_status(slot->hotplug_slot, 0))
Scott Murray43b7d7c2005-05-09 17:31:50 -0400480 warn("failure to update adapter file");
Scott Murray43b7d7c2005-05-09 17:31:50 -0400481 slot->extracting = 0;
482 atomic_dec(&extracting);
483 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 }
485 }
Scott Murray43b7d7c2005-05-09 17:31:50 -0400486 up_read(&list_rwsem);
487 dbg("inserted=%d, extracted=%d, extracting=%d",
488 inserted, extracted, atomic_read(&extracting));
Scott Murraybcc488a2005-05-27 16:48:52 -0400489 if (inserted || extracted)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 return extracted;
Scott Murraybcc488a2005-05-27 16:48:52 -0400491 else if (!atomic_read(&extracting)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 err("cannot find ENUM# source, shutting down");
493 return -1;
494 }
Scott Murray43b7d7c2005-05-09 17:31:50 -0400495 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496}
497
498/* This is the interrupt mode worker thread body */
499static int
500event_thread(void *data)
501{
502 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800504 dbg("%s - event thread started", __func__);
Scott Murraybcc488a2005-05-27 16:48:52 -0400505 while (1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 dbg("event thread sleeping");
Scott Murray0bec2c82007-07-09 11:55:57 -0700507 set_current_state(TASK_INTERRUPTIBLE);
508 schedule();
509 if (kthread_should_stop())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 break;
Scott Murray43b7d7c2005-05-09 17:31:50 -0400511 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 rc = check_slots();
Scott Murray43b7d7c2005-05-09 17:31:50 -0400513 if (rc > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 /* Give userspace a chance to handle extraction */
515 msleep(500);
Scott Murray43b7d7c2005-05-09 17:31:50 -0400516 } else if (rc < 0) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800517 dbg("%s - error checking slots", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 thread_finished = 1;
Scott Murray0bec2c82007-07-09 11:55:57 -0700519 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 }
Scott Murray0bec2c82007-07-09 11:55:57 -0700521 } while (atomic_read(&extracting) && !kthread_should_stop());
522 if (kthread_should_stop())
Scott Murraybcc488a2005-05-27 16:48:52 -0400523 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
525 /* Re-enable ENUM# interrupt */
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800526 dbg("%s - re-enabling irq", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 controller->ops->enable_irq();
528 }
Scott Murray0bec2c82007-07-09 11:55:57 -0700529 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 return 0;
531}
532
533/* This is the polling mode worker thread body */
534static int
535poll_thread(void *data)
536{
537 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Scott Murraybcc488a2005-05-27 16:48:52 -0400539 while (1) {
Scott Murray0bec2c82007-07-09 11:55:57 -0700540 if (kthread_should_stop() || signal_pending(current))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 break;
Scott Murraybcc488a2005-05-27 16:48:52 -0400542 if (controller->ops->query_enum()) {
Scott Murray43b7d7c2005-05-09 17:31:50 -0400543 do {
544 rc = check_slots();
Scott Murraybcc488a2005-05-27 16:48:52 -0400545 if (rc > 0) {
Scott Murray43b7d7c2005-05-09 17:31:50 -0400546 /* Give userspace a chance to handle extraction */
547 msleep(500);
Scott Murraybcc488a2005-05-27 16:48:52 -0400548 } else if (rc < 0) {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800549 dbg("%s - error checking slots", __func__);
Scott Murray43b7d7c2005-05-09 17:31:50 -0400550 thread_finished = 1;
Scott Murray0bec2c82007-07-09 11:55:57 -0700551 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 }
Scott Murray0bec2c82007-07-09 11:55:57 -0700553 } while (atomic_read(&extracting) && !kthread_should_stop());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 msleep(100);
556 }
Scott Murray0bec2c82007-07-09 11:55:57 -0700557 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 return 0;
559}
560
561static int
562cpci_start_thread(void)
563{
Scott Murraybcc488a2005-05-27 16:48:52 -0400564 if (controller->irq)
Scott Murray0bec2c82007-07-09 11:55:57 -0700565 cpci_thread = kthread_run(event_thread, NULL, "cpci_hp_eventd");
Scott Murraybcc488a2005-05-27 16:48:52 -0400566 else
Scott Murray0bec2c82007-07-09 11:55:57 -0700567 cpci_thread = kthread_run(poll_thread, NULL, "cpci_hp_polld");
568 if (IS_ERR(cpci_thread)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 err("Can't start up our thread");
Scott Murray0bec2c82007-07-09 11:55:57 -0700570 return PTR_ERR(cpci_thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 }
Scott Murray0bec2c82007-07-09 11:55:57 -0700572 thread_finished = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 return 0;
574}
575
576static void
577cpci_stop_thread(void)
578{
Scott Murray0bec2c82007-07-09 11:55:57 -0700579 kthread_stop(cpci_thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 thread_finished = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581}
582
583int
584cpci_hp_register_controller(struct cpci_hp_controller *new_controller)
585{
586 int status = 0;
587
Scott Murraybcc488a2005-05-27 16:48:52 -0400588 if (controller)
589 return -1;
590 if (!(new_controller && new_controller->ops))
591 return -EINVAL;
592 if (new_controller->irq) {
593 if (!(new_controller->ops->enable_irq &&
594 new_controller->ops->disable_irq))
595 status = -EINVAL;
596 if (request_irq(new_controller->irq,
597 cpci_hp_intr,
598 new_controller->irq_flags,
599 MY_NAME,
600 new_controller->dev_id)) {
601 err("Can't get irq %d for the hotplug cPCI controller",
602 new_controller->irq);
603 status = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 }
Scott Murraybcc488a2005-05-27 16:48:52 -0400605 dbg("%s - acquired controller irq %d",
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800606 __func__, new_controller->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 }
Scott Murraybcc488a2005-05-27 16:48:52 -0400608 if (!status)
609 controller = new_controller;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 return status;
611}
612
Scott Murraybcc488a2005-05-27 16:48:52 -0400613static void
614cleanup_slots(void)
615{
616 struct slot *slot;
617 struct slot *tmp;
618
619 /*
620 * Unregister all of our slots with the pci_hotplug subsystem,
621 * and free up all memory that we had allocated.
622 */
623 down_write(&list_rwsem);
624 if (!slots)
625 goto cleanup_null;
626 list_for_each_entry_safe(slot, tmp, &slot_list, slot_list) {
627 list_del(&slot->slot_list);
628 pci_hp_deregister(slot->hotplug_slot);
629 }
630cleanup_null:
631 up_write(&list_rwsem);
632 return;
633}
634
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635int
636cpci_hp_unregister_controller(struct cpci_hp_controller *old_controller)
637{
638 int status = 0;
639
Scott Murraybcc488a2005-05-27 16:48:52 -0400640 if (controller) {
641 if (!thread_finished)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 cpci_stop_thread();
Scott Murraybcc488a2005-05-27 16:48:52 -0400643 if (controller->irq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 free_irq(controller->irq, controller->dev_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 controller = NULL;
Scott Murraybcc488a2005-05-27 16:48:52 -0400646 cleanup_slots();
647 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 status = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 return status;
650}
651
652int
653cpci_hp_start(void)
654{
655 static int first = 1;
656 int status;
657
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800658 dbg("%s - enter", __func__);
Scott Murraybcc488a2005-05-27 16:48:52 -0400659 if (!controller)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
Scott Murray43b7d7c2005-05-09 17:31:50 -0400662 down_read(&list_rwsem);
Scott Murraybcc488a2005-05-27 16:48:52 -0400663 if (list_empty(&slot_list)) {
Scott Murray43b7d7c2005-05-09 17:31:50 -0400664 up_read(&list_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 return -ENODEV;
666 }
Scott Murray43b7d7c2005-05-09 17:31:50 -0400667 up_read(&list_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
Scott Murraybcc488a2005-05-27 16:48:52 -0400669 status = init_slots(first);
670 if (first)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 first = 0;
Scott Murraybcc488a2005-05-27 16:48:52 -0400672 if (status)
673 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
675 status = cpci_start_thread();
Scott Murraybcc488a2005-05-27 16:48:52 -0400676 if (status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 return status;
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800678 dbg("%s - thread started", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
Scott Murraybcc488a2005-05-27 16:48:52 -0400680 if (controller->irq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 /* Start enum interrupt processing */
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800682 dbg("%s - enabling irq", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 controller->ops->enable_irq();
684 }
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800685 dbg("%s - exit", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 return 0;
687}
688
689int
690cpci_hp_stop(void)
691{
Scott Murraybcc488a2005-05-27 16:48:52 -0400692 if (!controller)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 return -ENODEV;
Scott Murraybcc488a2005-05-27 16:48:52 -0400694 if (controller->irq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 /* Stop enum interrupt processing */
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800696 dbg("%s - disabling irq", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 controller->ops->disable_irq();
698 }
699 cpci_stop_thread();
700 return 0;
701}
702
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703int __init
704cpci_hotplug_init(int debug)
705{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 cpci_debug = debug;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 return 0;
708}
709
710void __exit
711cpci_hotplug_exit(void)
712{
713 /*
714 * Clean everything up.
715 */
Scott Murraybcc488a2005-05-27 16:48:52 -0400716 cpci_hp_stop();
717 cpci_hp_unregister_controller(controller);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718}
719
720EXPORT_SYMBOL_GPL(cpci_hp_register_controller);
721EXPORT_SYMBOL_GPL(cpci_hp_unregister_controller);
722EXPORT_SYMBOL_GPL(cpci_hp_register_bus);
723EXPORT_SYMBOL_GPL(cpci_hp_unregister_bus);
724EXPORT_SYMBOL_GPL(cpci_hp_start);
725EXPORT_SYMBOL_GPL(cpci_hp_stop);