common: Drop linux/delay.h from common header
[oweals/u-boot.git] / board / liebherr / xea / xea.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * XEA iMX28 board
4  *
5  * Copyright (C) 2019 DENX Software Engineering
6  * Lukasz Majewski, DENX Software Engineering, lukma@denx.de
7  *
8  * Copyright (C) 2018 DENX Software Engineering
9  * Måns Rullgård, DENX Software Engineering, mans@mansr.com
10  *
11  * Copyright (C) 2011 Marek Vasut <marek.vasut@gmail.com>
12  * on behalf of DENX Software Engineering GmbH
13  *
14  */
15
16 #include <common.h>
17 #include <fdt_support.h>
18 #include <init.h>
19 #include <log.h>
20 #include <net.h>
21 #include <asm/gpio.h>
22 #include <asm/io.h>
23 #include <asm/arch/imx-regs.h>
24 #include <asm/arch/iomux-mx28.h>
25 #include <asm/arch/clock.h>
26 #include <asm/arch/sys_proto.h>
27 #include <linux/delay.h>
28 #include <linux/mii.h>
29 #include <miiphy.h>
30 #include <netdev.h>
31 #include <errno.h>
32 #include <usb.h>
33 #include <serial.h>
34
35 #ifdef CONFIG_SPL_BUILD
36 #include <spl.h>
37 #endif
38
39 DECLARE_GLOBAL_DATA_PTR;
40
41 /*
42  * Functions
43  */
44
45 static void init_clocks(void)
46 {
47         /* IO0 clock at 480MHz */
48         mxs_set_ioclk(MXC_IOCLK0, 480000);
49         /* IO1 clock at 480MHz */
50         mxs_set_ioclk(MXC_IOCLK1, 480000);
51
52         /* SSP0 clock at 96MHz */
53         mxs_set_sspclk(MXC_SSPCLK0, 96000, 0);
54         /* SSP2 clock at 160MHz */
55         mxs_set_sspclk(MXC_SSPCLK2, 160000, 0);
56         /* SSP3 clock at 96MHz */
57         mxs_set_sspclk(MXC_SSPCLK3, 96000, 0);
58 }
59
60 #ifdef CONFIG_SPL_BUILD
61 void board_init_f(ulong arg)
62 {
63         init_clocks();
64         preloader_console_init();
65 }
66
67 static int boot_tiva0, boot_tiva1;
68
69 /* Check if TIVAs request booting via U-Boot proper */
70 void spl_board_init(void)
71 {
72         struct gpio_desc btiva0, btiva1, en_3_3v;
73         int ret;
74
75         /*
76          * Setup GPIO0_0 (TIVA power enable pin) to be output high
77          * to allow TIVA startup.
78          */
79         ret = dm_gpio_lookup_name("GPIO0_0", &en_3_3v);
80         if (ret)
81                 printf("Cannot get GPIO0_0\n");
82
83         ret = dm_gpio_request(&en_3_3v, "pwr_3_3v");
84         if (ret)
85                 printf("Cannot request GPIO0_0\n");
86
87         /* Set GPIO0_0 to HIGH */
88         dm_gpio_set_dir_flags(&en_3_3v, GPIOD_IS_OUT | GPIOD_IS_OUT_ACTIVE);
89
90         ret = dm_gpio_lookup_name("GPIO0_23", &btiva0);
91         if (ret)
92                 printf("Cannot get GPIO0_23\n");
93
94         ret = dm_gpio_lookup_name("GPIO0_25", &btiva1);
95         if (ret)
96                 printf("Cannot get GPIO0_25\n");
97
98         ret = dm_gpio_request(&btiva0, "boot-tiva0");
99         if (ret)
100                 printf("Cannot request GPIO0_23\n");
101
102         ret = dm_gpio_request(&btiva1, "boot-tiva1");
103         if (ret)
104                 printf("Cannot request GPIO0_25\n");
105
106         dm_gpio_set_dir_flags(&btiva0, GPIOD_IS_IN);
107         dm_gpio_set_dir_flags(&btiva1, GPIOD_IS_IN);
108
109         udelay(1000);
110
111         boot_tiva0 = dm_gpio_get_value(&btiva0);
112         boot_tiva1 = dm_gpio_get_value(&btiva1);
113 }
114
115 void board_boot_order(u32 *spl_boot_list)
116 {
117         spl_boot_list[0] = BOOT_DEVICE_MMC1;
118         spl_boot_list[1] = BOOT_DEVICE_SPI;
119 }
120
121 int spl_start_uboot(void)
122 {
123         /* break into full u-boot on 'c' */
124         if (serial_tstc() && serial_getc() == 'c')
125                 return 1;
126
127         debug("%s: btiva0: %d btiva1: %d\n", __func__, boot_tiva0, boot_tiva1);
128         return !boot_tiva0 || !boot_tiva1;
129 }
130 #else
131
132 int board_early_init_f(void)
133 {
134         init_clocks();
135
136         return 0;
137 }
138
139 int board_init(void)
140 {
141         struct gpio_desc phy_rst;
142         int ret;
143
144         /* Address of boot parameters */
145         gd->bd->bi_boot_params = PHYS_SDRAM_1 + 0x100;
146
147         cpu_eth_init(NULL);
148
149         /* PHY INT#/PWDN# */
150         ret = dm_gpio_lookup_name("GPIO4_13", &phy_rst);
151         if (ret) {
152                 printf("Cannot get GPIO4_13\n");
153                 return ret;
154         }
155
156         ret = dm_gpio_request(&phy_rst, "phy-rst");
157         if (ret) {
158                 printf("Cannot request GPIO4_13\n");
159                 return ret;
160         }
161
162         dm_gpio_set_dir_flags(&phy_rst, GPIOD_IS_IN);
163         udelay(1000);
164
165         return 0;
166 }
167
168 int dram_init(void)
169 {
170         return mxs_dram_init();
171 }
172
173 #ifdef CONFIG_OF_BOARD_SETUP
174 static int fdt_fixup_l2switch(void *blob)
175 {
176         u8 ethaddr[6];
177         int ret;
178
179         if (eth_env_get_enetaddr("ethaddr", ethaddr)) {
180                 ret = fdt_find_and_setprop(blob,
181                                            "/ahb@80080000/switch@800f0000",
182                                            "local-mac-address", ethaddr, 6, 1);
183                 if (ret < 0)
184                         printf("%s: can't find usbether@1 node: %d\n",
185                                __func__, ret);
186         }
187
188         return 0;
189 }
190
191 int ft_board_setup(void *blob, bd_t *bd)
192 {
193         /*
194          * i.MX28 L2 switch needs manual update (fixup) of eth MAC address
195          * (in 'local-mac-address' property) as it uses "switch@800f0000"
196          * node, not set by default FIT image handling code in
197          * "ethernet@800f0000"
198          */
199         fdt_fixup_l2switch(blob);
200
201         return 0;
202 }
203 #endif
204
205 #endif  /* CONFIG_SPL_BUILD */