blob: aa8d9a60d0a6355ce81fd864be53cd99dbdf3670 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * PCI Hot Plug Controller Driver for RPA-compliant PPC64 platform.
3 * Copyright (C) 2003 Linda Xie <lxie@us.ibm.com>
4 *
5 * All rights reserved.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or (at
10 * your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
15 * NON INFRINGEMENT. See the GNU General Public License for more
16 * details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 *
22 * Send feedback to <lxie@us.ibm.com>
23 *
24 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/kernel.h>
26#include <linux/module.h>
27#include <linux/moduleparam.h>
28#include <linux/pci.h>
Greg Kroah-Hartman7a54f252006-10-13 20:05:19 -070029#include <linux/pci_hotplug.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/slab.h>
31#include <linux/smp.h>
32#include <linux/smp_lock.h>
33#include <linux/init.h>
34#include <asm/eeh.h> /* for eeh_add_device() */
35#include <asm/rtas.h> /* rtas_call */
36#include <asm/pci-bridge.h> /* for pci_controller */
37#include "../pci.h" /* for pci_add_new_bus */
38 /* and pci_do_scan_bus */
39#include "rpaphp.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41int debug;
42static struct semaphore rpaphp_sem;
43LIST_HEAD(rpaphp_slot_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45#define DRIVER_VERSION "0.1"
46#define DRIVER_AUTHOR "Linda Xie <lxie@us.ibm.com>"
47#define DRIVER_DESC "RPA HOT Plug PCI Controller Driver"
48
49#define MAX_LOC_CODE 128
50
51MODULE_AUTHOR(DRIVER_AUTHOR);
52MODULE_DESCRIPTION(DRIVER_DESC);
53MODULE_LICENSE("GPL");
54
55module_param(debug, bool, 0644);
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057/**
58 * set_attention_status - set attention LED
59 * echo 0 > attention -- set LED OFF
60 * echo 1 > attention -- set LED ON
61 * echo 2 > attention -- set LED ID(identify, light is blinking)
62 *
63 */
64static int set_attention_status(struct hotplug_slot *hotplug_slot, u8 value)
65{
Linas Vepstasc02929c2007-04-13 15:34:18 -070066 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 struct slot *slot = (struct slot *)hotplug_slot->private;
68
69 down(&rpaphp_sem);
70 switch (value) {
71 case 0:
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 case 1:
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 case 2:
Linas Vepstasc02929c2007-04-13 15:34:18 -070074 break;
75 default:
76 value = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 break;
78 }
79 up(&rpaphp_sem);
Linas Vepstasc02929c2007-04-13 15:34:18 -070080
81 rc = rtas_set_indicator(DR_INDICATOR, slot->index, value);
82 if (!rc)
83 hotplug_slot->info->attention_status = value;
84
85 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086}
87
88/**
89 * get_power_status - get power status of a slot
90 * @hotplug_slot: slot to get status
91 * @value: pointer to store status
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 */
93static int get_power_status(struct hotplug_slot *hotplug_slot, u8 * value)
94{
Linas Vepstas427310f2007-04-13 15:34:13 -070095 int retval, level;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 struct slot *slot = (struct slot *)hotplug_slot->private;
97
98 down(&rpaphp_sem);
Linas Vepstas427310f2007-04-13 15:34:13 -070099 retval = rtas_get_power_level (slot->power_domain, &level);
100 if (!retval)
101 *value = level;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 up(&rpaphp_sem);
103 return retval;
104}
105
106/**
107 * get_attention_status - get attention LED status
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 */
109static int get_attention_status(struct hotplug_slot *hotplug_slot, u8 * value)
110{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 struct slot *slot = (struct slot *)hotplug_slot->private;
Linas Vepstasebf42c02007-04-13 15:34:15 -0700112 *value = slot->hotplug_slot->info->attention_status;
113 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114}
115
116static int get_adapter_status(struct hotplug_slot *hotplug_slot, u8 * value)
117{
118 struct slot *slot = (struct slot *)hotplug_slot->private;
Linas Vepstasbf0af512007-04-13 15:34:14 -0700119 int rc, state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
121 down(&rpaphp_sem);
Linas Vepstasbf0af512007-04-13 15:34:14 -0700122 rc = rpaphp_get_sensor_state(slot, &state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 up(&rpaphp_sem);
Linas Vepstasbf0af512007-04-13 15:34:14 -0700124
125 *value = NOT_VALID;
126 if (rc)
127 return rc;
128
129 if (state == EMPTY)
130 *value = EMPTY;
131 else if (state == PRESENT)
132 *value = slot->state;
133
134 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135}
136
137static int get_max_bus_speed(struct hotplug_slot *hotplug_slot, enum pci_bus_speed *value)
138{
139 struct slot *slot = (struct slot *)hotplug_slot->private;
140
141 down(&rpaphp_sem);
142 switch (slot->type) {
143 case 1:
144 case 2:
145 case 3:
146 case 4:
147 case 5:
148 case 6:
149 *value = PCI_SPEED_33MHz; /* speed for case 1-6 */
150 break;
151 case 7:
152 case 8:
153 *value = PCI_SPEED_66MHz;
154 break;
155 case 11:
156 case 14:
157 *value = PCI_SPEED_66MHz_PCIX;
158 break;
159 case 12:
160 case 15:
161 *value = PCI_SPEED_100MHz_PCIX;
162 break;
163 case 13:
164 case 16:
165 *value = PCI_SPEED_133MHz_PCIX;
166 break;
167 default:
168 *value = PCI_SPEED_UNKNOWN;
169 break;
170
171 }
172 up(&rpaphp_sem);
173 return 0;
174}
175
Jeremy Kerr954a46e2006-07-12 15:39:43 +1000176static int get_children_props(struct device_node *dn, const int **drc_indexes,
177 const int **drc_names, const int **drc_types,
178 const int **drc_power_domains)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
Jeremy Kerr954a46e2006-07-12 15:39:43 +1000180 const int *indexes, *names, *types, *domains;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Jeremy Kerr954a46e2006-07-12 15:39:43 +1000182 indexes = get_property(dn, "ibm,drc-indexes", NULL);
183 names = get_property(dn, "ibm,drc-names", NULL);
184 types = get_property(dn, "ibm,drc-types", NULL);
185 domains = get_property(dn, "ibm,drc-power-domains", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187 if (!indexes || !names || !types || !domains) {
188 /* Slot does not have dynamically-removable children */
189 return -EINVAL;
190 }
191 if (drc_indexes)
192 *drc_indexes = indexes;
193 if (drc_names)
194 /* &drc_names[1] contains NULL terminated slot names */
195 *drc_names = names;
196 if (drc_types)
197 /* &drc_types[1] contains NULL terminated slot types */
198 *drc_types = types;
199 if (drc_power_domains)
200 *drc_power_domains = domains;
201
202 return 0;
203}
204
205/* To get the DRC props describing the current node, first obtain it's
206 * my-drc-index property. Next obtain the DRC list from it's parent. Use
207 * the my-drc-index for correlation, and obtain the requested properties.
208 */
209int rpaphp_get_drc_props(struct device_node *dn, int *drc_index,
210 char **drc_name, char **drc_type, int *drc_power_domain)
211{
Jeremy Kerr954a46e2006-07-12 15:39:43 +1000212 const int *indexes, *names;
213 const int *types, *domains;
214 const unsigned int *my_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 char *name_tmp, *type_tmp;
216 int i, rc;
217
Jeremy Kerr954a46e2006-07-12 15:39:43 +1000218 my_index = get_property(dn, "ibm,my-drc-index", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 if (!my_index) {
220 /* Node isn't DLPAR/hotplug capable */
221 return -EINVAL;
222 }
223
224 rc = get_children_props(dn->parent, &indexes, &names, &types, &domains);
225 if (rc < 0) {
226 return -EINVAL;
227 }
228
229 name_tmp = (char *) &names[1];
230 type_tmp = (char *) &types[1];
231
232 /* Iterate through parent properties, looking for my-drc-index */
233 for (i = 0; i < indexes[0]; i++) {
234 if ((unsigned int) indexes[i + 1] == *my_index) {
235 if (drc_name)
236 *drc_name = name_tmp;
237 if (drc_type)
238 *drc_type = type_tmp;
239 if (drc_index)
240 *drc_index = *my_index;
241 if (drc_power_domain)
242 *drc_power_domain = domains[i+1];
243 return 0;
244 }
245 name_tmp += (strlen(name_tmp) + 1);
246 type_tmp += (strlen(type_tmp) + 1);
247 }
248
249 return -EINVAL;
250}
251
252static int is_php_type(char *drc_type)
253{
254 unsigned long value;
255 char *endptr;
256
257 /* PCI Hotplug nodes have an integer for drc_type */
258 value = simple_strtoul(drc_type, &endptr, 10);
259 if (endptr == drc_type)
260 return 0;
261
262 return 1;
263}
264
Linas Vepstasda659442007-04-13 15:34:22 -0700265/**
266 * is_php_dn() - return 1 if this is a hotpluggable pci slot, else 0
267 *
268 * This routine will return true only if the device node is
269 * a hotpluggable slot. This routine will return false
270 * for built-in pci slots (even when the built-in slots are
271 * dlparable.)
272 */
Jeremy Kerr954a46e2006-07-12 15:39:43 +1000273static int is_php_dn(struct device_node *dn, const int **indexes,
274 const int **names, const int **types, const int **power_domains)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275{
Jeremy Kerr954a46e2006-07-12 15:39:43 +1000276 const int *drc_types;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 int rc;
278
279 rc = get_children_props(dn, indexes, names, &drc_types, power_domains);
Linas Vepstasda659442007-04-13 15:34:22 -0700280 if (rc < 0)
281 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
Linas Vepstasda659442007-04-13 15:34:22 -0700283 if (!is_php_type((char *) &drc_types[1]))
284 return 0;
285
286 *types = drc_types;
287 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288}
289
linas@austin.ibm.comf6afbad2006-01-12 18:31:01 -0600290/**
Linas Vepstasda659442007-04-13 15:34:22 -0700291 * rpaphp_add_slot -- declare a hotplug slot to the hotplug subsystem.
292 * @dn device node of slot
linas@austin.ibm.comf6afbad2006-01-12 18:31:01 -0600293 *
Linas Vepstasda659442007-04-13 15:34:22 -0700294 * This subroutine will register a hotplugable slot with the
295 * PCI hotplug infrastructure. This routine is typicaly called
296 * during boot time, if the hotplug slots are present at boot time,
297 * or is called later, by the dlpar add code, if the slot is
298 * being dynamically added during runtime.
299 *
300 * If the device node points at an embedded (built-in) slot, this
301 * routine will just return without doing anything, since embedded
302 * slots cannot be hotplugged.
303 *
304 * To remove a slot, it suffices to call rpaphp_deregister_slot()
linas@austin.ibm.comf6afbad2006-01-12 18:31:01 -0600305 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306int rpaphp_add_slot(struct device_node *dn)
307{
308 struct slot *slot;
309 int retval = 0;
John Rose56d84562005-07-25 10:17:03 -0500310 int i;
Jeremy Kerr954a46e2006-07-12 15:39:43 +1000311 const int *indexes, *names, *types, *power_domains;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 char *name, *type;
313
Linas Vepstasbf8cbae2007-04-13 15:34:07 -0700314 if (!dn->name || strcmp(dn->name, "pci"))
315 return 0;
316
Linas Vepstasda659442007-04-13 15:34:22 -0700317 /* If this is not a hotplug slot, return without doing anything. */
Linas Vepstasbf8cbae2007-04-13 15:34:07 -0700318 if (!is_php_dn(dn, &indexes, &names, &types, &power_domains))
319 return 0;
320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 dbg("Entry %s: dn->full_name=%s\n", __FUNCTION__, dn->full_name);
322
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 /* register PCI devices */
Linas Vepstasbf8cbae2007-04-13 15:34:07 -0700324 name = (char *) &names[1];
325 type = (char *) &types[1];
326 for (i = 0; i < indexes[0]; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Linas Vepstasbf8cbae2007-04-13 15:34:07 -0700328 slot = alloc_slot_struct(dn, indexes[i + 1], name, power_domains[i + 1]);
329 if (!slot)
330 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
Linas Vepstasbf8cbae2007-04-13 15:34:07 -0700332 slot->type = simple_strtoul(type, NULL, 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Linas Vepstasbf8cbae2007-04-13 15:34:07 -0700334 dbg("Found drc-index:0x%x drc-name:%s drc-type:%s\n",
335 indexes[i + 1], name, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
Linas Vepstasfea54b82007-04-13 15:34:20 -0700337 retval = rpaphp_enable_slot(slot);
Linas Vepstas6f79eb72007-04-13 15:34:19 -0700338 if (!retval)
339 retval = rpaphp_register_slot(slot);
340
Linas Vepstas31be7582007-04-13 15:34:09 -0700341 if (retval)
342 dealloc_slot_struct(slot);
343
Linas Vepstasbf8cbae2007-04-13 15:34:07 -0700344 name += strlen(name) + 1;
345 type += strlen(type) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 }
Linas Vepstasfa189152007-04-13 15:34:08 -0700347 dbg("%s - Exit: rc[%d]\n", __FUNCTION__, retval);
Linas Vepstas31be7582007-04-13 15:34:09 -0700348
349 /* XXX FIXME: reports a failure only if last entry in loop failed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 return retval;
351}
352
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353static void __exit cleanup_slots(void)
354{
355 struct list_head *tmp, *n;
356 struct slot *slot;
357
358 /*
359 * Unregister all of our slots with the pci_hotplug subsystem,
360 * and free up all memory that we had allocated.
361 * memory will be freed in release_slot callback.
362 */
363
364 list_for_each_safe(tmp, n, &rpaphp_slot_head) {
365 slot = list_entry(tmp, struct slot, rpaphp_slot_list);
366 list_del(&slot->rpaphp_slot_list);
367 pci_hp_deregister(slot->hotplug_slot);
368 }
369 return;
370}
371
372static int __init rpaphp_init(void)
373{
John Rose5eeb8c62005-07-25 10:16:42 -0500374 struct device_node *dn = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
John Rose5eeb8c62005-07-25 10:16:42 -0500376 info(DRIVER_DESC " version: " DRIVER_VERSION "\n");
377 init_MUTEX(&rpaphp_sem);
378
John Rosea57ed792006-11-13 15:12:52 -0800379 while ((dn = of_find_node_by_name(dn, "pci")))
John Rose5eeb8c62005-07-25 10:16:42 -0500380 rpaphp_add_slot(dn);
381
John Rose5eeb8c62005-07-25 10:16:42 -0500382 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383}
384
385static void __exit rpaphp_exit(void)
386{
387 cleanup_slots();
388}
389
linas@austin.ibm.come06b80b2006-01-12 18:28:22 -0600390static int __enable_slot(struct slot *slot)
391{
392 int state;
393 int retval;
394
395 if (slot->state == CONFIGURED)
396 return 0;
397
398 retval = rpaphp_get_sensor_state(slot, &state);
399 if (retval)
400 return retval;
401
402 if (state == PRESENT) {
403 pcibios_add_pci_devices(slot->bus);
404 slot->state = CONFIGURED;
405 } else if (state == EMPTY) {
406 slot->state = EMPTY;
407 } else {
408 err("%s: slot[%s] is in invalid state\n", __FUNCTION__, slot->name);
409 slot->state = NOT_VALID;
410 return -EINVAL;
411 }
412 return 0;
413}
414
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415static int enable_slot(struct hotplug_slot *hotplug_slot)
416{
linas@austin.ibm.come06b80b2006-01-12 18:28:22 -0600417 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 struct slot *slot = (struct slot *)hotplug_slot->private;
419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 down(&rpaphp_sem);
linas@austin.ibm.come06b80b2006-01-12 18:28:22 -0600421 retval = __enable_slot(slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 up(&rpaphp_sem);
linas@austin.ibm.come06b80b2006-01-12 18:28:22 -0600423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 return retval;
425}
426
linas@austin.ibm.com8fe64392006-01-12 18:26:27 -0600427static int __disable_slot(struct slot *slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428{
linas@austin.ibm.com8fe64392006-01-12 18:26:27 -0600429 struct pci_dev *dev, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
linas@austin.ibm.com8fe64392006-01-12 18:26:27 -0600431 if (slot->state == NOT_CONFIGURED)
432 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
linas@austin.ibm.com8fe64392006-01-12 18:26:27 -0600434 list_for_each_entry_safe(dev, tmp, &slot->bus->devices, bus_list) {
435 eeh_remove_bus_device(dev);
436 pci_remove_bus_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 }
438
linas934199e2005-09-28 19:33:38 -0500439 slot->state = NOT_CONFIGURED;
linas@austin.ibm.com8fe64392006-01-12 18:26:27 -0600440 return 0;
441}
442
443static int disable_slot(struct hotplug_slot *hotplug_slot)
444{
445 struct slot *slot = (struct slot *)hotplug_slot->private;
446 int retval;
447
448 down(&rpaphp_sem);
449 retval = __disable_slot (slot);
450 up(&rpaphp_sem);
451
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 return retval;
453}
454
linas@austin.ibm.comb64a71a2006-01-12 18:32:58 -0600455struct hotplug_slot_ops rpaphp_hotplug_slot_ops = {
456 .owner = THIS_MODULE,
457 .enable_slot = enable_slot,
458 .disable_slot = disable_slot,
459 .set_attention_status = set_attention_status,
460 .get_power_status = get_power_status,
461 .get_attention_status = get_attention_status,
462 .get_adapter_status = get_adapter_status,
463 .get_max_bus_speed = get_max_bus_speed,
464};
465
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466module_init(rpaphp_init);
467module_exit(rpaphp_exit);
468
469EXPORT_SYMBOL_GPL(rpaphp_add_slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470EXPORT_SYMBOL_GPL(rpaphp_slot_head);
471EXPORT_SYMBOL_GPL(rpaphp_get_drc_props);