blob: 7197022407802fea905fc9df905a6145c60749b3 [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/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/init.h>
32#include <asm/eeh.h> /* for eeh_add_device() */
33#include <asm/rtas.h> /* rtas_call */
34#include <asm/pci-bridge.h> /* for pci_controller */
35#include "../pci.h" /* for pci_add_new_bus */
36 /* and pci_do_scan_bus */
37#include "rpaphp.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Kristen Carlson Accardi5d9bc1f2008-10-13 09:59:12 -070039int rpaphp_debug;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040LIST_HEAD(rpaphp_slot_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42#define DRIVER_VERSION "0.1"
43#define DRIVER_AUTHOR "Linda Xie <lxie@us.ibm.com>"
44#define DRIVER_DESC "RPA HOT Plug PCI Controller Driver"
45
46#define MAX_LOC_CODE 128
47
48MODULE_AUTHOR(DRIVER_AUTHOR);
49MODULE_DESCRIPTION(DRIVER_DESC);
50MODULE_LICENSE("GPL");
51
Kristen Carlson Accardi5d9bc1f2008-10-13 09:59:12 -070052module_param_named(debug, rpaphp_debug, bool, 0644);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Linus Torvalds1da177e2005-04-16 15:20:36 -070054/**
55 * set_attention_status - set attention LED
Randy Dunlap26e6c662007-11-28 09:04:30 -080056 * @hotplug_slot: target &hotplug_slot
57 * @value: LED control value
58 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 * echo 0 > attention -- set LED OFF
60 * echo 1 > attention -- set LED ON
61 * echo 2 > attention -- set LED ID(identify, light is blinking)
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 */
63static int set_attention_status(struct hotplug_slot *hotplug_slot, u8 value)
64{
Linas Vepstasc02929c2007-04-13 15:34:18 -070065 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 struct slot *slot = (struct slot *)hotplug_slot->private;
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 switch (value) {
69 case 0:
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 case 1:
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 case 2:
Linas Vepstasc02929c2007-04-13 15:34:18 -070072 break;
73 default:
74 value = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 break;
76 }
Linas Vepstasc02929c2007-04-13 15:34:18 -070077
78 rc = rtas_set_indicator(DR_INDICATOR, slot->index, value);
79 if (!rc)
80 hotplug_slot->info->attention_status = value;
81
82 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083}
84
85/**
86 * get_power_status - get power status of a slot
87 * @hotplug_slot: slot to get status
88 * @value: pointer to store status
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 */
90static int get_power_status(struct hotplug_slot *hotplug_slot, u8 * value)
91{
Linas Vepstas427310f2007-04-13 15:34:13 -070092 int retval, level;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 struct slot *slot = (struct slot *)hotplug_slot->private;
94
Linas Vepstas427310f2007-04-13 15:34:13 -070095 retval = rtas_get_power_level (slot->power_domain, &level);
96 if (!retval)
97 *value = level;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 return retval;
99}
100
101/**
102 * get_attention_status - get attention LED status
Randy Dunlap26e6c662007-11-28 09:04:30 -0800103 * @hotplug_slot: slot to get status
104 * @value: pointer to store status
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 */
106static int get_attention_status(struct hotplug_slot *hotplug_slot, u8 * value)
107{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 struct slot *slot = (struct slot *)hotplug_slot->private;
Linas Vepstasebf42c02007-04-13 15:34:15 -0700109 *value = slot->hotplug_slot->info->attention_status;
110 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111}
112
113static int get_adapter_status(struct hotplug_slot *hotplug_slot, u8 * value)
114{
115 struct slot *slot = (struct slot *)hotplug_slot->private;
Linas Vepstasbf0af512007-04-13 15:34:14 -0700116 int rc, state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Linas Vepstasbf0af512007-04-13 15:34:14 -0700118 rc = rpaphp_get_sensor_state(slot, &state);
Linas Vepstasbf0af512007-04-13 15:34:14 -0700119
120 *value = NOT_VALID;
121 if (rc)
122 return rc;
123
124 if (state == EMPTY)
125 *value = EMPTY;
126 else if (state == PRESENT)
127 *value = slot->state;
128
129 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130}
131
Matthew Wilcox3749c512009-12-13 08:11:32 -0500132static enum pci_bus_speed get_max_bus_speed(struct slot *slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133{
Matthew Wilcox3749c512009-12-13 08:11:32 -0500134 enum pci_bus_speed speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 switch (slot->type) {
136 case 1:
137 case 2:
138 case 3:
139 case 4:
140 case 5:
141 case 6:
Matthew Wilcox3749c512009-12-13 08:11:32 -0500142 speed = PCI_SPEED_33MHz; /* speed for case 1-6 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 break;
144 case 7:
145 case 8:
Matthew Wilcox3749c512009-12-13 08:11:32 -0500146 speed = PCI_SPEED_66MHz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 break;
148 case 11:
149 case 14:
Matthew Wilcox3749c512009-12-13 08:11:32 -0500150 speed = PCI_SPEED_66MHz_PCIX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 break;
152 case 12:
153 case 15:
Matthew Wilcox3749c512009-12-13 08:11:32 -0500154 speed = PCI_SPEED_100MHz_PCIX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 break;
156 case 13:
157 case 16:
Matthew Wilcox3749c512009-12-13 08:11:32 -0500158 speed = PCI_SPEED_133MHz_PCIX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 break;
160 default:
Matthew Wilcox3749c512009-12-13 08:11:32 -0500161 speed = PCI_SPEED_UNKNOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 }
Matthew Wilcox3749c512009-12-13 08:11:32 -0500164
165 return speed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166}
167
Jeremy Kerr954a46e2006-07-12 15:39:43 +1000168static int get_children_props(struct device_node *dn, const int **drc_indexes,
169 const int **drc_names, const int **drc_types,
170 const int **drc_power_domains)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{
Jeremy Kerr954a46e2006-07-12 15:39:43 +1000172 const int *indexes, *names, *types, *domains;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Stephen Rothwell40cd3a42007-05-01 13:54:02 +1000174 indexes = of_get_property(dn, "ibm,drc-indexes", NULL);
175 names = of_get_property(dn, "ibm,drc-names", NULL);
176 types = of_get_property(dn, "ibm,drc-types", NULL);
177 domains = of_get_property(dn, "ibm,drc-power-domains", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179 if (!indexes || !names || !types || !domains) {
180 /* Slot does not have dynamically-removable children */
181 return -EINVAL;
182 }
183 if (drc_indexes)
184 *drc_indexes = indexes;
185 if (drc_names)
186 /* &drc_names[1] contains NULL terminated slot names */
187 *drc_names = names;
188 if (drc_types)
189 /* &drc_types[1] contains NULL terminated slot types */
190 *drc_types = types;
191 if (drc_power_domains)
192 *drc_power_domains = domains;
193
194 return 0;
195}
196
197/* To get the DRC props describing the current node, first obtain it's
198 * my-drc-index property. Next obtain the DRC list from it's parent. Use
199 * the my-drc-index for correlation, and obtain the requested properties.
200 */
201int rpaphp_get_drc_props(struct device_node *dn, int *drc_index,
202 char **drc_name, char **drc_type, int *drc_power_domain)
203{
Jeremy Kerr954a46e2006-07-12 15:39:43 +1000204 const int *indexes, *names;
205 const int *types, *domains;
206 const unsigned int *my_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 char *name_tmp, *type_tmp;
208 int i, rc;
209
Stephen Rothwell40cd3a42007-05-01 13:54:02 +1000210 my_index = of_get_property(dn, "ibm,my-drc-index", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 if (!my_index) {
212 /* Node isn't DLPAR/hotplug capable */
213 return -EINVAL;
214 }
215
216 rc = get_children_props(dn->parent, &indexes, &names, &types, &domains);
217 if (rc < 0) {
218 return -EINVAL;
219 }
220
221 name_tmp = (char *) &names[1];
222 type_tmp = (char *) &types[1];
223
224 /* Iterate through parent properties, looking for my-drc-index */
225 for (i = 0; i < indexes[0]; i++) {
226 if ((unsigned int) indexes[i + 1] == *my_index) {
227 if (drc_name)
228 *drc_name = name_tmp;
229 if (drc_type)
230 *drc_type = type_tmp;
231 if (drc_index)
232 *drc_index = *my_index;
233 if (drc_power_domain)
234 *drc_power_domain = domains[i+1];
235 return 0;
236 }
237 name_tmp += (strlen(name_tmp) + 1);
238 type_tmp += (strlen(type_tmp) + 1);
239 }
240
241 return -EINVAL;
242}
243
244static int is_php_type(char *drc_type)
245{
246 unsigned long value;
247 char *endptr;
248
249 /* PCI Hotplug nodes have an integer for drc_type */
250 value = simple_strtoul(drc_type, &endptr, 10);
251 if (endptr == drc_type)
252 return 0;
253
254 return 1;
255}
256
Linas Vepstasda65944b2007-04-13 15:34:22 -0700257/**
258 * is_php_dn() - return 1 if this is a hotpluggable pci slot, else 0
Randy Dunlap26e6c662007-11-28 09:04:30 -0800259 * @dn: target &device_node
260 * @indexes: passed to get_children_props()
261 * @names: passed to get_children_props()
262 * @types: returned from get_children_props()
263 * @power_domains:
Linas Vepstasda65944b2007-04-13 15:34:22 -0700264 *
265 * This routine will return true only if the device node is
266 * a hotpluggable slot. This routine will return false
267 * for built-in pci slots (even when the built-in slots are
268 * dlparable.)
269 */
Jeremy Kerr954a46e2006-07-12 15:39:43 +1000270static int is_php_dn(struct device_node *dn, const int **indexes,
271 const int **names, const int **types, const int **power_domains)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272{
Jeremy Kerr954a46e2006-07-12 15:39:43 +1000273 const int *drc_types;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 int rc;
275
276 rc = get_children_props(dn, indexes, names, &drc_types, power_domains);
Linas Vepstasda65944b2007-04-13 15:34:22 -0700277 if (rc < 0)
278 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Linas Vepstasda65944b2007-04-13 15:34:22 -0700280 if (!is_php_type((char *) &drc_types[1]))
281 return 0;
282
283 *types = drc_types;
284 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285}
286
linas@austin.ibm.comf6afbad2006-01-12 18:31:01 -0600287/**
Linas Vepstasda65944b2007-04-13 15:34:22 -0700288 * rpaphp_add_slot -- declare a hotplug slot to the hotplug subsystem.
Randy Dunlap26e6c662007-11-28 09:04:30 -0800289 * @dn: device node of slot
linas@austin.ibm.comf6afbad2006-01-12 18:31:01 -0600290 *
Linas Vepstasda65944b2007-04-13 15:34:22 -0700291 * This subroutine will register a hotplugable slot with the
292 * PCI hotplug infrastructure. This routine is typicaly called
293 * during boot time, if the hotplug slots are present at boot time,
294 * or is called later, by the dlpar add code, if the slot is
295 * being dynamically added during runtime.
296 *
297 * If the device node points at an embedded (built-in) slot, this
298 * routine will just return without doing anything, since embedded
299 * slots cannot be hotplugged.
300 *
Randy Dunlap26e6c662007-11-28 09:04:30 -0800301 * To remove a slot, it suffices to call rpaphp_deregister_slot().
linas@austin.ibm.comf6afbad2006-01-12 18:31:01 -0600302 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303int rpaphp_add_slot(struct device_node *dn)
304{
305 struct slot *slot;
306 int retval = 0;
John Rose56d84562005-07-25 10:17:03 -0500307 int i;
Jeremy Kerr954a46e2006-07-12 15:39:43 +1000308 const int *indexes, *names, *types, *power_domains;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 char *name, *type;
310
Linas Vepstasbf8cbae2007-04-13 15:34:07 -0700311 if (!dn->name || strcmp(dn->name, "pci"))
312 return 0;
313
Linas Vepstasda65944b2007-04-13 15:34:22 -0700314 /* If this is not a hotplug slot, return without doing anything. */
Linas Vepstasbf8cbae2007-04-13 15:34:07 -0700315 if (!is_php_dn(dn, &indexes, &names, &types, &power_domains))
316 return 0;
317
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800318 dbg("Entry %s: dn->full_name=%s\n", __func__, dn->full_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 /* register PCI devices */
Linas Vepstasbf8cbae2007-04-13 15:34:07 -0700321 name = (char *) &names[1];
322 type = (char *) &types[1];
323 for (i = 0; i < indexes[0]; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Linas Vepstasbf8cbae2007-04-13 15:34:07 -0700325 slot = alloc_slot_struct(dn, indexes[i + 1], name, power_domains[i + 1]);
326 if (!slot)
327 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
Linas Vepstasbf8cbae2007-04-13 15:34:07 -0700329 slot->type = simple_strtoul(type, NULL, 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
Linas Vepstasbf8cbae2007-04-13 15:34:07 -0700331 dbg("Found drc-index:0x%x drc-name:%s drc-type:%s\n",
332 indexes[i + 1], name, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Linas Vepstasfea54b82007-04-13 15:34:20 -0700334 retval = rpaphp_enable_slot(slot);
Linas Vepstas6f79eb72007-04-13 15:34:19 -0700335 if (!retval)
336 retval = rpaphp_register_slot(slot);
337
Linas Vepstas31be7582007-04-13 15:34:09 -0700338 if (retval)
339 dealloc_slot_struct(slot);
340
Linas Vepstasbf8cbae2007-04-13 15:34:07 -0700341 name += strlen(name) + 1;
342 type += strlen(type) + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 }
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800344 dbg("%s - Exit: rc[%d]\n", __func__, retval);
Linas Vepstas31be7582007-04-13 15:34:09 -0700345
346 /* XXX FIXME: reports a failure only if last entry in loop failed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 return retval;
348}
349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350static void __exit cleanup_slots(void)
351{
352 struct list_head *tmp, *n;
353 struct slot *slot;
354
355 /*
356 * Unregister all of our slots with the pci_hotplug subsystem,
357 * and free up all memory that we had allocated.
358 * memory will be freed in release_slot callback.
359 */
360
361 list_for_each_safe(tmp, n, &rpaphp_slot_head) {
362 slot = list_entry(tmp, struct slot, rpaphp_slot_list);
363 list_del(&slot->rpaphp_slot_list);
364 pci_hp_deregister(slot->hotplug_slot);
365 }
366 return;
367}
368
369static int __init rpaphp_init(void)
370{
John Rose5eeb8c62005-07-25 10:16:42 -0500371 struct device_node *dn = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
John Rose5eeb8c62005-07-25 10:16:42 -0500373 info(DRIVER_DESC " version: " DRIVER_VERSION "\n");
John Rose5eeb8c62005-07-25 10:16:42 -0500374
John Rosea57ed792006-11-13 15:12:52 -0800375 while ((dn = of_find_node_by_name(dn, "pci")))
John Rose5eeb8c62005-07-25 10:16:42 -0500376 rpaphp_add_slot(dn);
377
John Rose5eeb8c62005-07-25 10:16:42 -0500378 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379}
380
381static void __exit rpaphp_exit(void)
382{
383 cleanup_slots();
384}
385
Linas Vepstasac1f0e92007-04-13 15:34:25 -0700386static int enable_slot(struct hotplug_slot *hotplug_slot)
linas@austin.ibm.come06b80b2006-01-12 18:28:22 -0600387{
Linas Vepstasac1f0e92007-04-13 15:34:25 -0700388 struct slot *slot = (struct slot *)hotplug_slot->private;
linas@austin.ibm.come06b80b2006-01-12 18:28:22 -0600389 int state;
390 int retval;
391
392 if (slot->state == CONFIGURED)
393 return 0;
394
395 retval = rpaphp_get_sensor_state(slot, &state);
396 if (retval)
397 return retval;
398
399 if (state == PRESENT) {
400 pcibios_add_pci_devices(slot->bus);
401 slot->state = CONFIGURED;
402 } else if (state == EMPTY) {
403 slot->state = EMPTY;
404 } else {
Harvey Harrison66bef8c2008-03-03 19:09:46 -0800405 err("%s: slot[%s] is in invalid state\n", __func__, slot->name);
linas@austin.ibm.come06b80b2006-01-12 18:28:22 -0600406 slot->state = NOT_VALID;
407 return -EINVAL;
408 }
Matthew Wilcox3749c512009-12-13 08:11:32 -0500409
410 slot->bus->max_bus_speed = get_max_bus_speed(slot);
linas@austin.ibm.come06b80b2006-01-12 18:28:22 -0600411 return 0;
412}
413
Linas Vepstasac1f0e92007-04-13 15:34:25 -0700414static int disable_slot(struct hotplug_slot *hotplug_slot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 struct slot *slot = (struct slot *)hotplug_slot->private;
linas@austin.ibm.com8fe64392006-01-12 18:26:27 -0600417 if (slot->state == NOT_CONFIGURED)
418 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Linas Vepstase70ea2632007-04-13 15:34:23 -0700420 pcibios_remove_pci_devices(slot->bus);
linas934199e2005-09-28 19:33:38 -0500421 slot->state = NOT_CONFIGURED;
linas@austin.ibm.com8fe64392006-01-12 18:26:27 -0600422 return 0;
423}
424
linas@austin.ibm.comb64a71ab2006-01-12 18:32:58 -0600425struct hotplug_slot_ops rpaphp_hotplug_slot_ops = {
linas@austin.ibm.comb64a71ab2006-01-12 18:32:58 -0600426 .enable_slot = enable_slot,
427 .disable_slot = disable_slot,
428 .set_attention_status = set_attention_status,
429 .get_power_status = get_power_status,
430 .get_attention_status = get_attention_status,
431 .get_adapter_status = get_adapter_status,
linas@austin.ibm.comb64a71ab2006-01-12 18:32:58 -0600432};
433
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434module_init(rpaphp_init);
435module_exit(rpaphp_exit);
436
437EXPORT_SYMBOL_GPL(rpaphp_add_slot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438EXPORT_SYMBOL_GPL(rpaphp_slot_head);
439EXPORT_SYMBOL_GPL(rpaphp_get_drc_props);