blob: 228df29b42167f2b484598f386c25bc98fa5b06f [file] [log] [blame]
Sricharan508a58f2011-11-15 09:49:55 -05001/*
2 * (C) Copyright 2010
3 * Texas Instruments Incorporated, <www.ti.com>
4 * Aneesh V <aneesh@ti.com>
5 * Steve Sakoman <steve@sakoman.com>
6 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02007 * SPDX-License-Identifier: GPL-2.0+
Sricharan508a58f2011-11-15 09:49:55 -05008 */
9#include <common.h>
Nishanth Menoncb199102013-03-26 05:20:54 +000010#include <palmas.h>
Sricharan508a58f2011-11-15 09:49:55 -050011#include <asm/arch/sys_proto.h>
12#include <asm/arch/mmc_host_def.h>
Dan Murphyfdce7b62013-07-11 13:10:28 -050013#include <tca642x.h>
Sricharan508a58f2011-11-15 09:49:55 -050014
15#include "mux_data.h"
16
Dan Murphy96805532013-08-26 08:54:53 -050017#if defined(CONFIG_USB_EHCI) || defined(CONFIG_USB_XHCI_OMAP)
Dan Murphy5e5cfaf2013-08-01 14:05:59 -050018#include <usb.h>
Dan Murphy1572ead2013-08-01 14:06:02 -050019#include <asm/gpio.h>
Dan Murphy5e5cfaf2013-08-01 14:05:59 -050020#include <asm/arch/clock.h>
21#include <asm/arch/ehci.h>
22#include <asm/ehci-omap.h>
Dan Murphy04025b42013-08-01 14:06:00 -050023
24#define DIE_ID_REG_BASE (OMAP54XX_L4_CORE_BASE + 0x2000)
25#define DIE_ID_REG_OFFSET 0x200
26
Dan Murphy5e5cfaf2013-08-01 14:05:59 -050027#endif
28
Sricharan508a58f2011-11-15 09:49:55 -050029DECLARE_GLOBAL_DATA_PTR;
30
31const struct omap_sysinfo sysinfo = {
Dan Murphy5a7bd382013-08-01 14:05:56 -050032 "Board: OMAP5432 uEVM\n"
Sricharan508a58f2011-11-15 09:49:55 -050033};
34
35/**
Dan Murphyfdce7b62013-07-11 13:10:28 -050036 * @brief tca642x_init - uEVM default values for the GPIO expander
37 * input reg, output reg, polarity reg, configuration reg
38 */
39struct tca642x_bank_info tca642x_init[] = {
40 { .input_reg = 0x00,
41 .output_reg = 0x04,
42 .polarity_reg = 0x00,
43 .configuration_reg = 0x80 },
44 { .input_reg = 0x00,
45 .output_reg = 0x00,
46 .polarity_reg = 0x00,
47 .configuration_reg = 0xff },
48 { .input_reg = 0x00,
49 .output_reg = 0x00,
50 .polarity_reg = 0x00,
51 .configuration_reg = 0x40 },
52};
53
54/**
Sricharan508a58f2011-11-15 09:49:55 -050055 * @brief board_init
56 *
57 * @return 0
58 */
59int board_init(void)
60{
61 gpmc_init();
62 gd->bd->bi_arch_number = MACH_TYPE_OMAP5_SEVM;
63 gd->bd->bi_boot_params = (0x80000000 + 0x100); /* boot param addr */
64
Dan Murphyfdce7b62013-07-11 13:10:28 -050065 tca642x_set_inital_state(CONFIG_SYS_I2C_TCA642X_ADDR, tca642x_init);
66
Sricharan508a58f2011-11-15 09:49:55 -050067 return 0;
68}
69
70int board_eth_init(bd_t *bis)
71{
72 return 0;
73}
74
Dan Murphy96805532013-08-26 08:54:53 -050075#if defined(CONFIG_USB_EHCI) || defined(CONFIG_USB_XHCI_OMAP)
76static void enable_host_clocks(void)
77{
78 int auxclk;
79 int hs_clk_ctrl_val = (OPTFCLKEN_HSIC60M_P3_CLK |
80 OPTFCLKEN_HSIC480M_P3_CLK |
81 OPTFCLKEN_HSIC60M_P2_CLK |
82 OPTFCLKEN_HSIC480M_P2_CLK |
83 OPTFCLKEN_UTMI_P3_CLK | OPTFCLKEN_UTMI_P2_CLK);
84
85 /* Enable port 2 and 3 clocks*/
86 setbits_le32((*prcm)->cm_l3init_hsusbhost_clkctrl, hs_clk_ctrl_val);
87
88 /* Enable port 2 and 3 usb host ports tll clocks*/
89 setbits_le32((*prcm)->cm_l3init_hsusbtll_clkctrl,
90 (OPTFCLKEN_USB_CH1_CLK_ENABLE | OPTFCLKEN_USB_CH2_CLK_ENABLE));
91#ifdef CONFIG_USB_XHCI_OMAP
92 /* Enable the USB OTG Super speed clocks */
93 setbits_le32((*prcm)->cm_l3init_usb_otg_ss_clkctrl,
94 (OPTFCLKEN_REFCLK960M | OTG_SS_CLKCTRL_MODULEMODE_HW));
95#endif
96
97 auxclk = readl((*prcm)->scrm_auxclk1);
98 /* Request auxilary clock */
99 auxclk |= AUXCLK_ENABLE_MASK;
100 writel(auxclk, (*prcm)->scrm_auxclk1);
101}
102#endif
103
Sricharan508a58f2011-11-15 09:49:55 -0500104/**
105 * @brief misc_init_r - Configure EVM board specific configurations
106 * such as power configurations, ethernet initialization as phase2 of
107 * boot sequence
108 *
109 * @return 0
110 */
111int misc_init_r(void)
112{
Nishanth Menoncb199102013-03-26 05:20:54 +0000113#ifdef CONFIG_PALMAS_POWER
Nishanth Menon12733882013-03-26 05:20:55 +0000114 palmas_init_settings();
Sricharan508a58f2011-11-15 09:49:55 -0500115#endif
Dan Murphy96805532013-08-26 08:54:53 -0500116
Sricharan508a58f2011-11-15 09:49:55 -0500117 return 0;
118}
119
120void set_muxconf_regs_essential(void)
121{
Lokesh Vutla9239f5b2013-05-30 02:54:30 +0000122 do_set_mux((*ctrl)->control_padconf_core_base,
123 core_padconf_array_essential,
Sricharan508a58f2011-11-15 09:49:55 -0500124 sizeof(core_padconf_array_essential) /
125 sizeof(struct pad_conf_entry));
126
Lokesh Vutla9239f5b2013-05-30 02:54:30 +0000127 do_set_mux((*ctrl)->control_padconf_wkup_base,
128 wkup_padconf_array_essential,
Sricharan508a58f2011-11-15 09:49:55 -0500129 sizeof(wkup_padconf_array_essential) /
130 sizeof(struct pad_conf_entry));
131}
132
133void set_muxconf_regs_non_essential(void)
134{
Lokesh Vutla9239f5b2013-05-30 02:54:30 +0000135 do_set_mux((*ctrl)->control_padconf_core_base,
136 core_padconf_array_non_essential,
Sricharan508a58f2011-11-15 09:49:55 -0500137 sizeof(core_padconf_array_non_essential) /
138 sizeof(struct pad_conf_entry));
139
Lokesh Vutla9239f5b2013-05-30 02:54:30 +0000140 do_set_mux((*ctrl)->control_padconf_wkup_base,
141 wkup_padconf_array_non_essential,
Sricharan508a58f2011-11-15 09:49:55 -0500142 sizeof(wkup_padconf_array_non_essential) /
143 sizeof(struct pad_conf_entry));
144}
145
146#if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_GENERIC_MMC)
147int board_mmc_init(bd_t *bis)
148{
Nikita Kiryanove3913f52012-12-03 02:19:47 +0000149 omap_mmc_init(0, 0, 0, -1, -1);
150 omap_mmc_init(1, 0, 0, -1, -1);
Sricharan508a58f2011-11-15 09:49:55 -0500151 return 0;
152}
153#endif
Dan Murphy5e5cfaf2013-08-01 14:05:59 -0500154
155#ifdef CONFIG_USB_EHCI
156static struct omap_usbhs_board_data usbhs_bdata = {
157 .port_mode[0] = OMAP_USBHS_PORT_MODE_UNUSED,
158 .port_mode[1] = OMAP_EHCI_PORT_MODE_HSIC,
159 .port_mode[2] = OMAP_EHCI_PORT_MODE_HSIC,
160};
161
Dan Murphy5e5cfaf2013-08-01 14:05:59 -0500162int ehci_hcd_init(int index, struct ehci_hccr **hccr, struct ehci_hcor **hcor)
163{
164 int ret;
Dan Murphy04025b42013-08-01 14:06:00 -0500165 int reg;
166 uint8_t device_mac[6];
Dan Murphy5e5cfaf2013-08-01 14:05:59 -0500167
168 enable_host_clocks();
169
Dan Murphy04025b42013-08-01 14:06:00 -0500170 if (!getenv("usbethaddr")) {
171 reg = DIE_ID_REG_BASE + DIE_ID_REG_OFFSET;
172
173 /*
174 * create a fake MAC address from the processor ID code.
175 * first byte is 0x02 to signify locally administered.
176 */
177 device_mac[0] = 0x02;
178 device_mac[1] = readl(reg + 0x10) & 0xff;
179 device_mac[2] = readl(reg + 0xC) & 0xff;
180 device_mac[3] = readl(reg + 0x8) & 0xff;
181 device_mac[4] = readl(reg) & 0xff;
182 device_mac[5] = (readl(reg) >> 8) & 0xff;
183
184 eth_setenv_enetaddr("usbethaddr", device_mac);
185 }
186
Mateusz Zalega16297cf2013-10-04 19:22:26 +0200187 ret = omap_ehci_hcd_init(index, &usbhs_bdata, hccr, hcor);
Dan Murphy5e5cfaf2013-08-01 14:05:59 -0500188 if (ret < 0) {
189 puts("Failed to initialize ehci\n");
190 return ret;
191 }
192
193 return 0;
194}
195
196int ehci_hcd_stop(void)
197{
198 int ret;
199
200 ret = omap_ehci_hcd_stop();
201 return ret;
202}
Dan Murphy1572ead2013-08-01 14:06:02 -0500203
204void usb_hub_reset_devices(int port)
205{
206 /* The LAN9730 needs to be reset after the port power has been set. */
207 if (port == 3) {
208 gpio_direction_output(CONFIG_OMAP_EHCI_PHY3_RESET_GPIO, 0);
209 udelay(10);
210 gpio_direction_output(CONFIG_OMAP_EHCI_PHY3_RESET_GPIO, 1);
211 }
212}
Dan Murphy5e5cfaf2013-08-01 14:05:59 -0500213#endif
Dan Murphy96805532013-08-26 08:54:53 -0500214
215#ifdef CONFIG_USB_XHCI_OMAP
216/**
217 * @brief board_usb_init - Configure EVM board specific configurations
218 * for the LDO's and clocks for the USB blocks.
219 *
220 * @return 0
221 */
222int board_usb_init(void)
223{
224 int ret;
225#ifdef CONFIG_PALMAS_USB_SS_PWR
226 ret = palmas_enable_ss_ldo();
227#endif
228
229 enable_host_clocks();
230
231 return 0;
232}
233#endif