diff options
author | Wolfgang Denk <wd@denx.de> | 2007-04-18 17:20:22 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2007-04-18 17:20:22 +0200 |
commit | a8227b66fa9b38fcb54ea79fa76a9e6b37995459 (patch) | |
tree | edf4e98264454667b27dfd19e2aaafb2aea296f6 /doc | |
parent | 1d10b9e99d1b4a6a880d424ec791cde45cb04614 (diff) | |
parent | 3d98b85800c80dc68227c8f10bf5c93456d6d054 (diff) | |
download | u-boot-imx-a8227b66fa9b38fcb54ea79fa76a9e6b37995459.zip u-boot-imx-a8227b66fa9b38fcb54ea79fa76a9e6b37995459.tar.gz u-boot-imx-a8227b66fa9b38fcb54ea79fa76a9e6b37995459.tar.bz2 |
Merge with /home/wd/git/u-boot/custodian/u-boot-mpc86xx
Diffstat (limited to 'doc')
-rw-r--r-- | doc/README.mpc8641hpcn | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/doc/README.mpc8641hpcn b/doc/README.mpc8641hpcn index 4a650ce..3b88f8b 100644 --- a/doc/README.mpc8641hpcn +++ b/doc/README.mpc8641hpcn @@ -121,3 +121,37 @@ To Flash U-boot into the alternative bank (0xFF800000 - 0xFFBFFFFF): 0xe300_0000 0xe3ff_ffff PCI2/PEX2 IO 16M 0xfe00_0000 0xfeff_ffff Flash(alternate)16M 0xff00_0000 0xffff_ffff Flash(boot bank)16M + +5. pixis_reset command +-------------------- +A new command, "pixis_reset", is introduced to reset mpc8641hpcn board +using the FPGA sequencer. When the board restarts, it has the option +of using either the current or alternate flash bank as the boot +image, with or without the watchdog timer enabled, and finally with +or without frequency changes. + +Usage is; + + pixis_reset + pixis_reset altbank + pixis_reset altbank wd + pixis_reset altbank cf <SYSCLK freq> <COREPLL ratio> <MPXPLL ratio> + pixis_reset cf <SYSCLK freq> <COREPLL ratio> <MPXPLL ratio> + +Examples; + + /* reset to current bank, like "reset" command */ + pixis_reset + + /* reset board but use the to alternate flash bank */ + pixis_reset altbank + + /* reset board, use alternate flash bank with watchdog timer enabled*/ + pixis_reset altbank wd + + /* reset board to alternate bank with frequency changed. + * 40 is SYSCLK, 2.5 is COREPLL ratio, 10 is MPXPLL ratio + */ + pixis-reset altbank cf 40 2.5 10 + +Valid clock choices are in the 8641 Reference Manuals. |