blob: e0d763780e523c2942f79be1a32f7a5ba2d380c5 [file] [log] [blame]
wdenk2d5b5612003-10-14 19:43:55 +00001/*
Wolfgang Denkba94a1b2006-05-30 15:56:48 +02002 * (C) Copyright 2006
3 * Stefan Roese, DENX Software Engineering, sr@denx.de.
4 *
wdenk2d5b5612003-10-14 19:43:55 +00005 * (C) Copyright 2002
6 * Kyle Harris, Nexus Technologies, Inc. kharris@nexus-tech.net
7 *
8 * (C) Copyright 2002
9 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
10 * Marius Groeger <mgroeger@sysgo.de>
11 *
12 * See file CREDITS for list of people who contributed to this
13 * project.
14 *
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License as
17 * published by the Free Software Foundation; either version 2 of
18 * the License, or (at your option) any later version.
19 *
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
24 *
25 * You should have received a copy of the GNU General Public License
26 * along with this program; if not, write to the Free Software
27 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
28 * MA 02111-1307 USA
29 */
30
wdenk2d5b5612003-10-14 19:43:55 +000031#include <common.h>
Wolfgang Denkba94a1b2006-05-30 15:56:48 +020032#include <command.h>
33#include <malloc.h>
34#include <asm/arch/ixp425.h>
wdenk2d5b5612003-10-14 19:43:55 +000035
Wolfgang Denkd87080b2006-03-31 18:32:53 +020036DECLARE_GLOBAL_DATA_PTR;
wdenk2d5b5612003-10-14 19:43:55 +000037
38/*
39 * Miscelaneous platform dependent initialisations
40 */
wdenk289f9322005-01-12 00:15:14 +000041int board_init (void)
wdenk2d5b5612003-10-14 19:43:55 +000042{
wdenk2d5b5612003-10-14 19:43:55 +000043 /* arch number of IXDP */
wdenk731215e2004-10-10 18:41:04 +000044 gd->bd->bi_arch_number = MACH_TYPE_IXDP425;
wdenk2d5b5612003-10-14 19:43:55 +000045
46 /* adress of boot parameters */
47 gd->bd->bi_boot_params = 0x00000100;
48
Wolfgang Denkba94a1b2006-05-30 15:56:48 +020049#ifdef CONFIG_IXDPG425
50 /* arch number of IXDP */
51 gd->bd->bi_arch_number = MACH_TYPE_IXDPG425;
52
53 /*
54 * Get realtek RTL8305 switch and SLIC out of reset
55 */
56 GPIO_OUTPUT_SET(CFG_GPIO_SWITCH_RESET_N);
57 GPIO_OUTPUT_ENABLE(CFG_GPIO_SWITCH_RESET_N);
58 GPIO_OUTPUT_SET(CFG_GPIO_SLIC_RESET_N);
59 GPIO_OUTPUT_ENABLE(CFG_GPIO_SLIC_RESET_N);
60
61 /*
62 * Setup GPIO's for PCI INTA & INTB
63 */
64 GPIO_OUTPUT_DISABLE(CFG_GPIO_PCI_INTA_N);
65 GPIO_INT_ACT_LOW_SET(CFG_GPIO_PCI_INTA_N);
66 GPIO_OUTPUT_DISABLE(CFG_GPIO_PCI_INTB_N);
67 GPIO_INT_ACT_LOW_SET(CFG_GPIO_PCI_INTB_N);
68
69 /*
70 * Setup GPIO's for 33MHz clock output
71 */
72 *IXP425_GPIO_GPCLKR = 0x01FF01FF;
73 GPIO_OUTPUT_ENABLE(CFG_GPIO_PCI_CLK);
74 GPIO_OUTPUT_ENABLE(CFG_GPIO_EXTBUS_CLK);
75#endif
76
wdenk2d5b5612003-10-14 19:43:55 +000077 return 0;
78}
79
Wolfgang Denkba94a1b2006-05-30 15:56:48 +020080/*
81 * Check Board Identity
82 */
83int checkboard(void)
84{
85 char *s = getenv("serial#");
86
87#ifdef CONFIG_IXDPG425
88 puts("Board: IXDPG425 - Intel Network Gateway Reference Platform");
89#else
90 puts("Board: IXDP425 - Intel Development Platform");
91#endif
92
93 if (s != NULL) {
94 puts(", serial# ");
95 puts(s);
96 }
97 putc('\n');
98
99 return (0);
100}
wdenk289f9322005-01-12 00:15:14 +0000101
102int dram_init (void)
wdenk2d5b5612003-10-14 19:43:55 +0000103{
wdenk2d5b5612003-10-14 19:43:55 +0000104 gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
105 gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
106
107 return (0);
108}
wdenk289f9322005-01-12 00:15:14 +0000109
Jon Loeligerc508a4c2007-07-09 18:31:28 -0500110#if defined(CONFIG_CMD_PCI) || defined(CONFIG_PCI)
wdenka1191902005-01-09 17:12:27 +0000111extern struct pci_controller hose;
Wolfgang Denk3706ba12005-09-25 00:00:45 +0200112extern void pci_ixp_init(struct pci_controller * hose);
wdenk289f9322005-01-12 00:15:14 +0000113
wdenka1191902005-01-09 17:12:27 +0000114void pci_init_board(void)
115{
wdenk289f9322005-01-12 00:15:14 +0000116 extern void pci_ixp_init (struct pci_controller *hose);
117
wdenka1191902005-01-09 17:12:27 +0000118 pci_ixp_init(&hose);
wdenka1191902005-01-09 17:12:27 +0000119}
Wolfgang Denkba94a1b2006-05-30 15:56:48 +0200120#endif