uboot-mt623x/board/hidden_dragon
Becky Bruce 9973e3c614 Change initdram() return type to phys_size_t
This patch changes the return type of initdram() from long int to phys_size_t.
This is required for a couple of reasons: long int limits the amount of dram
to 2GB, and u-boot in general is moving over to phys_size_t to represent the
size of physical memory.  phys_size_t is defined as an unsigned long on almost
all current platforms.

This patch *only* changes the return type of the initdram function (in
include/common.h, as well as in each board's implementation of initdram).  It
does not actually modify the code inside the function on any of the platforms;
platforms which wish to support more than 2GB of DRAM will need to modify
their initdram() function code.

Build tested with MAKEALL for ppc, arm, mips, mips-el. Booted on powerpc
MPC8641HPCN.

Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
2008-06-12 08:50:18 +02:00
..
Makefile Move "ar" flags to config.mk to allow for silent "make -s" 2006-10-09 01:02:05 +02:00
README * Patch by Yusdi Santoso, 22 Oct 2004: 2005-04-03 15:51:42 +00:00
config.mk * Patch by Yusdi Santoso, 22 Oct 2004: 2005-04-03 15:51:42 +00:00
early_init.S * Patch by Yusdi Santoso, 22 Oct 2004: 2005-04-03 15:51:42 +00:00
flash.c * Patch by Yusdi Santoso, 22 Oct 2004: 2005-04-03 15:51:42 +00:00
hidden_dragon.c Change initdram() return type to phys_size_t 2008-06-12 08:50:18 +02:00
speed.h Big white-space cleanup. 2008-05-21 00:14:08 +02:00

README

U-Boot for Hidden Dragon board
------------------------------

Hidden Dragon is a MPC824x-based board by Motorola. For the most
part it is similar to Sandpoint8245 board. So unless otherwise
mentioned, the codes in this directory are adapted from ../sandpoint
directory.

Apparently there are very few of this board out there. Even Motorola
website does not have any info on it.

RAM:
  start = 0x0000 0000
  size	= 0x0200 0000 (32 MB)

Flash:
  BANK ONE:
    start = 0xFFE0 0000
    size  = 0x0020 0000 (2 MB)
    flash chip = 29LV160TE (1x16 Mbits or 2x8 Mbits)
    flash sectors = 16K, 2x8K, 32K, 31x64K

  BANK TWO:
    NONE

The processor interrupt vectors reside on the first 256 bytes
starting from address 0xFFF00000. The "reset vector" (first
instruction executed after reset) is located on 0xFFF0 0100.

U-Boot is configured to reside in flash starting at the address of
0xFFF00000. The environment space is located in flash separately from
U-Boot, at the second sector of the first flash bank, starting from
0xFFE04000 until 0xFFE06000 (8KB).

Network:
  - RTL8139 chip on the base board	  (SUPPORTED)
  - RTL8129 chip on the processor board	  (NOT SUPPORTED)

Serial:
  - Two NS16550 compatible UART on the processor board	(SUPPORTED)
  - One NS16550 compatible UART on the base board	(UNTESTED)

Misc:
  VIA686A PCI SuperIO peripheral controller
  - 2 USB ports		    (UNTESTED)
  - 2 PS2 ports		    (UNTESTED)
  - Parallel port	    (UNTESTED)
  - IDE & floppy interface  (UNTESTED)

  S3 Savage4 video card	    (UNTESTED)

TODO:
-----
- Support for the VIA686A based peripherals
- The RTL8139 driver frequently gives rx error.
- Support for RTL8129 network controller. (Why is the support removed from
  rtl8139.c driver?)

(C) Copyright 2004
Yusdi Santoso, Adaptec Inc., yusdi_santoso@adaptec.com