blob: 51750bb07073f087d41571a44a9001bc27cbf26e [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Wolfgang Denkad5bb452007-03-06 18:08:43 +01002/*
3 * (C) Copyright 2002
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
Wolfgang Denkad5bb452007-03-06 18:08:43 +01005 */
6
7#include <common.h>
8
9/*
10 * CPU test
11 * Load/store multiple word instructions: lmw, stmw
12 *
Wolfgang Denk7ddd4472011-12-23 01:29:12 +000013 * 27 consecutive words are loaded from a source memory buffer
14 * into GPRs r5 through r31. After that, 27 consecutive words are stored
15 * from the GPRs r5 through r31 into a target memory buffer. The contents
Wolfgang Denkad5bb452007-03-06 18:08:43 +010016 * of the source and target buffers are then compared.
17 */
18
Wolfgang Denkad5bb452007-03-06 18:08:43 +010019#include <post.h>
20#include "cpu_asm.h"
21
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020022#if CONFIG_POST & CONFIG_SYS_POST_CPU
Wolfgang Denkad5bb452007-03-06 18:08:43 +010023
Wolfgang Denka63aec52011-12-23 01:29:10 +000024extern void cpu_post_exec_02(ulong *code, ulong op1, ulong op2);
Wolfgang Denkad5bb452007-03-06 18:08:43 +010025
Wolfgang Denka63aec52011-12-23 01:29:10 +000026int cpu_post_test_multi(void)
Wolfgang Denkad5bb452007-03-06 18:08:43 +010027{
Wolfgang Denka63aec52011-12-23 01:29:10 +000028 int ret = 0;
29 unsigned int i;
Wolfgang Denk7ddd4472011-12-23 01:29:12 +000030 ulong src[27], dst[27];
Wolfgang Denka63aec52011-12-23 01:29:10 +000031 int flag = disable_interrupts();
Wolfgang Denkad5bb452007-03-06 18:08:43 +010032
Wolfgang Denk38081ff2011-12-23 01:29:11 +000033 ulong code[] = {
34 ASM_LMW(5, 3, 0), /* lmw r5, 0(r3) */
35 ASM_STMW(5, 4, 0), /* stmr r5, 0(r4) */
36 ASM_BLR, /* blr */
37 };
Wolfgang Denkad5bb452007-03-06 18:08:43 +010038
Wolfgang Denk38081ff2011-12-23 01:29:11 +000039 for (i = 0; i < ARRAY_SIZE(src); ++i) {
40 src[i] = i;
41 dst[i] = 0;
Wolfgang Denkad5bb452007-03-06 18:08:43 +010042 }
43
Wolfgang Denk38081ff2011-12-23 01:29:11 +000044 cpu_post_exec_02(code, (ulong) src, (ulong) dst);
45
46 ret = memcmp(src, dst, sizeof(dst)) == 0 ? 0 : -1;
47
Wolfgang Denka63aec52011-12-23 01:29:10 +000048 if (ret != 0)
49 post_log("Error at multi test !\n");
Wolfgang Denkad5bb452007-03-06 18:08:43 +010050
Wolfgang Denka63aec52011-12-23 01:29:10 +000051 if (flag)
52 enable_interrupts();
Wolfgang Denkad5bb452007-03-06 18:08:43 +010053
Wolfgang Denka63aec52011-12-23 01:29:10 +000054 return ret;
Wolfgang Denkad5bb452007-03-06 18:08:43 +010055}
56
57#endif