common: Drop linux/delay.h from common header
[oweals/u-boot.git] / board / freescale / mx28evk / mx28evk.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Freescale MX28EVK board
4  *
5  * (C) Copyright 2011 Freescale Semiconductor, Inc.
6  *
7  * Author: Fabio Estevam <fabio.estevam@freescale.com>
8  *
9  * Based on m28evk.c:
10  * Copyright (C) 2011 Marek Vasut <marek.vasut@gmail.com>
11  * on behalf of DENX Software Engineering GmbH
12  */
13
14 #include <common.h>
15 #include <init.h>
16 #include <net.h>
17 #include <asm/gpio.h>
18 #include <asm/io.h>
19 #include <asm/arch/imx-regs.h>
20 #include <asm/arch/iomux-mx28.h>
21 #include <asm/arch/clock.h>
22 #include <asm/arch/sys_proto.h>
23 #include <linux/delay.h>
24 #include <linux/mii.h>
25 #include <miiphy.h>
26 #include <netdev.h>
27 #include <errno.h>
28
29 DECLARE_GLOBAL_DATA_PTR;
30
31 /*
32  * Functions
33  */
34 int board_early_init_f(void)
35 {
36         /* IO0 clock at 480MHz */
37         mxs_set_ioclk(MXC_IOCLK0, 480000);
38         /* IO1 clock at 480MHz */
39         mxs_set_ioclk(MXC_IOCLK1, 480000);
40
41         /* SSP0 clock at 96MHz */
42         mxs_set_sspclk(MXC_SSPCLK0, 96000, 0);
43         /* SSP2 clock at 160MHz */
44         mxs_set_sspclk(MXC_SSPCLK2, 160000, 0);
45
46 #ifdef  CONFIG_CMD_USB
47         mxs_iomux_setup_pad(MX28_PAD_SSP2_SS1__USB1_OVERCURRENT);
48         mxs_iomux_setup_pad(MX28_PAD_AUART2_RX__GPIO_3_8 |
49                         MXS_PAD_4MA | MXS_PAD_3V3 | MXS_PAD_NOPULL);
50         gpio_direction_output(MX28_PAD_AUART2_RX__GPIO_3_8, 1);
51 #endif
52
53         /* Power on LCD */
54         gpio_direction_output(MX28_PAD_LCD_RESET__GPIO_3_30, 1);
55
56         /* Set contrast to maximum */
57         gpio_direction_output(MX28_PAD_PWM2__GPIO_3_18, 1);
58
59         return 0;
60 }
61
62 int dram_init(void)
63 {
64         return mxs_dram_init();
65 }
66
67 int board_init(void)
68 {
69         /* Adress of boot parameters */
70         gd->bd->bi_boot_params = PHYS_SDRAM_1 + 0x100;
71
72         return 0;
73 }
74
75 #ifdef  CONFIG_CMD_MMC
76 static int mx28evk_mmc_wp(int id)
77 {
78         if (id != 0) {
79                 printf("MXS MMC: Invalid card selected (card id = %d)\n", id);
80                 return 1;
81         }
82
83         return gpio_get_value(MX28_PAD_SSP1_SCK__GPIO_2_12);
84 }
85
86 int board_mmc_init(bd_t *bis)
87 {
88         /* Configure WP as input */
89         gpio_direction_input(MX28_PAD_SSP1_SCK__GPIO_2_12);
90
91         /* Configure MMC0 Power Enable */
92         gpio_direction_output(MX28_PAD_PWM3__GPIO_3_28, 0);
93
94         return mxsmmc_initialize(bis, 0, mx28evk_mmc_wp, NULL);
95 }
96 #endif
97
98 #ifdef  CONFIG_CMD_NET
99
100 int board_eth_init(bd_t *bis)
101 {
102         struct mxs_clkctrl_regs *clkctrl_regs =
103                 (struct mxs_clkctrl_regs *)MXS_CLKCTRL_BASE;
104         struct eth_device *dev;
105         int ret;
106
107         ret = cpu_eth_init(bis);
108         if (ret)
109                 return ret;
110
111         /* MX28EVK uses ENET_CLK PAD to drive FEC clock */
112         writel(CLKCTRL_ENET_TIME_SEL_RMII_CLK | CLKCTRL_ENET_CLK_OUT_EN,
113                &clkctrl_regs->hw_clkctrl_enet);
114
115         /* Power-on FECs */
116         gpio_direction_output(MX28_PAD_SSP1_DATA3__GPIO_2_15, 0);
117
118         /* Reset FEC PHYs */
119         gpio_direction_output(MX28_PAD_ENET0_RX_CLK__GPIO_4_13, 0);
120         udelay(200);
121         gpio_set_value(MX28_PAD_ENET0_RX_CLK__GPIO_4_13, 1);
122
123         ret = fecmxc_initialize_multi(bis, 0, 0, MXS_ENET0_BASE);
124         if (ret) {
125                 puts("FEC MXS: Unable to init FEC0\n");
126                 return ret;
127         }
128
129         ret = fecmxc_initialize_multi(bis, 1, 3, MXS_ENET1_BASE);
130         if (ret) {
131                 puts("FEC MXS: Unable to init FEC1\n");
132                 return ret;
133         }
134
135         dev = eth_get_dev_by_name("FEC0");
136         if (!dev) {
137                 puts("FEC MXS: Unable to get FEC0 device entry\n");
138                 return -EINVAL;
139         }
140
141         dev = eth_get_dev_by_name("FEC1");
142         if (!dev) {
143                 puts("FEC MXS: Unable to get FEC1 device entry\n");
144                 return -EINVAL;
145         }
146
147         return ret;
148 }
149
150 #endif