3 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
4 * Marius Groeger <mgroeger@sysgo.de>
6 * 2004 (c) MontaVista Software, Inc.
8 * See file CREDITS for list of people who contributed to this
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 of
14 * the License, or (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
30 DECLARE_GLOBAL_DATA_PTR
;
32 /* ------------------------------------------------------------------------- */
35 * Board dependent initialisation
39 #define ECOR_RESET 0x80
40 #define ECOR_LEVEL_IRQ 0x40
41 #define ECOR_WR_ATTRIB 0x04
42 #define ECOR_ENABLE 0x01
45 #define ECSR_IOIS8 0x20
46 #define ECSR_PWRDWN 0x04
48 #define SMC_IO_SHIFT 2
49 #define NCR_0 (*((volatile u_char *)(0x100000a0)))
50 #define NCR_ENET_OSC_EN (1<<3)
53 readb(volatile u8
* p
)
59 writeb(u8 v
, volatile u8
* p
)
69 volatile u8
*addr
= (volatile u8
*)(0x18000000 + (1 << 25));
71 NCR_0
|= NCR_ENET_OSC_EN
;
74 ecor
= readb(addr
+ (ECOR
<< SMC_IO_SHIFT
)) & ~ECOR_RESET
;
75 writeb(ecor
| ECOR_RESET
, addr
+ (ECOR
<< SMC_IO_SHIFT
));
79 * The device will ignore all writes to the enable bit while
80 * reset is asserted, even if the reset bit is cleared in the
81 * same write. Must clear reset first, then enable the device.
83 writeb(ecor
, addr
+ (ECOR
<< SMC_IO_SHIFT
));
84 writeb(ecor
| ECOR_ENABLE
, addr
+ (ECOR
<< SMC_IO_SHIFT
));
87 * Set the appropriate byte/word mode.
89 ecsr
= readb(addr
+ (ECSR
<< SMC_IO_SHIFT
)) & ~ECSR_IOIS8
;
91 writeb(ecsr
, addr
+ (ECSR
<< SMC_IO_SHIFT
));
104 gd
->bd
->bi_arch_number
= MACH_TYPE_ASSABET
;
105 gd
->bd
->bi_boot_params
= 0xc0000100;
115 gd
->bd
->bi_dram
[0].start
= PHYS_SDRAM_1
;
116 gd
->bd
->bi_dram
[0].size
= PHYS_SDRAM_1_SIZE
;