blob: 64e5215f36446ebe7fac5b4ce59c1c32cae0876c [file] [log] [blame]
Michael Schwingenbc243452008-01-16 19:51:55 +01001/*
2 * (C) Copyright 2007
3 * Michael Schwingen, michael@schwingen.org
4 *
5 * (C) Copyright 2006
6 * Stefan Roese, DENX Software Engineering, sr@denx.de.
7 *
8 * (C) Copyright 2002
9 * Kyle Harris, Nexus Technologies, Inc. kharris@nexus-tech.net
10 *
11 * (C) Copyright 2002
12 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
13 * Marius Groeger <mgroeger@sysgo.de>
14 *
15 * See file CREDITS for list of people who contributed to this
16 * project.
17 *
18 * This program is free software; you can redistribute it and/or
19 * modify it under the terms of the GNU General Public License as
20 * published by the Free Software Foundation; either version 2 of
21 * the License, or (at your option) any later version.
22 *
23 * This program is distributed in the hope that it will be useful,
24 * but WITHOUT ANY WARRANTY; without even the implied warranty of
25 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 * GNU General Public License for more details.
27 *
28 * You should have received a copy of the GNU General Public License
29 * along with this program; if not, write to the Free Software
30 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
31 * MA 02111-1307 USA
32 */
33
34#include <common.h>
35#include <command.h>
36#include <malloc.h>
37#include <asm/arch/ixp425.h>
38#include <asm/io.h>
Michael Schwingenbc243452008-01-16 19:51:55 +010039#include <miiphy.h>
Michael Schwingenbc243452008-01-16 19:51:55 +010040#include "actux3_hw.h"
41
42DECLARE_GLOBAL_DATA_PTR;
43
Michael Schwingen8b5ab4c2011-05-23 00:00:06 +020044int board_early_init_f(void)
45{
46 /* CS1: IPAC-X */
47 writel(0x94d10013, IXP425_EXP_CS1);
48 /* CS5: Debug port */
49 writel(0x9d520003, IXP425_EXP_CS5);
50 /* CS6: Release/Option register */
51 writel(0x81860001, IXP425_EXP_CS6);
52 /* CS7: LEDs */
53 writel(0x80900003, IXP425_EXP_CS7);
54
55 return 0;
56}
57
58int board_init(void)
Michael Schwingenbc243452008-01-16 19:51:55 +010059{
60 gd->bd->bi_arch_number = MACH_TYPE_ACTUX3;
61
62 /* adress of boot parameters */
63 gd->bd->bi_boot_params = 0x00000100;
64
Michael Schwingen8b5ab4c2011-05-23 00:00:06 +020065 GPIO_OUTPUT_ENABLE(CONFIG_SYS_GPIO_IORST);
66 GPIO_OUTPUT_ENABLE(CONFIG_SYS_GPIO_ETHRST);
67 GPIO_OUTPUT_ENABLE(CONFIG_SYS_GPIO_DSR);
68 GPIO_OUTPUT_ENABLE(CONFIG_SYS_GPIO_DCD);
69 GPIO_OUTPUT_ENABLE(CONFIG_SYS_GPIO_LED5_GN);
70 GPIO_OUTPUT_ENABLE(CONFIG_SYS_GPIO_LED6_RT);
71 GPIO_OUTPUT_ENABLE(CONFIG_SYS_GPIO_LED6_GN);
Michael Schwingenbc243452008-01-16 19:51:55 +010072
Michael Schwingen8b5ab4c2011-05-23 00:00:06 +020073 GPIO_OUTPUT_CLEAR(CONFIG_SYS_GPIO_IORST);
74 GPIO_OUTPUT_CLEAR(CONFIG_SYS_GPIO_ETHRST);
Michael Schwingenbc243452008-01-16 19:51:55 +010075
Michael Schwingen8b5ab4c2011-05-23 00:00:06 +020076 GPIO_OUTPUT_CLEAR(CONFIG_SYS_GPIO_DSR);
77 GPIO_OUTPUT_SET(CONFIG_SYS_GPIO_DCD);
Michael Schwingenbc243452008-01-16 19:51:55 +010078
Michael Schwingen8b5ab4c2011-05-23 00:00:06 +020079 GPIO_OUTPUT_CLEAR(CONFIG_SYS_GPIO_LED5_GN);
80 GPIO_OUTPUT_CLEAR(CONFIG_SYS_GPIO_LED6_RT);
81 GPIO_OUTPUT_CLEAR(CONFIG_SYS_GPIO_LED6_GN);
Michael Schwingenbc243452008-01-16 19:51:55 +010082
83 /*
84 * Setup GPIO's for Interrupt inputs
85 */
Michael Schwingen8b5ab4c2011-05-23 00:00:06 +020086 GPIO_OUTPUT_DISABLE(CONFIG_SYS_GPIO_DBGINT);
87 GPIO_OUTPUT_DISABLE(CONFIG_SYS_GPIO_ETHINT);
Michael Schwingenbc243452008-01-16 19:51:55 +010088
89 /*
90 * Setup GPIO's for 33MHz clock output
91 */
Michael Schwingen8b5ab4c2011-05-23 00:00:06 +020092 GPIO_OUTPUT_ENABLE(CONFIG_SYS_GPIO_PCI_CLK);
93 GPIO_OUTPUT_ENABLE(CONFIG_SYS_GPIO_EXTBUS_CLK);
94 writel(0x011001FF, IXP425_GPIO_GPCLKR);
Michael Schwingenbc243452008-01-16 19:51:55 +010095
Michael Schwingen8b5ab4c2011-05-23 00:00:06 +020096 /* we need a minimum PCI reset pulse width after enabling the clock */
97 udelay(533);
98 GPIO_OUTPUT_SET(CONFIG_SYS_GPIO_IORST);
99 GPIO_OUTPUT_SET(CONFIG_SYS_GPIO_ETHRST);
Michael Schwingenbc243452008-01-16 19:51:55 +0100100
Michael Schwingen8b5ab4c2011-05-23 00:00:06 +0200101 ACTUX3_LED1_RT(1);
102 ACTUX3_LED1_GN(0);
103 ACTUX3_LED2_RT(0);
104 ACTUX3_LED2_GN(0);
105 ACTUX3_LED3_RT(0);
106 ACTUX3_LED3_GN(0);
107 ACTUX3_LED4_GN(0);
108 ACTUX3_LED5_RT(0);
Michael Schwingenbc243452008-01-16 19:51:55 +0100109
110 return 0;
111}
112
113/*
114 * Check Board Identity
115 */
Michael Schwingen8b5ab4c2011-05-23 00:00:06 +0200116int checkboard(void)
Michael Schwingenbc243452008-01-16 19:51:55 +0100117{
Wolfgang Denkf0c0b3a2011-05-04 10:32:28 +0000118 char buf[64];
119 int i = getenv_f("serial#", buf, sizeof(buf));
Michael Schwingenbc243452008-01-16 19:51:55 +0100120
Michael Schwingen8b5ab4c2011-05-23 00:00:06 +0200121 puts("Board: AcTux-3 rev.");
122 putc(ACTUX3_BOARDREL + 'A' - 1);
Michael Schwingenbc243452008-01-16 19:51:55 +0100123
Wolfgang Denkf0c0b3a2011-05-04 10:32:28 +0000124 if (i > 0) {
Michael Schwingenbc243452008-01-16 19:51:55 +0100125 puts (", serial# ");
Wolfgang Denkf0c0b3a2011-05-04 10:32:28 +0000126 puts (buf);
Michael Schwingenbc243452008-01-16 19:51:55 +0100127 }
Michael Schwingen8b5ab4c2011-05-23 00:00:06 +0200128 putc('\n');
Michael Schwingenbc243452008-01-16 19:51:55 +0100129
Michael Schwingen8b5ab4c2011-05-23 00:00:06 +0200130 return 0;
Michael Schwingenbc243452008-01-16 19:51:55 +0100131}
132
133/*************************************************************************
134 * get_board_rev() - setup to pass kernel board revision information
135 * 0 = reserved
136 * 1 = Rev. A
137 * 2 = Rev. B
138 *************************************************************************/
Michael Schwingen8b5ab4c2011-05-23 00:00:06 +0200139u32 get_board_rev(void)
Michael Schwingenbc243452008-01-16 19:51:55 +0100140{
141 return ACTUX3_BOARDREL;
142}
143
Michael Schwingen8b5ab4c2011-05-23 00:00:06 +0200144int dram_init(void)
Michael Schwingenbc243452008-01-16 19:51:55 +0100145{
Michael Schwingen8b5ab4c2011-05-23 00:00:06 +0200146 gd->ram_size = get_ram_size(CONFIG_SYS_SDRAM_BASE, 128<<20);
147 return 0;
Michael Schwingenbc243452008-01-16 19:51:55 +0100148}
149
Michael Schwingen8b5ab4c2011-05-23 00:00:06 +0200150void reset_phy(void)
Michael Schwingenbc243452008-01-16 19:51:55 +0100151{
152 int i;
153
154 /* initialize the PHY */
Michael Schwingen8b5ab4c2011-05-23 00:00:06 +0200155 miiphy_reset("NPE0", CONFIG_PHY_ADDR);
Michael Schwingenbc243452008-01-16 19:51:55 +0100156
157 /* all LED outputs = Link/Act */
Michael Schwingen8b5ab4c2011-05-23 00:00:06 +0200158 miiphy_write("NPE0", CONFIG_PHY_ADDR, 0x16, 0x0AAA);
Michael Schwingenbc243452008-01-16 19:51:55 +0100159
160 /*
161 * The Marvell 88E6060 switch comes up with all ports disabled.
162 * set all ethernet switch ports to forwarding state
163 */
164 for (i = 1; i <= 5; i++)
Michael Schwingen8b5ab4c2011-05-23 00:00:06 +0200165 miiphy_write("NPE0", CONFIG_PHY_ADDR + 8 + i, 0x04, 0x03);
Michael Schwingenbc243452008-01-16 19:51:55 +0100166
167}