]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/jse/jse.c
Merge branch 'master' of git://git.denx.de/u-boot-arm
[karo-tx-uboot.git] / board / jse / jse.c
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>
22 # include  <ppc4xx.h>
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
29  * initialized. It is called by arch/powerpc/lib/board.c:board_init_f by virtue
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    +-------------------------------------------------------------------------*/
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 */
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 */
65         mtdcr (EBC0_CFGADDR, PB1AP);
66         mtdcr (EBC0_CFGDATA, 0x01011000);
67
68         /* EBC0_B1CR: BAS=x, BS=0(1MB), BU=3(R/W), BW=0(8bits) */
69         mtdcr (EBC0_CFGADDR, PB1CR);
70         mtdcr (EBC0_CFGDATA, CONFIG_SYS_SYSTEMACE_BASE | 0x00018000);
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 /*
88  * This function is also called by arch/powerpc/lib/board.c:board_init_f (it is
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:   ");
98         vers = readw (CONFIG_SYS_SYSTEMACE_BASE + 0x16);
99         printf ("SystemACE %u.%u (build %u)",
100                 (vers >> 12) & 0x0f, (vers >> 8) & 0x0f, vers & 0xff);
101
102         status = readl (CONFIG_SYS_SYSTEMACE_BASE + 0x04);
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 */
113                         writew (0x1000, CONFIG_SYS_SYSTEMACE_BASE + 0x18);
114                         udelay (500);
115                         /* CONTROLREG = CFGRESET */
116                         writew (0x0080, CONFIG_SYS_SYSTEMACE_BASE + 0x18);
117                         udelay (500);
118                         writew (0x0000, CONFIG_SYS_SYSTEMACE_BASE + 0x18);
119                         /* CONTROLREG = CFGSTART */
120                         writew (0x0020, CONFIG_SYS_SYSTEMACE_BASE + 0x18);
121
122                         status = readl (CONFIG_SYS_SYSTEMACE_BASE + 0x04);
123                 }
124         }
125
126         /* Wait for the SystemACE to program its chain of devices. */
127         while ((status & 0x84) == 0x00) {
128                 udelay (500);
129                 status = readl (CONFIG_SYS_SYSTEMACE_BASE + 0x04);
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 /*
152  * This function is called by arch/powerpc/lib/board.c:board_init_r. At this
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 }