blob: e9c157d30e824bd739eb9d61eac5fdbd742e9f6c [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
Jeremy Kerr954a46e2006-07-12 15:39:43 +1000265static int is_php_dn(struct device_node *dn, const int **indexes,
266 const int **names, const int **types, const int **power_domains)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267{
Jeremy Kerr954a46e2006-07-12 15:39:43 +1000268 const int *drc_types;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 int rc;
270
271 rc = get_children_props(dn, indexes, names, &drc_types, power_domains);
272 if (rc >= 0) {
273 if (is_php_type((char *) &drc_types[1])) {
274 *types = drc_types;
275 return 1;
276 }
277 }
278
279 return 0;
280}
281
linas@austin.ibm.comf6afbad2006-01-12 18:31:01 -0600282/**
283 * rpaphp_add_slot -- add hotplug or dlpar slot
284 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 * rpaphp not only registers PCI hotplug slots(HOTPLUG),
286 * but also logical DR slots(EMBEDDED).
287 * HOTPLUG slot: An adapter can be physically added/removed.
288 * EMBEDDED slot: An adapter can be logically removed/added
289 * from/to a partition with the slot.
linas@austin.ibm.comf6afbad2006-01-12 18:31:01 -0600290 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291int rpaphp_add_slot(struct device_node *dn)
292{
293 struct slot *slot;
294 int retval = 0;
John Rose56d84562005-07-25 10:17:03 -0500295 int i;
Jeremy Kerr954a46e2006-07-12 15:39:43 +1000296 const int *indexes, *names, *types, *power_domains;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 char *name, *type;
298
Linas Vepstasbf8cbae2007-04-13 15:34:07 -0700299 if (!dn->name || strcmp(dn->name, "pci"))
300 return 0;
301
302 if (!is_php_dn(dn, &indexes, &names, &types, &power_domains))
303 return 0;
304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 dbg("Entry %s: dn->full_name=%s\n", __FUNCTION__, dn->full_name);
306
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 /* register PCI devices */
Linas Vepstasbf8cbae2007-04-13 15:34:07 -0700308 name = (char *) &names[1];
309 type = (char *) &types[1];
310 for (i = 0; i < indexes[0]; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Linas Vepstasbf8cbae2007-04-13 15:34:07 -0700312 slot = alloc_slot_struct(dn, indexes[i + 1], name, power_domains[i + 1]);
313 if (!slot)
314 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Linas Vepstasbf8cbae2007-04-13 15:34:07 -0700316 slot->type = simple_strtoul(type, NULL, 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Linas Vepstasbf8cbae2007-04-13 15:34:07 -0700318 dbg("Found drc-index:0x%x drc-name:%s drc-type:%s\n",
319 indexes[i + 1], name, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Linas Vepstasbf8cbae2007-04-13 15:34:07 -0700321 retval = rpaphp_register_pci_slot(slot);
Linas Vepstas31be7582007-04-13 15:34:09 -0700322 if (retval)
323 dealloc_slot_struct(slot);
324
Linas Vepstasbf8cbae2007-04-13 15:34:07 -0700325 name += strlen(name) + 1;
326 type += strlen(type) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 }
Linas Vepstasfa189152007-04-13 15:34:08 -0700328 dbg("%s - Exit: rc[%d]\n", __FUNCTION__, retval);
Linas Vepstas31be7582007-04-13 15:34:09 -0700329
330 /* XXX FIXME: reports a failure only if last entry in loop failed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 return retval;
332}
333
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334static void __exit cleanup_slots(void)
335{
336 struct list_head *tmp, *n;
337 struct slot *slot;
338
339 /*
340 * Unregister all of our slots with the pci_hotplug subsystem,
341 * and free up all memory that we had allocated.
342 * memory will be freed in release_slot callback.
343 */
344
345 list_for_each_safe(tmp, n, &rpaphp_slot_head) {
346 slot = list_entry(tmp, struct slot, rpaphp_slot_list);
347 list_del(&slot->rpaphp_slot_list);
348 pci_hp_deregister(slot->hotplug_slot);
349 }
350 return;
351}
352
353static int __init rpaphp_init(void)
354{
John Rose5eeb8c62005-07-25 10:16:42 -0500355 struct device_node *dn = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
John Rose5eeb8c62005-07-25 10:16:42 -0500357 info(DRIVER_DESC " version: " DRIVER_VERSION "\n");
358 init_MUTEX(&rpaphp_sem);
359
John Rosea57ed792006-11-13 15:12:52 -0800360 while ((dn = of_find_node_by_name(dn, "pci")))
John Rose5eeb8c62005-07-25 10:16:42 -0500361 rpaphp_add_slot(dn);
362
John Rose5eeb8c62005-07-25 10:16:42 -0500363 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364}
365
366static void __exit rpaphp_exit(void)
367{
368 cleanup_slots();
369}
370
linas@austin.ibm.come06b80b2006-01-12 18:28:22 -0600371static int __enable_slot(struct slot *slot)
372{
373 int state;
374 int retval;
375
376 if (slot->state == CONFIGURED)
377 return 0;
378
379 retval = rpaphp_get_sensor_state(slot, &state);
380 if (retval)
381 return retval;
382
383 if (state == PRESENT) {
384 pcibios_add_pci_devices(slot->bus);
385 slot->state = CONFIGURED;
386 } else if (state == EMPTY) {
387 slot->state = EMPTY;
388 } else {
389 err("%s: slot[%s] is in invalid state\n", __FUNCTION__, slot->name);
390 slot->state = NOT_VALID;
391 return -EINVAL;
392 }
393 return 0;
394}
395
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396static int enable_slot(struct hotplug_slot *hotplug_slot)
397{
linas@austin.ibm.come06b80b2006-01-12 18:28:22 -0600398 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 struct slot *slot = (struct slot *)hotplug_slot->private;
400
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 down(&rpaphp_sem);
linas@austin.ibm.come06b80b2006-01-12 18:28:22 -0600402 retval = __enable_slot(slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 up(&rpaphp_sem);
linas@austin.ibm.come06b80b2006-01-12 18:28:22 -0600404
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 return retval;
406}
407
linas@austin.ibm.com8fe64392006-01-12 18:26:27 -0600408static int __disable_slot(struct slot *slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409{
linas@austin.ibm.com8fe64392006-01-12 18:26:27 -0600410 struct pci_dev *dev, *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
linas@austin.ibm.com8fe64392006-01-12 18:26:27 -0600412 if (slot->state == NOT_CONFIGURED)
413 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
linas@austin.ibm.com8fe64392006-01-12 18:26:27 -0600415 list_for_each_entry_safe(dev, tmp, &slot->bus->devices, bus_list) {
416 eeh_remove_bus_device(dev);
417 pci_remove_bus_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 }
419
linas934199e2005-09-28 19:33:38 -0500420 slot->state = NOT_CONFIGURED;
linas@austin.ibm.com8fe64392006-01-12 18:26:27 -0600421 return 0;
422}
423
424static int disable_slot(struct hotplug_slot *hotplug_slot)
425{
426 struct slot *slot = (struct slot *)hotplug_slot->private;
427 int retval;
428
429 down(&rpaphp_sem);
430 retval = __disable_slot (slot);
431 up(&rpaphp_sem);
432
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 return retval;
434}
435
linas@austin.ibm.comb64a71a2006-01-12 18:32:58 -0600436struct hotplug_slot_ops rpaphp_hotplug_slot_ops = {
437 .owner = THIS_MODULE,
438 .enable_slot = enable_slot,
439 .disable_slot = disable_slot,
440 .set_attention_status = set_attention_status,
441 .get_power_status = get_power_status,
442 .get_attention_status = get_attention_status,
443 .get_adapter_status = get_adapter_status,
444 .get_max_bus_speed = get_max_bus_speed,
445};
446
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447module_init(rpaphp_init);
448module_exit(rpaphp_exit);
449
450EXPORT_SYMBOL_GPL(rpaphp_add_slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451EXPORT_SYMBOL_GPL(rpaphp_slot_head);
452EXPORT_SYMBOL_GPL(rpaphp_get_drc_props);