blob: ce75468e3844808a055467a7be2715147f4ff17d [file] [log] [blame]
John Rigby6895d452010-01-25 23:12:58 -07001/*
2 * (C) Copyright 2009 DENX Software Engineering
3 * Author: John Rigby <jrigby@gmail.com>
4 *
5 * Based on imx27lite.c:
6 * Copyright (C) 2008,2009 Eric Jarrige <jorasse@users.sourceforge.net>
7 * Copyright (C) 2009 Ilya Yanok <yanok@emcraft.com>
8 * And:
9 * RedBoot tx25_misc.c Copyright (C) 2009 Red Hat
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 of
14 * the License, or (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
24 * MA 02111-1307 USA
25 *
26 */
27#include <common.h>
28#include <asm/io.h>
29#include <asm/arch/imx-regs.h>
30#include <asm/arch/imx25-pinmux.h>
Fabio Estevamc2205f42011-08-29 04:27:06 +000031#include <asm/gpio.h>
John Rigby6895d452010-01-25 23:12:58 -070032
33static void mdelay(int n)
34{
35 while (n-- > 0)
36 udelay(1000);
37}
38
39DECLARE_GLOBAL_DATA_PTR;
40
41#ifdef CONFIG_FEC_MXC
42void tx25_fec_init(void)
43{
44 struct iomuxc_mux_ctl *muxctl;
45 struct iomuxc_pad_ctl *padctl;
46 u32 val;
47 u32 gpio_mux_mode = MX25_PIN_MUX_MODE(5);
48 struct gpio_regs *gpio4 = (struct gpio_regs *)IMX_GPIO4_BASE;
49 struct gpio_regs *gpio3 = (struct gpio_regs *)IMX_GPIO3_BASE;
50 u32 saved_rdata0_mode, saved_rdata1_mode, saved_rx_dv_mode;
51
52 debug("tx25_fec_init\n");
53 /*
54 * fec pin init is generic
55 */
56 mx25_fec_init_pins();
57
58 /*
59 * Set up the FEC_RESET_B and FEC_ENABLE GPIO pins.
60 *
61 * FEC_RESET_B: gpio4[7] is ALT 5 mode of pin D13
62 * FEC_ENABLE_B: gpio4[9] is ALT 5 mode of pin D11
63 */
64 muxctl = (struct iomuxc_mux_ctl *)IMX_IOPADMUX_BASE;
65 padctl = (struct iomuxc_pad_ctl *)IMX_IOPADCTL_BASE;
66
67 writel(gpio_mux_mode, &muxctl->pad_d13);
68 writel(gpio_mux_mode, &muxctl->pad_d11);
69
70 writel(0x0, &padctl->pad_d13);
71 writel(0x0, &padctl->pad_d11);
72
73 /* drop PHY power and assert reset (low) */
Matthias Weisser95d18582011-07-06 00:28:32 +000074 val = readl(&gpio4->gpio_dr) & ~((1 << 7) | (1 << 9));
75 writel(val, &gpio4->gpio_dr);
76 val = readl(&gpio4->gpio_dir) | (1 << 7) | (1 << 9);
77 writel(val, &gpio4->gpio_dir);
John Rigby6895d452010-01-25 23:12:58 -070078
79 mdelay(5);
80
81 debug("resetting phy\n");
82
83 /* turn on PHY power leaving reset asserted */
Matthias Weisser95d18582011-07-06 00:28:32 +000084 val = readl(&gpio4->gpio_dr) | 1 << 9;
85 writel(val, &gpio4->gpio_dr);
John Rigby6895d452010-01-25 23:12:58 -070086
87 mdelay(10);
88
89 /*
90 * Setup some strapping pins that are latched by the PHY
91 * as reset goes high.
92 *
93 * Set PHY mode to 111
94 * mode0 comes from FEC_RDATA0 which is GPIO 3_10 in mux mode 5
95 * mode1 comes from FEC_RDATA1 which is GPIO 3_11 in mux mode 5
96 * mode2 is tied high so nothing to do
97 *
98 * Turn on RMII mode
99 * RMII mode is selected by FEC_RX_DV which is GPIO 3_12 in mux mode
100 */
101 /*
102 * save three current mux modes and set each to gpio mode
103 */
104 saved_rdata0_mode = readl(&muxctl->pad_fec_rdata0);
105 saved_rdata1_mode = readl(&muxctl->pad_fec_rdata1);
106 saved_rx_dv_mode = readl(&muxctl->pad_fec_rx_dv);
107
108 writel(gpio_mux_mode, &muxctl->pad_fec_rdata0);
109 writel(gpio_mux_mode, &muxctl->pad_fec_rdata1);
110 writel(gpio_mux_mode, &muxctl->pad_fec_rx_dv);
111
112 /*
113 * set each to 1 and make each an output
114 */
Matthias Weisser95d18582011-07-06 00:28:32 +0000115 val = readl(&gpio3->gpio_dr) | (1 << 10) | (1 << 11) | (1 << 12);
116 writel(val, &gpio3->gpio_dr);
117 val = readl(&gpio3->gpio_dir) | (1 << 10) | (1 << 11) | (1 << 12);
118 writel(val, &gpio3->gpio_dir);
John Rigby6895d452010-01-25 23:12:58 -0700119
120 mdelay(22); /* this value came from RedBoot */
121
122 /*
123 * deassert PHY reset
124 */
Matthias Weisser95d18582011-07-06 00:28:32 +0000125 val = readl(&gpio4->gpio_dr) | 1 << 7;
126 writel(val, &gpio4->gpio_dr);
127 writel(val, &gpio4->gpio_dr);
John Rigby6895d452010-01-25 23:12:58 -0700128
129 mdelay(5);
130
131 /*
132 * set FEC pins back
133 */
134 writel(saved_rdata0_mode, &muxctl->pad_fec_rdata0);
135 writel(saved_rdata1_mode, &muxctl->pad_fec_rdata1);
136 writel(saved_rx_dv_mode, &muxctl->pad_fec_rx_dv);
137}
138#else
139#define tx25_fec_init()
140#endif
141
142int board_init()
143{
144#ifdef CONFIG_MXC_UART
Fabio Estevam9aa720b2011-03-02 10:14:27 +0100145 extern void mx25_uart1_init_pins(void);
John Rigby6895d452010-01-25 23:12:58 -0700146
Fabio Estevam9aa720b2011-03-02 10:14:27 +0100147 mx25_uart1_init_pins();
John Rigby6895d452010-01-25 23:12:58 -0700148#endif
Anatolij Gustschin87db58d2010-04-21 13:52:38 +0200149 /* board id for linux */
150 gd->bd->bi_arch_number = MACH_TYPE_TX25;
151 gd->bd->bi_boot_params = PHYS_SDRAM_1 + 0x100;
John Rigby6895d452010-01-25 23:12:58 -0700152 return 0;
153}
154
155int board_late_init(void)
156{
157 tx25_fec_init();
158 return 0;
159}
160
161int dram_init (void)
162{
Heiko Schocherab86f722010-09-17 13:10:42 +0200163 /* dram_init must store complete ramsize in gd->ram_size */
Albert ARIBAUDa55d23c2011-07-03 05:55:33 +0000164 gd->ram_size = get_ram_size((void *)PHYS_SDRAM_1,
Heiko Schocherab86f722010-09-17 13:10:42 +0200165 PHYS_SDRAM_1_SIZE);
166 return 0;
167}
John Rigby6895d452010-01-25 23:12:58 -0700168
Heiko Schocherab86f722010-09-17 13:10:42 +0200169void dram_init_banksize(void)
170{
John Rigby6895d452010-01-25 23:12:58 -0700171 gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
Albert ARIBAUDa55d23c2011-07-03 05:55:33 +0000172 gd->bd->bi_dram[0].size = get_ram_size((void *)PHYS_SDRAM_1,
John Rigby6895d452010-01-25 23:12:58 -0700173 PHYS_SDRAM_1_SIZE);
174#if CONFIG_NR_DRAM_BANKS > 1
175 gd->bd->bi_dram[1].start = PHYS_SDRAM_2;
Albert ARIBAUDa55d23c2011-07-03 05:55:33 +0000176 gd->bd->bi_dram[1].size = get_ram_size((void *)PHYS_SDRAM_2,
John Rigby6895d452010-01-25 23:12:58 -0700177 PHYS_SDRAM_2_SIZE);
Heiko Schocherab86f722010-09-17 13:10:42 +0200178#else
John Rigby6895d452010-01-25 23:12:58 -0700179
Heiko Schocherab86f722010-09-17 13:10:42 +0200180#endif
John Rigby6895d452010-01-25 23:12:58 -0700181}
182
183int checkboard(void)
184{
185 printf("KARO TX25\n");
186 return 0;
187}