2 * arch/ppc/syslib/ppc_sys.c
4 * PPC System library functions
6 * Maintainer: Kumar Gala <kumar.gala@freescale.com>
8 * Copyright 2005 Freescale Semiconductor Inc.
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by the
12 * Free Software Foundation; either version 2 of the License, or (at your
13 * option) any later version.
16 #include <asm/ppc_sys.h>
18 int (*ppc_sys_device_fixup
) (struct platform_device
* pdev
);
20 static int ppc_sys_inited
;
22 void __init
identify_ppc_sys_by_id(u32 id
)
26 if ((ppc_sys_specs
[i
].mask
& id
) == ppc_sys_specs
[i
].value
)
31 cur_ppc_sys_spec
= &ppc_sys_specs
[i
];
36 void __init
identify_ppc_sys_by_name(char *name
)
42 /* Update all memory resources by paddr, call before platform_device_register */
44 ppc_sys_fixup_mem_resource(struct platform_device
*pdev
, phys_addr_t paddr
)
47 for (i
= 0; i
< pdev
->num_resources
; i
++) {
48 struct resource
*r
= &pdev
->resource
[i
];
49 if ((r
->flags
& IORESOURCE_MEM
) == IORESOURCE_MEM
) {
56 /* Get platform_data pointer out of platform device, call before platform_device_register */
57 void *__init
ppc_sys_get_pdata(enum ppc_sys_devices dev
)
59 return ppc_sys_platform_devices
[dev
].dev
.platform_data
;
62 void ppc_sys_device_remove(enum ppc_sys_devices dev
)
67 platform_device_unregister(&ppc_sys_platform_devices
[dev
]);
69 if (cur_ppc_sys_spec
== NULL
)
71 for (i
= 0; i
< cur_ppc_sys_spec
->num_devices
; i
++)
72 if (cur_ppc_sys_spec
->device_list
[i
] == dev
)
73 cur_ppc_sys_spec
->device_list
[i
] = -1;
77 static int __init
ppc_sys_init(void)
79 unsigned int i
, dev_id
, ret
= 0;
81 BUG_ON(cur_ppc_sys_spec
== NULL
);
83 for (i
= 0; i
< cur_ppc_sys_spec
->num_devices
; i
++) {
84 dev_id
= cur_ppc_sys_spec
->device_list
[i
];
86 if (ppc_sys_device_fixup
!= NULL
)
87 ppc_sys_device_fixup(&ppc_sys_platform_devices
89 if (platform_device_register
90 (&ppc_sys_platform_devices
[dev_id
])) {
93 "unable to register device %d\n",
103 subsys_initcall(ppc_sys_init
);