Michael Schwingen | ea99e8f | 2008-01-16 19:50:37 +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> |
| 39 | #include <miiphy.h> |
Michael Schwingen | 517c5df | 2011-05-23 00:00:04 +0200 | [diff] [blame] | 40 | #ifdef CONFIG_PCI |
| 41 | #include <pci.h> |
| 42 | #include <asm/arch/ixp425pci.h> |
| 43 | #endif |
Michael Schwingen | ea99e8f | 2008-01-16 19:50:37 +0100 | [diff] [blame] | 44 | |
| 45 | #include "actux1_hw.h" |
| 46 | |
| 47 | DECLARE_GLOBAL_DATA_PTR; |
| 48 | |
Michael Schwingen | 517c5df | 2011-05-23 00:00:04 +0200 | [diff] [blame] | 49 | int board_early_init_f(void) |
| 50 | { |
| 51 | /* CS5: Debug port */ |
| 52 | writel(0x9d520003, IXP425_EXP_CS5); |
| 53 | /* CS6: HwRel */ |
| 54 | writel(0x81860001, IXP425_EXP_CS6); |
| 55 | /* CS7: LEDs */ |
| 56 | writel(0x80900003, IXP425_EXP_CS7); |
| 57 | return 0; |
| 58 | } |
| 59 | |
| 60 | int board_init(void) |
Michael Schwingen | ea99e8f | 2008-01-16 19:50:37 +0100 | [diff] [blame] | 61 | { |
Michael Schwingen | ea99e8f | 2008-01-16 19:50:37 +0100 | [diff] [blame] | 62 | /* adress of boot parameters */ |
| 63 | gd->bd->bi_boot_params = 0x00000100; |
| 64 | |
Michael Schwingen | 517c5df | 2011-05-23 00:00:04 +0200 | [diff] [blame] | 65 | GPIO_OUTPUT_CLEAR(CONFIG_SYS_GPIO_IORST); |
| 66 | GPIO_OUTPUT_ENABLE(CONFIG_SYS_GPIO_IORST); |
Michael Schwingen | ea99e8f | 2008-01-16 19:50:37 +0100 | [diff] [blame] | 67 | |
Michael Schwingen | 517c5df | 2011-05-23 00:00:04 +0200 | [diff] [blame] | 68 | /* Setup GPIOs for PCI INTA */ |
| 69 | GPIO_OUTPUT_DISABLE(CONFIG_SYS_GPIO_PCI1_INTA); |
| 70 | GPIO_INT_ACT_LOW_SET(CONFIG_SYS_GPIO_PCI1_INTA); |
Michael Schwingen | ea99e8f | 2008-01-16 19:50:37 +0100 | [diff] [blame] | 71 | |
Michael Schwingen | 517c5df | 2011-05-23 00:00:04 +0200 | [diff] [blame] | 72 | /* Setup GPIOs for 33MHz clock output */ |
| 73 | GPIO_OUTPUT_ENABLE(CONFIG_SYS_GPIO_PCI_CLK); |
| 74 | GPIO_OUTPUT_ENABLE(CONFIG_SYS_GPIO_EXTBUS_CLK); |
| 75 | writel(0x011001FF, IXP425_GPIO_GPCLKR); |
Michael Schwingen | ea99e8f | 2008-01-16 19:50:37 +0100 | [diff] [blame] | 76 | |
Michael Schwingen | 517c5df | 2011-05-23 00:00:04 +0200 | [diff] [blame] | 77 | udelay(533); |
| 78 | GPIO_OUTPUT_SET(CONFIG_SYS_GPIO_IORST); |
Michael Schwingen | ea99e8f | 2008-01-16 19:50:37 +0100 | [diff] [blame] | 79 | |
Michael Schwingen | 517c5df | 2011-05-23 00:00:04 +0200 | [diff] [blame] | 80 | ACTUX1_LED1(2); |
| 81 | ACTUX1_LED2(2); |
| 82 | ACTUX1_LED3(0); |
| 83 | ACTUX1_LED4(0); |
| 84 | ACTUX1_LED5(0); |
| 85 | ACTUX1_LED6(0); |
| 86 | ACTUX1_LED7(0); |
Michael Schwingen | ea99e8f | 2008-01-16 19:50:37 +0100 | [diff] [blame] | 87 | |
Michael Schwingen | 517c5df | 2011-05-23 00:00:04 +0200 | [diff] [blame] | 88 | ACTUX1_HS(ACTUX1_HS_DCD); |
Michael Schwingen | ea99e8f | 2008-01-16 19:50:37 +0100 | [diff] [blame] | 89 | |
| 90 | return 0; |
| 91 | } |
| 92 | |
| 93 | /* |
| 94 | * Check Board Identity |
| 95 | */ |
Michael Schwingen | 517c5df | 2011-05-23 00:00:04 +0200 | [diff] [blame] | 96 | int checkboard(void) |
Michael Schwingen | ea99e8f | 2008-01-16 19:50:37 +0100 | [diff] [blame] | 97 | { |
Wolfgang Denk | f0c0b3a | 2011-05-04 10:32:28 +0000 | [diff] [blame] | 98 | char buf[64]; |
| 99 | int i = getenv_f("serial#", buf, sizeof(buf)); |
Michael Schwingen | ea99e8f | 2008-01-16 19:50:37 +0100 | [diff] [blame] | 100 | |
Michael Schwingen | 517c5df | 2011-05-23 00:00:04 +0200 | [diff] [blame] | 101 | puts("Board: AcTux-1 rev."); |
| 102 | putc(ACTUX1_BOARDREL + 'A' - 1); |
Michael Schwingen | ea99e8f | 2008-01-16 19:50:37 +0100 | [diff] [blame] | 103 | |
Wolfgang Denk | f0c0b3a | 2011-05-04 10:32:28 +0000 | [diff] [blame] | 104 | if (i > 0) { |
| 105 | puts(", serial# "); |
| 106 | puts(buf); |
Michael Schwingen | ea99e8f | 2008-01-16 19:50:37 +0100 | [diff] [blame] | 107 | } |
Michael Schwingen | 517c5df | 2011-05-23 00:00:04 +0200 | [diff] [blame] | 108 | putc('\n'); |
Michael Schwingen | ea99e8f | 2008-01-16 19:50:37 +0100 | [diff] [blame] | 109 | |
Michael Schwingen | 517c5df | 2011-05-23 00:00:04 +0200 | [diff] [blame] | 110 | return 0; |
Michael Schwingen | ea99e8f | 2008-01-16 19:50:37 +0100 | [diff] [blame] | 111 | } |
| 112 | |
| 113 | /************************************************************************* |
| 114 | * get_board_rev() - setup to pass kernel board revision information |
| 115 | * 0 = reserved |
| 116 | * 1 = Rev. A |
| 117 | * 2 = Rev. B |
| 118 | *************************************************************************/ |
Michael Schwingen | 517c5df | 2011-05-23 00:00:04 +0200 | [diff] [blame] | 119 | u32 get_board_rev(void) |
Michael Schwingen | ea99e8f | 2008-01-16 19:50:37 +0100 | [diff] [blame] | 120 | { |
| 121 | return ACTUX1_BOARDREL; |
| 122 | } |
| 123 | |
Michael Schwingen | 517c5df | 2011-05-23 00:00:04 +0200 | [diff] [blame] | 124 | int dram_init(void) |
Michael Schwingen | ea99e8f | 2008-01-16 19:50:37 +0100 | [diff] [blame] | 125 | { |
Michael Schwingen | 517c5df | 2011-05-23 00:00:04 +0200 | [diff] [blame] | 126 | gd->ram_size = get_ram_size(CONFIG_SYS_SDRAM_BASE, 128<<20); |
| 127 | return 0; |
Michael Schwingen | ea99e8f | 2008-01-16 19:50:37 +0100 | [diff] [blame] | 128 | } |
| 129 | |
Michael Schwingen | ea99e8f | 2008-01-16 19:50:37 +0100 | [diff] [blame] | 130 | |
Michael Schwingen | 517c5df | 2011-05-23 00:00:04 +0200 | [diff] [blame] | 131 | #ifdef CONFIG_PCI |
| 132 | struct pci_controller hose; |
| 133 | |
| 134 | void pci_init_board(void) |
Michael Schwingen | ea99e8f | 2008-01-16 19:50:37 +0100 | [diff] [blame] | 135 | { |
Michael Schwingen | 517c5df | 2011-05-23 00:00:04 +0200 | [diff] [blame] | 136 | pci_ixp_init(&hose); |
Michael Schwingen | ea99e8f | 2008-01-16 19:50:37 +0100 | [diff] [blame] | 137 | } |
| 138 | #endif |
| 139 | |
Michael Schwingen | 517c5df | 2011-05-23 00:00:04 +0200 | [diff] [blame] | 140 | void reset_phy(void) |
Michael Schwingen | ea99e8f | 2008-01-16 19:50:37 +0100 | [diff] [blame] | 141 | { |
| 142 | u16 id1, id2; |
| 143 | |
| 144 | /* initialize the PHY */ |
Michael Schwingen | 517c5df | 2011-05-23 00:00:04 +0200 | [diff] [blame] | 145 | miiphy_reset("NPE0", CONFIG_PHY_ADDR); |
Michael Schwingen | ea99e8f | 2008-01-16 19:50:37 +0100 | [diff] [blame] | 146 | |
Michael Schwingen | 517c5df | 2011-05-23 00:00:04 +0200 | [diff] [blame] | 147 | miiphy_read("NPE0", CONFIG_PHY_ADDR, MII_PHYSID1, &id1); |
| 148 | miiphy_read("NPE0", CONFIG_PHY_ADDR, MII_PHYSID2, &id2); |
Michael Schwingen | ea99e8f | 2008-01-16 19:50:37 +0100 | [diff] [blame] | 149 | |
| 150 | id2 &= 0xFFF0; /* mask out revision bits */ |
| 151 | |
| 152 | if (id1 == 0x13 && id2 == 0x78e0) { |
| 153 | /* |
| 154 | * LXT971/LXT972 PHY: set LED outputs: |
| 155 | * LED1(green) = Link/ACT, |
| 156 | * LED2 (unused) = LINK, |
| 157 | * LED3(red) = Coll |
| 158 | */ |
Michael Schwingen | 517c5df | 2011-05-23 00:00:04 +0200 | [diff] [blame] | 159 | miiphy_write("NPE0", CONFIG_PHY_ADDR, 20, 0xD432); |
Michael Schwingen | ea99e8f | 2008-01-16 19:50:37 +0100 | [diff] [blame] | 160 | } else if (id1 == 0x143 && id2 == 0xbc30) { |
| 161 | /* BCM5241: default values are OK */ |
| 162 | } else |
Michael Schwingen | 517c5df | 2011-05-23 00:00:04 +0200 | [diff] [blame] | 163 | printf("unknown ethernet PHY ID: %x %x\n", id1, id2); |
Michael Schwingen | ea99e8f | 2008-01-16 19:50:37 +0100 | [diff] [blame] | 164 | } |