blob: d268e1870d2ea88d13754e9f65bf6bd8ee41377f [file] [log] [blame]
Dirk Behme2781f802009-01-27 18:19:12 +01001/*
2 * (C) Copyright 2004-2008
3 * Texas Instruments, <www.ti.com>
4 *
5 * Author :
6 * Sunil Kumar <sunilsaini05@gmail.com>
7 * Shashi Ranjan <shashiranjanmca05@gmail.com>
8 *
9 * Derived from Beagle Board and 3430 SDP code by
10 * Richard Woodruff <r-woodruff2@ti.com>
11 * Syed Mohammed Khasim <khasim@ti.com>
12 *
13 *
14 * See file CREDITS for list of people who contributed to this
15 * project.
16 *
17 * This program is free software; you can redistribute it and/or
18 * modify it under the terms of the GNU General Public License as
19 * published by the Free Software Foundation; either version 2 of
20 * the License, or (at your option) any later version.
21 *
22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU General Public License for more details.
26 *
27 * You should have received a copy of the GNU General Public License
28 * along with this program; if not, write to the Free Software
29 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
30 * MA 02111-1307 USA
31 */
32#include <common.h>
33#include <asm/io.h>
34#include <asm/arch/mux.h>
35#include <asm/arch/sys_proto.h>
Tom Rix70d05412009-06-03 01:53:57 -050036#include <asm/arch/gpio.h>
Dirk Behme2781f802009-01-27 18:19:12 +010037#include <asm/mach-types.h>
38#include "beagle.h"
39
Dirk Behme78716112009-02-12 18:55:41 +010040static int beagle_revision_c;
41
Tom Rix558bb832009-04-01 22:02:20 -050042/*
Dirk Behme2781f802009-01-27 18:19:12 +010043 * Routine: board_init
44 * Description: Early hardware init.
Tom Rix558bb832009-04-01 22:02:20 -050045 */
Dirk Behme2781f802009-01-27 18:19:12 +010046int board_init(void)
47{
48 DECLARE_GLOBAL_DATA_PTR;
49
50 gpmc_init(); /* in SRAM or SDRAM, finish GPMC */
51 /* board id for Linux */
52 gd->bd->bi_arch_number = MACH_TYPE_OMAP3_BEAGLE;
53 /* boot param addr */
54 gd->bd->bi_boot_params = (OMAP34XX_SDRC_CS0 + 0x100);
55
56 return 0;
57}
58
Tom Rix558bb832009-04-01 22:02:20 -050059/*
Dirk Behme78716112009-02-12 18:55:41 +010060 * Routine: beagle_get_revision
Tom Rix70d05412009-06-03 01:53:57 -050061 * Description: Return the revision of the BeagleBoard this code is running on.
Dirk Behme78716112009-02-12 18:55:41 +010062 * If it is a revision Ax/Bx board, this function returns 0,
63 * on a revision C board you will get a 1.
Tom Rix558bb832009-04-01 22:02:20 -050064 */
Dirk Behme78716112009-02-12 18:55:41 +010065int beagle_get_revision(void)
66{
67 return beagle_revision_c;
68}
69
Tom Rix558bb832009-04-01 22:02:20 -050070/*
Dirk Behme78716112009-02-12 18:55:41 +010071 * Routine: beagle_identify
72 * Description: Detect if we are running on a Beagle revision Ax/Bx or
73 * Cx. This can be done by GPIO_171. If this is low, we are
74 * running on a revision C board.
Tom Rix558bb832009-04-01 22:02:20 -050075 */
Dirk Behme78716112009-02-12 18:55:41 +010076void beagle_identify(void)
77{
Tom Rix70d05412009-06-03 01:53:57 -050078 beagle_revision_c = 0;
79 if (!omap_request_gpio(171)) {
80 unsigned int val;
Dirk Behme78716112009-02-12 18:55:41 +010081
Tom Rix70d05412009-06-03 01:53:57 -050082 omap_set_gpio_direction(171, 1);
83 val = omap_get_gpio_datain(171);
84 omap_free_gpio(171);
Dirk Behme78716112009-02-12 18:55:41 +010085
Tom Rix70d05412009-06-03 01:53:57 -050086 if (val)
87 beagle_revision_c = 0;
88 else
89 beagle_revision_c = 1;
90 }
Dirk Behme78716112009-02-12 18:55:41 +010091
92 printf("Board revision ");
Tom Rix70d05412009-06-03 01:53:57 -050093 if (beagle_revision_c)
Dirk Behme78716112009-02-12 18:55:41 +010094 printf("C\n");
Tom Rix70d05412009-06-03 01:53:57 -050095 else
96 printf("Ax/Bx\n");
Dirk Behme78716112009-02-12 18:55:41 +010097}
98
Tom Rix558bb832009-04-01 22:02:20 -050099/*
Dirk Behme2781f802009-01-27 18:19:12 +0100100 * Routine: misc_init_r
101 * Description: Configure board specific parts
Tom Rix558bb832009-04-01 22:02:20 -0500102 */
Dirk Behme2781f802009-01-27 18:19:12 +0100103int misc_init_r(void)
104{
105 gpio_t *gpio5_base = (gpio_t *)OMAP34XX_GPIO5_BASE;
106 gpio_t *gpio6_base = (gpio_t *)OMAP34XX_GPIO6_BASE;
107
108 power_init_r();
109
110 /* Configure GPIOs to output */
111 writel(~(GPIO23 | GPIO10 | GPIO8 | GPIO2 | GPIO1), &gpio6_base->oe);
112 writel(~(GPIO31 | GPIO30 | GPIO29 | GPIO28 | GPIO22 | GPIO21 |
113 GPIO15 | GPIO14 | GPIO13 | GPIO12), &gpio5_base->oe);
114
115 /* Set GPIOs */
116 writel(GPIO23 | GPIO10 | GPIO8 | GPIO2 | GPIO1,
117 &gpio6_base->setdataout);
118 writel(GPIO31 | GPIO30 | GPIO29 | GPIO28 | GPIO22 | GPIO21 |
119 GPIO15 | GPIO14 | GPIO13 | GPIO12, &gpio5_base->setdataout);
120
Dirk Behme78716112009-02-12 18:55:41 +0100121 beagle_identify();
122
Dirk Behme12dbcf62009-03-12 19:30:50 +0100123 dieid_num_r();
124
Dirk Behme2781f802009-01-27 18:19:12 +0100125 return 0;
126}
127
Tom Rix558bb832009-04-01 22:02:20 -0500128/*
Dirk Behme2781f802009-01-27 18:19:12 +0100129 * Routine: set_muxconf_regs
130 * Description: Setting up the configuration Mux registers specific to the
131 * hardware. Many pins need to be moved from protect to primary
132 * mode.
Tom Rix558bb832009-04-01 22:02:20 -0500133 */
Dirk Behme2781f802009-01-27 18:19:12 +0100134void set_muxconf_regs(void)
135{
136 MUX_BEAGLE();
Dirk Behmed76070b2009-04-17 14:27:56 +0200137
138 if (beagle_revision_c) {
139 MUX_BEAGLE_C();
140 }
Dirk Behme2781f802009-01-27 18:19:12 +0100141}