diff options
author | Igor Lisitsin <igor@emcraft.com> | 2007-03-28 19:06:19 +0400 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2007-06-22 23:21:01 +0200 |
commit | a11e06965ec91270c51853407ff1261d3c740386 (patch) | |
tree | 438b2a6816ee30034a1c5d979370185570bbdba8 /board/amcc | |
parent | 02032e8f14751a1a751b09240a4f1cf9f8a2077f (diff) | |
download | u-boot-imx-a11e06965ec91270c51853407ff1261d3c740386.zip u-boot-imx-a11e06965ec91270c51853407ff1261d3c740386.tar.gz u-boot-imx-a11e06965ec91270c51853407ff1261d3c740386.tar.bz2 |
Extend POST support for PPC440
Added memory, CPU, UART, I2C and SPR POST tests for PPC440.
Signed-off-by: Igor Lisitsin <igor@emcraft.com>
--
Diffstat (limited to 'board/amcc')
-rw-r--r-- | board/amcc/sequoia/sequoia.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/board/amcc/sequoia/sequoia.c b/board/amcc/sequoia/sequoia.c index ba365ae..b49179b 100644 --- a/board/amcc/sequoia/sequoia.c +++ b/board/amcc/sequoia/sequoia.c @@ -586,3 +586,13 @@ int is_pci_host(struct pci_controller *hose) return (1); } #endif /* defined(CONFIG_PCI) */ +#if defined(CONFIG_POST) +/* + * Returns 1 if keys pressed to start the power-on long-running tests + * Called from board_init_f(). + */ +int post_hotkeys_pressed(void) +{ + return 0; /* No hotkeys supported */ +} +#endif /* CONFIG_POST */ |