wdenk | db01a2e | 2004-04-15 23:14:49 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2004 Picture Elements, Inc. |
| 3 | * Stephen Williams (steve@icarus.com) |
| 4 | * |
| 5 | * This source code is free software; you can redistribute it |
| 6 | * and/or modify it in source code form under the terms of the GNU |
| 7 | * General Public License as published by the Free Software |
| 8 | * Foundation; either version 2 of the License, or (at your option) |
| 9 | * any later version. |
| 10 | * |
| 11 | * This program is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | * GNU General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License |
| 17 | * along with this program; if not, write to the Free Software |
| 18 | * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
| 19 | */ |
| 20 | |
| 21 | # include <common.h> |
Stefan Roese | b36df56 | 2010-09-09 19:18:00 +0200 | [diff] [blame] | 22 | # include <asm/ppc4xx.h> |
wdenk | db01a2e | 2004-04-15 23:14:49 +0000 | [diff] [blame] | 23 | # include <asm/processor.h> |
| 24 | # include <asm/io.h> |
| 25 | # include "jse_priv.h" |
| 26 | |
| 27 | /* |
| 28 | * This function is run very early, out of flash, and before devices are |
Stefan Roese | a47a12b | 2010-04-15 16:07:28 +0200 | [diff] [blame] | 29 | * initialized. It is called by arch/powerpc/lib/board.c:board_init_f by virtue |
wdenk | db01a2e | 2004-04-15 23:14:49 +0000 | [diff] [blame] | 30 | * of being in the init_sequence array. |
| 31 | * |
| 32 | * The SDRAM has been initialized already -- start.S:start called |
| 33 | * init.S:init_sdram early on -- but it is not yet being used for |
| 34 | * anything, not even stack. So be careful. |
| 35 | */ |
| 36 | int board_early_init_f (void) |
| 37 | { |
| 38 | /*-------------------------------------------------------------------------+ |
| 39 | | Interrupt controller setup for the JSE board. |
| 40 | | Note: IRQ 0-15 405GP internally generated; active high; level sensitive |
| 41 | | IRQ 16 405GP internally generated; active low; level sensitive |
| 42 | | IRQ 17-24 RESERVED/UNUSED |
| 43 | | IRQ 25 (EXT IRQ 0) PCI SLOT 0; active low; level sensitive |
| 44 | | IRQ 26 (EXT IRQ 1) PCI SLOT 1; active low; level sensitive |
| 45 | | IRQ 27 (EXT IRQ 2) JP2C CHIP ; active low; level sensitive |
| 46 | | IRQ 28 (EXT IRQ 3) PCI bridge; active low; level sensitive |
| 47 | | IRQ 29 (EXT IRQ 4) SystemACE IRQ; active high |
| 48 | | IRQ 30 (EXT IRQ 5) SystemACE BRdy (unused) |
| 49 | | IRQ 31 (EXT IRQ 6) (unused) |
| 50 | +-------------------------------------------------------------------------*/ |
Stefan Roese | 952e776 | 2009-09-24 09:55:50 +0200 | [diff] [blame] | 51 | mtdcr (UIC0SR, 0xFFFFFFFF); /* clear all ints */ |
| 52 | mtdcr (UIC0ER, 0x00000000); /* disable all ints */ |
| 53 | mtdcr (UIC0CR, 0x00000000); /* set all to be non-critical */ |
| 54 | mtdcr (UIC0PR, 0xFFFFFF87); /* set int polarities */ |
| 55 | mtdcr (UIC0TR, 0x10000000); /* set int trigger levels */ |
| 56 | mtdcr (UIC0SR, 0xFFFFFFFF); /* clear all ints */ |
wdenk | db01a2e | 2004-04-15 23:14:49 +0000 | [diff] [blame] | 57 | |
| 58 | /* Configure the interface to the SystemACE MCU port. |
| 59 | The SystemACE is fast, but there is no reason to have |
| 60 | excessivly tight timings. So the settings are slightly |
| 61 | generous. */ |
| 62 | |
| 63 | /* EBC0_B1AP: BME=1, TWT=2, CSN=0, OEN=1, |
| 64 | WBN=0, WBF=1, TH=0, RE=0, SOR=0, BEM=0, PEN=0 */ |
Stefan Roese | d1c3b27 | 2009-09-09 16:25:29 +0200 | [diff] [blame] | 65 | mtdcr (EBC0_CFGADDR, PB1AP); |
| 66 | mtdcr (EBC0_CFGDATA, 0x01011000); |
wdenk | db01a2e | 2004-04-15 23:14:49 +0000 | [diff] [blame] | 67 | |
| 68 | /* EBC0_B1CR: BAS=x, BS=0(1MB), BU=3(R/W), BW=0(8bits) */ |
Stefan Roese | d1c3b27 | 2009-09-09 16:25:29 +0200 | [diff] [blame] | 69 | mtdcr (EBC0_CFGADDR, PB1CR); |
| 70 | mtdcr (EBC0_CFGDATA, CONFIG_SYS_SYSTEMACE_BASE | 0x00018000); |
wdenk | db01a2e | 2004-04-15 23:14:49 +0000 | [diff] [blame] | 71 | |
| 72 | /* Enable the /PerWE output as /PerWE, instead of /PCIINT. */ |
| 73 | /* CPC0_CR1 |= PCIPW */ |
| 74 | mtdcr (0xb2, mfdcr (0xb2) | 0x00004000); |
| 75 | |
| 76 | return 0; |
| 77 | } |
| 78 | |
| 79 | #ifdef CONFIG_BOARD_PRE_INIT |
| 80 | int board_pre_init (void) |
| 81 | { |
| 82 | return board_early_init_f (); |
| 83 | } |
| 84 | |
| 85 | #endif |
| 86 | |
| 87 | /* |
Stefan Roese | a47a12b | 2010-04-15 16:07:28 +0200 | [diff] [blame] | 88 | * This function is also called by arch/powerpc/lib/board.c:board_init_f (it is |
wdenk | db01a2e | 2004-04-15 23:14:49 +0000 | [diff] [blame] | 89 | * also in the init_sequence array) but later. Many more things are |
| 90 | * configured, but we are still running from flash. |
| 91 | */ |
| 92 | int checkboard (void) |
| 93 | { |
| 94 | unsigned vers, status; |
| 95 | |
| 96 | /* check that the SystemACE chip is alive. */ |
| 97 | printf ("ACE: "); |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 98 | vers = readw (CONFIG_SYS_SYSTEMACE_BASE + 0x16); |
wdenk | db01a2e | 2004-04-15 23:14:49 +0000 | [diff] [blame] | 99 | printf ("SystemACE %u.%u (build %u)", |
| 100 | (vers >> 12) & 0x0f, (vers >> 8) & 0x0f, vers & 0xff); |
| 101 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 102 | status = readl (CONFIG_SYS_SYSTEMACE_BASE + 0x04); |
wdenk | db01a2e | 2004-04-15 23:14:49 +0000 | [diff] [blame] | 103 | #ifdef DEBUG |
| 104 | printf (" STATUS=0x%08x", status); |
| 105 | #endif |
| 106 | /* If the flash card is present and there is an initial error, |
| 107 | then force a restart of the program. */ |
| 108 | if (status & 0x00000010) { |
| 109 | printf (" CFDETECT"); |
| 110 | |
| 111 | if (status & 0x04) { |
| 112 | /* CONTROLREG = CFGPROG */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 113 | writew (0x1000, CONFIG_SYS_SYSTEMACE_BASE + 0x18); |
wdenk | db01a2e | 2004-04-15 23:14:49 +0000 | [diff] [blame] | 114 | udelay (500); |
| 115 | /* CONTROLREG = CFGRESET */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 116 | writew (0x0080, CONFIG_SYS_SYSTEMACE_BASE + 0x18); |
wdenk | db01a2e | 2004-04-15 23:14:49 +0000 | [diff] [blame] | 117 | udelay (500); |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 118 | writew (0x0000, CONFIG_SYS_SYSTEMACE_BASE + 0x18); |
wdenk | db01a2e | 2004-04-15 23:14:49 +0000 | [diff] [blame] | 119 | /* CONTROLREG = CFGSTART */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 120 | writew (0x0020, CONFIG_SYS_SYSTEMACE_BASE + 0x18); |
wdenk | db01a2e | 2004-04-15 23:14:49 +0000 | [diff] [blame] | 121 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 122 | status = readl (CONFIG_SYS_SYSTEMACE_BASE + 0x04); |
wdenk | db01a2e | 2004-04-15 23:14:49 +0000 | [diff] [blame] | 123 | } |
| 124 | } |
| 125 | |
| 126 | /* Wait for the SystemACE to program its chain of devices. */ |
| 127 | while ((status & 0x84) == 0x00) { |
| 128 | udelay (500); |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 129 | status = readl (CONFIG_SYS_SYSTEMACE_BASE + 0x04); |
wdenk | db01a2e | 2004-04-15 23:14:49 +0000 | [diff] [blame] | 130 | } |
| 131 | |
| 132 | if (status & 0x04) |
| 133 | printf (" CFG-ERROR"); |
| 134 | if (status & 0x80) |
| 135 | printf (" CFGDONE"); |
| 136 | |
| 137 | printf ("\n"); |
| 138 | |
| 139 | /* Force /RTS to active. The board it not wired quite |
| 140 | correctly to use cts/rtc flow control, so just force the |
| 141 | /RST active and forget about it. */ |
| 142 | writeb (readb (0xef600404) | 0x03, 0xef600404); |
| 143 | |
| 144 | printf ("JSE: ready\n"); |
| 145 | |
| 146 | return 0; |
| 147 | } |
| 148 | |
| 149 | /* **** No more functions called by board_init_f. **** */ |
| 150 | |
| 151 | /* |
Stefan Roese | a47a12b | 2010-04-15 16:07:28 +0200 | [diff] [blame] | 152 | * This function is called by arch/powerpc/lib/board.c:board_init_r. At this |
wdenk | db01a2e | 2004-04-15 23:14:49 +0000 | [diff] [blame] | 153 | * point, basic setup is done, U-Boot has been moved into SDRAM and |
| 154 | * PCI has been set up. From here we done late setup. |
| 155 | */ |
| 156 | int misc_init_r (void) |
| 157 | { |
| 158 | host_bridge_init (); |
| 159 | return 0; |
| 160 | } |