PCI: rpaphp: Rename rpaphp_register_pci_slot() to rpaphp_enable_slot()
[pandora-kernel.git] / drivers / pci / hotplug / rpaphp_core.c
1 /*
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  */
25 #include <linux/kernel.h>
26 #include <linux/module.h>
27 #include <linux/moduleparam.h>
28 #include <linux/pci.h>
29 #include <linux/pci_hotplug.h>
30 #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"
40
41 int debug;
42 static struct semaphore rpaphp_sem;
43 LIST_HEAD(rpaphp_slot_head);
44
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
51 MODULE_AUTHOR(DRIVER_AUTHOR);
52 MODULE_DESCRIPTION(DRIVER_DESC);
53 MODULE_LICENSE("GPL");
54
55 module_param(debug, bool, 0644);
56
57 /**
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  */
64 static int set_attention_status(struct hotplug_slot *hotplug_slot, u8 value)
65 {
66         int rc;
67         struct slot *slot = (struct slot *)hotplug_slot->private;
68
69         down(&rpaphp_sem);
70         switch (value) {
71         case 0:
72         case 1:
73         case 2:
74                 break;
75         default:
76                 value = 1;
77                 break;
78         }
79         up(&rpaphp_sem);
80
81         rc = rtas_set_indicator(DR_INDICATOR, slot->index, value);
82         if (!rc)
83                 hotplug_slot->info->attention_status = value;
84
85         return rc;
86 }
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
92  */
93 static int get_power_status(struct hotplug_slot *hotplug_slot, u8 * value)
94 {
95         int retval, level;
96         struct slot *slot = (struct slot *)hotplug_slot->private;
97
98         down(&rpaphp_sem);
99         retval = rtas_get_power_level (slot->power_domain, &level);
100         if (!retval)
101                 *value = level;
102         up(&rpaphp_sem);
103         return retval;
104 }
105
106 /**
107  * get_attention_status - get attention LED status
108  */
109 static int get_attention_status(struct hotplug_slot *hotplug_slot, u8 * value)
110 {
111         struct slot *slot = (struct slot *)hotplug_slot->private;
112         *value = slot->hotplug_slot->info->attention_status;
113         return 0;
114 }
115
116 static int get_adapter_status(struct hotplug_slot *hotplug_slot, u8 * value)
117 {
118         struct slot *slot = (struct slot *)hotplug_slot->private;
119         int rc, state;
120
121         down(&rpaphp_sem);
122         rc = rpaphp_get_sensor_state(slot, &state);
123         up(&rpaphp_sem);
124
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;
135 }
136
137 static 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
176 static 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)
179 {
180         const int *indexes, *names, *types, *domains;
181
182         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);
186
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  */
209 int rpaphp_get_drc_props(struct device_node *dn, int *drc_index,
210                 char **drc_name, char **drc_type, int *drc_power_domain)
211 {
212         const int *indexes, *names;
213         const int *types, *domains;
214         const unsigned int *my_index;
215         char *name_tmp, *type_tmp;
216         int i, rc;
217
218         my_index = get_property(dn, "ibm,my-drc-index", NULL);
219         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
252 static 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
265 static int is_php_dn(struct device_node *dn, const int **indexes,
266                 const int **names, const int **types, const int **power_domains)
267 {
268         const int *drc_types;
269         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
282 /**
283  * rpaphp_add_slot -- add hotplug or dlpar slot
284  *
285  *      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.
290  */
291 int rpaphp_add_slot(struct device_node *dn)
292 {
293         struct slot *slot;
294         int retval = 0;
295         int i;
296         const int *indexes, *names, *types, *power_domains;
297         char *name, *type;
298
299         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
305         dbg("Entry %s: dn->full_name=%s\n", __FUNCTION__, dn->full_name);
306
307         /* register PCI devices */
308         name = (char *) &names[1];
309         type = (char *) &types[1];
310         for (i = 0; i < indexes[0]; i++) {
311
312                 slot = alloc_slot_struct(dn, indexes[i + 1], name, power_domains[i + 1]);
313                 if (!slot)
314                         return -ENOMEM;
315
316                 slot->type = simple_strtoul(type, NULL, 10);
317                                 
318                 dbg("Found drc-index:0x%x drc-name:%s drc-type:%s\n",
319                                 indexes[i + 1], name, type);
320
321                 retval = rpaphp_enable_slot(slot);
322                 if (!retval)
323                         retval = rpaphp_register_slot(slot);
324
325                 if (retval)
326                         dealloc_slot_struct(slot);
327
328                 name += strlen(name) + 1;
329                 type += strlen(type) + 1;
330         }
331         dbg("%s - Exit: rc[%d]\n", __FUNCTION__, retval);
332
333         /* XXX FIXME: reports a failure only if last entry in loop failed */
334         return retval;
335 }
336
337 static void __exit cleanup_slots(void)
338 {
339         struct list_head *tmp, *n;
340         struct slot *slot;
341
342         /*
343          * Unregister all of our slots with the pci_hotplug subsystem,
344          * and free up all memory that we had allocated.
345          * memory will be freed in release_slot callback. 
346          */
347
348         list_for_each_safe(tmp, n, &rpaphp_slot_head) {
349                 slot = list_entry(tmp, struct slot, rpaphp_slot_list);
350                 list_del(&slot->rpaphp_slot_list);
351                 pci_hp_deregister(slot->hotplug_slot);
352         }
353         return;
354 }
355
356 static int __init rpaphp_init(void)
357 {
358         struct device_node *dn = NULL;
359
360         info(DRIVER_DESC " version: " DRIVER_VERSION "\n");
361         init_MUTEX(&rpaphp_sem);
362
363         while ((dn = of_find_node_by_name(dn, "pci")))
364                 rpaphp_add_slot(dn);
365
366         return 0;
367 }
368
369 static void __exit rpaphp_exit(void)
370 {
371         cleanup_slots();
372 }
373
374 static int __enable_slot(struct slot *slot)
375 {
376         int state;
377         int retval;
378
379         if (slot->state == CONFIGURED)
380                 return 0;
381
382         retval = rpaphp_get_sensor_state(slot, &state);
383         if (retval)
384                 return retval;
385
386         if (state == PRESENT) {
387                 pcibios_add_pci_devices(slot->bus);
388                 slot->state = CONFIGURED;
389         } else if (state == EMPTY) {
390                 slot->state = EMPTY;
391         } else {
392                 err("%s: slot[%s] is in invalid state\n", __FUNCTION__, slot->name);
393                 slot->state = NOT_VALID;
394                 return -EINVAL;
395         }
396         return 0;
397 }
398
399 static int enable_slot(struct hotplug_slot *hotplug_slot)
400 {
401         int retval;
402         struct slot *slot = (struct slot *)hotplug_slot->private;
403
404         down(&rpaphp_sem);
405         retval = __enable_slot(slot);
406         up(&rpaphp_sem);
407
408         return retval;
409 }
410
411 static int __disable_slot(struct slot *slot)
412 {
413         struct pci_dev *dev, *tmp;
414
415         if (slot->state == NOT_CONFIGURED)
416                 return -EINVAL;
417
418         list_for_each_entry_safe(dev, tmp, &slot->bus->devices, bus_list) {
419                 eeh_remove_bus_device(dev);
420                 pci_remove_bus_device(dev);
421         }
422
423         slot->state = NOT_CONFIGURED;
424         return 0;
425 }
426
427 static int disable_slot(struct hotplug_slot *hotplug_slot)
428 {
429         struct slot *slot = (struct slot *)hotplug_slot->private;
430         int retval;
431
432         down(&rpaphp_sem);
433         retval = __disable_slot (slot);
434         up(&rpaphp_sem);
435
436         return retval;
437 }
438
439 struct hotplug_slot_ops rpaphp_hotplug_slot_ops = {
440         .owner = THIS_MODULE,
441         .enable_slot = enable_slot,
442         .disable_slot = disable_slot,
443         .set_attention_status = set_attention_status,
444         .get_power_status = get_power_status,
445         .get_attention_status = get_attention_status,
446         .get_adapter_status = get_adapter_status,
447         .get_max_bus_speed = get_max_bus_speed,
448 };
449
450 module_init(rpaphp_init);
451 module_exit(rpaphp_exit);
452
453 EXPORT_SYMBOL_GPL(rpaphp_add_slot);
454 EXPORT_SYMBOL_GPL(rpaphp_slot_head);
455 EXPORT_SYMBOL_GPL(rpaphp_get_drc_props);