2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2007-03-06 17:08:43 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2002
|
|
|
|
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2019-11-14 19:57:42 +00:00
|
|
|
#include <irq_func.h>
|
2007-03-06 17:08:43 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* CPU test
|
|
|
|
* Load/store multiple word instructions: lmw, stmw
|
|
|
|
*
|
2011-12-23 01:29:12 +00:00
|
|
|
* 27 consecutive words are loaded from a source memory buffer
|
|
|
|
* into GPRs r5 through r31. After that, 27 consecutive words are stored
|
|
|
|
* from the GPRs r5 through r31 into a target memory buffer. The contents
|
2007-03-06 17:08:43 +00:00
|
|
|
* of the source and target buffers are then compared.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <post.h>
|
|
|
|
#include "cpu_asm.h"
|
|
|
|
|
2008-10-16 13:01:15 +00:00
|
|
|
#if CONFIG_POST & CONFIG_SYS_POST_CPU
|
2007-03-06 17:08:43 +00:00
|
|
|
|
2011-12-23 01:29:10 +00:00
|
|
|
extern void cpu_post_exec_02(ulong *code, ulong op1, ulong op2);
|
2007-03-06 17:08:43 +00:00
|
|
|
|
2011-12-23 01:29:10 +00:00
|
|
|
int cpu_post_test_multi(void)
|
2007-03-06 17:08:43 +00:00
|
|
|
{
|
2011-12-23 01:29:10 +00:00
|
|
|
int ret = 0;
|
|
|
|
unsigned int i;
|
2011-12-23 01:29:12 +00:00
|
|
|
ulong src[27], dst[27];
|
2011-12-23 01:29:10 +00:00
|
|
|
int flag = disable_interrupts();
|
2007-03-06 17:08:43 +00:00
|
|
|
|
2011-12-23 01:29:11 +00:00
|
|
|
ulong code[] = {
|
|
|
|
ASM_LMW(5, 3, 0), /* lmw r5, 0(r3) */
|
|
|
|
ASM_STMW(5, 4, 0), /* stmr r5, 0(r4) */
|
|
|
|
ASM_BLR, /* blr */
|
|
|
|
};
|
2007-03-06 17:08:43 +00:00
|
|
|
|
2011-12-23 01:29:11 +00:00
|
|
|
for (i = 0; i < ARRAY_SIZE(src); ++i) {
|
|
|
|
src[i] = i;
|
|
|
|
dst[i] = 0;
|
|
|
|
}
|
2007-03-06 17:08:43 +00:00
|
|
|
|
2011-12-23 01:29:11 +00:00
|
|
|
cpu_post_exec_02(code, (ulong) src, (ulong) dst);
|
2007-03-06 17:08:43 +00:00
|
|
|
|
2011-12-23 01:29:11 +00:00
|
|
|
ret = memcmp(src, dst, sizeof(dst)) == 0 ? 0 : -1;
|
2007-03-06 17:08:43 +00:00
|
|
|
|
2011-12-23 01:29:10 +00:00
|
|
|
if (ret != 0)
|
|
|
|
post_log("Error at multi test !\n");
|
2007-03-06 17:08:43 +00:00
|
|
|
|
2011-12-23 01:29:10 +00:00
|
|
|
if (flag)
|
|
|
|
enable_interrupts();
|
2008-08-06 12:05:38 +00:00
|
|
|
|
2011-12-23 01:29:10 +00:00
|
|
|
return ret;
|
2007-03-06 17:08:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|