blob: 915523632e97aacc0eab662f0147c8ce53bb8d25 [file] [log] [blame]
Sughosh Ganu1b9c52b2010-11-30 11:25:01 -05001/*
2 * Modified for Hawkboard - Syed Mohammed Khasim <khasim@beagleboard.org>
3 *
4 * Copyright (C) 2008 Sekhar Nori, Texas Instruments, Inc. <nsekhar@ti.com>
5 * Copyright (C) 2007 Sergey Kubushyn <ksi@koi8.net>
6 * Copyright (C) 2004 Texas Instruments.
7 *
8 * ----------------------------------------------------------------------------
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 * ----------------------------------------------------------------------------
23 */
24
25#include <common.h>
26#include <asm/errno.h>
27#include <asm/arch/hardware.h>
28#include <asm/io.h>
29#include <asm/arch/davinci_misc.h>
30#include <ns16550.h>
Sughosh Ganu1b9c52b2010-11-30 11:25:01 -050031
32DECLARE_GLOBAL_DATA_PTR;
33
34#define pinmux(x) (&davinci_syscfg_regs->pinmux[x])
35
36static const struct pinmux_config mii_pins[] = {
37 { pinmux(2), 8, 1 },
38 { pinmux(2), 8, 2 },
39 { pinmux(2), 8, 3 },
40 { pinmux(2), 8, 4 },
41 { pinmux(2), 8, 5 },
42 { pinmux(2), 8, 6 },
43 { pinmux(2), 8, 7 }
44};
45
46static const struct pinmux_config mdio_pins[] = {
47 { pinmux(4), 8, 0 },
48 { pinmux(4), 8, 1 }
49};
50
51static const struct pinmux_config nand_pins[] = {
52 { pinmux(7), 1, 1 },
53 { pinmux(7), 1, 2 },
54 { pinmux(7), 1, 4 },
55 { pinmux(7), 1, 5 },
56 { pinmux(9), 1, 0 },
57 { pinmux(9), 1, 1 },
58 { pinmux(9), 1, 2 },
59 { pinmux(9), 1, 3 },
60 { pinmux(9), 1, 4 },
61 { pinmux(9), 1, 5 },
62 { pinmux(9), 1, 6 },
63 { pinmux(9), 1, 7 },
64 { pinmux(12), 1, 5 },
65 { pinmux(12), 1, 6 }
66};
67
68static const struct pinmux_config uart2_pins[] = {
69 { pinmux(0), 4, 6 },
70 { pinmux(0), 4, 7 },
71 { pinmux(4), 2, 4 },
72 { pinmux(4), 2, 5 }
73};
74
75static const struct pinmux_config i2c_pins[] = {
76 { pinmux(4), 2, 4 },
77 { pinmux(4), 2, 5 }
78};
79
80static const struct pinmux_resource pinmuxes[] = {
81 PINMUX_ITEM(mii_pins),
82 PINMUX_ITEM(mdio_pins),
83 PINMUX_ITEM(i2c_pins),
84 PINMUX_ITEM(nand_pins),
85 PINMUX_ITEM(uart2_pins),
86};
87
88static const struct lpsc_resource lpsc[] = {
89 { DAVINCI_LPSC_AEMIF }, /* NAND, NOR */
90 { DAVINCI_LPSC_SPI1 }, /* Serial Flash */
91 { DAVINCI_LPSC_EMAC }, /* image download */
92 { DAVINCI_LPSC_UART2 }, /* console */
93 { DAVINCI_LPSC_GPIO },
94};
95
96void board_init_f(ulong bootflag)
97{
98 /*
99 * Kick Registers need to be set to allow access to Pin Mux registers
100 */
101 writel(HAWKBOARD_KICK0_UNLOCK, &davinci_syscfg_regs->kick0);
102 writel(HAWKBOARD_KICK1_UNLOCK, &davinci_syscfg_regs->kick1);
103
104 /* setup the SUSPSRC for ARM to control emulation suspend */
105 writel(readl(&davinci_syscfg_regs->suspsrc) &
106 ~(DAVINCI_SYSCFG_SUSPSRC_EMAC | DAVINCI_SYSCFG_SUSPSRC_I2C |
107 DAVINCI_SYSCFG_SUSPSRC_SPI1 | DAVINCI_SYSCFG_SUSPSRC_TIMER0 |
108 DAVINCI_SYSCFG_SUSPSRC_UART2), &davinci_syscfg_regs->suspsrc);
109
110 /* Power on required peripherals
111 * ARM does not have acess by default to PSC0 and PSC1
112 * assuming here that the DSP bootloader has set the IOPU
113 * such that PSC access is available to ARM
114 */
115 da8xx_configure_lpsc_items(lpsc, ARRAY_SIZE(lpsc));
116
117 /* configure pinmux settings */
118 davinci_configure_pin_mux_items(pinmuxes,
119 ARRAY_SIZE(pinmuxes));
120
121 writel(readl(&davinci_uart2_ctrl_regs->pwremu_mgmt) |
122 (DAVINCI_UART_PWREMU_MGMT_FREE) |
123 (DAVINCI_UART_PWREMU_MGMT_URRST) |
124 (DAVINCI_UART_PWREMU_MGMT_UTRST),
125 &davinci_uart2_ctrl_regs->pwremu_mgmt);
126
127 NS16550_init((NS16550_t)(DAVINCI_UART2_BASE),
128 CONFIG_SYS_NS16550_CLK / 16 / CONFIG_BAUDRATE);
129
130 puts("Nand boot...\n");
131
132 nand_boot();
133}
134
135void puts(const char *str)
136{
137 while (*str)
138 putc(*str++);
139}
140
141void putc(char c)
142{
143 if (gd->flags & GD_FLG_SILENT)
144 return;
145
146 if (c == '\n')
147 NS16550_putc((NS16550_t)(DAVINCI_UART2_BASE), '\r');
148
149 NS16550_putc((NS16550_t)(DAVINCI_UART2_BASE), c);
150}
151
152void hang(void)
153{
154 puts("### ERROR ### Please RESET the board ###\n");
155 for (;;)
156 ;
157}