blob: 21964c24055420680ea6a509af9431be0b91f8ce [file] [log] [blame]
Tom Rix376aee72009-05-15 23:48:36 +02001/*
2 * Copyright (c) 2009 Wind River Systems, Inc.
3 * Tom Rix <Tom.Rix@windriver.com>
4 *
5 * Derived from Zoom1 code by
6 * Nishanth Menon <nm@ti.com>
7 * Sunil Kumar <sunilsaini05@gmail.com>
8 * Shashi Ranjan <shashiranjanmca05@gmail.com>
9 * Richard Woodruff <r-woodruff2@ti.com>
10 * Syed Mohammed Khasim <khasim@ti.com>
11 *
12 *
13 * See file CREDITS for list of people who contributed to this
14 * project.
15 *
16 * This program is free software; you can redistribute it and/or
17 * modify it under the terms of the GNU General Public License as
18 * published by the Free Software Foundation; either version 2 of
19 * the License, or (at your option) any later version.
20 *
21 * This program is distributed in the hope that it will be useful,
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 * GNU General Public License for more details.
25 *
26 * You should have received a copy of the GNU General Public License
27 * along with this program; if not, write to the Free Software
28 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
29 * MA 02111-1307 USA
30 */
31#include <common.h>
Ben Warren1ab70f62009-12-14 16:30:39 -080032#include <netdev.h>
Tom Rix83ae6982009-05-31 12:44:39 +020033#ifdef CONFIG_STATUS_LED
34#include <status_led.h>
35#endif
Tom Rixcd782632009-06-28 12:52:29 -050036#include <twl4030.h>
Tom Rix376aee72009-05-15 23:48:36 +020037#include <asm/io.h>
Tom Rinicfc43842011-09-03 21:51:00 -040038#include <asm/arch/mmc_host_def.h>
Sanjeev Premi84c3b632011-09-08 10:51:01 -040039#include <asm/gpio.h>
Tom Rix660888b2009-05-31 12:44:37 +020040#include <asm/arch/mem.h>
Tom Rix376aee72009-05-15 23:48:36 +020041#include <asm/arch/mux.h>
42#include <asm/arch/sys_proto.h>
43#include <asm/mach-types.h>
44#include "zoom2.h"
Tom Rix660888b2009-05-31 12:44:37 +020045#include "zoom2_serial.h"
46
John Rigby29565322010-12-20 18:27:51 -070047DECLARE_GLOBAL_DATA_PTR;
48
Tom Rix660888b2009-05-31 12:44:37 +020049/*
50 * This the the zoom2, board specific, gpmc configuration for the
51 * quad uart on the debug board. The more general gpmc configurations
Steve Sakomanf56348a2010-06-17 21:50:01 -070052 * are setup at the cpu level in arch/arm/cpu/armv7/omap3/mem.c
Tom Rix660888b2009-05-31 12:44:37 +020053 *
54 * The details of the setting of the serial gpmc setup are not available.
55 * The values were provided by another party.
56 */
Tom Rix660888b2009-05-31 12:44:37 +020057static u32 gpmc_serial_TL16CP754C[GPMC_MAX_REG] = {
58 0x00011000,
59 0x001F1F01,
60 0x00080803,
61 0x1D091D09,
62 0x041D1F1F,
63 0x1D0904C4, 0
64};
Tom Rix376aee72009-05-15 23:48:36 +020065
Tom Rixa30f5192009-06-02 20:53:56 -050066/* Used to track the revision of the board */
67static zoom2_revision revision = ZOOM2_REVISION_UNKNOWN;
68
69/*
70 * Routine: zoom2_get_revision
71 * Description: Return the revision of the Zoom2 this code is running on.
72 */
73zoom2_revision zoom2_get_revision(void)
74{
75 return revision;
76}
77
78/*
79 * Routine: zoom2_identify
80 * Description: Detect which version of Zoom2 we are running on.
81 */
82void zoom2_identify(void)
83{
84 /*
85 * To check for production board vs beta board,
86 * check if gpio 94 is clear.
87 *
88 * No way yet to check for alpha board identity.
89 * Alpha boards were produced in very limited quantities
90 * and they are not commonly used. They are mentioned here
91 * only for completeness.
92 */
Sanjeev Premi84c3b632011-09-08 10:51:01 -040093 if (!gpio_request(94, "")) {
Tom Rixa30f5192009-06-02 20:53:56 -050094 unsigned int val;
95
Sanjeev Premi84c3b632011-09-08 10:51:01 -040096 gpio_direction_input(94);
97 val = gpio_get_value(94);
98 gpio_free(94);
Tom Rixa30f5192009-06-02 20:53:56 -050099
100 if (val)
101 revision = ZOOM2_REVISION_BETA;
102 else
103 revision = ZOOM2_REVISION_PRODUCTION;
104 }
105
106 printf("Board revision ");
107 switch (revision) {
108 case ZOOM2_REVISION_PRODUCTION:
109 printf("Production\n");
110 break;
111 case ZOOM2_REVISION_BETA:
112 printf("Beta\n");
113 break;
114 default:
115 printf("Unknown\n");
116 break;
117 }
118}
119
Tom Rix376aee72009-05-15 23:48:36 +0200120/*
121 * Routine: board_init
122 * Description: Early hardware init.
123 */
124int board_init (void)
125{
Tom Rix660888b2009-05-31 12:44:37 +0200126 u32 *gpmc_config;
Tom Rix376aee72009-05-15 23:48:36 +0200127
128 gpmc_init (); /* in SRAM or SDRAM, finish GPMC */
Tom Rix660888b2009-05-31 12:44:37 +0200129
130 /* Configure console support on zoom2 */
131 gpmc_config = gpmc_serial_TL16CP754C;
Tom Rix96a27c62009-10-12 12:07:40 -0400132 enable_gpmc_cs_config(gpmc_config, &gpmc_cfg->cs[3],
Matthias Ludwig187af952009-05-19 09:09:31 +0200133 SERIAL_TL16CP754C_BASE, GPMC_SIZE_16M);
Tom Rix660888b2009-05-31 12:44:37 +0200134
Tom Rix376aee72009-05-15 23:48:36 +0200135 /* board id for Linux */
136 gd->bd->bi_arch_number = MACH_TYPE_OMAP_ZOOM2;
137 /* boot param addr */
138 gd->bd->bi_boot_params = (OMAP34XX_SDRC_CS0 + 0x100);
139
Tom Rix660888b2009-05-31 12:44:37 +0200140#if defined(CONFIG_STATUS_LED) && defined(STATUS_LED_BOOT)
141 status_led_set (STATUS_LED_BOOT, STATUS_LED_ON);
142#endif
Tom Rix376aee72009-05-15 23:48:36 +0200143 return 0;
144}
145
146/*
147 * Routine: misc_init_r
148 * Description: Configure zoom board specific configurations
149 */
Tom Rixa30f5192009-06-02 20:53:56 -0500150int misc_init_r(void)
Tom Rix376aee72009-05-15 23:48:36 +0200151{
Tom Rixa30f5192009-06-02 20:53:56 -0500152 zoom2_identify();
Tom Rix2c155132009-06-28 12:52:30 -0500153 twl4030_power_init();
Grazvydas Ignotasead39d72009-12-10 17:10:21 +0200154 twl4030_led_init(TWL4030_LED_LEDEN_LEDAON | TWL4030_LED_LEDEN_LEDBON);
Tom Rixa30f5192009-06-02 20:53:56 -0500155 dieid_num_r();
Tom Rixcd782632009-06-28 12:52:29 -0500156
157 /*
158 * Board Reset
159 * The board is reset by holding the the large button
160 * on the top right side of the main board for
161 * eight seconds.
162 *
163 * There are reported problems of some beta boards
164 * continously resetting. For those boards, disable resetting.
165 */
166 if (ZOOM2_REVISION_PRODUCTION <= zoom2_get_revision())
167 twl4030_power_reset_init();
168
Tom Rix376aee72009-05-15 23:48:36 +0200169 return 0;
170}
171
172/*
173 * Routine: set_muxconf_regs
174 * Description: Setting up the configuration Mux registers specific to the
175 * hardware. Many pins need to be moved from protect to primary
176 * mode.
177 */
178void set_muxconf_regs (void)
179{
180 /* platform specific muxes */
181 MUX_ZOOM2 ();
182}
Ben Warren1ab70f62009-12-14 16:30:39 -0800183
Tom Rinicfc43842011-09-03 21:51:00 -0400184#ifdef CONFIG_GENERIC_MMC
185int board_mmc_init(bd_t *bis)
186{
187 omap_mmc_init(0);
188 return 0;
189}
190#endif
191
Ben Warren1ab70f62009-12-14 16:30:39 -0800192#ifdef CONFIG_CMD_NET
193int board_eth_init(bd_t *bis)
194{
195 int rc = 0;
196#ifdef CONFIG_LAN91C96
197 rc = lan91c96_initialize(0, CONFIG_LAN91C96_BASE);
198#endif
199 return rc;
200}
201#endif