diff options
author | chenhui zhao <chenhui.zhao@freescale.com> | 2011-10-13 13:40:59 +0800 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2011-10-13 23:38:10 -0500 |
commit | fff80975ae97d90418ee8989aff5a28ebaf95c5b (patch) | |
tree | f8398cd84e756c71726beb932d58622b87130ff8 /board/freescale/mpc8548cds/mpc8548cds.c | |
parent | 34fdbdf8d9819a3348b1340a5fba8ae00e768fd2 (diff) | |
download | u-boot-imx-fff80975ae97d90418ee8989aff5a28ebaf95c5b.zip u-boot-imx-fff80975ae97d90418ee8989aff5a28ebaf95c5b.tar.gz u-boot-imx-fff80975ae97d90418ee8989aff5a28ebaf95c5b.tar.bz2 |
powerpc/mpc8548cds: Code cleanup and refactoring
- Rework tlb and law tables.
- PCI2 is not available on MPC8548CDS, so remove it.
- Move the memory map to the board config file.
- Rewrite the board info according to the manual.
- Remove unnecessary macros and redefine some macros to align with other boards.
- Fix some typos.
Signed-off-by: Zhao Chenhui <chenhui.zhao@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'board/freescale/mpc8548cds/mpc8548cds.c')
-rw-r--r-- | board/freescale/mpc8548cds/mpc8548cds.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/board/freescale/mpc8548cds/mpc8548cds.c b/board/freescale/mpc8548cds/mpc8548cds.c index 3bcaac4..a8d57cd 100644 --- a/board/freescale/mpc8548cds/mpc8548cds.c +++ b/board/freescale/mpc8548cds/mpc8548cds.c @@ -50,10 +50,10 @@ int checkboard (void) uint cpu_board_rev = get_cpu_board_revision (); - printf ("Board: CDS Version 0x%02x, PCI Slot %d\n", - get_board_version (), pci_slot); - - printf ("CPU Board Revision %d.%d (0x%04x)\n", + puts("Board: MPC8548CDS"); + printf(" Carrier Rev: 0x%02x, PCI Slot %d\n", + get_board_version(), pci_slot); + printf(" Daughtercard Rev: %d.%d (0x%04x)\n", MPC85XX_CPU_BOARD_MAJOR (cpu_board_rev), MPC85XX_CPU_BOARD_MINOR (cpu_board_rev), cpu_board_rev); /* |