Merge branch 'misc' of master.kernel.org:/pub/scm/linux/kernel/git/galak/powerpc...
[pandora-kernel.git] / arch / ppc / syslib / ppc_sys.c
1 /*
2  * PPC System library functions
3  *
4  * Maintainer: Kumar Gala <galak@kernel.crashing.org>
5  *
6  * Copyright 2005 Freescale Semiconductor Inc.
7  * Copyright 2005 MontaVista, Inc. by Vitaly Bordug <vbordug@ru.mvista.com>
8  *
9  * This program is free software; you can redistribute  it and/or modify it
10  * under  the terms of  the GNU General  Public License as published by the
11  * Free Software Foundation;  either version 2 of the  License, or (at your
12  * option) any later version.
13  */
14
15 #include <linux/string.h>
16 #include <linux/bootmem.h>
17 #include <asm/ppc_sys.h>
18
19 int (*ppc_sys_device_fixup) (struct platform_device * pdev);
20
21 static int ppc_sys_inited;
22 static int ppc_sys_func_inited;
23
24 static const char *ppc_sys_func_names[] = {
25         [PPC_SYS_FUNC_DUMMY] = "dummy",
26         [PPC_SYS_FUNC_ETH] = "eth",
27         [PPC_SYS_FUNC_UART] = "uart",
28         [PPC_SYS_FUNC_HLDC] = "hldc",
29         [PPC_SYS_FUNC_USB] = "usb",
30         [PPC_SYS_FUNC_IRDA] = "irda",
31 };
32
33 void __init identify_ppc_sys_by_id(u32 id)
34 {
35         unsigned int i = 0;
36         while (1) {
37                 if ((ppc_sys_specs[i].mask & id) == ppc_sys_specs[i].value)
38                         break;
39                 i++;
40         }
41
42         cur_ppc_sys_spec = &ppc_sys_specs[i];
43
44         return;
45 }
46
47 void __init identify_ppc_sys_by_name(char *name)
48 {
49         unsigned int i = 0;
50         while (ppc_sys_specs[i].ppc_sys_name[0]) {
51                 if (!strcmp(ppc_sys_specs[i].ppc_sys_name, name))
52                         break;
53                 i++;
54         }
55         cur_ppc_sys_spec = &ppc_sys_specs[i];
56
57         return;
58 }
59
60 static int __init count_sys_specs(void)
61 {
62         int i = 0;
63         while (ppc_sys_specs[i].ppc_sys_name[0])
64                 i++;
65         return i;
66 }
67
68 static int __init find_chip_by_name_and_id(char *name, u32 id)
69 {
70         int ret = -1;
71         unsigned int i = 0;
72         unsigned int j = 0;
73         unsigned int dups = 0;
74
75         unsigned char matched[count_sys_specs()];
76
77         while (ppc_sys_specs[i].ppc_sys_name[0]) {
78                 if (!strcmp(ppc_sys_specs[i].ppc_sys_name, name))
79                         matched[j++] = i;
80                 i++;
81         }
82
83         ret = i;
84
85         if (j != 0) {
86                 for (i = 0; i < j; i++) {
87                         if ((ppc_sys_specs[matched[i]].mask & id) ==
88                             ppc_sys_specs[matched[i]].value) {
89                                 ret = matched[i];
90                                 dups++;
91                         }
92                 }
93                 ret = (dups == 1) ? ret : (-1 * dups);
94         }
95         return ret;
96 }
97
98 void __init identify_ppc_sys_by_name_and_id(char *name, u32 id)
99 {
100         int i = find_chip_by_name_and_id(name, id);
101         BUG_ON(i < 0);
102         cur_ppc_sys_spec = &ppc_sys_specs[i];
103 }
104
105 /* Update all memory resources by paddr, call before platform_device_register */
106 void __init
107 ppc_sys_fixup_mem_resource(struct platform_device *pdev, phys_addr_t paddr)
108 {
109         int i;
110         for (i = 0; i < pdev->num_resources; i++) {
111                 struct resource *r = &pdev->resource[i];
112                 if ((r->flags & IORESOURCE_MEM) == IORESOURCE_MEM) {
113                         r->start += paddr;
114                         r->end += paddr;
115                 }
116         }
117 }
118
119 /* Get platform_data pointer out of platform device, call before platform_device_register */
120 void *__init ppc_sys_get_pdata(enum ppc_sys_devices dev)
121 {
122         return ppc_sys_platform_devices[dev].dev.platform_data;
123 }
124
125 void ppc_sys_device_remove(enum ppc_sys_devices dev)
126 {
127         unsigned int i;
128
129         if (ppc_sys_inited) {
130                 platform_device_unregister(&ppc_sys_platform_devices[dev]);
131         } else {
132                 if (cur_ppc_sys_spec == NULL)
133                         return;
134                 for (i = 0; i < cur_ppc_sys_spec->num_devices; i++)
135                         if (cur_ppc_sys_spec->device_list[i] == dev)
136                                 cur_ppc_sys_spec->device_list[i] = -1;
137         }
138 }
139
140 /* Platform-notify mapping
141  * Helper function for BSP code to assign board-specific platfom-divice bits
142  */
143
144 void platform_notify_map(const struct platform_notify_dev_map *map,
145                          struct device *dev)
146 {
147         struct platform_device *pdev;
148         int len, idx;
149         const char *s;
150
151         /* do nothing if no device or no bus_id */
152         if (!dev || !dev->bus_id)
153                 return;
154
155         /* call per device map */
156         while (map->bus_id != NULL) {
157                 idx = -1;
158                 s = strrchr(dev->bus_id, '.');
159                 if (s != NULL) {
160                         idx = (int)simple_strtol(s + 1, NULL, 10);
161                         len = s - dev->bus_id;
162                 } else {
163                         s = dev->bus_id;
164                         len = strlen(dev->bus_id);
165                 }
166
167                 if (!strncmp(dev->bus_id, map->bus_id, len)) {
168                         pdev = container_of(dev, struct platform_device, dev);
169                         map->rtn(pdev, idx);
170                 }
171                 map++;
172         }
173 }
174
175 /*
176    Function assignment stuff.
177  Intended to work as follows:
178  the device name defined in foo_devices.c will be concatenated with :"func",
179  where func is string map of respective function from platfom_device_func enum
180
181  The PPC_SYS_FUNC_DUMMY function is intended to remove all assignments, making the device to appear
182  in platform bus with unmodified name.
183  */
184
185 /*
186    Here we'll replace .name pointers with fixed-lenght strings
187    Hereby, this should be called *before* any func stuff triggeded.
188  */
189 void ppc_sys_device_initfunc(void)
190 {
191         int i;
192         const char *name;
193         static char new_names[NUM_PPC_SYS_DEVS][BUS_ID_SIZE];
194         enum ppc_sys_devices cur_dev;
195
196         /* If inited yet, do nothing */
197         if (ppc_sys_func_inited)
198                 return;
199
200         for (i = 0; i < cur_ppc_sys_spec->num_devices; i++) {
201                 if ((cur_dev = cur_ppc_sys_spec->device_list[i]) < 0)
202                         continue;
203
204                 if (ppc_sys_platform_devices[cur_dev].name) {
205                         /*backup name */
206                         name = ppc_sys_platform_devices[cur_dev].name;
207                         strlcpy(new_names[i], name, BUS_ID_SIZE);
208                         ppc_sys_platform_devices[cur_dev].name = new_names[i];
209                 }
210         }
211
212         ppc_sys_func_inited = 1;
213 }
214
215 /*The "engine" of the func stuff. Here we either concat specified function string description
216  to the name, or remove it if PPC_SYS_FUNC_DUMMY parameter is passed here*/
217 void ppc_sys_device_setfunc(enum ppc_sys_devices dev,
218                             enum platform_device_func func)
219 {
220         char *s;
221         char *name = (char *)ppc_sys_platform_devices[dev].name;
222         char tmp[BUS_ID_SIZE];
223
224         if (!ppc_sys_func_inited) {
225                 printk(KERN_ERR "Unable to alter function - not inited!\n");
226                 return;
227         }
228
229         if (ppc_sys_inited) {
230                 platform_device_unregister(&ppc_sys_platform_devices[dev]);
231         }
232
233         if ((s = (char *)strchr(name, ':')) != NULL) {  /* reassign */
234                 /* Either change the name after ':' or remove func modifications */
235                 if (func != PPC_SYS_FUNC_DUMMY)
236                         strlcpy(s + 1, ppc_sys_func_names[func], BUS_ID_SIZE);
237                 else
238                         *s = 0;
239         } else if (func != PPC_SYS_FUNC_DUMMY) {
240                 /* do assignment if it is not just "clear"  request */
241                 sprintf(tmp, "%s:%s", name, ppc_sys_func_names[func]);
242                 strlcpy(name, tmp, BUS_ID_SIZE);
243         }
244
245         if (ppc_sys_inited) {
246                 platform_device_register(&ppc_sys_platform_devices[dev]);
247         }
248 }
249
250 void ppc_sys_device_disable(enum ppc_sys_devices dev)
251 {
252         BUG_ON(cur_ppc_sys_spec == NULL);
253
254         /*Check if it is enabled*/
255         if(!(cur_ppc_sys_spec->config[dev] & PPC_SYS_CONFIG_DISABLED)) {
256                 if (ppc_sys_inited) {
257                         platform_device_unregister(&ppc_sys_platform_devices[dev]);
258                 }
259                 cur_ppc_sys_spec->config[dev] |= PPC_SYS_CONFIG_DISABLED;
260         }
261 }
262
263 void ppc_sys_device_enable(enum ppc_sys_devices dev)
264 {
265         BUG_ON(cur_ppc_sys_spec == NULL);
266
267         /*Check if it is disabled*/
268         if(cur_ppc_sys_spec->config[dev] & PPC_SYS_CONFIG_DISABLED) {
269                 if (ppc_sys_inited) {
270                         platform_device_register(&ppc_sys_platform_devices[dev]);
271                 }
272                 cur_ppc_sys_spec->config[dev] &= ~PPC_SYS_CONFIG_DISABLED;
273         }
274
275 }
276
277 void ppc_sys_device_enable_all(void)
278 {
279         enum ppc_sys_devices cur_dev;
280         int i;
281
282         for (i = 0; i < cur_ppc_sys_spec->num_devices; i++) {
283                 cur_dev = cur_ppc_sys_spec->device_list[i];
284                 ppc_sys_device_enable(cur_dev);
285         }
286 }
287
288 void ppc_sys_device_disable_all(void)
289 {
290         enum ppc_sys_devices cur_dev;
291         int i;
292
293         for (i = 0; i < cur_ppc_sys_spec->num_devices; i++) {
294                 cur_dev = cur_ppc_sys_spec->device_list[i];
295                 ppc_sys_device_disable(cur_dev);
296         }
297 }
298
299
300 static int __init ppc_sys_init(void)
301 {
302         unsigned int i, dev_id, ret = 0;
303
304         BUG_ON(cur_ppc_sys_spec == NULL);
305
306         for (i = 0; i < cur_ppc_sys_spec->num_devices; i++) {
307                 dev_id = cur_ppc_sys_spec->device_list[i];
308                 if ((dev_id != -1) &&
309                 !(cur_ppc_sys_spec->config[dev_id] & PPC_SYS_CONFIG_DISABLED)) {
310                         if (ppc_sys_device_fixup != NULL)
311                                 ppc_sys_device_fixup(&ppc_sys_platform_devices
312                                                      [dev_id]);
313                         if (platform_device_register
314                             (&ppc_sys_platform_devices[dev_id])) {
315                                 ret = 1;
316                                 printk(KERN_ERR
317                                        "unable to register device %d\n",
318                                        dev_id);
319                         }
320                 }
321         }
322
323         ppc_sys_inited = 1;
324         return ret;
325 }
326
327 subsys_initcall(ppc_sys_init);