]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/cpu/armv7/am33xx/board.c
Merge remote-tracking branch 'remotes/origin/tx6-bugfix'
[karo-tx-uboot.git] / arch / arm / cpu / armv7 / am33xx / board.c
1 /*
2  * board.c
3  *
4  * Common board functions for AM33XX based boards
5  *
6  * Copyright (C) 2011, Texas Instruments, Incorporated - http://www.ti.com/
7  *
8  * SPDX-License-Identifier:     GPL-2.0+
9  */
10
11 #include <common.h>
12 #include <errno.h>
13 #include <spl.h>
14 #include <asm/arch/cpu.h>
15 #include <asm/arch/hardware.h>
16 #include <asm/arch/omap.h>
17 #include <asm/arch/ddr_defs.h>
18 #include <asm/arch/clock.h>
19 #include <asm/arch/gpio.h>
20 #include <asm/arch/mem.h>
21 #include <asm/arch/mmc_host_def.h>
22 #include <asm/arch/sys_proto.h>
23 #include <asm/io.h>
24 #include <asm/emif.h>
25 #include <asm/gpio.h>
26 #include <i2c.h>
27 #include <miiphy.h>
28 #include <cpsw.h>
29 #include <asm/errno.h>
30 #include <linux/usb/ch9.h>
31 #include <linux/usb/gadget.h>
32 #include <linux/usb/musb.h>
33 #include <asm/omap_musb.h>
34
35 DECLARE_GLOBAL_DATA_PTR;
36
37 static const struct gpio_bank gpio_bank_am33xx[4] = {
38         { (void *)AM33XX_GPIO0_BASE, METHOD_GPIO_24XX },
39         { (void *)AM33XX_GPIO1_BASE, METHOD_GPIO_24XX },
40         { (void *)AM33XX_GPIO2_BASE, METHOD_GPIO_24XX },
41         { (void *)AM33XX_GPIO3_BASE, METHOD_GPIO_24XX },
42 };
43
44 const struct gpio_bank *const omap_gpio_bank = gpio_bank_am33xx;
45
46 #ifdef CONFIG_HW_WATCHDOG
47 void hw_watchdog_reset(void)
48 {
49         struct wd_timer *wdtimer = (struct wd_timer *)WDT_BASE;
50         static int trg __attribute__((section(".data")));
51
52         switch (trg) {
53         case 0:
54         case 1:
55                 if (readl(&wdtimer->wdtwwps) & (1 << 4))
56                         return;
57                 writel(trg ? 0x5555 : 0xaaaa, &wdtimer->wdtwspr);
58                 break;
59         case 2:
60                 if (readl(&wdtimer->wdtwwps) & (1 << 2))
61                         return;
62                 /* 10 sec timeout */
63                 writel(-32768 * 10, &wdtimer->wdtwldr);
64
65                 if (readl(&wdtimer->wdtwwps) & (1 << 0))
66                         return;
67                 /* prescaler = 1 */
68                 writel(0, &wdtimer->wdtwclr);
69                 break;
70
71         case 3:
72         case 4:
73                 /* enable watchdog */
74                 if (readl(&wdtimer->wdtwwps) & (1 << 4))
75                         return;
76                 writel((trg & 1) ? 0xBBBB : 0x4444, &wdtimer->wdtwspr);
77                 break;
78
79         default:
80                 /* retrigger watchdog */
81                 if (readl(&wdtimer->wdtwwps) & (1 << 3))
82                         return;
83
84                 writel(trg, &wdtimer->wdtwtgr);
85                 trg ^= 0x2;
86                 return;
87         }
88         trg++;
89 }
90 #endif
91
92 #ifndef CONFIG_SYS_DCACHE_OFF
93 void enable_caches(void)
94 {
95         /* Enable D-cache. I-cache is already enabled in start.S */
96         dcache_enable();
97 }
98 #endif
99
100 #if defined(CONFIG_OMAP_HSMMC) && !defined(CONFIG_SPL_BUILD)
101 int __cpu_mmc_init(bd_t *bis)
102 {
103         int ret;
104
105         ret = omap_mmc_init(0, 0, 0, -1, -1);
106         if (ret)
107                 return ret;
108
109         return omap_mmc_init(1, 0, 0, -1, -1);
110 }
111 /* let platform code be able to override this! */
112 int cpu_mmc_init(bd_t *bis) __attribute__((weak, alias("__cpu_mmc_init")));
113 #endif
114
115 void setup_clocks_for_console(void)
116 {
117         /* Not yet implemented */
118         return;
119 }
120
121 /* AM33XX has two MUSB controllers which can be host or gadget */
122 #if (defined(CONFIG_MUSB_GADGET) || defined(CONFIG_MUSB_HOST)) && \
123         (defined(CONFIG_AM335X_USB0) || defined(CONFIG_AM335X_USB1))
124 static struct ctrl_dev *cdev = (struct ctrl_dev *)CTRL_DEVICE_BASE;
125
126 /* USB 2.0 PHY Control */
127 #define CM_PHY_PWRDN                    (1 << 0)
128 #define CM_PHY_OTG_PWRDN                (1 << 1)
129 #define OTGVDET_EN                      (1 << 19)
130 #define OTGSESSENDEN                    (1 << 20)
131
132 static void am33xx_usb_set_phy_power(u8 on, u32 *reg_addr)
133 {
134         if (on) {
135                 clrsetbits_le32(reg_addr, CM_PHY_PWRDN | CM_PHY_OTG_PWRDN,
136                                 OTGVDET_EN | OTGSESSENDEN);
137         } else {
138                 clrsetbits_le32(reg_addr, 0, CM_PHY_PWRDN | CM_PHY_OTG_PWRDN);
139         }
140 }
141
142 static struct musb_hdrc_config musb_config = {
143         .multipoint     = 1,
144         .dyn_fifo       = 1,
145         .num_eps        = 16,
146         .ram_bits       = 12,
147 };
148
149 #ifdef CONFIG_AM335X_USB0
150 static void am33xx_otg0_set_phy_power(u8 on)
151 {
152         am33xx_usb_set_phy_power(on, &cdev->usb_ctrl0);
153 }
154
155 struct omap_musb_board_data otg0_board_data = {
156         .set_phy_power = am33xx_otg0_set_phy_power,
157 };
158
159 static struct musb_hdrc_platform_data otg0_plat = {
160         .mode           = CONFIG_AM335X_USB0_MODE,
161         .config         = &musb_config,
162         .power          = 50,
163         .platform_ops   = &musb_dsps_ops,
164         .board_data     = &otg0_board_data,
165 };
166 #endif
167
168 #ifdef CONFIG_AM335X_USB1
169 static void am33xx_otg1_set_phy_power(u8 on)
170 {
171         am33xx_usb_set_phy_power(on, &cdev->usb_ctrl1);
172 }
173
174 struct omap_musb_board_data otg1_board_data = {
175         .set_phy_power = am33xx_otg1_set_phy_power,
176 };
177
178 static struct musb_hdrc_platform_data otg1_plat = {
179         .mode           = CONFIG_AM335X_USB1_MODE,
180         .config         = &musb_config,
181         .power          = 50,
182         .platform_ops   = &musb_dsps_ops,
183         .board_data     = &otg1_board_data,
184 };
185 #endif
186 #endif
187
188 int arch_misc_init(void)
189 {
190 #ifdef CONFIG_AM335X_USB0
191         musb_register(&otg0_plat, &otg0_board_data,
192                 (void *)USB0_OTG_BASE);
193 #endif
194 #ifdef CONFIG_AM335X_USB1
195         musb_register(&otg1_plat, &otg1_board_data,
196                 (void *)USB1_OTG_BASE);
197 #endif
198         return 0;
199 }
200
201 #ifdef CONFIG_SPL_BUILD
202 void rtc32k_enable(void)
203 {
204         struct rtc_regs *rtc = (struct rtc_regs *)RTC_BASE;
205
206         /*
207          * Unlock the RTC's registers.  For more details please see the
208          * RTC_SS section of the TRM.  In order to unlock we need to
209          * write these specific values (keys) in this order.
210          */
211         writel(0x83e70b13, &rtc->kick0r);
212         writel(0x95a4f1e0, &rtc->kick1r);
213
214         /* Enable the RTC 32K OSC by setting bits 3 and 6. */
215         writel((1 << 3) | (1 << 6), &rtc->osc);
216 }
217
218 #define UART_RESET              (0x1 << 1)
219 #define UART_CLK_RUNNING_MASK   0x1
220 #define UART_SMART_IDLE_EN      (0x1 << 0x3)
221
222 void uart_soft_reset(void)
223 {
224         struct uart_sys *uart_base = (struct uart_sys *)DEFAULT_UART_BASE;
225         u32 regval;
226
227         regval = readl(&uart_base->uartsyscfg);
228         regval |= UART_RESET;
229         writel(regval, &uart_base->uartsyscfg);
230         while ((readl(&uart_base->uartsyssts) &
231                 UART_CLK_RUNNING_MASK) != UART_CLK_RUNNING_MASK)
232                 ;
233
234         /* Disable smart idle */
235         regval = readl(&uart_base->uartsyscfg);
236         regval |= UART_SMART_IDLE_EN;
237         writel(regval, &uart_base->uartsyscfg);
238 }
239 #endif