diff options
author | Wolfgang Denk <wd@pollux.denx.de> | 2006-11-27 23:11:18 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2006-11-27 23:11:18 +0100 |
commit | d2c83f549378fb3fc34cb3c2e62fd772fbf8b68b (patch) | |
tree | f00383ed01ca18fa0beee4930ebb7f3dc4153e5e /board/amcc | |
parent | 4f4b602ec7524a032bdf3c6d28c7f525a4a67eaa (diff) | |
parent | 1729b92cde575476684bffe819d0b7791b57bff2 (diff) | |
download | u-boot-imx-d2c83f549378fb3fc34cb3c2e62fd772fbf8b68b.zip u-boot-imx-d2c83f549378fb3fc34cb3c2e62fd772fbf8b68b.tar.gz u-boot-imx-d2c83f549378fb3fc34cb3c2e62fd772fbf8b68b.tar.bz2 |
Merge with /home/sr/git/u-boot/denx-alpr-merge-test
Diffstat (limited to 'board/amcc')
-rw-r--r-- | board/amcc/yellowstone/yellowstone.c | 6 | ||||
-rw-r--r-- | board/amcc/yosemite/yosemite.c | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/board/amcc/yellowstone/yellowstone.c b/board/amcc/yellowstone/yellowstone.c index 92dc9d4..754ae44 100644 --- a/board/amcc/yellowstone/yellowstone.c +++ b/board/amcc/yellowstone/yellowstone.c @@ -552,3 +552,9 @@ void hw_watchdog_reset(void) } #endif + +void board_reset(void) +{ + /* give reset to BCSR */ + *(unsigned char *)(CFG_BCSR_BASE | 0x06) = 0x09; +} diff --git a/board/amcc/yosemite/yosemite.c b/board/amcc/yosemite/yosemite.c index 7f2e718..588ee90 100644 --- a/board/amcc/yosemite/yosemite.c +++ b/board/amcc/yosemite/yosemite.c @@ -548,3 +548,9 @@ void hw_watchdog_reset(void) } #endif + +void board_reset(void) +{ + /* give reset to BCSR */ + *(unsigned char *)(CFG_BCSR_BASE | 0x06) = 0x09; +} |