diff options
author | Becky Bruce <beckyb@kernel.crashing.org> | 2010-06-17 11:37:25 -0500 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2010-07-16 10:55:09 -0500 |
commit | 199e262eb3c1b70553325c2010be0e28d9245460 (patch) | |
tree | 22c752145fe4edea133c2c468caab46ba6243abc /common/cmd_reginfo.c | |
parent | 11a3de469723a6edde776008acfccabc1fc98cac (diff) | |
download | u-boot-imx-199e262eb3c1b70553325c2010be0e28d9245460.zip u-boot-imx-199e262eb3c1b70553325c2010be0e28d9245460.tar.gz u-boot-imx-199e262eb3c1b70553325c2010be0e28d9245460.tar.bz2 |
mpc85xx: Add reginfo command
The new command dumps the TLBCAM, the LAWs, and the BR/OR regs.
Add CONFIG_CMD_REGINFO to the config for all MPC85xx parts.
Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'common/cmd_reginfo.c')
-rw-r--r-- | common/cmd_reginfo.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/common/cmd_reginfo.c b/common/cmd_reginfo.c index 94b8d58..908876c 100644 --- a/common/cmd_reginfo.c +++ b/common/cmd_reginfo.c @@ -33,6 +33,8 @@ extern void ppc4xx_reginfo(void); #include <mpc5xxx.h> #elif defined (CONFIG_MPC86xx) extern void mpc86xx_reginfo(void); +#elif defined(CONFIG_MPC85xx) +extern void mpc85xx_reginfo(void); #endif int do_reginfo (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) @@ -183,6 +185,9 @@ int do_reginfo (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) #elif defined(CONFIG_MPC86xx) mpc86xx_reginfo(); +#elif defined(CONFIG_MPC85xx) + mpc85xx_reginfo(); + #elif defined(CONFIG_BLACKFIN) puts("\nSystem Configuration registers\n"); |