2002-10-07 21:13:39 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2002
|
|
|
|
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2002-12-08 09:53:23 +00:00
|
|
|
*
|
|
|
|
* Be sure to mark tests to be run before relocation as such with the
|
2008-10-16 13:01:15 +00:00
|
|
|
* CONFIG_SYS_POST_PREREL flag so that logging is done correctly if the
|
2002-12-08 09:53:23 +00:00
|
|
|
* logbuffer support is enabled.
|
2002-10-07 21:13:39 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
|
|
|
|
#include <post.h>
|
|
|
|
|
2008-05-08 13:42:47 +00:00
|
|
|
extern int ocm_post_test (int flags);
|
2002-10-07 21:13:39 +00:00
|
|
|
extern int cache_post_test (int flags);
|
|
|
|
extern int watchdog_post_test (int flags);
|
|
|
|
extern int i2c_post_test (int flags);
|
|
|
|
extern int rtc_post_test (int flags);
|
|
|
|
extern int memory_post_test (int flags);
|
|
|
|
extern int cpu_post_test (int flags);
|
2007-03-28 15:06:19 +00:00
|
|
|
extern int fpu_post_test (int flags);
|
2002-10-07 21:13:39 +00:00
|
|
|
extern int uart_post_test (int flags);
|
|
|
|
extern int ether_post_test (int flags);
|
|
|
|
extern int spi_post_test (int flags);
|
|
|
|
extern int usb_post_test (int flags);
|
|
|
|
extern int spr_post_test (int flags);
|
2003-04-27 22:52:51 +00:00
|
|
|
extern int sysmon_post_test (int flags);
|
2004-04-15 21:16:42 +00:00
|
|
|
extern int dsp_post_test (int flags);
|
2004-06-07 23:46:25 +00:00
|
|
|
extern int codec_post_test (int flags);
|
2007-07-20 13:03:03 +00:00
|
|
|
extern int ecc_post_test (int flags);
|
2011-05-10 13:35:40 +00:00
|
|
|
extern int flash_post_test(int flags);
|
2003-04-27 22:52:51 +00:00
|
|
|
|
2008-02-04 13:10:42 +00:00
|
|
|
extern int dspic_init_post_test (int flags);
|
|
|
|
extern int dspic_post_test (int flags);
|
|
|
|
extern int gdc_post_test (int flags);
|
|
|
|
extern int fpga_post_test (int flags);
|
|
|
|
extern int lwmon5_watchdog_post_test(int flags);
|
|
|
|
extern int sysmon1_post_test(int flags);
|
2010-04-24 17:27:11 +00:00
|
|
|
extern int coprocessor_post_test(int flags);
|
2011-05-10 20:22:25 +00:00
|
|
|
extern int led_post_test(int flags);
|
|
|
|
extern int button_post_test(int flags);
|
2011-09-12 04:18:40 +00:00
|
|
|
extern int memory_regions_post_test(int flags);
|
2008-02-04 13:10:42 +00:00
|
|
|
|
2003-04-27 22:52:51 +00:00
|
|
|
extern int sysmon_init_f (void);
|
|
|
|
|
|
|
|
extern void sysmon_reloc (void);
|
|
|
|
|
2002-10-07 21:13:39 +00:00
|
|
|
|
|
|
|
struct post_test post_list[] =
|
|
|
|
{
|
2008-10-16 13:01:15 +00:00
|
|
|
#if CONFIG_POST & CONFIG_SYS_POST_OCM
|
2008-05-08 13:42:47 +00:00
|
|
|
{
|
|
|
|
"OCM test",
|
|
|
|
"ocm",
|
|
|
|
"This test checks on chip memory (OCM).",
|
2008-05-08 13:46:02 +00:00
|
|
|
POST_ROM | POST_ALWAYS | POST_PREREL | POST_CRITICAL | POST_STOP,
|
2008-05-08 13:42:47 +00:00
|
|
|
&ocm_post_test,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
2008-10-16 13:01:15 +00:00
|
|
|
CONFIG_SYS_POST_OCM
|
2008-05-08 13:42:47 +00:00
|
|
|
},
|
|
|
|
#endif
|
2008-10-16 13:01:15 +00:00
|
|
|
#if CONFIG_POST & CONFIG_SYS_POST_CACHE
|
2002-10-07 21:13:39 +00:00
|
|
|
{
|
2003-06-27 21:31:46 +00:00
|
|
|
"Cache test",
|
|
|
|
"cache",
|
|
|
|
"This test verifies the CPU cache operation.",
|
|
|
|
POST_RAM | POST_ALWAYS,
|
|
|
|
&cache_post_test,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
2008-10-16 13:01:15 +00:00
|
|
|
CONFIG_SYS_POST_CACHE
|
2002-10-07 21:13:39 +00:00
|
|
|
},
|
|
|
|
#endif
|
2008-10-16 13:01:15 +00:00
|
|
|
#if CONFIG_POST & CONFIG_SYS_POST_WATCHDOG
|
2008-02-04 13:10:42 +00:00
|
|
|
#if defined(CONFIG_POST_WATCHDOG)
|
|
|
|
CONFIG_POST_WATCHDOG,
|
|
|
|
#else
|
2002-10-07 21:13:39 +00:00
|
|
|
{
|
2003-06-27 21:31:46 +00:00
|
|
|
"Watchdog timer test",
|
|
|
|
"watchdog",
|
|
|
|
"This test checks the watchdog timer.",
|
2003-07-14 22:13:32 +00:00
|
|
|
POST_RAM | POST_POWERON | POST_SLOWTEST | POST_MANUAL | POST_REBOOT,
|
2003-06-27 21:31:46 +00:00
|
|
|
&watchdog_post_test,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
2008-10-16 13:01:15 +00:00
|
|
|
CONFIG_SYS_POST_WATCHDOG
|
2002-10-07 21:13:39 +00:00
|
|
|
},
|
|
|
|
#endif
|
2008-02-04 13:10:42 +00:00
|
|
|
#endif
|
2008-10-16 13:01:15 +00:00
|
|
|
#if CONFIG_POST & CONFIG_SYS_POST_I2C
|
2002-10-07 21:13:39 +00:00
|
|
|
{
|
2003-06-27 21:31:46 +00:00
|
|
|
"I2C test",
|
|
|
|
"i2c",
|
|
|
|
"This test verifies the I2C operation.",
|
|
|
|
POST_RAM | POST_ALWAYS,
|
|
|
|
&i2c_post_test,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
2008-10-16 13:01:15 +00:00
|
|
|
CONFIG_SYS_POST_I2C
|
2002-10-07 21:13:39 +00:00
|
|
|
},
|
|
|
|
#endif
|
2008-10-16 13:01:15 +00:00
|
|
|
#if CONFIG_POST & CONFIG_SYS_POST_RTC
|
2002-10-07 21:13:39 +00:00
|
|
|
{
|
2003-06-27 21:31:46 +00:00
|
|
|
"RTC test",
|
|
|
|
"rtc",
|
|
|
|
"This test verifies the RTC operation.",
|
2003-07-14 22:13:32 +00:00
|
|
|
POST_RAM | POST_SLOWTEST | POST_MANUAL,
|
2003-06-27 21:31:46 +00:00
|
|
|
&rtc_post_test,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
2008-10-16 13:01:15 +00:00
|
|
|
CONFIG_SYS_POST_RTC
|
2002-10-07 21:13:39 +00:00
|
|
|
},
|
|
|
|
#endif
|
2008-10-16 13:01:15 +00:00
|
|
|
#if CONFIG_POST & CONFIG_SYS_POST_MEMORY
|
2002-10-07 21:13:39 +00:00
|
|
|
{
|
2003-06-27 21:31:46 +00:00
|
|
|
"Memory test",
|
|
|
|
"memory",
|
|
|
|
"This test checks RAM.",
|
2003-07-14 22:13:32 +00:00
|
|
|
POST_ROM | POST_POWERON | POST_SLOWTEST | POST_PREREL,
|
2003-06-27 21:31:46 +00:00
|
|
|
&memory_post_test,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
2008-10-16 13:01:15 +00:00
|
|
|
CONFIG_SYS_POST_MEMORY
|
2002-10-07 21:13:39 +00:00
|
|
|
},
|
|
|
|
#endif
|
2008-10-16 13:01:15 +00:00
|
|
|
#if CONFIG_POST & CONFIG_SYS_POST_CPU
|
2002-10-07 21:13:39 +00:00
|
|
|
{
|
2003-06-27 21:31:46 +00:00
|
|
|
"CPU test",
|
|
|
|
"cpu",
|
|
|
|
"This test verifies the arithmetic logic unit of"
|
|
|
|
" CPU.",
|
|
|
|
POST_RAM | POST_ALWAYS,
|
|
|
|
&cpu_post_test,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
2008-10-16 13:01:15 +00:00
|
|
|
CONFIG_SYS_POST_CPU
|
2002-10-07 21:13:39 +00:00
|
|
|
},
|
|
|
|
#endif
|
2008-10-16 13:01:15 +00:00
|
|
|
#if CONFIG_POST & CONFIG_SYS_POST_FPU
|
2007-03-28 15:06:19 +00:00
|
|
|
{
|
|
|
|
"FPU test",
|
|
|
|
"fpu",
|
|
|
|
"This test verifies the arithmetic logic unit of"
|
|
|
|
" FPU.",
|
|
|
|
POST_RAM | POST_ALWAYS,
|
|
|
|
&fpu_post_test,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
2008-10-16 13:01:15 +00:00
|
|
|
CONFIG_SYS_POST_FPU
|
2007-03-28 15:06:19 +00:00
|
|
|
},
|
|
|
|
#endif
|
2008-10-16 13:01:15 +00:00
|
|
|
#if CONFIG_POST & CONFIG_SYS_POST_UART
|
2010-10-07 12:16:25 +00:00
|
|
|
#if defined(CONFIG_POST_UART)
|
|
|
|
CONFIG_POST_UART,
|
|
|
|
#else
|
2002-10-07 21:13:39 +00:00
|
|
|
{
|
2003-06-27 21:31:46 +00:00
|
|
|
"UART test",
|
|
|
|
"uart",
|
|
|
|
"This test verifies the UART operation.",
|
2003-07-14 22:13:32 +00:00
|
|
|
POST_RAM | POST_SLOWTEST | POST_MANUAL,
|
2003-06-27 21:31:46 +00:00
|
|
|
&uart_post_test,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
2008-10-16 13:01:15 +00:00
|
|
|
CONFIG_SYS_POST_UART
|
2002-10-07 21:13:39 +00:00
|
|
|
},
|
2010-10-07 12:16:25 +00:00
|
|
|
#endif /* CONFIG_POST_UART */
|
2002-10-07 21:13:39 +00:00
|
|
|
#endif
|
2008-10-16 13:01:15 +00:00
|
|
|
#if CONFIG_POST & CONFIG_SYS_POST_ETHER
|
2002-10-07 21:13:39 +00:00
|
|
|
{
|
2003-06-27 21:31:46 +00:00
|
|
|
"ETHERNET test",
|
|
|
|
"ethernet",
|
|
|
|
"This test verifies the ETHERNET operation.",
|
2016-03-27 14:18:55 +00:00
|
|
|
POST_RAM | POST_ALWAYS,
|
2003-06-27 21:31:46 +00:00
|
|
|
ðer_post_test,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
2008-10-16 13:01:15 +00:00
|
|
|
CONFIG_SYS_POST_ETHER
|
2002-10-07 21:13:39 +00:00
|
|
|
},
|
|
|
|
#endif
|
2008-10-16 13:01:15 +00:00
|
|
|
#if CONFIG_POST & CONFIG_SYS_POST_USB
|
2002-10-07 21:13:39 +00:00
|
|
|
{
|
2003-06-27 21:31:46 +00:00
|
|
|
"USB test",
|
|
|
|
"usb",
|
|
|
|
"This test verifies the USB operation.",
|
2016-03-27 14:18:55 +00:00
|
|
|
POST_RAM | POST_ALWAYS,
|
2003-06-27 21:31:46 +00:00
|
|
|
&usb_post_test,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
2008-10-16 13:01:15 +00:00
|
|
|
CONFIG_SYS_POST_USB
|
2002-10-07 21:13:39 +00:00
|
|
|
},
|
|
|
|
#endif
|
2008-10-16 13:01:15 +00:00
|
|
|
#if CONFIG_POST & CONFIG_SYS_POST_SPR
|
2002-10-07 21:13:39 +00:00
|
|
|
{
|
2003-06-27 21:31:46 +00:00
|
|
|
"SPR test",
|
|
|
|
"spr",
|
|
|
|
"This test checks SPR contents.",
|
2008-01-09 09:38:58 +00:00
|
|
|
POST_RAM | POST_ALWAYS,
|
2003-06-27 21:31:46 +00:00
|
|
|
&spr_post_test,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
2008-10-16 13:01:15 +00:00
|
|
|
CONFIG_SYS_POST_SPR
|
2002-10-07 21:13:39 +00:00
|
|
|
},
|
|
|
|
#endif
|
2008-10-16 13:01:15 +00:00
|
|
|
#if CONFIG_POST & CONFIG_SYS_POST_SYSMON
|
2003-04-27 22:52:51 +00:00
|
|
|
{
|
2003-06-27 21:31:46 +00:00
|
|
|
"SYSMON test",
|
|
|
|
"sysmon",
|
|
|
|
"This test monitors system hardware.",
|
|
|
|
POST_RAM | POST_ALWAYS,
|
|
|
|
&sysmon_post_test,
|
|
|
|
&sysmon_init_f,
|
|
|
|
&sysmon_reloc,
|
2008-10-16 13:01:15 +00:00
|
|
|
CONFIG_SYS_POST_SYSMON
|
2003-04-27 22:52:51 +00:00
|
|
|
},
|
|
|
|
#endif
|
2008-10-16 13:01:15 +00:00
|
|
|
#if CONFIG_POST & CONFIG_SYS_POST_DSP
|
2004-04-15 21:16:42 +00:00
|
|
|
{
|
|
|
|
"DSP test",
|
|
|
|
"dsp",
|
|
|
|
"This test checks any connected DSP(s).",
|
2016-03-27 14:18:55 +00:00
|
|
|
POST_RAM | POST_ALWAYS,
|
2004-04-15 21:16:42 +00:00
|
|
|
&dsp_post_test,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
2008-10-16 13:01:15 +00:00
|
|
|
CONFIG_SYS_POST_DSP
|
2004-04-15 21:16:42 +00:00
|
|
|
},
|
|
|
|
#endif
|
2008-10-16 13:01:15 +00:00
|
|
|
#if CONFIG_POST & CONFIG_SYS_POST_CODEC
|
2004-06-07 23:46:25 +00:00
|
|
|
{
|
|
|
|
"CODEC test",
|
|
|
|
"codec",
|
|
|
|
"This test checks any connected codec(s).",
|
|
|
|
POST_RAM | POST_MANUAL,
|
|
|
|
&codec_post_test,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
2008-10-16 13:01:15 +00:00
|
|
|
CONFIG_SYS_POST_CODEC
|
2004-06-07 23:46:25 +00:00
|
|
|
},
|
|
|
|
#endif
|
2008-10-16 13:01:15 +00:00
|
|
|
#if CONFIG_POST & CONFIG_SYS_POST_ECC
|
2007-07-20 13:03:03 +00:00
|
|
|
{
|
|
|
|
"ECC test",
|
|
|
|
"ecc",
|
2008-01-13 04:35:33 +00:00
|
|
|
"This test checks the ECC facility of memory.",
|
|
|
|
POST_ROM | POST_ALWAYS | POST_PREREL,
|
2007-07-20 13:03:03 +00:00
|
|
|
&ecc_post_test,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
2008-10-16 13:01:15 +00:00
|
|
|
CONFIG_SYS_POST_ECC
|
2007-07-20 13:03:03 +00:00
|
|
|
},
|
|
|
|
#endif
|
2008-10-16 13:01:15 +00:00
|
|
|
#if CONFIG_POST & CONFIG_SYS_POST_BSPEC1
|
2008-02-04 13:10:42 +00:00
|
|
|
CONFIG_POST_BSPEC1,
|
|
|
|
#endif
|
2008-10-16 13:01:15 +00:00
|
|
|
#if CONFIG_POST & CONFIG_SYS_POST_BSPEC2
|
2008-02-04 13:10:42 +00:00
|
|
|
CONFIG_POST_BSPEC2,
|
|
|
|
#endif
|
2008-10-16 13:01:15 +00:00
|
|
|
#if CONFIG_POST & CONFIG_SYS_POST_BSPEC3
|
2008-02-04 13:10:42 +00:00
|
|
|
CONFIG_POST_BSPEC3,
|
|
|
|
#endif
|
2008-10-16 13:01:15 +00:00
|
|
|
#if CONFIG_POST & CONFIG_SYS_POST_BSPEC4
|
2008-02-04 13:10:42 +00:00
|
|
|
CONFIG_POST_BSPEC4,
|
|
|
|
#endif
|
2008-10-16 13:01:15 +00:00
|
|
|
#if CONFIG_POST & CONFIG_SYS_POST_BSPEC5
|
2008-02-04 13:10:42 +00:00
|
|
|
CONFIG_POST_BSPEC5,
|
|
|
|
#endif
|
2010-04-24 17:27:11 +00:00
|
|
|
#if CONFIG_POST & CONFIG_SYS_POST_COPROC
|
|
|
|
{
|
|
|
|
"Coprocessors communication test",
|
|
|
|
"coproc_com",
|
|
|
|
"This test checks communication with coprocessors.",
|
|
|
|
POST_RAM | POST_ALWAYS | POST_CRITICAL,
|
|
|
|
&coprocessor_post_test,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
CONFIG_SYS_POST_COPROC
|
2011-05-10 13:35:40 +00:00
|
|
|
},
|
|
|
|
#endif
|
|
|
|
#if CONFIG_POST & CONFIG_SYS_POST_FLASH
|
|
|
|
{
|
|
|
|
"Parallel NOR flash test",
|
|
|
|
"flash",
|
|
|
|
"This test verifies parallel flash operations.",
|
|
|
|
POST_RAM | POST_SLOWTEST | POST_MANUAL,
|
|
|
|
&flash_post_test,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
CONFIG_SYS_POST_FLASH
|
|
|
|
},
|
2010-04-24 17:27:11 +00:00
|
|
|
#endif
|
2011-09-12 04:18:40 +00:00
|
|
|
#if CONFIG_POST & CONFIG_SYS_POST_MEM_REGIONS
|
|
|
|
{
|
|
|
|
"Memory regions test",
|
|
|
|
"mem_regions",
|
|
|
|
"This test checks regularly placed regions of the RAM.",
|
|
|
|
POST_ROM | POST_SLOWTEST | POST_PREREL,
|
|
|
|
&memory_regions_post_test,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
CONFIG_SYS_POST_MEM_REGIONS
|
|
|
|
},
|
|
|
|
#endif
|
2002-10-07 21:13:39 +00:00
|
|
|
};
|
|
|
|
|
2011-05-10 07:28:35 +00:00
|
|
|
unsigned int post_list_size = ARRAY_SIZE(post_list);
|