Michael Schwingen | bc24345 | 2008-01-16 19:51:55 +0100 | [diff] [blame] | 1 | /* |
| 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 Schwingen | bc24345 | 2008-01-16 19:51:55 +0100 | [diff] [blame] | 39 | #include <miiphy.h> |
Michael Schwingen | bc24345 | 2008-01-16 19:51:55 +0100 | [diff] [blame] | 40 | #include "actux3_hw.h" |
| 41 | |
| 42 | DECLARE_GLOBAL_DATA_PTR; |
| 43 | |
Michael Schwingen | 8b5ab4c | 2011-05-23 00:00:06 +0200 | [diff] [blame] | 44 | int 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 | |
| 58 | int board_init(void) |
Michael Schwingen | bc24345 | 2008-01-16 19:51:55 +0100 | [diff] [blame] | 59 | { |
Michael Schwingen | bc24345 | 2008-01-16 19:51:55 +0100 | [diff] [blame] | 60 | /* adress of boot parameters */ |
| 61 | gd->bd->bi_boot_params = 0x00000100; |
| 62 | |
Michael Schwingen | 8b5ab4c | 2011-05-23 00:00:06 +0200 | [diff] [blame] | 63 | GPIO_OUTPUT_ENABLE(CONFIG_SYS_GPIO_IORST); |
| 64 | GPIO_OUTPUT_ENABLE(CONFIG_SYS_GPIO_ETHRST); |
| 65 | GPIO_OUTPUT_ENABLE(CONFIG_SYS_GPIO_DSR); |
| 66 | GPIO_OUTPUT_ENABLE(CONFIG_SYS_GPIO_DCD); |
| 67 | GPIO_OUTPUT_ENABLE(CONFIG_SYS_GPIO_LED5_GN); |
| 68 | GPIO_OUTPUT_ENABLE(CONFIG_SYS_GPIO_LED6_RT); |
| 69 | GPIO_OUTPUT_ENABLE(CONFIG_SYS_GPIO_LED6_GN); |
Michael Schwingen | bc24345 | 2008-01-16 19:51:55 +0100 | [diff] [blame] | 70 | |
Michael Schwingen | 8b5ab4c | 2011-05-23 00:00:06 +0200 | [diff] [blame] | 71 | GPIO_OUTPUT_CLEAR(CONFIG_SYS_GPIO_IORST); |
| 72 | GPIO_OUTPUT_CLEAR(CONFIG_SYS_GPIO_ETHRST); |
Michael Schwingen | bc24345 | 2008-01-16 19:51:55 +0100 | [diff] [blame] | 73 | |
Michael Schwingen | 8b5ab4c | 2011-05-23 00:00:06 +0200 | [diff] [blame] | 74 | GPIO_OUTPUT_CLEAR(CONFIG_SYS_GPIO_DSR); |
| 75 | GPIO_OUTPUT_SET(CONFIG_SYS_GPIO_DCD); |
Michael Schwingen | bc24345 | 2008-01-16 19:51:55 +0100 | [diff] [blame] | 76 | |
Michael Schwingen | 8b5ab4c | 2011-05-23 00:00:06 +0200 | [diff] [blame] | 77 | GPIO_OUTPUT_CLEAR(CONFIG_SYS_GPIO_LED5_GN); |
| 78 | GPIO_OUTPUT_CLEAR(CONFIG_SYS_GPIO_LED6_RT); |
| 79 | GPIO_OUTPUT_CLEAR(CONFIG_SYS_GPIO_LED6_GN); |
Michael Schwingen | bc24345 | 2008-01-16 19:51:55 +0100 | [diff] [blame] | 80 | |
| 81 | /* |
| 82 | * Setup GPIO's for Interrupt inputs |
| 83 | */ |
Michael Schwingen | 8b5ab4c | 2011-05-23 00:00:06 +0200 | [diff] [blame] | 84 | GPIO_OUTPUT_DISABLE(CONFIG_SYS_GPIO_DBGINT); |
| 85 | GPIO_OUTPUT_DISABLE(CONFIG_SYS_GPIO_ETHINT); |
Michael Schwingen | bc24345 | 2008-01-16 19:51:55 +0100 | [diff] [blame] | 86 | |
| 87 | /* |
| 88 | * Setup GPIO's for 33MHz clock output |
| 89 | */ |
Michael Schwingen | 8b5ab4c | 2011-05-23 00:00:06 +0200 | [diff] [blame] | 90 | GPIO_OUTPUT_ENABLE(CONFIG_SYS_GPIO_PCI_CLK); |
| 91 | GPIO_OUTPUT_ENABLE(CONFIG_SYS_GPIO_EXTBUS_CLK); |
| 92 | writel(0x011001FF, IXP425_GPIO_GPCLKR); |
Michael Schwingen | bc24345 | 2008-01-16 19:51:55 +0100 | [diff] [blame] | 93 | |
Michael Schwingen | 8b5ab4c | 2011-05-23 00:00:06 +0200 | [diff] [blame] | 94 | /* we need a minimum PCI reset pulse width after enabling the clock */ |
| 95 | udelay(533); |
| 96 | GPIO_OUTPUT_SET(CONFIG_SYS_GPIO_IORST); |
| 97 | GPIO_OUTPUT_SET(CONFIG_SYS_GPIO_ETHRST); |
Michael Schwingen | bc24345 | 2008-01-16 19:51:55 +0100 | [diff] [blame] | 98 | |
Michael Schwingen | 8b5ab4c | 2011-05-23 00:00:06 +0200 | [diff] [blame] | 99 | ACTUX3_LED1_RT(1); |
| 100 | ACTUX3_LED1_GN(0); |
| 101 | ACTUX3_LED2_RT(0); |
| 102 | ACTUX3_LED2_GN(0); |
| 103 | ACTUX3_LED3_RT(0); |
| 104 | ACTUX3_LED3_GN(0); |
| 105 | ACTUX3_LED4_GN(0); |
| 106 | ACTUX3_LED5_RT(0); |
Michael Schwingen | bc24345 | 2008-01-16 19:51:55 +0100 | [diff] [blame] | 107 | |
| 108 | return 0; |
| 109 | } |
| 110 | |
| 111 | /* |
| 112 | * Check Board Identity |
| 113 | */ |
Michael Schwingen | 8b5ab4c | 2011-05-23 00:00:06 +0200 | [diff] [blame] | 114 | int checkboard(void) |
Michael Schwingen | bc24345 | 2008-01-16 19:51:55 +0100 | [diff] [blame] | 115 | { |
Wolfgang Denk | f0c0b3a | 2011-05-04 10:32:28 +0000 | [diff] [blame] | 116 | char buf[64]; |
| 117 | int i = getenv_f("serial#", buf, sizeof(buf)); |
Michael Schwingen | bc24345 | 2008-01-16 19:51:55 +0100 | [diff] [blame] | 118 | |
Michael Schwingen | 8b5ab4c | 2011-05-23 00:00:06 +0200 | [diff] [blame] | 119 | puts("Board: AcTux-3 rev."); |
| 120 | putc(ACTUX3_BOARDREL + 'A' - 1); |
Michael Schwingen | bc24345 | 2008-01-16 19:51:55 +0100 | [diff] [blame] | 121 | |
Wolfgang Denk | f0c0b3a | 2011-05-04 10:32:28 +0000 | [diff] [blame] | 122 | if (i > 0) { |
Michael Schwingen | bc24345 | 2008-01-16 19:51:55 +0100 | [diff] [blame] | 123 | puts (", serial# "); |
Wolfgang Denk | f0c0b3a | 2011-05-04 10:32:28 +0000 | [diff] [blame] | 124 | puts (buf); |
Michael Schwingen | bc24345 | 2008-01-16 19:51:55 +0100 | [diff] [blame] | 125 | } |
Michael Schwingen | 8b5ab4c | 2011-05-23 00:00:06 +0200 | [diff] [blame] | 126 | putc('\n'); |
Michael Schwingen | bc24345 | 2008-01-16 19:51:55 +0100 | [diff] [blame] | 127 | |
Michael Schwingen | 8b5ab4c | 2011-05-23 00:00:06 +0200 | [diff] [blame] | 128 | return 0; |
Michael Schwingen | bc24345 | 2008-01-16 19:51:55 +0100 | [diff] [blame] | 129 | } |
| 130 | |
| 131 | /************************************************************************* |
| 132 | * get_board_rev() - setup to pass kernel board revision information |
| 133 | * 0 = reserved |
| 134 | * 1 = Rev. A |
| 135 | * 2 = Rev. B |
| 136 | *************************************************************************/ |
Michael Schwingen | 8b5ab4c | 2011-05-23 00:00:06 +0200 | [diff] [blame] | 137 | u32 get_board_rev(void) |
Michael Schwingen | bc24345 | 2008-01-16 19:51:55 +0100 | [diff] [blame] | 138 | { |
| 139 | return ACTUX3_BOARDREL; |
| 140 | } |
| 141 | |
Michael Schwingen | 8b5ab4c | 2011-05-23 00:00:06 +0200 | [diff] [blame] | 142 | int dram_init(void) |
Michael Schwingen | bc24345 | 2008-01-16 19:51:55 +0100 | [diff] [blame] | 143 | { |
Michael Schwingen | 8b5ab4c | 2011-05-23 00:00:06 +0200 | [diff] [blame] | 144 | gd->ram_size = get_ram_size(CONFIG_SYS_SDRAM_BASE, 128<<20); |
| 145 | return 0; |
Michael Schwingen | bc24345 | 2008-01-16 19:51:55 +0100 | [diff] [blame] | 146 | } |
| 147 | |
Michael Schwingen | 8b5ab4c | 2011-05-23 00:00:06 +0200 | [diff] [blame] | 148 | void reset_phy(void) |
Michael Schwingen | bc24345 | 2008-01-16 19:51:55 +0100 | [diff] [blame] | 149 | { |
| 150 | int i; |
| 151 | |
| 152 | /* initialize the PHY */ |
Michael Schwingen | 8b5ab4c | 2011-05-23 00:00:06 +0200 | [diff] [blame] | 153 | miiphy_reset("NPE0", CONFIG_PHY_ADDR); |
Michael Schwingen | bc24345 | 2008-01-16 19:51:55 +0100 | [diff] [blame] | 154 | |
| 155 | /* all LED outputs = Link/Act */ |
Michael Schwingen | 8b5ab4c | 2011-05-23 00:00:06 +0200 | [diff] [blame] | 156 | miiphy_write("NPE0", CONFIG_PHY_ADDR, 0x16, 0x0AAA); |
Michael Schwingen | bc24345 | 2008-01-16 19:51:55 +0100 | [diff] [blame] | 157 | |
| 158 | /* |
| 159 | * The Marvell 88E6060 switch comes up with all ports disabled. |
| 160 | * set all ethernet switch ports to forwarding state |
| 161 | */ |
| 162 | for (i = 1; i <= 5; i++) |
Michael Schwingen | 8b5ab4c | 2011-05-23 00:00:06 +0200 | [diff] [blame] | 163 | miiphy_write("NPE0", CONFIG_PHY_ADDR + 8 + i, 0x04, 0x03); |
Michael Schwingen | bc24345 | 2008-01-16 19:51:55 +0100 | [diff] [blame] | 164 | |
| 165 | } |