blob: 03ccd936b43ec8de246ae374753b50938ba45285 [file] [log] [blame]
Michael Schwingenea99e8f2008-01-16 19:50:37 +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 *
Wolfgang Denk1a459662013-07-08 09:37:19 +020015 * SPDX-License-Identifier: GPL-2.0+
Michael Schwingenea99e8f2008-01-16 19:50:37 +010016 */
17
18#include <common.h>
19#include <command.h>
20#include <malloc.h>
21#include <asm/arch/ixp425.h>
22#include <asm/io.h>
23#include <miiphy.h>
Michael Schwingen517c5df2011-05-23 00:00:04 +020024#ifdef CONFIG_PCI
25#include <pci.h>
26#include <asm/arch/ixp425pci.h>
27#endif
Michael Schwingenea99e8f2008-01-16 19:50:37 +010028
29#include "actux1_hw.h"
30
31DECLARE_GLOBAL_DATA_PTR;
32
Michael Schwingen517c5df2011-05-23 00:00:04 +020033int board_early_init_f(void)
34{
35 /* CS5: Debug port */
36 writel(0x9d520003, IXP425_EXP_CS5);
37 /* CS6: HwRel */
38 writel(0x81860001, IXP425_EXP_CS6);
39 /* CS7: LEDs */
40 writel(0x80900003, IXP425_EXP_CS7);
41 return 0;
42}
43
44int board_init(void)
Michael Schwingenea99e8f2008-01-16 19:50:37 +010045{
Michael Schwingenea99e8f2008-01-16 19:50:37 +010046 /* adress of boot parameters */
47 gd->bd->bi_boot_params = 0x00000100;
48
Michael Schwingen517c5df2011-05-23 00:00:04 +020049 GPIO_OUTPUT_CLEAR(CONFIG_SYS_GPIO_IORST);
50 GPIO_OUTPUT_ENABLE(CONFIG_SYS_GPIO_IORST);
Michael Schwingenea99e8f2008-01-16 19:50:37 +010051
Michael Schwingen517c5df2011-05-23 00:00:04 +020052 /* Setup GPIOs for PCI INTA */
53 GPIO_OUTPUT_DISABLE(CONFIG_SYS_GPIO_PCI1_INTA);
54 GPIO_INT_ACT_LOW_SET(CONFIG_SYS_GPIO_PCI1_INTA);
Michael Schwingenea99e8f2008-01-16 19:50:37 +010055
Michael Schwingen517c5df2011-05-23 00:00:04 +020056 /* Setup GPIOs for 33MHz clock output */
57 GPIO_OUTPUT_ENABLE(CONFIG_SYS_GPIO_PCI_CLK);
58 GPIO_OUTPUT_ENABLE(CONFIG_SYS_GPIO_EXTBUS_CLK);
59 writel(0x011001FF, IXP425_GPIO_GPCLKR);
Michael Schwingenea99e8f2008-01-16 19:50:37 +010060
Michael Schwingen517c5df2011-05-23 00:00:04 +020061 udelay(533);
62 GPIO_OUTPUT_SET(CONFIG_SYS_GPIO_IORST);
Michael Schwingenea99e8f2008-01-16 19:50:37 +010063
Michael Schwingen517c5df2011-05-23 00:00:04 +020064 ACTUX1_LED1(2);
65 ACTUX1_LED2(2);
66 ACTUX1_LED3(0);
67 ACTUX1_LED4(0);
68 ACTUX1_LED5(0);
69 ACTUX1_LED6(0);
70 ACTUX1_LED7(0);
Michael Schwingenea99e8f2008-01-16 19:50:37 +010071
Michael Schwingen517c5df2011-05-23 00:00:04 +020072 ACTUX1_HS(ACTUX1_HS_DCD);
Michael Schwingenea99e8f2008-01-16 19:50:37 +010073
74 return 0;
75}
76
77/*
78 * Check Board Identity
79 */
Michael Schwingen517c5df2011-05-23 00:00:04 +020080int checkboard(void)
Michael Schwingenea99e8f2008-01-16 19:50:37 +010081{
Wolfgang Denkf0c0b3a2011-05-04 10:32:28 +000082 char buf[64];
83 int i = getenv_f("serial#", buf, sizeof(buf));
Michael Schwingenea99e8f2008-01-16 19:50:37 +010084
Michael Schwingen517c5df2011-05-23 00:00:04 +020085 puts("Board: AcTux-1 rev.");
86 putc(ACTUX1_BOARDREL + 'A' - 1);
Michael Schwingenea99e8f2008-01-16 19:50:37 +010087
Wolfgang Denkf0c0b3a2011-05-04 10:32:28 +000088 if (i > 0) {
89 puts(", serial# ");
90 puts(buf);
Michael Schwingenea99e8f2008-01-16 19:50:37 +010091 }
Michael Schwingen517c5df2011-05-23 00:00:04 +020092 putc('\n');
Michael Schwingenea99e8f2008-01-16 19:50:37 +010093
Michael Schwingen517c5df2011-05-23 00:00:04 +020094 return 0;
Michael Schwingenea99e8f2008-01-16 19:50:37 +010095}
96
97/*************************************************************************
98 * get_board_rev() - setup to pass kernel board revision information
99 * 0 = reserved
100 * 1 = Rev. A
101 * 2 = Rev. B
102 *************************************************************************/
Michael Schwingen517c5df2011-05-23 00:00:04 +0200103u32 get_board_rev(void)
Michael Schwingenea99e8f2008-01-16 19:50:37 +0100104{
105 return ACTUX1_BOARDREL;
106}
107
Michael Schwingen517c5df2011-05-23 00:00:04 +0200108int dram_init(void)
Michael Schwingenea99e8f2008-01-16 19:50:37 +0100109{
Michael Schwingen517c5df2011-05-23 00:00:04 +0200110 gd->ram_size = get_ram_size(CONFIG_SYS_SDRAM_BASE, 128<<20);
111 return 0;
Michael Schwingenea99e8f2008-01-16 19:50:37 +0100112}
113
Michael Schwingenea99e8f2008-01-16 19:50:37 +0100114
Michael Schwingen517c5df2011-05-23 00:00:04 +0200115#ifdef CONFIG_PCI
116struct pci_controller hose;
117
118void pci_init_board(void)
Michael Schwingenea99e8f2008-01-16 19:50:37 +0100119{
Michael Schwingen517c5df2011-05-23 00:00:04 +0200120 pci_ixp_init(&hose);
Michael Schwingenea99e8f2008-01-16 19:50:37 +0100121}
122#endif
123
Michael Schwingen517c5df2011-05-23 00:00:04 +0200124void reset_phy(void)
Michael Schwingenea99e8f2008-01-16 19:50:37 +0100125{
126 u16 id1, id2;
127
128 /* initialize the PHY */
Michael Schwingen517c5df2011-05-23 00:00:04 +0200129 miiphy_reset("NPE0", CONFIG_PHY_ADDR);
Michael Schwingenea99e8f2008-01-16 19:50:37 +0100130
Michael Schwingen517c5df2011-05-23 00:00:04 +0200131 miiphy_read("NPE0", CONFIG_PHY_ADDR, MII_PHYSID1, &id1);
132 miiphy_read("NPE0", CONFIG_PHY_ADDR, MII_PHYSID2, &id2);
Michael Schwingenea99e8f2008-01-16 19:50:37 +0100133
134 id2 &= 0xFFF0; /* mask out revision bits */
135
136 if (id1 == 0x13 && id2 == 0x78e0) {
137 /*
138 * LXT971/LXT972 PHY: set LED outputs:
139 * LED1(green) = Link/ACT,
140 * LED2 (unused) = LINK,
141 * LED3(red) = Coll
142 */
Michael Schwingen517c5df2011-05-23 00:00:04 +0200143 miiphy_write("NPE0", CONFIG_PHY_ADDR, 20, 0xD432);
Michael Schwingenea99e8f2008-01-16 19:50:37 +0100144 } else if (id1 == 0x143 && id2 == 0xbc30) {
145 /* BCM5241: default values are OK */
146 } else
Michael Schwingen517c5df2011-05-23 00:00:04 +0200147 printf("unknown ethernet PHY ID: %x %x\n", id1, id2);
Michael Schwingenea99e8f2008-01-16 19:50:37 +0100148}