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 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame^] | 15 | * SPDX-License-Identifier: GPL-2.0+ |
Michael Schwingen | ea99e8f | 2008-01-16 19:50:37 +0100 | [diff] [blame] | 16 | */ |
| 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 Schwingen | 517c5df | 2011-05-23 00:00:04 +0200 | [diff] [blame] | 24 | #ifdef CONFIG_PCI |
| 25 | #include <pci.h> |
| 26 | #include <asm/arch/ixp425pci.h> |
| 27 | #endif |
Michael Schwingen | ea99e8f | 2008-01-16 19:50:37 +0100 | [diff] [blame] | 28 | |
| 29 | #include "actux1_hw.h" |
| 30 | |
| 31 | DECLARE_GLOBAL_DATA_PTR; |
| 32 | |
Michael Schwingen | 517c5df | 2011-05-23 00:00:04 +0200 | [diff] [blame] | 33 | int 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 | |
| 44 | int board_init(void) |
Michael Schwingen | ea99e8f | 2008-01-16 19:50:37 +0100 | [diff] [blame] | 45 | { |
Michael Schwingen | ea99e8f | 2008-01-16 19:50:37 +0100 | [diff] [blame] | 46 | /* adress of boot parameters */ |
| 47 | gd->bd->bi_boot_params = 0x00000100; |
| 48 | |
Michael Schwingen | 517c5df | 2011-05-23 00:00:04 +0200 | [diff] [blame] | 49 | GPIO_OUTPUT_CLEAR(CONFIG_SYS_GPIO_IORST); |
| 50 | GPIO_OUTPUT_ENABLE(CONFIG_SYS_GPIO_IORST); |
Michael Schwingen | ea99e8f | 2008-01-16 19:50:37 +0100 | [diff] [blame] | 51 | |
Michael Schwingen | 517c5df | 2011-05-23 00:00:04 +0200 | [diff] [blame] | 52 | /* 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 Schwingen | ea99e8f | 2008-01-16 19:50:37 +0100 | [diff] [blame] | 55 | |
Michael Schwingen | 517c5df | 2011-05-23 00:00:04 +0200 | [diff] [blame] | 56 | /* 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 Schwingen | ea99e8f | 2008-01-16 19:50:37 +0100 | [diff] [blame] | 60 | |
Michael Schwingen | 517c5df | 2011-05-23 00:00:04 +0200 | [diff] [blame] | 61 | udelay(533); |
| 62 | GPIO_OUTPUT_SET(CONFIG_SYS_GPIO_IORST); |
Michael Schwingen | ea99e8f | 2008-01-16 19:50:37 +0100 | [diff] [blame] | 63 | |
Michael Schwingen | 517c5df | 2011-05-23 00:00:04 +0200 | [diff] [blame] | 64 | 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 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 | ACTUX1_HS(ACTUX1_HS_DCD); |
Michael Schwingen | ea99e8f | 2008-01-16 19:50:37 +0100 | [diff] [blame] | 73 | |
| 74 | return 0; |
| 75 | } |
| 76 | |
| 77 | /* |
| 78 | * Check Board Identity |
| 79 | */ |
Michael Schwingen | 517c5df | 2011-05-23 00:00:04 +0200 | [diff] [blame] | 80 | int checkboard(void) |
Michael Schwingen | ea99e8f | 2008-01-16 19:50:37 +0100 | [diff] [blame] | 81 | { |
Wolfgang Denk | f0c0b3a | 2011-05-04 10:32:28 +0000 | [diff] [blame] | 82 | char buf[64]; |
| 83 | int i = getenv_f("serial#", buf, sizeof(buf)); |
Michael Schwingen | ea99e8f | 2008-01-16 19:50:37 +0100 | [diff] [blame] | 84 | |
Michael Schwingen | 517c5df | 2011-05-23 00:00:04 +0200 | [diff] [blame] | 85 | puts("Board: AcTux-1 rev."); |
| 86 | putc(ACTUX1_BOARDREL + 'A' - 1); |
Michael Schwingen | ea99e8f | 2008-01-16 19:50:37 +0100 | [diff] [blame] | 87 | |
Wolfgang Denk | f0c0b3a | 2011-05-04 10:32:28 +0000 | [diff] [blame] | 88 | if (i > 0) { |
| 89 | puts(", serial# "); |
| 90 | puts(buf); |
Michael Schwingen | ea99e8f | 2008-01-16 19:50:37 +0100 | [diff] [blame] | 91 | } |
Michael Schwingen | 517c5df | 2011-05-23 00:00:04 +0200 | [diff] [blame] | 92 | putc('\n'); |
Michael Schwingen | ea99e8f | 2008-01-16 19:50:37 +0100 | [diff] [blame] | 93 | |
Michael Schwingen | 517c5df | 2011-05-23 00:00:04 +0200 | [diff] [blame] | 94 | return 0; |
Michael Schwingen | ea99e8f | 2008-01-16 19:50:37 +0100 | [diff] [blame] | 95 | } |
| 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 Schwingen | 517c5df | 2011-05-23 00:00:04 +0200 | [diff] [blame] | 103 | u32 get_board_rev(void) |
Michael Schwingen | ea99e8f | 2008-01-16 19:50:37 +0100 | [diff] [blame] | 104 | { |
| 105 | return ACTUX1_BOARDREL; |
| 106 | } |
| 107 | |
Michael Schwingen | 517c5df | 2011-05-23 00:00:04 +0200 | [diff] [blame] | 108 | int dram_init(void) |
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 | gd->ram_size = get_ram_size(CONFIG_SYS_SDRAM_BASE, 128<<20); |
| 111 | return 0; |
Michael Schwingen | ea99e8f | 2008-01-16 19:50:37 +0100 | [diff] [blame] | 112 | } |
| 113 | |
Michael Schwingen | ea99e8f | 2008-01-16 19:50:37 +0100 | [diff] [blame] | 114 | |
Michael Schwingen | 517c5df | 2011-05-23 00:00:04 +0200 | [diff] [blame] | 115 | #ifdef CONFIG_PCI |
| 116 | struct pci_controller hose; |
| 117 | |
| 118 | void pci_init_board(void) |
Michael Schwingen | ea99e8f | 2008-01-16 19:50:37 +0100 | [diff] [blame] | 119 | { |
Michael Schwingen | 517c5df | 2011-05-23 00:00:04 +0200 | [diff] [blame] | 120 | pci_ixp_init(&hose); |
Michael Schwingen | ea99e8f | 2008-01-16 19:50:37 +0100 | [diff] [blame] | 121 | } |
| 122 | #endif |
| 123 | |
Michael Schwingen | 517c5df | 2011-05-23 00:00:04 +0200 | [diff] [blame] | 124 | void reset_phy(void) |
Michael Schwingen | ea99e8f | 2008-01-16 19:50:37 +0100 | [diff] [blame] | 125 | { |
| 126 | u16 id1, id2; |
| 127 | |
| 128 | /* initialize the PHY */ |
Michael Schwingen | 517c5df | 2011-05-23 00:00:04 +0200 | [diff] [blame] | 129 | miiphy_reset("NPE0", CONFIG_PHY_ADDR); |
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 | miiphy_read("NPE0", CONFIG_PHY_ADDR, MII_PHYSID1, &id1); |
| 132 | miiphy_read("NPE0", CONFIG_PHY_ADDR, MII_PHYSID2, &id2); |
Michael Schwingen | ea99e8f | 2008-01-16 19:50:37 +0100 | [diff] [blame] | 133 | |
| 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 Schwingen | 517c5df | 2011-05-23 00:00:04 +0200 | [diff] [blame] | 143 | miiphy_write("NPE0", CONFIG_PHY_ADDR, 20, 0xD432); |
Michael Schwingen | ea99e8f | 2008-01-16 19:50:37 +0100 | [diff] [blame] | 144 | } else if (id1 == 0x143 && id2 == 0xbc30) { |
| 145 | /* BCM5241: default values are OK */ |
| 146 | } else |
Michael Schwingen | 517c5df | 2011-05-23 00:00:04 +0200 | [diff] [blame] | 147 | printf("unknown ethernet PHY ID: %x %x\n", id1, id2); |
Michael Schwingen | ea99e8f | 2008-01-16 19:50:37 +0100 | [diff] [blame] | 148 | } |