blob: a76b338f5519772fde625510eeaf37bbae1a8647 [file] [log] [blame]
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +02001/*
2 * (C) Copyright 2005 2N TELEKOMUNIKACE, Ladislav Michl
3 *
4 * See file CREDITS for list of people who contributed to this
5 * project.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of
10 * the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
20 * MA 02111-1307 USA
21 */
22
23#include <common.h>
Ladislav Michl71f7bd32009-03-25 23:43:50 +010024#include <flash.h>
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +020025
Wolfgang Denkd87080b2006-03-31 18:32:53 +020026DECLARE_GLOBAL_DATA_PTR;
27
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +020028int board_init(void)
29{
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +020030 /* arch number of NetStar board */
Stefan Roese12655812006-10-28 17:12:58 +020031 gd->bd->bi_arch_number = MACH_TYPE_NETSTAR;
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +020032
33 /* adress of boot parameters */
34 gd->bd->bi_boot_params = 0x10000100;
35
36 return 0;
37}
38
39int dram_init(void)
40{
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +020041 gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
42 gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
43
44 /* Take the Ethernet controller out of reset and wait
45 * for the EEPROM load to complete. */
46 *((volatile unsigned short *) GPIO_DATA_OUTPUT_REG) |= 0x80;
47 udelay(10); /* doesn't work before interrupt_init call */
48 *((volatile unsigned short *) GPIO_DATA_OUTPUT_REG) &= ~0x80;
49 udelay(500);
50
51 return 0;
52}
53
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +020054int misc_init_r(void)
55{
56 return 0;
57}
58
Wolfgang Denkac7eb8a2005-09-14 23:53:32 +020059int board_late_init(void)
60{
61 return 0;
62}
Ladislav Michl71f7bd32009-03-25 23:43:50 +010063
64#if defined(CONFIG_CMD_FLASH)
65ulong board_flash_get_legacy(ulong base, int banknum, flash_info_t * info)
66{
67 if (banknum == 0) { /* AM29LV800 boot flash */
68 info->portwidth = FLASH_CFI_16BIT;
69 info->chipwidth = FLASH_CFI_BY16;
70 info->interface = FLASH_CFI_X16;
71 return 1;
72 }
73
74 return 0;
75}
76#endif