diff options
author | Niklaus Giger <niklaus.giger@member.fsf.org> | 2009-10-04 20:04:21 +0200 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2009-10-07 09:15:26 +0200 |
commit | 78d2a641371ec71cc3786b167a318c7b115fbb90 (patch) | |
tree | 563e9553e614b8d5826eb066b7fedeed6e26ff8d /cpu/ppc4xx/Makefile | |
parent | ddc922ff2c20ae0b7f9ce2df1ac28143e2f325bd (diff) | |
download | u-boot-imx-78d2a641371ec71cc3786b167a318c7b115fbb90.zip u-boot-imx-78d2a641371ec71cc3786b167a318c7b115fbb90.tar.gz u-boot-imx-78d2a641371ec71cc3786b167a318c7b115fbb90.tar.bz2 |
ppc4xx: Rework cmd reginfo
The command "reginfo" got an overhaul for the ppc4xx. It dumps all the
relevant HW configuration registers (address, symbolic name, content).
This allows to easily detect errors in *.h files and changes in the HW
configuration.
Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'cpu/ppc4xx/Makefile')
-rw-r--r-- | cpu/ppc4xx/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cpu/ppc4xx/Makefile b/cpu/ppc4xx/Makefile index 2050b17..365f966 100644 --- a/cpu/ppc4xx/Makefile +++ b/cpu/ppc4xx/Makefile @@ -33,6 +33,7 @@ SOBJS += dcr.o SOBJS += kgdb.o COBJS := 40x_spd_sdram.o + COBJS += 44x_spd_ddr.o COBJS += 44x_spd_ddr2.o ifdef CONFIG_PPC4xx_DDR_AUTOCALIBRATION @@ -54,6 +55,9 @@ COBJS += fdt.o COBJS += i2c.o COBJS += interrupts.o COBJS += iop480_uart.o +ifdef CONFIG_CMD_REGINFO +COBJS += reginfo.o +endif COBJS += sdram.o COBJS += speed.o COBJS += tlb.o |