3 * ISEE 2007 SL, <www.iseebcn.com>
5 * SPDX-License-Identifier: GPL-2.0+
8 #include <status_led.h>
16 #include <asm/arch/mem.h>
17 #include <asm/arch/mmc_host_def.h>
18 #include <asm/arch/mux.h>
19 #include <asm/arch/sys_proto.h>
20 #include <asm/mach-types.h>
21 #include <linux/mtd/mtd.h>
22 #include <linux/mtd/nand.h>
23 #include <linux/mtd/nand.h>
24 #include <linux/mtd/onenand.h>
25 #include <jffs2/load_kernel.h>
27 #include <fdt_support.h>
30 DECLARE_GLOBAL_DATA_PTR;
32 static const struct ns16550_platdata igep_serial = {
33 .base = OMAP34XX_UART3,
35 .clock = V_NS16550_CLK,
36 .fcr = UART_FCR_DEFVAL,
39 U_BOOT_DEVICE(igep_uart) = {
46 * Description: Early hardware init.
52 /* find out flash memory type, assume NAND first */
53 gpmc_cs0_flash = MTD_DEV_TYPE_NAND;
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) {
63 gpmc_cs0_flash = MTD_DEV_TYPE_ONENAND;
64 gpmc_init(); /* reinitialize for OneNAND */
70 gd->bd->bi_boot_params = (OMAP34XX_SDRC_CS0 + 0x100);
72 #if defined(CONFIG_LED_STATUS) && defined(CONFIG_LED_STATUS_BOOT_ENABLE)
73 status_led_set(CONFIG_LED_STATUS_BOOT, CONFIG_LED_STATUS_ON);
79 #ifdef CONFIG_SPL_BUILD
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.
85 void get_board_mem_timings(struct board_sdrc_timings *timings)
87 int mfr, id, err = identify_nand_chip(&mfr, &id);
89 timings->mr = MICRON_V_MR_165;
93 timings->mcfg = HYNIX_V_MCFG_200(256 << 20);
94 timings->ctrla = HYNIX_V_ACTIMA_200;
95 timings->ctrlb = HYNIX_V_ACTIMB_200;
98 timings->mcfg = MICRON_V_MCFG_200(256 << 20);
99 timings->ctrla = MICRON_V_ACTIMA_200;
100 timings->ctrlb = MICRON_V_ACTIMB_200;
103 /* Should not happen... */
106 timings->rfr_ctrl = SDP_3430_SDRC_RFR_CTRL_200MHz;
107 gpmc_cs0_flash = MTD_DEV_TYPE_NAND;
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;
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;
120 gpmc_cs0_flash = MTD_DEV_TYPE_ONENAND;
124 #ifdef CONFIG_SPL_OS_BOOT
125 int spl_start_uboot(void)
127 /* break into full u-boot on 'c' */
128 if (serial_tstc() && serial_getc() == 'c')
136 int onenand_board_init(struct mtd_info *mtd)
138 if (gpmc_cs0_flash == MTD_DEV_TYPE_ONENAND) {
139 struct onenand_chip *this = mtd->priv;
140 this->base = (void *)CONFIG_SYS_ONENAND_BASE;
146 #if defined(CONFIG_CMD_NET)
147 static void reset_net_chip(int gpio)
149 if (!gpio_request(gpio, "eth nrst")) {
150 gpio_direction_output(gpio, 1);
152 gpio_set_value(gpio, 0);
154 gpio_set_value(gpio, 1);
160 * Routine: setup_net_chip
161 * Description: Setting up the configuration GPMC registers specific to the
164 static void setup_net_chip(void)
166 struct ctrl *ctrl_base = (struct ctrl *)OMAP34XX_CTRL_BASE;
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,
176 enable_gpmc_cs_config(gpmc_lan_config, &gpmc_cfg->cs[5],
177 CONFIG_SMC911X_BASE, GPMC_SIZE_16M);
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);
190 int board_eth_init(bd_t *bis)
192 #ifdef CONFIG_SMC911X
193 return smc911x_initialize(0, CONFIG_SMC911X_BASE);
199 static inline void setup_net_chip(void) {}
202 #if defined(CONFIG_MMC)
203 int board_mmc_init(bd_t *bis)
205 return omap_mmc_init(0, 0, 0, -1, -1);
209 #if defined(CONFIG_MMC)
210 void board_mmc_power_init(void)
212 twl4030_power_mmc_init(0);
216 #ifdef CONFIG_OF_BOARD_SETUP
217 static int ft_enable_by_compatible(void *blob, char *compat, int enable)
219 int off = fdt_node_offset_by_compatible(blob, -1, compat);
224 fdt_status_okay(blob, off);
226 fdt_status_disabled(blob, off);
231 int ft_board_setup(void *blob, bd_t *bd)
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, },
239 fdt_fixup_mtdparts(blob, nodes, ARRAY_SIZE(nodes));
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);
252 switch (gd->bd->bi_arch_number) {
253 case MACH_TYPE_IGEP0020:
254 env_set("fdtfile", "omap3-igep0020.dtb");
256 case MACH_TYPE_IGEP0030:
257 env_set("fdtfile", "omap3-igep0030.dtb");
263 * Routine: misc_init_r
264 * Description: Configure board specific parts
266 int misc_init_r(void)
268 twl4030_power_init();
272 omap_die_id_display();
279 void board_mtdparts_default(const char **mtdids, const char **mtdparts)
281 struct mtd_info *mtd = get_mtd_device(NULL, 0);
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);
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
302 void set_muxconf_regs(void)
306 #if (CONFIG_MACH_TYPE == MACH_TYPE_IGEP0020)
310 #if (CONFIG_MACH_TYPE == MACH_TYPE_IGEP0030)