2 *(C) Copyright 2005-2007 Netstal Maschinen AG
3 * Niklaus Giger (Niklaus.Giger@netstal.com)
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)
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.
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
23 #include <asm/processor.h>
25 #include <asm-ppc/u-boot.h>
26 #include "../common/nm.h"
28 DECLARE_GLOBAL_DATA_PTR;
30 #define HCU_MACH_VERSIONS_REGISTER (0x7C000000 + 0xF00000)
31 #define SYS_SLOT_ADDRESS (0x7C000000 + 0x400000)
32 #define HCU3_DIGITAL_IO_REGISTER (0x7C000000 + 0x500000)
33 #define HCU_SW_INSTALL_REQUESTED 0x10
38 void show_sdram_registers(void);
40 long int fixed_hcu4_sdram (unsigned int dram_size);
43 * This function is run very early, out of flash, and before devices are
44 * initialized. It is called by lib_ppc/board.c:board_init_f by virtue
45 * of being in the init_sequence array.
47 * The SDRAM has been initialized already -- start.S:start called
48 * init.S:init_sdram early on -- but it is not yet being used for
49 * anything, not even stack. So be careful.
52 #define CPC0_CR0 0xb1 /* Chip control register 0 */
53 #define CPC0_CR1 0xb2 /* Chip control register 1 */
54 /* Attention: If you want 1 microsecs times from the external oscillator
55 * use 0x00804051. But this causes problems with u-boot and linux!
57 #define CPC0_CR0_VALUE 0x0030103c
58 #define CPC0_CR1_VALUE 0x00004051
59 #define CPC0_ECR 0xaa /* Edge condition register */
60 #define EBC0_CFG 0x23 /* External Peripheral Control Register */
61 #define CPC0_EIRR 0xb6 /* External Interrupt Register */
64 int board_early_init_f (void)
67 * Interrupt controller setup for the HCU4 board.
68 * Note: IRQ 0-15 405GP internally generated; high; level sensitive
69 * IRQ 16 405GP internally generated; low; level sensitive
70 * IRQ 17-24 RESERVED/UNUSED
71 * IRQ 31 (EXT IRQ 6) (unused)
73 mtdcr (uicsr, 0xFFFFFFFF); /* clear all ints */
74 mtdcr (uicer, 0x00000000); /* disable all ints */
75 mtdcr (uiccr, 0x00000000); /* set all to be non-critical */
76 mtdcr (uicpr, 0xFFFFE000); /* set int polarities */
77 mtdcr (uictr, 0x00000000); /* set int trigger levels */
78 mtdcr (uicsr, 0xFFFFFFFF); /* clear all ints */
80 mtdcr(CPC0_CR1, CPC0_CR1_VALUE);
81 mtdcr(CPC0_ECR, 0x60606000);
82 mtdcr(CPC0_EIRR, 0x7c000000);
87 #ifdef CONFIG_BOARD_PRE_INIT
88 int board_pre_init (void)
90 return board_early_init_f ();
94 int sys_install_requested(void)
96 u16 *ioValuePtr = (u16 *)HCU3_DIGITAL_IO_REGISTER;
97 return (in_be16(ioValuePtr) & HCU_SW_INSTALL_REQUESTED) != 0;
100 int checkboard (void)
102 u16 *boardVersReg = (u16 *)HCU_MACH_VERSIONS_REGISTER;
103 u16 generation = in_be16(boardVersReg) & 0xf0;
104 u16 index = in_be16(boardVersReg) & 0x0f;
106 /* Cannot be done, in board_early_init */
107 mtdcr(CPC0_CR0, CPC0_CR0_VALUE);
108 /* Force /RTS to active. The board it not wired quite
109 * correctly to use cts/rtc flow control, so just force the
110 * /RST active and forget about it.
112 writeb (readb (0xef600404) | 0x03, 0xef600404);
113 nm_show_print(generation, index, 0);
118 u32 hcu_led_get(void)
120 return (~(in_be32((u32 *)GPIO0_OR)) >> 23) & 0xff;
124 * hcu_led_set value to be placed into the LEDs (max 6 bit)
126 void hcu_led_set(u32 value)
130 tmp = (tmp << 23) | 0x7FFFFF;
131 out_be32((u32 *)GPIO0_OR, tmp);
135 * sdram_init - Dummy implementation for start.S, spd_sdram or initdram
138 void sdram_init(void)
146 u32 hcu_get_slot(void)
148 u16 *slot = (u16 *)SYS_SLOT_ADDRESS;
149 return in_be16(slot) & 0x7f;
155 u32 get_serial_number(void)
157 u32 *serial = (u32 *)CFG_FLASH_BASE;
159 if (in_be32(serial) == 0xffffffff)
162 return in_be32(serial);
170 int misc_init_r(void)
172 common_misc_init_r();
173 set_params_for_sw_install( sys_install_requested(), "hcu4" );
177 long int initdram(int board_type)
180 u16 *boardVersReg = (u16 *) HCU_MACH_VERSIONS_REGISTER;
181 u16 generation = in_be16(boardVersReg) & 0xf0;
182 if (generation == HW_GENERATION_HCU3)
183 dram_size = 32*1024*1024;
184 else dram_size = 64*1024*1024;
185 fixed_hcu4_sdram(dram_size);
188 show_sdram_registers();
194 #if defined(CONFIG_POST)
196 * Returns 1 if keys pressed to start the power-on long-running tests
197 * Called from board_init_f().
199 int post_hotkeys_pressed(void)
201 return 0; /* No hotkeys supported */
203 #endif /* CONFIG_POST */
205 #if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP)
206 void ft_board_setup(void *blob, bd_t *bd)
208 ft_cpu_setup(blob, bd);
211 #endif /* defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP) */