blob: 3eaa5ac3986b3688224babc8c90be0eac18c3552 [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 Murphye9024ef2014-02-03 06:59:02 -060018#include <sata.h>
Dan Murphy5e5cfaf2013-08-01 14:05:59 -050019#include <usb.h>
Dan Murphy1572ead2013-08-01 14:06:02 -050020#include <asm/gpio.h>
Dan Murphy5e5cfaf2013-08-01 14:05:59 -050021#include <asm/arch/clock.h>
22#include <asm/arch/ehci.h>
23#include <asm/ehci-omap.h>
Roger Quadrosafdc6322013-11-11 16:56:42 +020024#include <asm/arch/sata.h>
Dan Murphy04025b42013-08-01 14:06:00 -050025
26#define DIE_ID_REG_BASE (OMAP54XX_L4_CORE_BASE + 0x2000)
27#define DIE_ID_REG_OFFSET 0x200
28
Dan Murphy5e5cfaf2013-08-01 14:05:59 -050029#endif
30
Sricharan508a58f2011-11-15 09:49:55 -050031DECLARE_GLOBAL_DATA_PTR;
32
33const struct omap_sysinfo sysinfo = {
Dan Murphy5a7bd382013-08-01 14:05:56 -050034 "Board: OMAP5432 uEVM\n"
Sricharan508a58f2011-11-15 09:49:55 -050035};
36
37/**
Dan Murphyfdce7b62013-07-11 13:10:28 -050038 * @brief tca642x_init - uEVM default values for the GPIO expander
39 * input reg, output reg, polarity reg, configuration reg
40 */
41struct tca642x_bank_info tca642x_init[] = {
42 { .input_reg = 0x00,
43 .output_reg = 0x04,
44 .polarity_reg = 0x00,
45 .configuration_reg = 0x80 },
46 { .input_reg = 0x00,
47 .output_reg = 0x00,
48 .polarity_reg = 0x00,
49 .configuration_reg = 0xff },
50 { .input_reg = 0x00,
51 .output_reg = 0x00,
52 .polarity_reg = 0x00,
53 .configuration_reg = 0x40 },
54};
55
56/**
Sricharan508a58f2011-11-15 09:49:55 -050057 * @brief board_init
58 *
59 * @return 0
60 */
61int board_init(void)
62{
63 gpmc_init();
64 gd->bd->bi_arch_number = MACH_TYPE_OMAP5_SEVM;
65 gd->bd->bi_boot_params = (0x80000000 + 0x100); /* boot param addr */
66
Dan Murphyfdce7b62013-07-11 13:10:28 -050067 tca642x_set_inital_state(CONFIG_SYS_I2C_TCA642X_ADDR, tca642x_init);
68
Sricharan508a58f2011-11-15 09:49:55 -050069 return 0;
70}
71
Roger Quadrosafdc6322013-11-11 16:56:42 +020072int board_late_init(void)
73{
Dan Murphye9024ef2014-02-03 06:59:02 -060074 init_sata(0);
Roger Quadrosafdc6322013-11-11 16:56:42 +020075 return 0;
76}
77
Sricharan508a58f2011-11-15 09:49:55 -050078int board_eth_init(bd_t *bis)
79{
80 return 0;
81}
82
Dan Murphy96805532013-08-26 08:54:53 -050083#if defined(CONFIG_USB_EHCI) || defined(CONFIG_USB_XHCI_OMAP)
84static void enable_host_clocks(void)
85{
86 int auxclk;
87 int hs_clk_ctrl_val = (OPTFCLKEN_HSIC60M_P3_CLK |
88 OPTFCLKEN_HSIC480M_P3_CLK |
89 OPTFCLKEN_HSIC60M_P2_CLK |
90 OPTFCLKEN_HSIC480M_P2_CLK |
91 OPTFCLKEN_UTMI_P3_CLK | OPTFCLKEN_UTMI_P2_CLK);
92
93 /* Enable port 2 and 3 clocks*/
94 setbits_le32((*prcm)->cm_l3init_hsusbhost_clkctrl, hs_clk_ctrl_val);
95
96 /* Enable port 2 and 3 usb host ports tll clocks*/
97 setbits_le32((*prcm)->cm_l3init_hsusbtll_clkctrl,
98 (OPTFCLKEN_USB_CH1_CLK_ENABLE | OPTFCLKEN_USB_CH2_CLK_ENABLE));
99#ifdef CONFIG_USB_XHCI_OMAP
100 /* Enable the USB OTG Super speed clocks */
101 setbits_le32((*prcm)->cm_l3init_usb_otg_ss_clkctrl,
102 (OPTFCLKEN_REFCLK960M | OTG_SS_CLKCTRL_MODULEMODE_HW));
103#endif
104
105 auxclk = readl((*prcm)->scrm_auxclk1);
106 /* Request auxilary clock */
107 auxclk |= AUXCLK_ENABLE_MASK;
108 writel(auxclk, (*prcm)->scrm_auxclk1);
109}
110#endif
111
Sricharan508a58f2011-11-15 09:49:55 -0500112/**
113 * @brief misc_init_r - Configure EVM board specific configurations
114 * such as power configurations, ethernet initialization as phase2 of
115 * boot sequence
116 *
117 * @return 0
118 */
119int misc_init_r(void)
120{
Dan Murphyea02b652013-10-11 12:28:19 -0500121 int reg;
122 uint8_t device_mac[6];
123
Nishanth Menoncb199102013-03-26 05:20:54 +0000124#ifdef CONFIG_PALMAS_POWER
Nishanth Menon12733882013-03-26 05:20:55 +0000125 palmas_init_settings();
Sricharan508a58f2011-11-15 09:49:55 -0500126#endif
Dan Murphy96805532013-08-26 08:54:53 -0500127
Dan Murphyea02b652013-10-11 12:28:19 -0500128 if (!getenv("usbethaddr")) {
129 reg = DIE_ID_REG_BASE + DIE_ID_REG_OFFSET;
130
131 /*
132 * create a fake MAC address from the processor ID code.
133 * first byte is 0x02 to signify locally administered.
134 */
135 device_mac[0] = 0x02;
136 device_mac[1] = readl(reg + 0x10) & 0xff;
137 device_mac[2] = readl(reg + 0xC) & 0xff;
138 device_mac[3] = readl(reg + 0x8) & 0xff;
139 device_mac[4] = readl(reg) & 0xff;
140 device_mac[5] = (readl(reg) >> 8) & 0xff;
141
142 eth_setenv_enetaddr("usbethaddr", device_mac);
143 }
144
Sricharan508a58f2011-11-15 09:49:55 -0500145 return 0;
146}
147
148void set_muxconf_regs_essential(void)
149{
Lokesh Vutla9239f5b2013-05-30 02:54:30 +0000150 do_set_mux((*ctrl)->control_padconf_core_base,
151 core_padconf_array_essential,
Sricharan508a58f2011-11-15 09:49:55 -0500152 sizeof(core_padconf_array_essential) /
153 sizeof(struct pad_conf_entry));
154
Lokesh Vutla9239f5b2013-05-30 02:54:30 +0000155 do_set_mux((*ctrl)->control_padconf_wkup_base,
156 wkup_padconf_array_essential,
Sricharan508a58f2011-11-15 09:49:55 -0500157 sizeof(wkup_padconf_array_essential) /
158 sizeof(struct pad_conf_entry));
159}
160
Sricharan508a58f2011-11-15 09:49:55 -0500161#if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_GENERIC_MMC)
162int board_mmc_init(bd_t *bis)
163{
Nikita Kiryanove3913f52012-12-03 02:19:47 +0000164 omap_mmc_init(0, 0, 0, -1, -1);
165 omap_mmc_init(1, 0, 0, -1, -1);
Sricharan508a58f2011-11-15 09:49:55 -0500166 return 0;
167}
168#endif
Dan Murphy5e5cfaf2013-08-01 14:05:59 -0500169
170#ifdef CONFIG_USB_EHCI
171static struct omap_usbhs_board_data usbhs_bdata = {
172 .port_mode[0] = OMAP_USBHS_PORT_MODE_UNUSED,
173 .port_mode[1] = OMAP_EHCI_PORT_MODE_HSIC,
174 .port_mode[2] = OMAP_EHCI_PORT_MODE_HSIC,
175};
176
Troy Kisky127efc42013-10-10 15:27:57 -0700177int ehci_hcd_init(int index, enum usb_init_type init,
178 struct ehci_hccr **hccr, struct ehci_hcor **hcor)
Dan Murphy5e5cfaf2013-08-01 14:05:59 -0500179{
180 int ret;
Dan Murphy5e5cfaf2013-08-01 14:05:59 -0500181
182 enable_host_clocks();
183
Mateusz Zalega16297cf2013-10-04 19:22:26 +0200184 ret = omap_ehci_hcd_init(index, &usbhs_bdata, hccr, hcor);
Dan Murphy5e5cfaf2013-08-01 14:05:59 -0500185 if (ret < 0) {
186 puts("Failed to initialize ehci\n");
187 return ret;
188 }
189
190 return 0;
191}
192
193int ehci_hcd_stop(void)
194{
195 int ret;
196
197 ret = omap_ehci_hcd_stop();
198 return ret;
199}
Dan Murphy1572ead2013-08-01 14:06:02 -0500200
201void usb_hub_reset_devices(int port)
202{
203 /* The LAN9730 needs to be reset after the port power has been set. */
204 if (port == 3) {
205 gpio_direction_output(CONFIG_OMAP_EHCI_PHY3_RESET_GPIO, 0);
206 udelay(10);
207 gpio_direction_output(CONFIG_OMAP_EHCI_PHY3_RESET_GPIO, 1);
208 }
209}
Dan Murphy5e5cfaf2013-08-01 14:05:59 -0500210#endif
Dan Murphy96805532013-08-26 08:54:53 -0500211
212#ifdef CONFIG_USB_XHCI_OMAP
213/**
214 * @brief board_usb_init - Configure EVM board specific configurations
215 * for the LDO's and clocks for the USB blocks.
216 *
217 * @return 0
218 */
Troy Kisky7e575c42013-10-22 14:27:17 -0700219int board_usb_init(int index, enum usb_init_type init)
Dan Murphy96805532013-08-26 08:54:53 -0500220{
221 int ret;
222#ifdef CONFIG_PALMAS_USB_SS_PWR
223 ret = palmas_enable_ss_ldo();
224#endif
225
226 enable_host_clocks();
227
228 return 0;
229}
230#endif