2 * arch/powerpc/platforms/83xx/mpc837x_mds.c
4 * Copyright (C) 2007 Freescale Semiconductor, Inc. All rights reserved.
6 * MPC837x MDS board specific routines
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
14 #include <linux/pci.h>
16 #include <linux/of_platform.h>
25 #define BCSR12_USB_SER_MASK 0x8a
26 #define BCSR12_USB_SER_PIN 0x80
27 #define BCSR12_USB_SER_DEVICE 0x02
28 extern int mpc837x_usb_cfg(void);
30 static int mpc837xmds_usb_cfg(void)
32 struct device_node
*np
;
33 const void *phy_type
, *mode
;
34 void __iomem
*bcsr_regs
= NULL
;
38 ret
= mpc837x_usb_cfg();
42 np
= of_find_compatible_node(NULL
, NULL
, "fsl,mpc837xmds-bcsr");
44 bcsr_regs
= of_iomap(np
, 0);
50 np
= of_find_node_by_name(NULL
, "usb");
53 phy_type
= of_get_property(np
, "phy_type", NULL
);
54 if (phy_type
&& !strcmp(phy_type
, "ulpi")) {
55 clrbits8(bcsr_regs
+ 12, BCSR12_USB_SER_PIN
);
56 } else if (phy_type
&& !strcmp(phy_type
, "serial")) {
57 mode
= of_get_property(np
, "dr_mode", NULL
);
58 bcsr12
= in_8(bcsr_regs
+ 12) & ~BCSR12_USB_SER_MASK
;
59 bcsr12
|= BCSR12_USB_SER_PIN
;
60 if (mode
&& !strcmp(mode
, "peripheral"))
61 bcsr12
|= BCSR12_USB_SER_DEVICE
;
62 out_8(bcsr_regs
+ 12, bcsr12
);
64 printk(KERN_ERR
"USB DR: unsupported PHY\n");
72 /* ************************************************************************
74 * Setup the architecture
77 static void __init
mpc837x_mds_setup_arch(void)
80 struct device_node
*np
;
84 ppc_md
.progress("mpc837x_mds_setup_arch()", 0);
87 for_each_compatible_node(np
, "pci", "fsl,mpc8349-pci")
88 mpc83xx_add_bridge(np
);
93 static struct of_device_id mpc837x_ids
[] = {
95 { .compatible
= "soc", },
96 { .compatible
= "simple-bus", },
100 static int __init
mpc837x_declare_of_platform_devices(void)
102 /* Publish of_device */
103 of_platform_bus_probe(NULL
, mpc837x_ids
, NULL
);
107 machine_device_initcall(mpc837x_mds
, mpc837x_declare_of_platform_devices
);
109 static void __init
mpc837x_mds_init_IRQ(void)
111 struct device_node
*np
;
113 np
= of_find_compatible_node(NULL
, NULL
, "fsl,ipic");
119 /* Initialize the default interrupt mapping priorities,
120 * in case the boot rom changed something on us.
122 ipic_set_default_priority();
126 * Called very early, MMU is off, device-tree isn't unflattened
128 static int __init
mpc837x_mds_probe(void)
130 unsigned long root
= of_get_flat_dt_root();
132 return of_flat_dt_is_compatible(root
, "fsl,mpc837xmds");
135 define_machine(mpc837x_mds
) {
136 .name
= "MPC837x MDS",
137 .probe
= mpc837x_mds_probe
,
138 .setup_arch
= mpc837x_mds_setup_arch
,
139 .init_IRQ
= mpc837x_mds_init_IRQ
,
140 .get_irq
= ipic_get_irq
,
141 .restart
= mpc83xx_restart
,
142 .time_init
= mpc83xx_time_init
,
143 .calibrate_decr
= generic_calibrate_decr
,
144 .progress
= udbg_progress
,