2 * PPC System library functions
4 * Maintainer: Kumar Gala <galak@kernel.crashing.org>
6 * Copyright 2005 Freescale Semiconductor Inc.
7 * Copyright 2005 MontaVista, Inc. by Vitaly Bordug <vbordug@ru.mvista.com>
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.
15 #include <linux/string.h>
16 #include <linux/bootmem.h>
17 #include <asm/ppc_sys.h>
19 int (*ppc_sys_device_fixup
) (struct platform_device
* pdev
);
21 static int ppc_sys_inited
;
22 static int ppc_sys_func_inited
;
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",
33 void __init
identify_ppc_sys_by_id(u32 id
)
37 if ((ppc_sys_specs
[i
].mask
& id
) == ppc_sys_specs
[i
].value
)
42 cur_ppc_sys_spec
= &ppc_sys_specs
[i
];
47 void __init
identify_ppc_sys_by_name(char *name
)
50 while (ppc_sys_specs
[i
].ppc_sys_name
[0]) {
51 if (!strcmp(ppc_sys_specs
[i
].ppc_sys_name
, name
))
55 cur_ppc_sys_spec
= &ppc_sys_specs
[i
];
60 static int __init
count_sys_specs(void)
63 while (ppc_sys_specs
[i
].ppc_sys_name
[0])
68 static int __init
find_chip_by_name_and_id(char *name
, u32 id
)
73 unsigned int dups
= 0;
75 unsigned char matched
[count_sys_specs()];
77 while (ppc_sys_specs
[i
].ppc_sys_name
[0]) {
78 if (!strcmp(ppc_sys_specs
[i
].ppc_sys_name
, name
))
86 for (i
= 0; i
< j
; i
++) {
87 if ((ppc_sys_specs
[matched
[i
]].mask
& id
) ==
88 ppc_sys_specs
[matched
[i
]].value
) {
93 ret
= (dups
== 1) ? ret
: (-1 * dups
);
98 void __init
identify_ppc_sys_by_name_and_id(char *name
, u32 id
)
100 int i
= find_chip_by_name_and_id(name
, id
);
102 cur_ppc_sys_spec
= &ppc_sys_specs
[i
];
105 /* Update all memory resources by paddr, call before platform_device_register */
107 ppc_sys_fixup_mem_resource(struct platform_device
*pdev
, phys_addr_t paddr
)
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
->flags
& PPC_SYS_IORESOURCE_FIXUPPED
) != PPC_SYS_IORESOURCE_FIXUPPED
)) {
116 r
->flags
|= PPC_SYS_IORESOURCE_FIXUPPED
;
121 /* Get platform_data pointer out of platform device, call before platform_device_register */
122 void *__init
ppc_sys_get_pdata(enum ppc_sys_devices dev
)
124 return ppc_sys_platform_devices
[dev
].dev
.platform_data
;
127 void ppc_sys_device_remove(enum ppc_sys_devices dev
)
131 if (ppc_sys_inited
) {
132 platform_device_unregister(&ppc_sys_platform_devices
[dev
]);
134 if (cur_ppc_sys_spec
== NULL
)
136 for (i
= 0; i
< cur_ppc_sys_spec
->num_devices
; i
++)
137 if (cur_ppc_sys_spec
->device_list
[i
] == dev
)
138 cur_ppc_sys_spec
->device_list
[i
] = -1;
142 /* Platform-notify mapping
143 * Helper function for BSP code to assign board-specific platfom-divice bits
146 void platform_notify_map(const struct platform_notify_dev_map
*map
,
149 struct platform_device
*pdev
;
153 /* do nothing if no device or no bus_id */
154 if (!dev
|| !dev
->bus_id
)
157 /* call per device map */
158 while (map
->bus_id
!= NULL
) {
160 s
= strrchr(dev
->bus_id
, '.');
162 idx
= (int)simple_strtol(s
+ 1, NULL
, 10);
163 len
= s
- dev
->bus_id
;
166 len
= strlen(dev
->bus_id
);
169 if (!strncmp(dev
->bus_id
, map
->bus_id
, len
)) {
170 pdev
= container_of(dev
, struct platform_device
, dev
);
178 Function assignment stuff.
179 Intended to work as follows:
180 the device name defined in foo_devices.c will be concatenated with :"func",
181 where func is string map of respective function from platfom_device_func enum
183 The PPC_SYS_FUNC_DUMMY function is intended to remove all assignments, making the device to appear
184 in platform bus with unmodified name.
188 Here we'll replace .name pointers with fixed-length strings
189 Hereby, this should be called *before* any func stuff triggeded.
191 void ppc_sys_device_initfunc(void)
195 static char new_names
[NUM_PPC_SYS_DEVS
][BUS_ID_SIZE
];
196 enum ppc_sys_devices cur_dev
;
198 /* If inited yet, do nothing */
199 if (ppc_sys_func_inited
)
202 for (i
= 0; i
< cur_ppc_sys_spec
->num_devices
; i
++) {
203 if ((cur_dev
= cur_ppc_sys_spec
->device_list
[i
]) < 0)
206 if (ppc_sys_platform_devices
[cur_dev
].name
) {
208 name
= ppc_sys_platform_devices
[cur_dev
].name
;
209 strlcpy(new_names
[i
], name
, BUS_ID_SIZE
);
210 ppc_sys_platform_devices
[cur_dev
].name
= new_names
[i
];
214 ppc_sys_func_inited
= 1;
217 /*The "engine" of the func stuff. Here we either concat specified function string description
218 to the name, or remove it if PPC_SYS_FUNC_DUMMY parameter is passed here*/
219 void ppc_sys_device_setfunc(enum ppc_sys_devices dev
,
220 enum platform_device_func func
)
223 char *name
= (char *)ppc_sys_platform_devices
[dev
].name
;
224 char tmp
[BUS_ID_SIZE
];
226 if (!ppc_sys_func_inited
) {
227 printk(KERN_ERR
"Unable to alter function - not inited!\n");
231 if (ppc_sys_inited
) {
232 platform_device_unregister(&ppc_sys_platform_devices
[dev
]);
235 if ((s
= (char *)strchr(name
, ':')) != NULL
) { /* reassign */
236 /* Either change the name after ':' or remove func modifications */
237 if (func
!= PPC_SYS_FUNC_DUMMY
)
238 strlcpy(s
+ 1, ppc_sys_func_names
[func
], BUS_ID_SIZE
);
241 } else if (func
!= PPC_SYS_FUNC_DUMMY
) {
242 /* do assignment if it is not just "clear" request */
243 sprintf(tmp
, "%s:%s", name
, ppc_sys_func_names
[func
]);
244 strlcpy(name
, tmp
, BUS_ID_SIZE
);
247 if (ppc_sys_inited
) {
248 platform_device_register(&ppc_sys_platform_devices
[dev
]);
252 void ppc_sys_device_disable(enum ppc_sys_devices dev
)
254 BUG_ON(cur_ppc_sys_spec
== NULL
);
256 /*Check if it is enabled*/
257 if(!(cur_ppc_sys_spec
->config
[dev
] & PPC_SYS_CONFIG_DISABLED
)) {
258 if (ppc_sys_inited
) {
259 platform_device_unregister(&ppc_sys_platform_devices
[dev
]);
261 cur_ppc_sys_spec
->config
[dev
] |= PPC_SYS_CONFIG_DISABLED
;
265 void ppc_sys_device_enable(enum ppc_sys_devices dev
)
267 BUG_ON(cur_ppc_sys_spec
== NULL
);
269 /*Check if it is disabled*/
270 if(cur_ppc_sys_spec
->config
[dev
] & PPC_SYS_CONFIG_DISABLED
) {
271 if (ppc_sys_inited
) {
272 platform_device_register(&ppc_sys_platform_devices
[dev
]);
274 cur_ppc_sys_spec
->config
[dev
] &= ~PPC_SYS_CONFIG_DISABLED
;
279 void ppc_sys_device_enable_all(void)
281 enum ppc_sys_devices cur_dev
;
284 for (i
= 0; i
< cur_ppc_sys_spec
->num_devices
; i
++) {
285 cur_dev
= cur_ppc_sys_spec
->device_list
[i
];
286 ppc_sys_device_enable(cur_dev
);
290 void ppc_sys_device_disable_all(void)
292 enum ppc_sys_devices cur_dev
;
295 for (i
= 0; i
< cur_ppc_sys_spec
->num_devices
; i
++) {
296 cur_dev
= cur_ppc_sys_spec
->device_list
[i
];
297 ppc_sys_device_disable(cur_dev
);
302 static int __init
ppc_sys_init(void)
304 unsigned int i
, dev_id
, ret
= 0;
306 BUG_ON(cur_ppc_sys_spec
== NULL
);
308 for (i
= 0; i
< cur_ppc_sys_spec
->num_devices
; i
++) {
309 dev_id
= cur_ppc_sys_spec
->device_list
[i
];
310 if ((dev_id
!= -1) &&
311 !(cur_ppc_sys_spec
->config
[dev_id
] & PPC_SYS_CONFIG_DISABLED
)) {
312 if (ppc_sys_device_fixup
!= NULL
)
313 ppc_sys_device_fixup(&ppc_sys_platform_devices
315 if (platform_device_register
316 (&ppc_sys_platform_devices
[dev_id
])) {
319 "unable to register device %d\n",
329 subsys_initcall(ppc_sys_init
);