]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/aristainetos/aristainetos.c
treewide: replace #include <asm/errno.h> with <linux/errno.h>
[people/ms/u-boot.git] / board / aristainetos / aristainetos.c
CommitLineData
e379c039
HS
1/*
2 * (C) Copyright 2014
3 * Heiko Schocher, DENX Software Engineering, hs@denx.de.
4 *
5 * Based on:
6 * Copyright (C) 2012 Freescale Semiconductor, Inc.
7 *
8 * Author: Fabio Estevam <fabio.estevam@freescale.com>
9 *
10 * SPDX-License-Identifier: GPL-2.0+
11 */
12
13#include <asm/arch/clock.h>
14#include <asm/arch/imx-regs.h>
15#include <asm/arch/iomux.h>
16#include <asm/arch/mx6-pins.h>
1221ce45 17#include <linux/errno.h>
e379c039
HS
18#include <asm/gpio.h>
19#include <asm/imx-common/iomux-v3.h>
20#include <asm/imx-common/boot_mode.h>
21#include <asm/imx-common/mxc_i2c.h>
22#include <asm/imx-common/video.h>
23#include <mmc.h>
24#include <fsl_esdhc.h>
25#include <miiphy.h>
26#include <netdev.h>
27#include <asm/arch/mxc_hdmi.h>
28#include <asm/arch/crm_regs.h>
29#include <linux/fb.h>
30#include <ipu_pixfmt.h>
31#include <asm/io.h>
32#include <asm/arch/sys_proto.h>
33#include <pwm.h>
34
35DECLARE_GLOBAL_DATA_PTR;
36
37#define UART_PAD_CTRL (PAD_CTL_PUS_100K_UP | \
38 PAD_CTL_SPEED_MED | PAD_CTL_DSE_40ohm | \
39 PAD_CTL_SRE_FAST | PAD_CTL_HYS)
40
41#define USDHC_PAD_CTRL (PAD_CTL_PUS_47K_UP | \
42 PAD_CTL_SPEED_LOW | PAD_CTL_DSE_80ohm | \
43 PAD_CTL_SRE_FAST | PAD_CTL_HYS)
44
45#define ENET_PAD_CTRL (PAD_CTL_PUS_100K_UP | \
46 PAD_CTL_SPEED_MED | PAD_CTL_DSE_40ohm | PAD_CTL_HYS)
47
48#define SPI_PAD_CTRL (PAD_CTL_HYS | PAD_CTL_SPEED_MED | \
49 PAD_CTL_DSE_40ohm | PAD_CTL_SRE_FAST)
50
51#define I2C_PAD_CTRL (PAD_CTL_PUS_100K_UP | \
52 PAD_CTL_SPEED_MED | PAD_CTL_DSE_40ohm | PAD_CTL_HYS | \
53 PAD_CTL_ODE | PAD_CTL_SRE_FAST)
54
55#define PC MUX_PAD_CTRL(I2C_PAD_CTRL)
56
57#define DISP_PAD_CTRL (0x10)
58
59#define ECSPI4_CS1 IMX_GPIO_NR(5, 2)
60
7254d92e
HS
61#if (CONFIG_SYS_BOARD_VERSION == 1)
62#include "./aristainetos-v1.c"
9627084c 63#elif ((CONFIG_SYS_BOARD_VERSION == 2) || (CONFIG_SYS_BOARD_VERSION == 3))
7254d92e
HS
64#include "./aristainetos-v2.c"
65#endif
66
67
e379c039
HS
68struct i2c_pads_info i2c_pad_info1 = {
69 .scl = {
70 .i2c_mode = MX6_PAD_CSI0_DAT9__I2C1_SCL | PC,
71 .gpio_mode = MX6_PAD_CSI0_DAT9__GPIO5_IO27 | PC,
72 .gp = IMX_GPIO_NR(5, 27)
73 },
74 .sda = {
75 .i2c_mode = MX6_PAD_CSI0_DAT8__I2C1_SDA | PC,
76 .gpio_mode = MX6_PAD_CSI0_DAT8__GPIO5_IO26 | PC,
77 .gp = IMX_GPIO_NR(5, 26)
78 }
79};
80
81struct i2c_pads_info i2c_pad_info2 = {
82 .scl = {
83 .i2c_mode = MX6_PAD_KEY_COL3__I2C2_SCL | PC,
84 .gpio_mode = MX6_PAD_KEY_COL3__GPIO4_IO12 | PC,
85 .gp = IMX_GPIO_NR(4, 12)
86 },
87 .sda = {
88 .i2c_mode = MX6_PAD_KEY_ROW3__I2C2_SDA | PC,
89 .gpio_mode = MX6_PAD_KEY_ROW3__GPIO4_IO13 | PC,
90 .gp = IMX_GPIO_NR(4, 13)
91 }
92};
93
e379c039
HS
94iomux_v3_cfg_t const usdhc1_pads[] = {
95 MX6_PAD_SD1_CLK__SD1_CLK | MUX_PAD_CTRL(USDHC_PAD_CTRL),
96 MX6_PAD_SD1_CMD__SD1_CMD | MUX_PAD_CTRL(USDHC_PAD_CTRL),
97 MX6_PAD_SD1_DAT0__SD1_DATA0 | MUX_PAD_CTRL(USDHC_PAD_CTRL),
98 MX6_PAD_SD1_DAT1__SD1_DATA1 | MUX_PAD_CTRL(USDHC_PAD_CTRL),
99 MX6_PAD_SD1_DAT2__SD1_DATA2 | MUX_PAD_CTRL(USDHC_PAD_CTRL),
100 MX6_PAD_SD1_DAT3__SD1_DATA3 | MUX_PAD_CTRL(USDHC_PAD_CTRL),
101};
102
7254d92e 103int dram_init(void)
e379c039 104{
84c51687 105 gd->ram_size = imx_ddr_size();
e379c039 106
7254d92e 107 return 0;
e379c039
HS
108}
109
110#ifdef CONFIG_FSL_ESDHC
111struct fsl_esdhc_cfg usdhc_cfg[2] = {
112 {USDHC1_BASE_ADDR},
113 {USDHC2_BASE_ADDR},
114};
115
116int board_mmc_getcd(struct mmc *mmc)
117{
118 return 1;
119}
120
121int board_mmc_init(bd_t *bis)
122{
123 usdhc_cfg[0].sdhc_clk = mxc_get_clock(MXC_ESDHC_CLK);
e379c039 124 imx_iomux_v3_setup_multiple_pads(usdhc1_pads, ARRAY_SIZE(usdhc1_pads));
7254d92e
HS
125#if (CONFIG_SYS_BOARD_VERSION == 2)
126 /*
127 * usdhc2 has a levelshifter on the carrier board Rev. DV1,
128 * that will automatically detect the driving direction.
129 * During initialisation this isn't working correctly,
130 * which causes DAT3 to be driven low towards the SD-card.
131 * This causes a SD-card enetring the SPI-Mode
132 * and therefore getting inaccessible until next power cycle.
133 * As workaround we drive the DAT3 line as GPIO and set it high.
134 * This makes usdhc2 unusable in u-boot, but works for the
135 * initialisation in Linux
136 */
137 imx_iomux_v3_setup_pad(MX6_PAD_SD2_DAT3__GPIO1_IO12 |
138 MUX_PAD_CTRL(NO_PAD_CTRL));
139 gpio_direction_output(IMX_GPIO_NR(1, 12) , 1);
140#endif
141 return fsl_esdhc_initialize(bis, &usdhc_cfg[0]);
e379c039
HS
142}
143#endif
144
145/*
146 * Do not overwrite the console
147 * Use always serial for U-Boot console
148 */
149int overwrite_console(void)
150{
151 return 1;
152}
153
e379c039
HS
154struct display_info_t const displays[] = {
155 {
156 .bus = -1,
157 .addr = 0,
158 .pixfmt = IPU_PIX_FMT_RGB24,
159 .detect = NULL,
160 .enable = enable_lvds,
161 .mode = {
162 .name = "lb07wv8",
163 .refresh = 60,
164 .xres = 800,
165 .yres = 480,
d0d005b6 166 .pixclock = 30066,
e379c039
HS
167 .left_margin = 88,
168 .right_margin = 88,
d0d005b6
HS
169 .upper_margin = 20,
170 .lower_margin = 20,
b4b39a7e 171 .hsync_len = 80,
d0d005b6
HS
172 .vsync_len = 5,
173 .sync = FB_SYNC_EXT,
e379c039
HS
174 .vmode = FB_VMODE_NONINTERLACED
175 }
176 }
9627084c 177#if ((CONFIG_SYS_BOARD_VERSION == 2) || (CONFIG_SYS_BOARD_VERSION == 3))
7254d92e
HS
178 , {
179 .bus = -1,
180 .addr = 0,
181 .pixfmt = IPU_PIX_FMT_RGB24,
182 .detect = NULL,
183 .enable = enable_spi_display,
184 .mode = {
185 .name = "lg4573",
d0d005b6 186 .refresh = 57,
7254d92e
HS
187 .xres = 480,
188 .yres = 800,
189 .pixclock = 37037,
190 .left_margin = 59,
191 .right_margin = 10,
192 .upper_margin = 15,
193 .lower_margin = 15,
194 .hsync_len = 10,
195 .vsync_len = 15,
196 .sync = FB_SYNC_EXT | FB_SYNC_HOR_HIGH_ACT |
197 FB_SYNC_VERT_HIGH_ACT,
198 .vmode = FB_VMODE_NONINTERLACED
199 }
200 }
201#endif
e379c039
HS
202};
203size_t display_count = ARRAY_SIZE(displays);
204
e379c039
HS
205/* no console on this board */
206int board_cfb_skip(void)
207{
208 return 1;
209}
e379c039
HS
210
211iomux_v3_cfg_t nfc_pads[] = {
212 MX6_PAD_NANDF_CLE__NAND_CLE | MUX_PAD_CTRL(NO_PAD_CTRL),
213 MX6_PAD_NANDF_ALE__NAND_ALE | MUX_PAD_CTRL(NO_PAD_CTRL),
214 MX6_PAD_NANDF_WP_B__NAND_WP_B | MUX_PAD_CTRL(NO_PAD_CTRL),
215 MX6_PAD_NANDF_RB0__NAND_READY_B | MUX_PAD_CTRL(NO_PAD_CTRL),
216 MX6_PAD_NANDF_CS0__NAND_CE0_B | MUX_PAD_CTRL(NO_PAD_CTRL),
e379c039
HS
217 MX6_PAD_SD4_CMD__NAND_RE_B | MUX_PAD_CTRL(NO_PAD_CTRL),
218 MX6_PAD_SD4_CLK__NAND_WE_B | MUX_PAD_CTRL(NO_PAD_CTRL),
219 MX6_PAD_NANDF_D0__NAND_DATA00 | MUX_PAD_CTRL(NO_PAD_CTRL),
220 MX6_PAD_NANDF_D1__NAND_DATA01 | MUX_PAD_CTRL(NO_PAD_CTRL),
221 MX6_PAD_NANDF_D2__NAND_DATA02 | MUX_PAD_CTRL(NO_PAD_CTRL),
222 MX6_PAD_NANDF_D3__NAND_DATA03 | MUX_PAD_CTRL(NO_PAD_CTRL),
223 MX6_PAD_NANDF_D4__NAND_DATA04 | MUX_PAD_CTRL(NO_PAD_CTRL),
224 MX6_PAD_NANDF_D5__NAND_DATA05 | MUX_PAD_CTRL(NO_PAD_CTRL),
225 MX6_PAD_NANDF_D6__NAND_DATA06 | MUX_PAD_CTRL(NO_PAD_CTRL),
226 MX6_PAD_NANDF_D7__NAND_DATA07 | MUX_PAD_CTRL(NO_PAD_CTRL),
227 MX6_PAD_SD4_DAT0__NAND_DQS | MUX_PAD_CTRL(NO_PAD_CTRL),
228};
229
230static void setup_gpmi_nand(void)
231{
232 struct mxc_ccm_reg *mxc_ccm = (struct mxc_ccm_reg *)CCM_BASE_ADDR;
233
234 /* config gpmi nand iomux */
235 imx_iomux_v3_setup_multiple_pads(nfc_pads,
236 ARRAY_SIZE(nfc_pads));
237
7254d92e
HS
238 /* gate ENFC_CLK_ROOT clock first,before clk source switch */
239 clrbits_le32(&mxc_ccm->CCGR2, MXC_CCM_CCGR2_IOMUX_IPT_CLK_IO_MASK);
240
e379c039
HS
241 /* config gpmi and bch clock to 100 MHz */
242 clrsetbits_le32(&mxc_ccm->cs2cdr,
243 MXC_CCM_CS2CDR_ENFC_CLK_PODF_MASK |
244 MXC_CCM_CS2CDR_ENFC_CLK_PRED_MASK |
245 MXC_CCM_CS2CDR_ENFC_CLK_SEL_MASK,
246 MXC_CCM_CS2CDR_ENFC_CLK_PODF(0) |
247 MXC_CCM_CS2CDR_ENFC_CLK_PRED(3) |
248 MXC_CCM_CS2CDR_ENFC_CLK_SEL(3));
249
7254d92e
HS
250 /* enable ENFC_CLK_ROOT clock */
251 setbits_le32(&mxc_ccm->CCGR2, MXC_CCM_CCGR2_IOMUX_IPT_CLK_IO_MASK);
252
e379c039
HS
253 /* enable gpmi and bch clock gating */
254 setbits_le32(&mxc_ccm->CCGR4,
255 MXC_CCM_CCGR4_RAWNAND_U_BCH_INPUT_APB_MASK |
256 MXC_CCM_CCGR4_RAWNAND_U_GPMI_BCH_INPUT_BCH_MASK |
257 MXC_CCM_CCGR4_RAWNAND_U_GPMI_BCH_INPUT_GPMI_IO_MASK |
258 MXC_CCM_CCGR4_RAWNAND_U_GPMI_INPUT_APB_MASK |
259 MXC_CCM_CCGR4_PL301_MX6QPER1_BCH_OFFSET);
260
261 /* enable apbh clock gating */
262 setbits_le32(&mxc_ccm->CCGR0, MXC_CCM_CCGR0_APBHDMA_MASK);
263}
264
265int board_init(void)
266{
267 struct iomuxc *iomux = (struct iomuxc *)IOMUXC_BASE_ADDR;
268
269 /* address of boot parameters */
270 gd->bd->bi_boot_params = PHYS_SDRAM + 0x100;
271
272 setup_spi();
273
274 setup_i2c(0, CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE,
275 &i2c_pad_info1);
276 setup_i2c(1, CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE,
277 &i2c_pad_info2);
278 setup_i2c(2, CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE,
279 &i2c_pad_info3);
7254d92e 280 setup_i2c4();
e379c039
HS
281
282 /* SPI NOR Flash read only */
283 gpio_request(CONFIG_GPIO_ENABLE_SPI_FLASH, "ena_spi_nor");
284 gpio_direction_output(CONFIG_GPIO_ENABLE_SPI_FLASH, 0);
285 gpio_free(CONFIG_GPIO_ENABLE_SPI_FLASH);
286
7254d92e 287 setup_board_gpio();
e379c039 288 setup_gpmi_nand();
7254d92e 289 setup_board_spi();
e379c039
HS
290
291 /* GPIO_1 for USB_OTG_ID */
7254d92e 292 clrsetbits_le32(&iomux->gpr[1], IOMUXC_GPR1_USB_OTG_ID_SEL_MASK, 0);
e379c039 293 imx_iomux_v3_setup_multiple_pads(misc_pads, ARRAY_SIZE(misc_pads));
e379c039
HS
294 return 0;
295}
296
297int checkboard(void)
298{
7254d92e 299 printf("Board: %s\n", CONFIG_BOARDNAME);
e379c039
HS
300 return 0;
301}
302
303#ifdef CONFIG_USB_EHCI_MX6
304int board_ehci_hcd_init(int port)
305{
306 int ret;
307
308 ret = gpio_request(ARISTAINETOS_USB_H1_PWR, "usb-h1-pwr");
309 if (!ret)
310 gpio_direction_output(ARISTAINETOS_USB_H1_PWR, 1);
311 ret = gpio_request(ARISTAINETOS_USB_OTG_PWR, "usb-OTG-pwr");
312 if (!ret)
313 gpio_direction_output(ARISTAINETOS_USB_OTG_PWR, 1);
314 return 0;
315}
316
317int board_ehci_power(int port, int on)
318{
319 if (port)
320 gpio_set_value(ARISTAINETOS_USB_OTG_PWR, on);
321 else
322 gpio_set_value(ARISTAINETOS_USB_H1_PWR, on);
323 return 0;
324}
325#endif