blob: 31c1ab5d0f58dd21e3afcae4978be36c6e05f162 [file] [log] [blame]
Stefan Roese899620c2006-08-15 14:22:35 +02001/*
2 * (C) Copyright 2006
3 * Stefan Roese, DENX Software Engineering, sr@denx.de.
4 *
Wolfgang Denk3765b3e2013-10-07 13:07:26 +02005 * SPDX-License-Identifier: GPL-2.0+
Stefan Roese899620c2006-08-15 14:22:35 +02006 */
7
8
9#include <common.h>
Stefan Roese94627322008-03-19 10:23:43 +010010#include <libfdt.h>
11#include <fdt_support.h>
Stefan Roese899620c2006-08-15 14:22:35 +020012#include <spd_sdram.h>
Stefan Roeseb36df562010-09-09 19:18:00 +020013#include <asm/ppc4xx-emac.h>
Stefan Roese1c2ce222006-11-27 14:12:17 +010014#include <miiphy.h>
Stefan Roese94627322008-03-19 10:23:43 +010015#include <asm/processor.h>
Stefan Roesea760b022009-11-12 16:41:09 +010016#include <asm/4xx_pci.h>
Stefan Roese899620c2006-08-15 14:22:35 +020017
18DECLARE_GLOBAL_DATA_PTR;
19
20extern int alpr_fpga_init(void);
21
22int board_early_init_f (void)
23{
Stefan Roese1c2ce222006-11-27 14:12:17 +010024 /*-------------------------------------------------------------------------
25 * Initialize EBC CONFIG
26 *-------------------------------------------------------------------------*/
Stefan Roesed1c3b272009-09-09 16:25:29 +020027 mtebc(EBC0_CFG, EBC_CFG_LE_UNLOCK |
Stefan Roese5bc528f2006-10-07 11:35:25 +020028 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 Roese899620c2006-08-15 14:22:35 +020032
33 /*--------------------------------------------------------------------
34 * Setup the interrupt controller polarities, triggers, etc.
35 *-------------------------------------------------------------------*/
Stefan Roese5de85142008-06-26 17:36:39 +020036 /*
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 Roese952e7762009-09-24 09:55:50 +020048 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 Roese899620c2006-08-15 14:22:35 +020055
Stefan Roese952e7762009-09-24 09:55:50 +020056 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 Roese899620c2006-08-15 14:22:35 +020063
Stefan Roese952e7762009-09-24 09:55:50 +020064 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 Roese5de85142008-06-26 17:36:39 +020071
Stefan Roese952e7762009-09-24 09:55:50 +020072 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 Roese1c2ce222006-11-27 14:12:17 +010078
Stefan Roesef16c1da2007-01-06 15:56:13 +010079 /* Setup shutdown/SSD empty interrupt as inputs */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020080 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 Roesef16c1da2007-01-06 15:56:13 +010082
Stefan Roese1c2ce222006-11-27 14:12:17 +010083 /* Setup GPIO/IRQ multiplexing */
Stefan Roesed1c3b272009-09-09 16:25:29 +020084 mtsdr(SDR0_PFC0, 0x01a33e00);
Stefan Roese899620c2006-08-15 14:22:35 +020085
86 return 0;
87}
88
Stefan Roese1c2ce222006-11-27 14:12:17 +010089int 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, &reg);
100 reg |= 0x0001;
101 miiphy_write("ppc_4xx_eth2", CONFIG_PHY2_ADDR, 0x18, reg);
102 miiphy_read("ppc_4xx_eth3", CONFIG_PHY3_ADDR, 0x18, &reg);
103 reg |= 0x0001;
104 miiphy_write("ppc_4xx_eth3", CONFIG_PHY3_ADDR, 0x18, reg);
105
106 return 0;
107}
108
109static int board_rev(void)
110{
Stefan Roese1c2ce222006-11-27 14:12:17 +0100111 /* Setup as input */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200112 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 Roese1c2ce222006-11-27 14:12:17 +0100114
Stefan Roesef16c1da2007-01-06 15:56:13 +0100115 return (in32(GPIO0_IR) >> 16) & 0x3;
Stefan Roese1c2ce222006-11-27 14:12:17 +0100116}
117
Stefan Roese899620c2006-08-15 14:22:35 +0200118int checkboard (void)
119{
Wolfgang Denkf0c0b3a2011-05-04 10:32:28 +0000120 char buf[64];
121 int i = getenv_f("serial#", buf, sizeof(buf));
Stefan Roese899620c2006-08-15 14:22:35 +0200122
123 printf ("Board: ALPR");
Wolfgang Denkf0c0b3a2011-05-04 10:32:28 +0000124 if (i > 0) {
125 puts(", serial# ");
126 puts(buf);
Stefan Roese899620c2006-08-15 14:22:35 +0200127 }
Stefan Roese1c2ce222006-11-27 14:12:17 +0100128 printf(" (Rev. %d)\n", board_rev());
Stefan Roese899620c2006-08-15 14:22:35 +0200129
130 return (0);
131}
132
Stefan Roese466fff12007-06-25 15:57:39 +0200133#if defined(CONFIG_PCI)
Stefan Roesea760b022009-11-12 16:41:09 +0100134/*
135 * Override weak pci_pre_init()
136 */
137int pci_pre_init(struct pci_controller *hose)
Stefan Roese899620c2006-08-15 14:22:35 +0200138{
Stefan Roesea760b022009-11-12 16:41:09 +0100139 if (__pci_pre_init(hose) == 0)
Stefan Roese899620c2006-08-15 14:22:35 +0200140 return 0;
Stefan Roese899620c2006-08-15 14:22:35 +0200141
142 /* FPGA Init */
Stefan Roesea760b022009-11-12 16:41:09 +0100143 alpr_fpga_init();
Stefan Roese899620c2006-08-15 14:22:35 +0200144
145 return 1;
146}
Stefan Roese899620c2006-08-15 14:22:35 +0200147
148/*************************************************************************
Stefan Roese9a81c612009-10-29 16:54:52 +0100149 * Override weak is_pci_host()
Stefan Roese899620c2006-08-15 14:22:35 +0200150 *
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 Roese1c2ce222006-11-27 14:12:17 +0100163static void wait_for_pci_ready(void)
164{
165 /*
166 * Configure EREADY as input
167 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200168 out32(GPIO0_TCR, in32(GPIO0_TCR) & ~CONFIG_SYS_GPIO_EREADY);
Stefan Roese1c2ce222006-11-27 14:12:17 +0100169 udelay(1000);
170
171 for (;;) {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200172 if (in32(GPIO0_IR) & CONFIG_SYS_GPIO_EREADY)
Stefan Roese1c2ce222006-11-27 14:12:17 +0100173 return;
174 }
175
176}
177
Stefan Roese899620c2006-08-15 14:22:35 +0200178int is_pci_host(struct pci_controller *hose)
179{
Stefan Roese1c2ce222006-11-27 14:12:17 +0100180 wait_for_pci_ready();
181 return 1; /* return 1 for host controller */
Stefan Roese899620c2006-08-15 14:22:35 +0200182}
183#endif /* defined(CONFIG_PCI) */
184
185/*************************************************************************
186 * pci_master_init
187 *
188 ************************************************************************/
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200189#if defined(CONFIG_PCI) && defined(CONFIG_SYS_PCI_MASTER_INIT)
Stefan Roese899620c2006-08-15 14:22:35 +0200190void pci_master_init(struct pci_controller *hose)
191{
Stefan Roese899620c2006-08-15 14:22:35 +0200192 /*--------------------------------------------------------------------------+
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 Gigerddc922f2009-10-04 20:04:20 +0200199 out32r( PCIL0_POM0SA, 0 ); /* disable */
200 out32r( PCIL0_POM1SA, 0 ); /* disable */
201 out32r( PCIL0_POM2SA, 0 ); /* disable */
Stefan Roese899620c2006-08-15 14:22:35 +0200202
Niklaus Gigerddc922f2009-10-04 20:04:20 +0200203 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 Roese899620c2006-08-15 14:22:35 +0200208
Niklaus Gigerddc922f2009-10-04 20:04:20 +0200209 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 Roese899620c2006-08-15 14:22:35 +0200214}
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200215#endif /* defined(CONFIG_PCI) && defined(CONFIG_SYS_PCI_MASTER_INIT) */