The following RedBoot configurations are supported:
Configuration | Mode | Description | File |
---|---|---|---|
PROM | [ROM] | RedBoot running from the boot PROM and able to access the system flash. | redboot_ROM.ecm |
FLASH | [ROM] | RedBoot running from the system flash and able to access the boot PROM. | redboot_FLASH.ecm |
RAM | [RAM] | RedBoot running from RAM and able to access the boot PROM. | redboot_RAM.ecm |
The JTAG debugger will also need setting up:
Install the Matsushita provided “project” into the “C:/Panax/wice103e/prj” directory.
Make sure the PC's BIOS has the parallel port set to full bidirectional mode.
Set the switch on the front of the board to boot from “boot PROM”.
Connect the board's Debug Serial port to a computer by a null modem cable.
To perform the first half of the operation, the following steps should be followed:
Run the following commands at the JTAG debugger's prompt to set up the MMU registers on the CPU.
ed 0xc0002000, 0x12000580 ed 0xd8c00100, 0x8000fe01 ed 0xd8c00200, 0x21111000 ed 0xd8c00204, 0x00100200 ed 0xd8c00208, 0x00000004 ed 0xd8c00110, 0x8400fe01 ed 0xd8c00210, 0x21111000 ed 0xd8c00214, 0x00100200 ed 0xd8c00218, 0x00000004 ed 0xd8c00120, 0x8600ff81 ed 0xd8c00220, 0x21111000 ed 0xd8c00224, 0x00100200 ed 0xd8c00228, 0x00000004 ed 0xd8c00130, 0x8680ff81 ed 0xd8c00230, 0x21111000 ed 0xd8c00234, 0x00100200 ed 0xd8c00238, 0x00000004 ed 0xd8c00140, 0x9800f801 ed 0xd8c00240, 0x00140000 ed 0xd8c00244, 0x11011100 ed 0xd8c00248, 0x01000001 ed 0xda000000, 0x55561645 ed 0xda000004, 0x000003c0 ed 0xda000008, 0x9000fe01 ed 0xda00000c, 0x9200fe01 ed 0xda000000, 0xa89b0654 |
ex 0x80000000,0x81ffffff,/mexram ex 0x84000000,0x85ffffff,/mexram ex 0x86000000,0x867fffff,/mexram ex 0x86800000,0x87ffffff,/mexram ex 0x8c000000,0x8cffffff,/mexram ex 0x90000000,0x93ffffff,/mexram |
Instruct the debugger to load the RAM RedBoot image into RAM:
_pc=90000000 u_pc rd redboot.ram,90000000 |
Load the boot PROM RedBoot into RAM:
rd redboot.prom,91020000 |
g |
Instruct RedBoot to initialise the boot PROM:
RedBoot> fi init |
Write the previously loaded redboot.prom image into the boot PROM:
RedBoot> fi write -f 0x80000000 -b 0x91020000 -l 0x00020000 |
Check that RedBoot has written the image:
RedBoot> dump -b 0x91020000 RedBoot> dump -b 0x80000000 |
Barring the difference in address, the two dumps should be the same.
Run the following command to initialise the system flash:
RedBoot> fi init |
Then program the system flash based RedBoot into the system flash:
RedBoot> load -r -b %{FREEMEMLO} redboot_FLASH.bin RedBoot> fi write -f 0x84000000 -b %{FREEMEMLO} -l 0x00020000 |
RedBoot> load -r -b %{FREEMEMLO} /tftpboot/redboot_ROM.bin RedBoot> fi write -f 0x80000000 -b %{FREEMEMLO} -l 0x00020000 |
See the Section called Persistent State Flash-based Configuration and Control in Chapter 2 for details on configuring the RedBoot in general, and also the Section called Flash Image System (FIS) in Chapter 2 for more details on programming the system flash.
The exec command which allows the loading and execution of Linux kernels, is supported for this architecture (see the Section called Executing Programs from RedBoot in Chapter 2). The exec parameters used for ASB2305 board are:
Wait time in seconds before starting kernel
Parameters passed to kernel
Kernel entry point, defaulting to the entry point of the last image loaded
The parameter string is stored in the on-chip memory at location 0x8C001000, and is prefixed by “cmdline:” if it was supplied.
RedBoot sets up the following memory map on the ASB2305 board.
Physical Address Range Description ----------------------- ----------- 0x80000000 - 0x9FFFFFFF Cached Region 0x80000000 - 0x81FFFFFF Boot PROM 0x84000000 - 0x85FFFFFF System Flash 0x86000000 - 0x86007FFF 64Kbit Sys Config EEPROM 0x86F90000 - 0x86F90003 4x 7-segment LEDs 0x86FA0000 - 0x86FA0003 Software DIP Switches 0x86FB0000 - 0x86FB001F PC16550 Debug Serial Port 0x8C000000 - 0x8FFFFFFF On-Chip Memory (repeated 16Kb SRAM) 0x90000000 - 0x93FFFFFF SDRAM 0x98000000 - 0x9BFFFFFF Paged PCI Memory Space (64Mb) 0x9C000000 - 0x9DFFFFFF PCI Local SRAM (32Mb) 0x9E000000 - 0x9E03FFFF PCI I/O Space 0x9E040000 - 0x9E0400FF AM33-PCI Bridge Registers 0x9FFFFFF4 - 0x9FFFFFF7 PCI Memory Page Register 0x9FFFFFF8 - 0x9FFFFFFF PCI Config Registers 0xA0000000 - 0xBFFFFFFF Uncached Mirror Region 0xC0000000 - 0xDFFFFFFF CPU Control Registers |
The ASB2305 HAL makes use of the on-chip memory in the following way:
0x8C000000 - 0x8C0000FF hal_vsr_table 0x8C000100 - 0x8C0001FF hal_virtual_vector_table 0x8C001000 - Linux command line (RedBoot exec command) - 0x8C003FFF Emergency DoubleFault Exception Stack |
These shell variables provide the platform-specific information needed for building RedBoot according to the procedure described in Chapter 3:
export TARGET=asb2305 export ARCH_DIR=mn10300 export PLATFORM_DIR=asb2305 |
The names of configuration files are listed above with the description of the associated modes.