blob: e8db99fabc48bb22f2d1e10da744878c42cee3fb [file] [log] [blame]
Shawn Guo4afbbb72010-12-18 21:39:35 +08001/*
2 * Copyright 2010 Freescale Semiconductor, Inc. All Rights Reserved.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 */
14
15#include <linux/delay.h>
16#include <linux/platform_device.h>
17#include <linux/gpio.h>
18#include <linux/irq.h>
19#include <linux/clk.h>
20
21#include <asm/mach-types.h>
22#include <asm/mach/arch.h>
23#include <asm/mach/time.h>
24
25#include <mach/common.h>
26#include <mach/iomux-mx28.h>
27
28#include "devices-mx28.h"
29#include "gpio.h"
30
31#define MX28EVK_FEC_PHY_POWER MXS_GPIO_NR(2, 15)
32#define MX28EVK_FEC_PHY_RESET MXS_GPIO_NR(4, 13)
33
34static const iomux_cfg_t mx28evk_pads[] __initconst = {
35 /* duart */
36 MX28_PAD_PWM0__DUART_RX |
37 (MXS_PAD_4MA | MXS_PAD_3V3 | MXS_PAD_NOPULL),
38 MX28_PAD_PWM1__DUART_TX |
39 (MXS_PAD_4MA | MXS_PAD_3V3 | MXS_PAD_NOPULL),
40
41 /* fec0 */
42 MX28_PAD_ENET0_MDC__ENET0_MDC |
43 (MXS_PAD_8MA | MXS_PAD_3V3 | MXS_PAD_PULLUP),
44 MX28_PAD_ENET0_MDIO__ENET0_MDIO |
45 (MXS_PAD_8MA | MXS_PAD_3V3 | MXS_PAD_PULLUP),
46 MX28_PAD_ENET0_RX_EN__ENET0_RX_EN |
47 (MXS_PAD_8MA | MXS_PAD_3V3 | MXS_PAD_PULLUP),
48 MX28_PAD_ENET0_RXD0__ENET0_RXD0 |
49 (MXS_PAD_8MA | MXS_PAD_3V3 | MXS_PAD_PULLUP),
50 MX28_PAD_ENET0_RXD1__ENET0_RXD1 |
51 (MXS_PAD_8MA | MXS_PAD_3V3 | MXS_PAD_PULLUP),
52 MX28_PAD_ENET0_TX_EN__ENET0_TX_EN |
53 (MXS_PAD_8MA | MXS_PAD_3V3 | MXS_PAD_PULLUP),
54 MX28_PAD_ENET0_TXD0__ENET0_TXD0 |
55 (MXS_PAD_8MA | MXS_PAD_3V3 | MXS_PAD_PULLUP),
56 MX28_PAD_ENET0_TXD1__ENET0_TXD1 |
57 (MXS_PAD_8MA | MXS_PAD_3V3 | MXS_PAD_PULLUP),
58 MX28_PAD_ENET_CLK__CLKCTRL_ENET |
59 (MXS_PAD_8MA | MXS_PAD_3V3 | MXS_PAD_PULLUP),
Shawn Guo48f76ed2011-01-11 20:09:24 +080060 /* fec1 */
61 MX28_PAD_ENET0_CRS__ENET1_RX_EN |
62 (MXS_PAD_8MA | MXS_PAD_3V3 | MXS_PAD_PULLUP),
63 MX28_PAD_ENET0_RXD2__ENET1_RXD0 |
64 (MXS_PAD_8MA | MXS_PAD_3V3 | MXS_PAD_PULLUP),
65 MX28_PAD_ENET0_RXD3__ENET1_RXD1 |
66 (MXS_PAD_8MA | MXS_PAD_3V3 | MXS_PAD_PULLUP),
67 MX28_PAD_ENET0_COL__ENET1_TX_EN |
68 (MXS_PAD_8MA | MXS_PAD_3V3 | MXS_PAD_PULLUP),
69 MX28_PAD_ENET0_TXD2__ENET1_TXD0 |
70 (MXS_PAD_8MA | MXS_PAD_3V3 | MXS_PAD_PULLUP),
71 MX28_PAD_ENET0_TXD3__ENET1_TXD1 |
72 (MXS_PAD_8MA | MXS_PAD_3V3 | MXS_PAD_PULLUP),
Shawn Guo4afbbb72010-12-18 21:39:35 +080073 /* phy power line */
74 MX28_PAD_SSP1_DATA3__GPIO_2_15 |
75 (MXS_PAD_4MA | MXS_PAD_3V3 | MXS_PAD_NOPULL),
76 /* phy reset line */
77 MX28_PAD_ENET0_RX_CLK__GPIO_4_13 |
78 (MXS_PAD_4MA | MXS_PAD_3V3 | MXS_PAD_NOPULL),
79};
80
81/* fec */
82static void __init mx28evk_fec_reset(void)
83{
84 int ret;
85 struct clk *clk;
86
87 /* Enable fec phy clock */
88 clk = clk_get_sys("pll2", NULL);
89 if (!IS_ERR(clk))
90 clk_enable(clk);
91
92 /* Power up fec phy */
93 ret = gpio_request(MX28EVK_FEC_PHY_POWER, "fec-phy-power");
94 if (ret) {
95 pr_err("Failed to request gpio fec-phy-%s: %d\n", "power", ret);
96 return;
97 }
98
99 ret = gpio_direction_output(MX28EVK_FEC_PHY_POWER, 0);
100 if (ret) {
101 pr_err("Failed to drive gpio fec-phy-%s: %d\n", "power", ret);
102 return;
103 }
104
105 /* Reset fec phy */
106 ret = gpio_request(MX28EVK_FEC_PHY_RESET, "fec-phy-reset");
107 if (ret) {
108 pr_err("Failed to request gpio fec-phy-%s: %d\n", "reset", ret);
109 return;
110 }
111
112 gpio_direction_output(MX28EVK_FEC_PHY_RESET, 0);
113 if (ret) {
114 pr_err("Failed to drive gpio fec-phy-%s: %d\n", "reset", ret);
115 return;
116 }
117
118 mdelay(1);
119 gpio_set_value(MX28EVK_FEC_PHY_RESET, 1);
120}
121
Shawn Guoa320b272011-01-14 15:25:52 +0800122static struct fec_platform_data mx28_fec_pdata[] __initdata = {
Shawn Guo48f76ed2011-01-11 20:09:24 +0800123 {
124 /* fec0 */
125 .phy = PHY_INTERFACE_MODE_RMII,
126 }, {
127 /* fec1 */
128 .phy = PHY_INTERFACE_MODE_RMII,
129 },
Shawn Guo4afbbb72010-12-18 21:39:35 +0800130};
131
Shawn Guoa320b272011-01-14 15:25:52 +0800132static int __init mx28evk_fec_get_mac(void)
133{
134 int i;
135 u32 val;
136 const u32 *ocotp = mxs_get_ocotp();
137
138 if (!ocotp)
139 goto error;
140
141 /*
142 * OCOTP only stores the last 4 octets for each mac address,
143 * so hard-code Freescale OUI (00:04:9f) here.
144 */
145 for (i = 0; i < 2; i++) {
146 val = ocotp[i * 4];
147 mx28_fec_pdata[i].mac[0] = 0x00;
148 mx28_fec_pdata[i].mac[1] = 0x04;
149 mx28_fec_pdata[i].mac[2] = 0x9f;
150 mx28_fec_pdata[i].mac[3] = (val >> 16) & 0xff;
151 mx28_fec_pdata[i].mac[4] = (val >> 8) & 0xff;
152 mx28_fec_pdata[i].mac[5] = (val >> 0) & 0xff;
153 }
154
155 return 0;
156
157error:
158 pr_err("%s: timeout when reading fec mac from OCOTP\n", __func__);
159 return -ETIMEDOUT;
160}
161
Shawn Guo4afbbb72010-12-18 21:39:35 +0800162static void __init mx28evk_init(void)
163{
164 mxs_iomux_setup_multiple_pads(mx28evk_pads, ARRAY_SIZE(mx28evk_pads));
165
166 mx28_add_duart();
167
Shawn Guoa320b272011-01-14 15:25:52 +0800168 if (mx28evk_fec_get_mac())
169 pr_warn("%s: failed on fec mac setup\n", __func__);
170
Shawn Guo4afbbb72010-12-18 21:39:35 +0800171 mx28evk_fec_reset();
Shawn Guo48f76ed2011-01-11 20:09:24 +0800172 mx28_add_fec(0, &mx28_fec_pdata[0]);
173 mx28_add_fec(1, &mx28_fec_pdata[1]);
Shawn Guo4afbbb72010-12-18 21:39:35 +0800174}
175
176static void __init mx28evk_timer_init(void)
177{
178 mx28_clocks_init();
179}
180
181static struct sys_timer mx28evk_timer = {
182 .init = mx28evk_timer_init,
183};
184
185MACHINE_START(MX28EVK, "Freescale MX28 EVK")
186 /* Maintainer: Freescale Semiconductor, Inc. */
187 .map_io = mx28_map_io,
188 .init_irq = mx28_init_irq,
189 .init_machine = mx28evk_init,
190 .timer = &mx28evk_timer,
191MACHINE_END