]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/netstal/hcu4/hcu4.c
rename CFG_ macros to CONFIG_SYS
[people/ms/u-boot.git] / board / netstal / hcu4 / hcu4.c
CommitLineData
6e5de26c 1/*
74973126 2 *(C) Copyright 2005-2008 Netstal Maschinen AG
6e5de26c
NG
3 * Niklaus Giger (Niklaus.Giger@netstal.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 <asm-ppc/u-boot.h>
055606bd 26#include "../common/nm.h"
6e5de26c
NG
27
28DECLARE_GLOBAL_DATA_PTR;
29
35d22f95 30#define HCU_MACH_VERSIONS_REGISTER (0x7C000000 + 0xF00000)
74973126
NG
31#define HCU_SLOT_ADDRESS (0x7C000000 + 0x400000)
32#define HCU_DIGITAL_IO_REGISTER (0x7C000000 + 0x500000)
055606bd 33#define HCU_SW_INSTALL_REQUESTED 0x10
35d22f95 34
6e5de26c
NG
35/*
36 * This function is run very early, out of flash, and before devices are
37 * initialized. It is called by lib_ppc/board.c:board_init_f by virtue
38 * of being in the init_sequence array.
39 *
40 * The SDRAM has been initialized already -- start.S:start called
41 * init.S:init_sdram early on -- but it is not yet being used for
42 * anything, not even stack. So be careful.
43 */
44
6e5de26c 45/* Attention: If you want 1 microsecs times from the external oscillator
74973126
NG
46 * 0x00004051 is okay for u-boot/linux, but different from old vxworks values
47 * 0x00804051 causes problems with u-boot and linux!
6e5de26c 48 */
055606bd 49#define CPC0_CR0_VALUE 0x0030103c
6e5de26c 50#define CPC0_CR1_VALUE 0x00004051
6e5de26c
NG
51
52int board_early_init_f (void)
53{
055606bd
NG
54 /*
55 * Interrupt controller setup for the HCU4 board.
56 * Note: IRQ 0-15 405GP internally generated; high; level sensitive
57 * IRQ 16 405GP internally generated; low; level sensitive
58 * IRQ 17-24 RESERVED/UNUSED
59 * IRQ 31 (EXT IRQ 6) (unused)
60 */
74973126
NG
61 mtdcr(uicsr, 0xFFFFFFFF); /* clear all ints */
62 mtdcr(uicer, 0x00000000); /* disable all ints */
63 mtdcr(uiccr, 0x00000000); /* set all to be non-critical */
64 mtdcr(uicpr, 0xFFFFE000); /* set int polarities */
65 mtdcr(uictr, 0x00000000); /* set int trigger levels */
66 mtdcr(uicsr, 0xFFFFFFFF); /* clear all ints */
6e5de26c 67
74973126
NG
68 mtdcr(CPC0_CR1, CPC0_CR1_VALUE);
69 mtdcr(CPC0_ECR, 0x60606000);
70 mtdcr(CPC0_EIRR, 0x7C000000);
6e5de26c
NG
71
72 return 0;
73}
74
75#ifdef CONFIG_BOARD_PRE_INIT
76int board_pre_init (void)
77{
78 return board_early_init_f ();
79}
6e5de26c
NG
80#endif
81
055606bd
NG
82int sys_install_requested(void)
83{
74973126
NG
84 u16 ioValue = in_be16((u16 *)HCU_DIGITAL_IO_REGISTER);
85 return (ioValue & HCU_SW_INSTALL_REQUESTED) != 0;
055606bd
NG
86}
87
6e5de26c
NG
88int checkboard (void)
89{
74973126
NG
90 u16 boardVersReg = in_be16((u16 *)HCU_MACH_VERSIONS_REGISTER);
91 u16 generation = boardVersReg & 0xf0;
92 u16 index = boardVersReg & 0x0f;
93
94 /* Cannot be done in board_early_init */
95 mtdcr(cntrl0, CPC0_CR0_VALUE);
35d22f95 96
6e5de26c 97 /* Force /RTS to active. The board it not wired quite
055606bd
NG
98 * correctly to use cts/rtc flow control, so just force the
99 * /RST active and forget about it.
100 */
6e5de26c 101 writeb (readb (0xef600404) | 0x03, 0xef600404);
055606bd 102 nm_show_print(generation, index, 0);
35d22f95 103
6e5de26c
NG
104 return 0;
105}
106
07bc2056 107u32 hcu_led_get(void)
6e5de26c 108{
055606bd 109 return (~(in_be32((u32 *)GPIO0_OR)) >> 23) & 0xff;
6e5de26c
NG
110}
111
055606bd 112/*
07bc2056 113 * hcu_led_set value to be placed into the LEDs (max 6 bit)
055606bd 114 */
07bc2056 115void hcu_led_set(u32 value)
6e5de26c
NG
116{
117 u32 tmp = ~value;
35d22f95
SR
118
119 tmp = (tmp << 23) | 0x7FFFFF;
055606bd 120 out_be32((u32 *)GPIO0_OR, tmp);
6e5de26c
NG
121}
122
6e5de26c 123/*
055606bd 124 * hcu_get_slot
6e5de26c 125 */
055606bd 126u32 hcu_get_slot(void)
6e5de26c 127{
74973126
NG
128 u16 slot = in_be16((u16 *)HCU_SLOT_ADDRESS);
129 return slot & 0x7f;
6e5de26c
NG
130}
131
055606bd
NG
132/*
133 * get_serial_number
134 */
135u32 get_serial_number(void)
6e5de26c 136{
6d0f6bcf 137 u32 serial = in_be32((u32 *)CONFIG_SYS_FLASH_BASE);
35d22f95 138
74973126 139 if (serial == 0xffffffff)
055606bd 140 return 0;
35d22f95 141
74973126 142 return serial;
6e5de26c
NG
143}
144
145
055606bd 146/*
6e5de26c 147 * misc_init_r.
055606bd 148 */
6e5de26c
NG
149
150int misc_init_r(void)
151{
055606bd
NG
152 common_misc_init_r();
153 set_params_for_sw_install( sys_install_requested(), "hcu4" );
6e5de26c
NG
154 return 0;
155}
156
9973e3c6 157phys_size_t initdram(int board_type)
6e5de26c
NG
158{
159 long dram_size = 0;
74973126
NG
160 u16 boardVersReg = in_be16((u16 *)HCU_MACH_VERSIONS_REGISTER);
161 u16 generation = boardVersReg & 0xf0;
162 u16 index = boardVersReg & 0x0f;
163
164 if (generation == HW_GENERATION_HCU3 && index < 0xf)
165 dram_size = 32 << 20; /* 32 MB - RAM */
166 else
167 dram_size = 64 << 20; /* 64 MB - RAM */
168 init_ppc405_sdram(dram_size);
6e5de26c
NG
169
170#ifdef DEBUG
171 show_sdram_registers();
172#endif
173
6e5de26c
NG
174 return dram_size;
175}
055606bd
NG
176
177#if defined(CONFIG_POST)
178/*
179 * Returns 1 if keys pressed to start the power-on long-running tests
180 * Called from board_init_f().
181 */
182int post_hotkeys_pressed(void)
183{
184 return 0; /* No hotkeys supported */
185}
186#endif /* CONFIG_POST */
187
188#if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP)
189void ft_board_setup(void *blob, bd_t *bd)
190{
191 ft_cpu_setup(blob, bd);
192
193}
194#endif /* defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP) */
a0794948
NG
195
196/*
197 * Hardcoded flash setup:
198 * Flash 0 is a non-CFI AMD AM29F040 flash, 8 bit flash / 8 bit bus.
199 */
200ulong board_flash_get_legacy (ulong base, int banknum, flash_info_t * info)
201{
202 if (banknum == 0) { /* non-CFI boot flash */
203 info->portwidth = 1;
204 info->chipwidth = 1;
205 info->interface = FLASH_CFI_X8;
206 return 1;
207 } else
208 return 0;
209}