blob: 49fcf348930e95a085d3b682eaa537bf94256fe5 [file] [log] [blame]
Enric Balletbo i Serra8a3f6bb2010-10-14 16:54:59 -04001/*
2 * (C) Copyright 2010
3 * ISEE 2007 SL, <www.iseebcn.com>
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23#include <common.h>
Enric Balletbo i Serra8a3f6bb2010-10-14 16:54:59 -040024#include <twl4030.h>
Javier Martinez Canillas77eea282012-12-27 01:35:56 +000025#include <netdev.h>
Sanjeev Premi84c3b632011-09-08 10:51:01 -040026#include <asm/gpio.h>
Javier Martinez Canillas77eea282012-12-27 01:35:56 +000027#include <asm/arch/omap_gpmc.h>
28#include <asm/io.h>
Enric Balletbo i Serra8a3f6bb2010-10-14 16:54:59 -040029#include <asm/arch/mem.h>
Enric Balletbo i Serraf49d7b62010-11-04 15:34:33 -040030#include <asm/arch/mmc_host_def.h>
Enric Balletbo i Serra8a3f6bb2010-10-14 16:54:59 -040031#include <asm/arch/mux.h>
32#include <asm/arch/sys_proto.h>
33#include <asm/mach-types.h>
Javier Martinez Canillas77eea282012-12-27 01:35:56 +000034#include "igep00x0.h"
Enric Balletbo i Serra8a3f6bb2010-10-14 16:54:59 -040035
John Rigby29565322010-12-20 18:27:51 -070036DECLARE_GLOBAL_DATA_PTR;
37
Javier Martinez Canillas77eea282012-12-27 01:35:56 +000038#if defined(CONFIG_CMD_NET)
Enric Balletbo i Serra8a3f6bb2010-10-14 16:54:59 -040039/* GPMC definitions for LAN9221 chips */
40static const u32 gpmc_lan_config[] = {
Javier Martinez Canillas77eea282012-12-27 01:35:56 +000041 NET_LAN9221_GPMC_CONFIG1,
42 NET_LAN9221_GPMC_CONFIG2,
43 NET_LAN9221_GPMC_CONFIG3,
44 NET_LAN9221_GPMC_CONFIG4,
45 NET_LAN9221_GPMC_CONFIG5,
46 NET_LAN9221_GPMC_CONFIG6,
Enric Balletbo i Serra8a3f6bb2010-10-14 16:54:59 -040047};
Javier Martinez Canillas77eea282012-12-27 01:35:56 +000048#endif
Enric Balletbo i Serra8a3f6bb2010-10-14 16:54:59 -040049
50/*
51 * Routine: board_init
52 * Description: Early hardware init.
53 */
54int board_init(void)
55{
Enric Balletbo i Serra8a3f6bb2010-10-14 16:54:59 -040056 gpmc_init(); /* in SRAM or SDRAM, finish GPMC */
Enric Balletbo i Serra8a3f6bb2010-10-14 16:54:59 -040057 /* boot param addr */
58 gd->bd->bi_boot_params = (OMAP34XX_SDRC_CS0 + 0x100);
59
60 return 0;
61}
62
Javier Martinez Canillas9d4f5422012-12-27 03:36:01 +000063#if defined(CONFIG_SHOW_BOOT_PROGRESS) && !defined(CONFIG_SPL_BUILD)
64void show_boot_progress(int val)
65{
66 if (val < 0) {
67 /* something went wrong */
68 return;
69 }
70
71 if (!gpio_request(IGEP00X0_GPIO_LED, ""))
72 gpio_direction_output(IGEP00X0_GPIO_LED, 1);
73}
74#endif
75
Javier Martinez Canillasd271a612012-07-28 01:19:34 +000076#ifdef CONFIG_SPL_BUILD
77/*
78 * Routine: omap_rev_string
79 * Description: For SPL builds output board rev
80 */
81void omap_rev_string(void)
82{
83}
84
85/*
86 * Routine: get_board_mem_timings
87 * Description: If we use SPL then there is no x-loader nor config header
88 * so we have to setup the DDR timings ourself on both banks.
89 */
Peter Barada8c4445d2012-11-13 07:40:28 +000090void get_board_mem_timings(struct board_sdrc_timings *timings)
Javier Martinez Canillasd271a612012-07-28 01:19:34 +000091{
Peter Barada8c4445d2012-11-13 07:40:28 +000092 timings->mr = MICRON_V_MR_165;
Javier Martinez Canillasd271a612012-07-28 01:19:34 +000093#ifdef CONFIG_BOOT_NAND
Peter Barada8c4445d2012-11-13 07:40:28 +000094 timings->mcfg = MICRON_V_MCFG_200(256 << 20);
95 timings->ctrla = MICRON_V_ACTIMA_200;
96 timings->ctrlb = MICRON_V_ACTIMB_200;
97 timings->rfr_ctrl = SDP_3430_SDRC_RFR_CTRL_200MHz;
Javier Martinez Canillasd271a612012-07-28 01:19:34 +000098#else
99 if (get_cpu_family() == CPU_OMAP34XX) {
Peter Barada8c4445d2012-11-13 07:40:28 +0000100 timings->mcfg = NUMONYX_V_MCFG_165(256 << 20);
101 timings->ctrla = NUMONYX_V_ACTIMA_165;
102 timings->ctrlb = NUMONYX_V_ACTIMB_165;
103 timings->rfr_ctrl = SDP_3430_SDRC_RFR_CTRL_165MHz;
Javier Martinez Canillasd271a612012-07-28 01:19:34 +0000104
105 } else {
Peter Barada8c4445d2012-11-13 07:40:28 +0000106 timings->mcfg = NUMONYX_V_MCFG_200(256 << 20);
107 timings->ctrla = NUMONYX_V_ACTIMA_200;
108 timings->ctrlb = NUMONYX_V_ACTIMB_200;
109 timings->rfr_ctrl = SDP_3430_SDRC_RFR_CTRL_200MHz;
Javier Martinez Canillasd271a612012-07-28 01:19:34 +0000110 }
111#endif
112}
113#endif
114
Javier Martinez Canillas77eea282012-12-27 01:35:56 +0000115#if defined(CONFIG_CMD_NET)
Enric Balletbo i Serra8a3f6bb2010-10-14 16:54:59 -0400116/*
117 * Routine: setup_net_chip
118 * Description: Setting up the configuration GPMC registers specific to the
119 * Ethernet hardware.
120 */
Enric Balletbo i Serra8a3f6bb2010-10-14 16:54:59 -0400121static void setup_net_chip(void)
122{
123 struct ctrl *ctrl_base = (struct ctrl *)OMAP34XX_CTRL_BASE;
124
125 enable_gpmc_cs_config(gpmc_lan_config, &gpmc_cfg->cs[5], 0x2C000000,
126 GPMC_SIZE_16M);
127
128 /* Enable off mode for NWE in PADCONF_GPMC_NWE register */
129 writew(readw(&ctrl_base->gpmc_nwe) | 0x0E00, &ctrl_base->gpmc_nwe);
130 /* Enable off mode for NOE in PADCONF_GPMC_NADV_ALE register */
131 writew(readw(&ctrl_base->gpmc_noe) | 0x0E00, &ctrl_base->gpmc_noe);
132 /* Enable off mode for ALE in PADCONF_GPMC_NADV_ALE register */
133 writew(readw(&ctrl_base->gpmc_nadv_ale) | 0x0E00,
134 &ctrl_base->gpmc_nadv_ale);
135
136 /* Make GPIO 64 as output pin and send a magic pulse through it */
Sanjeev Premi84c3b632011-09-08 10:51:01 -0400137 if (!gpio_request(64, "")) {
138 gpio_direction_output(64, 0);
139 gpio_set_value(64, 1);
Enric Balletbo i Serra8a3f6bb2010-10-14 16:54:59 -0400140 udelay(1);
Sanjeev Premi84c3b632011-09-08 10:51:01 -0400141 gpio_set_value(64, 0);
Enric Balletbo i Serra8a3f6bb2010-10-14 16:54:59 -0400142 udelay(1);
Sanjeev Premi84c3b632011-09-08 10:51:01 -0400143 gpio_set_value(64, 1);
Enric Balletbo i Serra8a3f6bb2010-10-14 16:54:59 -0400144 }
145}
Javier Martinez Canillas77eea282012-12-27 01:35:56 +0000146#else
147static inline void setup_net_chip(void) {}
Enric Balletbo i Serra8a3f6bb2010-10-14 16:54:59 -0400148#endif
149
Javier Martinez Canillasd271a612012-07-28 01:19:34 +0000150#if defined(CONFIG_GENERIC_MMC) && !defined(CONFIG_SPL_BUILD)
Enric Balletbo i Serraf49d7b62010-11-04 15:34:33 -0400151int board_mmc_init(bd_t *bis)
152{
Jonathan Solnitbbbc1ae2012-02-24 11:30:18 +0000153 omap_mmc_init(0, 0, 0);
Enric Balletbo i Serraf49d7b62010-11-04 15:34:33 -0400154 return 0;
155}
156#endif
157
Enric Balletbo i Serra8a3f6bb2010-10-14 16:54:59 -0400158/*
159 * Routine: misc_init_r
160 * Description: Configure board specific parts
161 */
162int misc_init_r(void)
163{
164 twl4030_power_init();
165
Enric Balletbo i Serra8a3f6bb2010-10-14 16:54:59 -0400166 setup_net_chip();
Enric Balletbo i Serra8a3f6bb2010-10-14 16:54:59 -0400167
168 dieid_num_r();
169
170 return 0;
171}
172
173/*
174 * Routine: set_muxconf_regs
175 * Description: Setting up the configuration Mux registers specific to the
176 * hardware. Many pins need to be moved from protect to primary
177 * mode.
178 */
179void set_muxconf_regs(void)
180{
181 MUX_DEFAULT();
Javier Martinez Canillas77eea282012-12-27 01:35:56 +0000182
183#if (CONFIG_MACH_TYPE == MACH_TYPE_IGEP0020)
184 MUX_IGEP0020();
185#endif
186
187#if (CONFIG_MACH_TYPE == MACH_TYPE_IGEP0030)
188 MUX_IGEP0030();
189#endif
Enric Balletbo i Serra8a3f6bb2010-10-14 16:54:59 -0400190}
191
Javier Martinez Canillas77eea282012-12-27 01:35:56 +0000192#if defined(CONFIG_CMD_NET)
Enric Balletbo i Serra8a3f6bb2010-10-14 16:54:59 -0400193int board_eth_init(bd_t *bis)
194{
195 int rc = 0;
196#ifdef CONFIG_SMC911X
197 rc = smc911x_initialize(0, CONFIG_SMC911X_BASE);
198#endif
199 return rc;
200}
Javier Martinez Canillas77eea282012-12-27 01:35:56 +0000201#endif