2 * (C) Copyright 2004-2008
3 * Texas Instruments, <www.ti.com>
6 * Sunil Kumar <sunilsaini05@gmail.com>
7 * Shashi Ranjan <shashiranjanmca05@gmail.com>
10 * Frederik Kriewitz <frederik@kriewitz.eu>
12 * Derived from Beagle Board and 3430 SDP code by
13 * Richard Woodruff <r-woodruff2@ti.com>
14 * Syed Mohammed Khasim <khasim@ti.com>
17 * See file CREDITS for list of people who contributed to this
20 * This program is free software; you can redistribute it and/or
21 * modify it under the terms of the GNU General Public License as
22 * published by the Free Software Foundation; either version 2 of
23 * the License, or (at your option) any later version.
25 * This program is distributed in the hope that it will be useful,
26 * but WITHOUT ANY WARRANTY; without even the implied warranty of
27 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
28 * GNU General Public License for more details.
30 * You should have received a copy of the GNU General Public License
31 * along with this program; if not, write to the Free Software
32 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
38 #include <asm/arch/mmc_host_def.h>
39 #include <asm/arch/mux.h>
40 #include <asm/arch/sys_proto.h>
41 #include <asm/arch/mem.h>
42 #include <asm/mach-types.h>
43 #include "devkit8000.h"
44 #ifdef CONFIG_DRIVER_DM9000
49 DECLARE_GLOBAL_DATA_PTR;
51 static u32 gpmc_net_config[GPMC_MAX_REG] = {
63 * Description: Early hardware init.
67 gpmc_init(); /* in SRAM or SDRAM, finish GPMC */
68 /* board id for Linux */
69 gd->bd->bi_arch_number = MACH_TYPE_DEVKIT8000;
71 gd->bd->bi_boot_params = (OMAP34XX_SDRC_CS0 + 0x100);
76 /* Configure GPMC registers for DM9000 */
77 static void gpmc_dm9000_config(void)
79 enable_gpmc_cs_config(gpmc_net_config, &gpmc_cfg->cs[6],
80 CONFIG_DM9000_BASE, GPMC_SIZE_16M);
84 * Routine: misc_init_r
85 * Description: Configure board specific parts
89 struct ctrl_id *id_base = (struct ctrl_id *)OMAP34XX_ID_L4_IO_BASE;
90 #ifdef CONFIG_DRIVER_DM9000
96 #ifdef CONFIG_TWL4030_LED
97 twl4030_led_init(TWL4030_LED_LEDEN_LEDAON | TWL4030_LED_LEDEN_LEDBON);
100 #ifdef CONFIG_DRIVER_DM9000
101 /* Configure GPMC registers for DM9000 */
102 enable_gpmc_cs_config(gpmc_net_config, &gpmc_cfg->cs[6],
103 CONFIG_DM9000_BASE, GPMC_SIZE_16M);
105 /* Use OMAP DIE_ID as MAC address */
106 if (!eth_getenv_enetaddr("ethaddr", enetaddr)) {
107 printf("ethaddr not set, using Die ID\n");
108 die_id_0 = readl(&id_base->die_id_0);
109 enetaddr[0] = 0x02; /* locally administered */
110 enetaddr[1] = readl(&id_base->die_id_1) & 0xff;
111 enetaddr[2] = (die_id_0 & 0xff000000) >> 24;
112 enetaddr[3] = (die_id_0 & 0x00ff0000) >> 16;
113 enetaddr[4] = (die_id_0 & 0x0000ff00) >> 8;
114 enetaddr[5] = (die_id_0 & 0x000000ff);
115 eth_setenv_enetaddr("ethaddr", enetaddr);
125 * Routine: set_muxconf_regs
126 * Description: Setting up the configuration Mux registers specific to the
127 * hardware. Many pins need to be moved from protect to primary
130 void set_muxconf_regs(void)
135 #if defined(CONFIG_GENERIC_MMC) && !defined(CONFIG_SPL_BUILD)
136 int board_mmc_init(bd_t *bis)
143 #if defined(CONFIG_DRIVER_DM9000) & !defined(CONFIG_SPL_BUILD)
145 * Routine: board_eth_init
146 * Description: Setting up the Ethernet hardware.
148 int board_eth_init(bd_t *bis)
150 return dm9000_initialize(bis);
154 #ifdef CONFIG_SPL_OS_BOOT
156 * Do board specific preperation before SPL
159 void spl_board_prepare_for_linux(void)
161 gpmc_dm9000_config();
167 * Routine: get_board_mem_timings
168 * Description: If we use SPL then there is no x-loader nor config header
169 * so we have to setup the DDR timings ourself on the first bank. This
170 * provides the timing values back to the function that configures
171 * the memory. We have either one or two banks of 128MB DDR.
173 void get_board_mem_timings(u32 *mcfg, u32 *ctrla, u32 *ctrlb, u32 *rfr_ctrl,
176 /* General SDRC config */
177 *mcfg = MICRON_V_MCFG_165(128 << 20);
178 *rfr_ctrl = SDP_3430_SDRC_RFR_CTRL_165MHz;
181 *ctrla = MICRON_V_ACTIMA_165;
182 *ctrlb = MICRON_V_ACTIMB_165;
184 *mr = MICRON_V_MR_165;