2 * Freescale 83xx USB SOC setup code
4 * Copyright (C) 2007 Freescale Semiconductor, Inc.
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2 of the License, or (at your
10 * option) any later version.
14 #include <linux/stddef.h>
15 #include <linux/kernel.h>
16 #include <linux/errno.h>
20 #include <sysdev/fsl_soc.h>
25 #ifdef CONFIG_PPC_MPC834x
26 int mpc834x_usb_cfg(void)
28 unsigned long sccr, sicrl, sicrh;
30 struct device_node *np = NULL;
31 int port0_is_dr = 0, port1_is_dr = 0;
32 const void *prop, *dr_mode;
34 immap = ioremap(get_immrbase(), 0x1000);
39 /* Note: DR and MPH must use the same clock setting in SCCR */
40 sccr = in_be32(immap + MPC83XX_SCCR_OFFS) & ~MPC83XX_SCCR_USB_MASK;
41 sicrl = in_be32(immap + MPC83XX_SICRL_OFFS) & ~MPC834X_SICRL_USB_MASK;
42 sicrh = in_be32(immap + MPC83XX_SICRH_OFFS) & ~MPC834X_SICRH_USB_UTMI;
44 np = of_find_compatible_node(NULL, NULL, "fsl-usb2-dr");
46 sccr |= MPC83XX_SCCR_USB_DRCM_11; /* 1:3 */
48 prop = of_get_property(np, "phy_type", NULL);
49 if (prop && (!strcmp(prop, "utmi") ||
50 !strcmp(prop, "utmi_wide"))) {
51 sicrl |= MPC834X_SICRL_USB0 | MPC834X_SICRL_USB1;
52 sicrh |= MPC834X_SICRH_USB_UTMI;
54 } else if (prop && !strcmp(prop, "serial")) {
55 dr_mode = of_get_property(np, "dr_mode", NULL);
56 if (dr_mode && !strcmp(dr_mode, "otg")) {
57 sicrl |= MPC834X_SICRL_USB0 | MPC834X_SICRL_USB1;
60 sicrl |= MPC834X_SICRL_USB0;
62 } else if (prop && !strcmp(prop, "ulpi")) {
63 sicrl |= MPC834X_SICRL_USB0;
65 printk(KERN_WARNING "834x USB PHY type not supported\n");
70 np = of_find_compatible_node(NULL, NULL, "fsl-usb2-mph");
72 sccr |= MPC83XX_SCCR_USB_MPHCM_11; /* 1:3 */
74 prop = of_get_property(np, "port0", NULL);
78 "834x USB port0 can't be used by both DR and MPH!\n");
79 sicrl &= ~MPC834X_SICRL_USB0;
81 prop = of_get_property(np, "port1", NULL);
85 "834x USB port1 can't be used by both DR and MPH!\n");
86 sicrl &= ~MPC834X_SICRL_USB1;
92 out_be32(immap + MPC83XX_SCCR_OFFS, sccr);
93 out_be32(immap + MPC83XX_SICRL_OFFS, sicrl);
94 out_be32(immap + MPC83XX_SICRH_OFFS, sicrh);
99 #endif /* CONFIG_PPC_MPC834x */
101 #ifdef CONFIG_PPC_MPC831x
102 int mpc831x_usb_cfg(void)
105 void __iomem *immap, *usb_regs;
106 struct device_node *np = NULL;
107 struct device_node *immr_node = NULL;
111 #ifdef CONFIG_USB_OTG
115 np = of_find_compatible_node(NULL, NULL, "fsl-usb2-dr");
118 prop = of_get_property(np, "phy_type", NULL);
120 /* Map IMMR space for pin and clock settings */
121 immap = ioremap(get_immrbase(), 0x1000);
127 /* Configure clock */
128 immr_node = of_get_parent(np);
129 if (immr_node && of_device_is_compatible(immr_node, "fsl,mpc8315-immr"))
130 clrsetbits_be32(immap + MPC83XX_SCCR_OFFS,
131 MPC8315_SCCR_USB_MASK,
132 MPC8315_SCCR_USB_DRCM_01);
134 clrsetbits_be32(immap + MPC83XX_SCCR_OFFS,
135 MPC83XX_SCCR_USB_MASK,
136 MPC83XX_SCCR_USB_DRCM_11);
138 /* Configure pin mux for ULPI. There is no pin mux for UTMI */
139 if (prop && !strcmp(prop, "ulpi")) {
140 if (of_device_is_compatible(immr_node, "fsl,mpc8315-immr")) {
141 clrsetbits_be32(immap + MPC83XX_SICRL_OFFS,
142 MPC8315_SICRL_USB_MASK,
143 MPC8315_SICRL_USB_ULPI);
144 clrsetbits_be32(immap + MPC83XX_SICRH_OFFS,
145 MPC8315_SICRH_USB_MASK,
146 MPC8315_SICRH_USB_ULPI);
148 clrsetbits_be32(immap + MPC83XX_SICRL_OFFS,
149 MPC831X_SICRL_USB_MASK,
150 MPC831X_SICRL_USB_ULPI);
151 clrsetbits_be32(immap + MPC83XX_SICRH_OFFS,
152 MPC831X_SICRH_USB_MASK,
153 MPC831X_SICRH_USB_ULPI);
160 of_node_put(immr_node);
162 /* Map USB SOC space */
163 ret = of_address_to_resource(np, 0, &res);
168 usb_regs = ioremap(res.start, res.end - res.start + 1);
170 /* Using on-chip PHY */
171 if (prop && (!strcmp(prop, "utmi_wide") ||
172 !strcmp(prop, "utmi"))) {
175 if (of_device_is_compatible(immr_node, "fsl,mpc8315-immr"))
176 refsel = CONTROL_REFSEL_24MHZ;
178 refsel = CONTROL_REFSEL_48MHZ;
179 /* Set UTMI_PHY_EN and REFSEL */
180 out_be32(usb_regs + FSL_USB2_CONTROL_OFFS,
181 CONTROL_UTMI_PHY_EN | refsel);
182 /* Using external UPLI PHY */
183 } else if (prop && !strcmp(prop, "ulpi")) {
184 /* Set PHY_CLK_SEL to ULPI */
185 temp = CONTROL_PHY_CLK_SEL_ULPI;
186 #ifdef CONFIG_USB_OTG
188 dr_mode = of_get_property(np, "dr_mode", NULL);
189 if (dr_mode && !strcmp(dr_mode, "otg"))
190 temp |= CONTROL_OTG_PORT;
191 #endif /* CONFIG_USB_OTG */
192 out_be32(usb_regs + FSL_USB2_CONTROL_OFFS, temp);
194 printk(KERN_WARNING "831x USB PHY type not supported\n");
202 #endif /* CONFIG_PPC_MPC831x */
204 #ifdef CONFIG_PPC_MPC837x
205 int mpc837x_usb_cfg(void)
208 struct device_node *np = NULL;
212 np = of_find_compatible_node(NULL, NULL, "fsl-usb2-dr");
215 prop = of_get_property(np, "phy_type", NULL);
217 if (!prop || (strcmp(prop, "ulpi") && strcmp(prop, "serial"))) {
218 printk(KERN_WARNING "837x USB PHY type not supported\n");
223 /* Map IMMR space for pin and clock settings */
224 immap = ioremap(get_immrbase(), 0x1000);
230 /* Configure clock */
231 clrsetbits_be32(immap + MPC83XX_SCCR_OFFS, MPC837X_SCCR_USB_DRCM_11,
232 MPC837X_SCCR_USB_DRCM_11);
234 /* Configure pin mux for ULPI/serial */
235 clrsetbits_be32(immap + MPC83XX_SICRL_OFFS, MPC837X_SICRL_USB_MASK,
236 MPC837X_SICRL_USB_ULPI);
242 #endif /* CONFIG_PPC_MPC837x */