1 // SPDX-License-Identifier: GPL-2.0+
11 * Shift instructions: srawi
13 * The test contains a pre-built table of instructions, operands and
14 * expected results. For each table entry, the test will cyclically use
15 * different sets of operand registers and result registers.
21 #if CONFIG_POST & CONFIG_SYS_POST_CPU
23 extern void cpu_post_exec_21 (ulong *code, ulong *cr, ulong *res, ulong op);
24 extern ulong cpu_post_makecr (long v);
26 static struct cpu_post_srawi_s
32 } cpu_post_srawi_table[] =
47 static unsigned int cpu_post_srawi_size = ARRAY_SIZE(cpu_post_srawi_table);
49 int cpu_post_test_srawi (void)
53 int flag = disable_interrupts();
55 for (i = 0; i < cpu_post_srawi_size && ret == 0; i++)
57 struct cpu_post_srawi_s *test = cpu_post_srawi_table + i;
59 for (reg = 0; reg < 32 && ret == 0; reg++)
61 unsigned int reg0 = (reg + 0) % 32;
62 unsigned int reg1 = (reg + 1) % 32;
63 unsigned int stk = reg < 16 ? 31 : 15;
64 unsigned long code[] =
67 ASM_ADDI(stk, 1, -16),
69 ASM_STW(reg0, stk, 4),
70 ASM_STW(reg1, stk, 0),
71 ASM_LWZ(reg0, stk, 8),
72 ASM_11S(test->cmd, reg1, reg0, test->op2),
73 ASM_STW(reg1, stk, 8),
74 ASM_LWZ(reg1, stk, 0),
75 ASM_LWZ(reg0, stk, 4),
81 unsigned long codecr[] =
84 ASM_ADDI(stk, 1, -16),
86 ASM_STW(reg0, stk, 4),
87 ASM_STW(reg1, stk, 0),
88 ASM_LWZ(reg0, stk, 8),
89 ASM_11S(test->cmd, reg1, reg0, test->op2) | BIT_C,
90 ASM_STW(reg1, stk, 8),
91 ASM_LWZ(reg1, stk, 0),
92 ASM_LWZ(reg0, stk, 4),
104 cpu_post_exec_21 (code, & cr, & res, test->op1);
106 ret = res == test->res && cr == 0 ? 0 : -1;
110 post_log ("Error at srawi test %d !\n", i);
116 cpu_post_exec_21 (codecr, & cr, & res, test->op1);
118 ret = res == test->res &&
119 (cr & 0xe0000000) == cpu_post_makecr (res) ? 0 : -1;
123 post_log ("Error at srawi test %d !\n", i);