]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/isee/igep00x0/igep00x0.c
Merge git://git.denx.de/u-boot-tegra
[people/ms/u-boot.git] / board / isee / igep00x0 / igep00x0.c
CommitLineData
8a3f6bb6
EBS
1/*
2 * (C) Copyright 2010
3 * ISEE 2007 SL, <www.iseebcn.com>
4 *
1a459660 5 * SPDX-License-Identifier: GPL-2.0+
8a3f6bb6
EBS
6 */
7#include <common.h>
f3b4bc45 8#include <status_led.h>
b3f4ca11
SG
9#include <dm.h>
10#include <ns16550.h>
8a3f6bb6 11#include <twl4030.h>
77eea280 12#include <netdev.h>
fe9f6289 13#include <spl.h>
84c3b631 14#include <asm/gpio.h>
77eea280 15#include <asm/io.h>
8a3f6bb6 16#include <asm/arch/mem.h>
f49d7b6c 17#include <asm/arch/mmc_host_def.h>
8a3f6bb6
EBS
18#include <asm/arch/mux.h>
19#include <asm/arch/sys_proto.h>
20#include <asm/mach-types.h>
a5debaa3 21#include <linux/mtd/mtd.h>
97ee7060
LM
22#include <linux/mtd/nand.h>
23#include <linux/mtd/nand.h>
24#include <linux/mtd/onenand.h>
25#include <jffs2/load_kernel.h>
568b471e
LM
26#include <mtd_node.h>
27#include <fdt_support.h>
77eea280 28#include "igep00x0.h"
8a3f6bb6 29
29565326
JR
30DECLARE_GLOBAL_DATA_PTR;
31
b3f4ca11 32static const struct ns16550_platdata igep_serial = {
2f6ed3b8
AF
33 .base = OMAP34XX_UART3,
34 .reg_shift = 2,
17fa0326
HS
35 .clock = V_NS16550_CLK,
36 .fcr = UART_FCR_DEFVAL,
b3f4ca11
SG
37};
38
39U_BOOT_DEVICE(igep_uart) = {
c7b9686d 40 "ns16550_serial",
b3f4ca11
SG
41 &igep_serial
42};
43
8a3f6bb6
EBS
44/*
45 * Routine: board_init
46 * Description: Early hardware init.
47 */
48int board_init(void)
49{
97ee7060
LM
50 int loops = 100;
51
52 /* find out flash memory type, assume NAND first */
53 gpmc_cs0_flash = MTD_DEV_TYPE_NAND;
54 gpmc_init();
55
56 /* Issue a RESET and then READID */
57 writeb(NAND_CMD_RESET, &gpmc_cfg->cs[0].nand_cmd);
58 writeb(NAND_CMD_STATUS, &gpmc_cfg->cs[0].nand_cmd);
59 while ((readl(&gpmc_cfg->cs[0].nand_dat) & NAND_STATUS_READY)
60 != NAND_STATUS_READY) {
61 udelay(1);
62 if (--loops == 0) {
63 gpmc_cs0_flash = MTD_DEV_TYPE_ONENAND;
64 gpmc_init(); /* reinitialize for OneNAND */
65 break;
66 }
67 }
68
8a3f6bb6
EBS
69 /* boot param addr */
70 gd->bd->bi_boot_params = (OMAP34XX_SDRC_CS0 + 0x100);
71
2d8d190c
UM
72#if defined(CONFIG_LED_STATUS) && defined(CONFIG_LED_STATUS_BOOT_ENABLE)
73 status_led_set(CONFIG_LED_STATUS_BOOT, CONFIG_LED_STATUS_ON);
f3b4bc45 74#endif
9d4f5421 75
f3b4bc45 76 return 0;
9d4f5421 77}
9d4f5421 78
d271a611 79#ifdef CONFIG_SPL_BUILD
d271a611
JMC
80/*
81 * Routine: get_board_mem_timings
82 * Description: If we use SPL then there is no x-loader nor config header
83 * so we have to setup the DDR timings ourself on both banks.
84 */
8c4445d2 85void get_board_mem_timings(struct board_sdrc_timings *timings)
d271a611 86{
97ee7060 87 int mfr, id, err = identify_nand_chip(&mfr, &id);
d271a611 88
97ee7060 89 timings->mr = MICRON_V_MR_165;
4fa72bd3
LM
90 if (!err) {
91 switch (mfr) {
92 case NAND_MFR_HYNIX:
93 timings->mcfg = HYNIX_V_MCFG_200(256 << 20);
94 timings->ctrla = HYNIX_V_ACTIMA_200;
95 timings->ctrlb = HYNIX_V_ACTIMB_200;
96 break;
97 case NAND_MFR_MICRON:
98 timings->mcfg = MICRON_V_MCFG_200(256 << 20);
99 timings->ctrla = MICRON_V_ACTIMA_200;
100 timings->ctrlb = MICRON_V_ACTIMB_200;
101 break;
102 default:
103 /* Should not happen... */
104 break;
105 }
8c4445d2 106 timings->rfr_ctrl = SDP_3430_SDRC_RFR_CTRL_200MHz;
97ee7060
LM
107 gpmc_cs0_flash = MTD_DEV_TYPE_NAND;
108 } else {
109 if (get_cpu_family() == CPU_OMAP34XX) {
110 timings->mcfg = NUMONYX_V_MCFG_165(256 << 20);
111 timings->ctrla = NUMONYX_V_ACTIMA_165;
112 timings->ctrlb = NUMONYX_V_ACTIMB_165;
113 timings->rfr_ctrl = SDP_3430_SDRC_RFR_CTRL_165MHz;
114 } else {
115 timings->mcfg = NUMONYX_V_MCFG_200(256 << 20);
116 timings->ctrla = NUMONYX_V_ACTIMA_200;
117 timings->ctrlb = NUMONYX_V_ACTIMB_200;
118 timings->rfr_ctrl = SDP_3430_SDRC_RFR_CTRL_200MHz;
119 }
120 gpmc_cs0_flash = MTD_DEV_TYPE_ONENAND;
d271a611 121 }
d271a611 122}
fe9f6289
LM
123
124#ifdef CONFIG_SPL_OS_BOOT
125int spl_start_uboot(void)
126{
127 /* break into full u-boot on 'c' */
128 if (serial_tstc() && serial_getc() == 'c')
129 return 1;
130
131 return 0;
132}
133#endif
d271a611
JMC
134#endif
135
97ee7060
LM
136int onenand_board_init(struct mtd_info *mtd)
137{
138 if (gpmc_cs0_flash == MTD_DEV_TYPE_ONENAND) {
139 struct onenand_chip *this = mtd->priv;
140 this->base = (void *)CONFIG_SYS_ONENAND_BASE;
141 return 0;
142 }
143 return 1;
144}
145
77eea280 146#if defined(CONFIG_CMD_NET)
6ed75ba7
LM
147static void reset_net_chip(int gpio)
148{
149 if (!gpio_request(gpio, "eth nrst")) {
150 gpio_direction_output(gpio, 1);
151 udelay(1);
152 gpio_set_value(gpio, 0);
153 udelay(40);
154 gpio_set_value(gpio, 1);
155 mdelay(10);
156 }
157}
158
8a3f6bb6
EBS
159/*
160 * Routine: setup_net_chip
161 * Description: Setting up the configuration GPMC registers specific to the
162 * Ethernet hardware.
163 */
8a3f6bb6
EBS
164static void setup_net_chip(void)
165{
166 struct ctrl *ctrl_base = (struct ctrl *)OMAP34XX_CTRL_BASE;
b0c47633
LM
167 static const u32 gpmc_lan_config[] = {
168 NET_LAN9221_GPMC_CONFIG1,
169 NET_LAN9221_GPMC_CONFIG2,
170 NET_LAN9221_GPMC_CONFIG3,
171 NET_LAN9221_GPMC_CONFIG4,
172 NET_LAN9221_GPMC_CONFIG5,
173 NET_LAN9221_GPMC_CONFIG6,
174 };
8a3f6bb6 175
6ed75ba7
LM
176 enable_gpmc_cs_config(gpmc_lan_config, &gpmc_cfg->cs[5],
177 CONFIG_SMC911X_BASE, GPMC_SIZE_16M);
8a3f6bb6
EBS
178
179 /* Enable off mode for NWE in PADCONF_GPMC_NWE register */
180 writew(readw(&ctrl_base->gpmc_nwe) | 0x0E00, &ctrl_base->gpmc_nwe);
181 /* Enable off mode for NOE in PADCONF_GPMC_NADV_ALE register */
182 writew(readw(&ctrl_base->gpmc_noe) | 0x0E00, &ctrl_base->gpmc_noe);
183 /* Enable off mode for ALE in PADCONF_GPMC_NADV_ALE register */
184 writew(readw(&ctrl_base->gpmc_nadv_ale) | 0x0E00,
185 &ctrl_base->gpmc_nadv_ale);
186
6ed75ba7 187 reset_net_chip(64);
8a3f6bb6 188}
b0c47633
LM
189
190int board_eth_init(bd_t *bis)
191{
192#ifdef CONFIG_SMC911X
193 return smc911x_initialize(0, CONFIG_SMC911X_BASE);
194#else
195 return 0;
196#endif
197}
77eea280
JMC
198#else
199static inline void setup_net_chip(void) {}
8a3f6bb6
EBS
200#endif
201
4aa2ba3a 202#if defined(CONFIG_MMC)
f49d7b6c
EBS
203int board_mmc_init(bd_t *bis)
204{
e3913f56 205 return omap_mmc_init(0, 0, 0, -1, -1);
f49d7b6c
EBS
206}
207#endif
208
4aa2ba3a 209#if defined(CONFIG_MMC)
aac5450e
PK
210void board_mmc_power_init(void)
211{
212 twl4030_power_mmc_init(0);
213}
214#endif
215
568b471e 216#ifdef CONFIG_OF_BOARD_SETUP
e4290aa1
LM
217static int ft_enable_by_compatible(void *blob, char *compat, int enable)
218{
219 int off = fdt_node_offset_by_compatible(blob, -1, compat);
220 if (off < 0)
221 return off;
222
223 if (enable)
224 fdt_status_okay(blob, off);
225 else
226 fdt_status_disabled(blob, off);
227
228 return 0;
229}
230
568b471e
LM
231int ft_board_setup(void *blob, bd_t *bd)
232{
233#ifdef CONFIG_FDT_FIXUP_PARTITIONS
234 static struct node_info nodes[] = {
235 { "ti,omap2-nand", MTD_DEV_TYPE_NAND, },
236 { "ti,omap2-onenand", MTD_DEV_TYPE_ONENAND, },
237 };
238
239 fdt_fixup_mtdparts(blob, nodes, ARRAY_SIZE(nodes));
240#endif
e4290aa1
LM
241 ft_enable_by_compatible(blob, "ti,omap2-nand",
242 gpmc_cs0_flash == MTD_DEV_TYPE_NAND);
243 ft_enable_by_compatible(blob, "ti,omap2-onenand",
244 gpmc_cs0_flash == MTD_DEV_TYPE_ONENAND);
245
568b471e
LM
246 return 0;
247}
248#endif
249
a2fa28bc
JMC
250void set_fdt(void)
251{
252 switch (gd->bd->bi_arch_number) {
253 case MACH_TYPE_IGEP0020:
382bee57 254 env_set("fdtfile", "omap3-igep0020.dtb");
a2fa28bc
JMC
255 break;
256 case MACH_TYPE_IGEP0030:
382bee57 257 env_set("fdtfile", "omap3-igep0030.dtb");
a2fa28bc
JMC
258 break;
259 }
260}
261
8a3f6bb6
EBS
262/*
263 * Routine: misc_init_r
264 * Description: Configure board specific parts
265 */
266int misc_init_r(void)
267{
268 twl4030_power_init();
269
8a3f6bb6 270 setup_net_chip();
8a3f6bb6 271
679f82c3 272 omap_die_id_display();
8a3f6bb6 273
a2fa28bc
JMC
274 set_fdt();
275
8a3f6bb6
EBS
276 return 0;
277}
278
a5debaa3
LM
279void board_mtdparts_default(const char **mtdids, const char **mtdparts)
280{
281 struct mtd_info *mtd = get_mtd_device(NULL, 0);
282 if (mtd) {
283 static char ids[24];
284 static char parts[48];
285 const char *linux_name = "omap2-nand";
286 if (strncmp(mtd->name, "onenand0", 8) == 0)
287 linux_name = "omap2-onenand";
288 snprintf(ids, sizeof(ids), "%s=%s", mtd->name, linux_name);
289 snprintf(parts, sizeof(parts), "mtdparts=%s:%dk(SPL),-(UBI)",
290 linux_name, 4 * mtd->erasesize >> 10);
291 *mtdids = ids;
292 *mtdparts = parts;
293 }
294}
295
8a3f6bb6
EBS
296/*
297 * Routine: set_muxconf_regs
298 * Description: Setting up the configuration Mux registers specific to the
299 * hardware. Many pins need to be moved from protect to primary
300 * mode.
301 */
302void set_muxconf_regs(void)
303{
304 MUX_DEFAULT();
77eea280
JMC
305
306#if (CONFIG_MACH_TYPE == MACH_TYPE_IGEP0020)
307 MUX_IGEP0020();
308#endif
309
310#if (CONFIG_MACH_TYPE == MACH_TYPE_IGEP0030)
311 MUX_IGEP0030();
312#endif
8a3f6bb6 313}