powerpc/mpc512x: create SoC devices for more nodes
Create devices for mbx, sram, pci and gpio-leds nodes and also move nfc compatible to of_bus_id list for automatic nfc device creation. Signed-off-by: Anatolij Gustschin <agust@denx.de>
This commit is contained in:
parent
07961ac7c0
commit
534ada5ede
|
@ -330,22 +330,19 @@ void __init mpc512x_init_IRQ(void)
|
||||||
static struct of_device_id __initdata of_bus_ids[] = {
|
static struct of_device_id __initdata of_bus_ids[] = {
|
||||||
{ .compatible = "fsl,mpc5121-immr", },
|
{ .compatible = "fsl,mpc5121-immr", },
|
||||||
{ .compatible = "fsl,mpc5121-localbus", },
|
{ .compatible = "fsl,mpc5121-localbus", },
|
||||||
|
{ .compatible = "fsl,mpc5121-mbx", },
|
||||||
|
{ .compatible = "fsl,mpc5121-nfc", },
|
||||||
|
{ .compatible = "fsl,mpc5121-sram", },
|
||||||
|
{ .compatible = "fsl,mpc5121-pci", },
|
||||||
|
{ .compatible = "gpio-leds", },
|
||||||
{},
|
{},
|
||||||
};
|
};
|
||||||
|
|
||||||
void __init mpc512x_declare_of_platform_devices(void)
|
void __init mpc512x_declare_of_platform_devices(void)
|
||||||
{
|
{
|
||||||
struct device_node *np;
|
|
||||||
|
|
||||||
if (of_platform_bus_probe(NULL, of_bus_ids, NULL))
|
if (of_platform_bus_probe(NULL, of_bus_ids, NULL))
|
||||||
printk(KERN_ERR __FILE__ ": "
|
printk(KERN_ERR __FILE__ ": "
|
||||||
"Error while probing of_platform bus\n");
|
"Error while probing of_platform bus\n");
|
||||||
|
|
||||||
np = of_find_compatible_node(NULL, NULL, "fsl,mpc5121-nfc");
|
|
||||||
if (np) {
|
|
||||||
of_platform_device_create(np, NULL, NULL);
|
|
||||||
of_node_put(np);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#define DEFAULT_FIFO_SIZE 16
|
#define DEFAULT_FIFO_SIZE 16
|
||||||
|
|
Loading…
Reference in New Issue