Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2006 |
| 3 | * Stefan Roese, DENX Software Engineering, sr@denx.de. |
| 4 | * |
Wolfgang Denk | 3765b3e | 2013-10-07 13:07:26 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | |
| 9 | #include <common.h> |
Stefan Roese | 9462732 | 2008-03-19 10:23:43 +0100 | [diff] [blame] | 10 | #include <libfdt.h> |
| 11 | #include <fdt_support.h> |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 12 | #include <spd_sdram.h> |
Stefan Roese | b36df56 | 2010-09-09 19:18:00 +0200 | [diff] [blame] | 13 | #include <asm/ppc4xx-emac.h> |
Stefan Roese | 1c2ce22 | 2006-11-27 14:12:17 +0100 | [diff] [blame] | 14 | #include <miiphy.h> |
Stefan Roese | 9462732 | 2008-03-19 10:23:43 +0100 | [diff] [blame] | 15 | #include <asm/processor.h> |
Stefan Roese | a760b02 | 2009-11-12 16:41:09 +0100 | [diff] [blame] | 16 | #include <asm/4xx_pci.h> |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 17 | |
| 18 | DECLARE_GLOBAL_DATA_PTR; |
| 19 | |
| 20 | extern int alpr_fpga_init(void); |
| 21 | |
| 22 | int board_early_init_f (void) |
| 23 | { |
Stefan Roese | 1c2ce22 | 2006-11-27 14:12:17 +0100 | [diff] [blame] | 24 | /*------------------------------------------------------------------------- |
| 25 | * Initialize EBC CONFIG |
| 26 | *-------------------------------------------------------------------------*/ |
Stefan Roese | d1c3b27 | 2009-09-09 16:25:29 +0200 | [diff] [blame] | 27 | mtebc(EBC0_CFG, EBC_CFG_LE_UNLOCK | |
Stefan Roese | 5bc528f | 2006-10-07 11:35:25 +0200 | [diff] [blame] | 28 | EBC_CFG_PTD_DISABLE | EBC_CFG_RTC_64PERCLK | |
| 29 | EBC_CFG_ATC_PREVIOUS | EBC_CFG_DTC_PREVIOUS | |
| 30 | EBC_CFG_CTC_PREVIOUS | EBC_CFG_EMC_NONDEFAULT | |
| 31 | EBC_CFG_PME_DISABLE | EBC_CFG_PR_32); |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 32 | |
| 33 | /*-------------------------------------------------------------------- |
| 34 | * Setup the interrupt controller polarities, triggers, etc. |
| 35 | *-------------------------------------------------------------------*/ |
Stefan Roese | 5de8514 | 2008-06-26 17:36:39 +0200 | [diff] [blame] | 36 | /* |
| 37 | * Because of the interrupt handling rework to handle 440GX interrupts |
| 38 | * with the common code, we needed to change names of the UIC registers. |
| 39 | * Here the new relationship: |
| 40 | * |
| 41 | * U-Boot name 440GX name |
| 42 | * ----------------------- |
| 43 | * UIC0 UICB0 |
| 44 | * UIC1 UIC0 |
| 45 | * UIC2 UIC1 |
| 46 | * UIC3 UIC2 |
| 47 | */ |
Stefan Roese | 952e776 | 2009-09-24 09:55:50 +0200 | [diff] [blame] | 48 | mtdcr (UIC1SR, 0xffffffff); /* clear all */ |
| 49 | mtdcr (UIC1ER, 0x00000000); /* disable all */ |
| 50 | mtdcr (UIC1CR, 0x00000009); /* SMI & UIC1 crit are critical */ |
| 51 | mtdcr (UIC1PR, 0xfffffe03); /* per manual */ |
| 52 | mtdcr (UIC1TR, 0x01c00000); /* per manual */ |
| 53 | mtdcr (UIC1VR, 0x00000001); /* int31 highest, base=0x000 */ |
| 54 | mtdcr (UIC1SR, 0xffffffff); /* clear all */ |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 55 | |
Stefan Roese | 952e776 | 2009-09-24 09:55:50 +0200 | [diff] [blame] | 56 | mtdcr (UIC2SR, 0xffffffff); /* clear all */ |
| 57 | mtdcr (UIC2ER, 0x00000000); /* disable all */ |
| 58 | mtdcr (UIC2CR, 0x00000000); /* all non-critical */ |
| 59 | mtdcr (UIC2PR, 0xffffe0ff); /* per ref-board manual */ |
| 60 | mtdcr (UIC2TR, 0x00ffc000); /* per ref-board manual */ |
| 61 | mtdcr (UIC2VR, 0x00000001); /* int31 highest, base=0x000 */ |
| 62 | mtdcr (UIC2SR, 0xffffffff); /* clear all */ |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 63 | |
Stefan Roese | 952e776 | 2009-09-24 09:55:50 +0200 | [diff] [blame] | 64 | mtdcr (UIC3SR, 0xffffffff); /* clear all */ |
| 65 | mtdcr (UIC3ER, 0x00000000); /* disable all */ |
| 66 | mtdcr (UIC3CR, 0x00000000); /* all non-critical */ |
| 67 | mtdcr (UIC3PR, 0xffffffff); /* per ref-board manual */ |
| 68 | mtdcr (UIC3TR, 0x00ff8c0f); /* per ref-board manual */ |
| 69 | mtdcr (UIC3VR, 0x00000001); /* int31 highest, base=0x000 */ |
| 70 | mtdcr (UIC3SR, 0xffffffff); /* clear all */ |
Stefan Roese | 5de8514 | 2008-06-26 17:36:39 +0200 | [diff] [blame] | 71 | |
Stefan Roese | 952e776 | 2009-09-24 09:55:50 +0200 | [diff] [blame] | 72 | mtdcr (UIC0SR, 0xfc000000); /* clear all */ |
| 73 | mtdcr (UIC0ER, 0x00000000); /* disable all */ |
| 74 | mtdcr (UIC0CR, 0x00000000); /* all non-critical */ |
| 75 | mtdcr (UIC0PR, 0xfc000000); /* */ |
| 76 | mtdcr (UIC0TR, 0x00000000); /* */ |
| 77 | mtdcr (UIC0VR, 0x00000001); /* */ |
Stefan Roese | 1c2ce22 | 2006-11-27 14:12:17 +0100 | [diff] [blame] | 78 | |
Stefan Roese | f16c1da | 2007-01-06 15:56:13 +0100 | [diff] [blame] | 79 | /* Setup shutdown/SSD empty interrupt as inputs */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 80 | out32(GPIO0_TCR, in32(GPIO0_TCR) & ~(CONFIG_SYS_GPIO_SHUTDOWN | CONFIG_SYS_GPIO_SSD_EMPTY)); |
| 81 | out32(GPIO0_ODR, in32(GPIO0_ODR) & ~(CONFIG_SYS_GPIO_SHUTDOWN | CONFIG_SYS_GPIO_SSD_EMPTY)); |
Stefan Roese | f16c1da | 2007-01-06 15:56:13 +0100 | [diff] [blame] | 82 | |
Stefan Roese | 1c2ce22 | 2006-11-27 14:12:17 +0100 | [diff] [blame] | 83 | /* Setup GPIO/IRQ multiplexing */ |
Stefan Roese | d1c3b27 | 2009-09-09 16:25:29 +0200 | [diff] [blame] | 84 | mtsdr(SDR0_PFC0, 0x01a33e00); |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 85 | |
| 86 | return 0; |
| 87 | } |
| 88 | |
Stefan Roese | 1c2ce22 | 2006-11-27 14:12:17 +0100 | [diff] [blame] | 89 | int last_stage_init(void) |
| 90 | { |
| 91 | unsigned short reg; |
| 92 | |
| 93 | /* |
| 94 | * Configure LED's of both Marvell 88E1111 PHY's |
| 95 | * |
| 96 | * This has to be done after the 4xx ethernet driver is loaded, |
| 97 | * so "last_stage_init()" is the right place. |
| 98 | */ |
| 99 | miiphy_read("ppc_4xx_eth2", CONFIG_PHY2_ADDR, 0x18, ®); |
| 100 | reg |= 0x0001; |
| 101 | miiphy_write("ppc_4xx_eth2", CONFIG_PHY2_ADDR, 0x18, reg); |
| 102 | miiphy_read("ppc_4xx_eth3", CONFIG_PHY3_ADDR, 0x18, ®); |
| 103 | reg |= 0x0001; |
| 104 | miiphy_write("ppc_4xx_eth3", CONFIG_PHY3_ADDR, 0x18, reg); |
| 105 | |
| 106 | return 0; |
| 107 | } |
| 108 | |
| 109 | static int board_rev(void) |
| 110 | { |
Stefan Roese | 1c2ce22 | 2006-11-27 14:12:17 +0100 | [diff] [blame] | 111 | /* Setup as input */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 112 | out32(GPIO0_TCR, in32(GPIO0_TCR) & ~(CONFIG_SYS_GPIO_REV0 | CONFIG_SYS_GPIO_REV1)); |
| 113 | out32(GPIO0_ODR, in32(GPIO0_ODR) & ~(CONFIG_SYS_GPIO_REV0 | CONFIG_SYS_GPIO_REV1)); |
Stefan Roese | 1c2ce22 | 2006-11-27 14:12:17 +0100 | [diff] [blame] | 114 | |
Stefan Roese | f16c1da | 2007-01-06 15:56:13 +0100 | [diff] [blame] | 115 | return (in32(GPIO0_IR) >> 16) & 0x3; |
Stefan Roese | 1c2ce22 | 2006-11-27 14:12:17 +0100 | [diff] [blame] | 116 | } |
| 117 | |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 118 | int checkboard (void) |
| 119 | { |
Wolfgang Denk | f0c0b3a | 2011-05-04 10:32:28 +0000 | [diff] [blame] | 120 | char buf[64]; |
| 121 | int i = getenv_f("serial#", buf, sizeof(buf)); |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 122 | |
| 123 | printf ("Board: ALPR"); |
Wolfgang Denk | f0c0b3a | 2011-05-04 10:32:28 +0000 | [diff] [blame] | 124 | if (i > 0) { |
| 125 | puts(", serial# "); |
| 126 | puts(buf); |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 127 | } |
Stefan Roese | 1c2ce22 | 2006-11-27 14:12:17 +0100 | [diff] [blame] | 128 | printf(" (Rev. %d)\n", board_rev()); |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 129 | |
| 130 | return (0); |
| 131 | } |
| 132 | |
Stefan Roese | 466fff1 | 2007-06-25 15:57:39 +0200 | [diff] [blame] | 133 | #if defined(CONFIG_PCI) |
Stefan Roese | a760b02 | 2009-11-12 16:41:09 +0100 | [diff] [blame] | 134 | /* |
| 135 | * Override weak pci_pre_init() |
| 136 | */ |
| 137 | int pci_pre_init(struct pci_controller *hose) |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 138 | { |
Stefan Roese | a760b02 | 2009-11-12 16:41:09 +0100 | [diff] [blame] | 139 | if (__pci_pre_init(hose) == 0) |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 140 | return 0; |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 141 | |
| 142 | /* FPGA Init */ |
Stefan Roese | a760b02 | 2009-11-12 16:41:09 +0100 | [diff] [blame] | 143 | alpr_fpga_init(); |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 144 | |
| 145 | return 1; |
| 146 | } |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 147 | |
| 148 | /************************************************************************* |
Stefan Roese | 9a81c61 | 2009-10-29 16:54:52 +0100 | [diff] [blame] | 149 | * Override weak is_pci_host() |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 150 | * |
| 151 | * This routine is called to determine if a pci scan should be |
| 152 | * performed. With various hardware environments (especially cPCI and |
| 153 | * PPMC) it's insufficient to depend on the state of the arbiter enable |
| 154 | * bit in the strap register, or generic host/adapter assumptions. |
| 155 | * |
| 156 | * Rather than hard-code a bad assumption in the general 440 code, the |
| 157 | * 440 pci code requires the board to decide at runtime. |
| 158 | * |
| 159 | * Return 0 for adapter mode, non-zero for host (monarch) mode. |
| 160 | * |
| 161 | * |
| 162 | ************************************************************************/ |
Stefan Roese | 1c2ce22 | 2006-11-27 14:12:17 +0100 | [diff] [blame] | 163 | static void wait_for_pci_ready(void) |
| 164 | { |
| 165 | /* |
| 166 | * Configure EREADY as input |
| 167 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 168 | out32(GPIO0_TCR, in32(GPIO0_TCR) & ~CONFIG_SYS_GPIO_EREADY); |
Stefan Roese | 1c2ce22 | 2006-11-27 14:12:17 +0100 | [diff] [blame] | 169 | udelay(1000); |
| 170 | |
| 171 | for (;;) { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 172 | if (in32(GPIO0_IR) & CONFIG_SYS_GPIO_EREADY) |
Stefan Roese | 1c2ce22 | 2006-11-27 14:12:17 +0100 | [diff] [blame] | 173 | return; |
| 174 | } |
| 175 | |
| 176 | } |
| 177 | |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 178 | int is_pci_host(struct pci_controller *hose) |
| 179 | { |
Stefan Roese | 1c2ce22 | 2006-11-27 14:12:17 +0100 | [diff] [blame] | 180 | wait_for_pci_ready(); |
| 181 | return 1; /* return 1 for host controller */ |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 182 | } |
| 183 | #endif /* defined(CONFIG_PCI) */ |
| 184 | |
| 185 | /************************************************************************* |
| 186 | * pci_master_init |
| 187 | * |
| 188 | ************************************************************************/ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 189 | #if defined(CONFIG_PCI) && defined(CONFIG_SYS_PCI_MASTER_INIT) |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 190 | void pci_master_init(struct pci_controller *hose) |
| 191 | { |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 192 | /*--------------------------------------------------------------------------+ |
| 193 | | PowerPC440 PCI Master configuration. |
| 194 | | Map PLB/processor addresses to PCI memory space. |
| 195 | | PLB address 0xA0000000-0xCFFFFFFF ==> PCI address 0x80000000-0xCFFFFFFF |
| 196 | | Use byte reversed out routines to handle endianess. |
| 197 | | Make this region non-prefetchable. |
| 198 | +--------------------------------------------------------------------------*/ |
Niklaus Giger | ddc922f | 2009-10-04 20:04:20 +0200 | [diff] [blame] | 199 | out32r( PCIL0_POM0SA, 0 ); /* disable */ |
| 200 | out32r( PCIL0_POM1SA, 0 ); /* disable */ |
| 201 | out32r( PCIL0_POM2SA, 0 ); /* disable */ |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 202 | |
Niklaus Giger | ddc922f | 2009-10-04 20:04:20 +0200 | [diff] [blame] | 203 | out32r(PCIL0_POM0LAL, CONFIG_SYS_PCI_MEMBASE); /* PMM0 Local Address */ |
| 204 | out32r(PCIL0_POM0LAH, 0x00000003); /* PMM0 Local Address */ |
| 205 | out32r(PCIL0_POM0PCIAL, CONFIG_SYS_PCI_MEMBASE); /* PMM0 PCI Low Address */ |
| 206 | out32r(PCIL0_POM0PCIAH, 0x00000000); /* PMM0 PCI High Address */ |
| 207 | out32r(PCIL0_POM0SA, ~(0x10000000 - 1) | 1); /* 256MB + enable region */ |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 208 | |
Niklaus Giger | ddc922f | 2009-10-04 20:04:20 +0200 | [diff] [blame] | 209 | out32r(PCIL0_POM1LAL, CONFIG_SYS_PCI_MEMBASE2); /* PMM0 Local Address */ |
| 210 | out32r(PCIL0_POM1LAH, 0x00000003); /* PMM0 Local Address */ |
| 211 | out32r(PCIL0_POM1PCIAL, CONFIG_SYS_PCI_MEMBASE2); /* PMM0 PCI Low Address */ |
| 212 | out32r(PCIL0_POM1PCIAH, 0x00000000); /* PMM0 PCI High Address */ |
| 213 | out32r(PCIL0_POM1SA, ~(0x10000000 - 1) | 1); /* 256MB + enable region */ |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 214 | } |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 215 | #endif /* defined(CONFIG_PCI) && defined(CONFIG_SYS_PCI_MASTER_INIT) */ |