]> git.ipfire.org Git - people/ms/u-boot.git/blame - post/lib_powerpc/rlwnm.c
Merge branch 'u-boot/master' into 'u-boot-arm/master'
[people/ms/u-boot.git] / post / lib_powerpc / rlwnm.c
CommitLineData
ad5bb451
WD
1/*
2 * (C) Copyright 2002
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
1a459660 5 * SPDX-License-Identifier: GPL-2.0+
ad5bb451
WD
6 */
7
8#include <common.h>
9
10/*
11 * CPU test
12 * Shift instructions: rlwnm
13 *
14 * The test contains a pre-built table of instructions, operands and
15 * expected results. For each table entry, the test will cyclically use
16 * different sets of operand registers and result registers.
17 */
18
ad5bb451
WD
19#include <post.h>
20#include "cpu_asm.h"
21
6d0f6bcf 22#if CONFIG_POST & CONFIG_SYS_POST_CPU
ad5bb451
WD
23
24extern void cpu_post_exec_22 (ulong *code, ulong *cr, ulong *res, ulong op1,
25 ulong op2);
26extern ulong cpu_post_makecr (long v);
27
28static struct cpu_post_rlwnm_s
29{
30 ulong cmd;
31 ulong op1;
32 ulong op2;
33 uchar mb;
34 uchar me;
35 ulong res;
36} cpu_post_rlwnm_table[] =
37{
38 {
53677ef1 39 OP_RLWNM,
ad5bb451
WD
40 0xffff0000,
41 24,
42 16,
43 23,
44 0x0000ff00
45 },
46};
d2397817 47static unsigned int cpu_post_rlwnm_size = ARRAY_SIZE(cpu_post_rlwnm_table);
ad5bb451
WD
48
49int cpu_post_test_rlwnm (void)
50{
51 int ret = 0;
52 unsigned int i, reg;
53 int flag = disable_interrupts();
54
55 for (i = 0; i < cpu_post_rlwnm_size && ret == 0; i++)
56 {
57 struct cpu_post_rlwnm_s *test = cpu_post_rlwnm_table + i;
58
59 for (reg = 0; reg < 32 && ret == 0; reg++)
60 {
61 unsigned int reg0 = (reg + 0) % 32;
62 unsigned int reg1 = (reg + 1) % 32;
63 unsigned int reg2 = (reg + 2) % 32;
64 unsigned int stk = reg < 16 ? 31 : 15;
53677ef1 65 unsigned long code[] =
ad5bb451
WD
66 {
67 ASM_STW(stk, 1, -4),
68 ASM_ADDI(stk, 1, -24),
69 ASM_STW(3, stk, 12),
70 ASM_STW(4, stk, 16),
71 ASM_STW(reg0, stk, 8),
72 ASM_STW(reg1, stk, 4),
73 ASM_STW(reg2, stk, 0),
74 ASM_LWZ(reg1, stk, 12),
75 ASM_LWZ(reg0, stk, 16),
76 ASM_122(test->cmd, reg2, reg1, reg0, test->mb, test->me),
77 ASM_STW(reg2, stk, 12),
78 ASM_LWZ(reg2, stk, 0),
79 ASM_LWZ(reg1, stk, 4),
80 ASM_LWZ(reg0, stk, 8),
81 ASM_LWZ(3, stk, 12),
82 ASM_ADDI(1, stk, 24),
83 ASM_LWZ(stk, 1, -4),
84 ASM_BLR,
85 };
53677ef1 86 unsigned long codecr[] =
ad5bb451
WD
87 {
88 ASM_STW(stk, 1, -4),
89 ASM_ADDI(stk, 1, -24),
90 ASM_STW(3, stk, 12),
91 ASM_STW(4, stk, 16),
92 ASM_STW(reg0, stk, 8),
93 ASM_STW(reg1, stk, 4),
94 ASM_STW(reg2, stk, 0),
95 ASM_LWZ(reg1, stk, 12),
96 ASM_LWZ(reg0, stk, 16),
97 ASM_122(test->cmd, reg2, reg1, reg0, test->mb, test->me) |
98 BIT_C,
99 ASM_STW(reg2, stk, 12),
100 ASM_LWZ(reg2, stk, 0),
101 ASM_LWZ(reg1, stk, 4),
102 ASM_LWZ(reg0, stk, 8),
103 ASM_LWZ(3, stk, 12),
104 ASM_ADDI(1, stk, 24),
105 ASM_LWZ(stk, 1, -4),
106 ASM_BLR,
107 };
108 ulong res;
109 ulong cr;
110
111 if (ret == 0)
112 {
53677ef1
WD
113 cr = 0;
114 cpu_post_exec_22 (code, & cr, & res, test->op1, test->op2);
ad5bb451 115
53677ef1 116 ret = res == test->res && cr == 0 ? 0 : -1;
ad5bb451 117
53677ef1
WD
118 if (ret != 0)
119 {
93e14596 120 post_log ("Error at rlwnm test %d !\n", i);
53677ef1 121 }
ad5bb451
WD
122 }
123
124 if (ret == 0)
125 {
53677ef1 126 cpu_post_exec_22 (codecr, & cr, & res, test->op1, test->op2);
ad5bb451 127
53677ef1 128 ret = res == test->res &&
ad5bb451
WD
129 (cr & 0xe0000000) == cpu_post_makecr (res) ? 0 : -1;
130
53677ef1
WD
131 if (ret != 0)
132 {
93e14596
WD
133 post_log ("Error at rlwnm test %d !\n", i);
134 }
ad5bb451
WD
135 }
136 }
137 }
138
139 if (flag)
53677ef1 140 enable_interrupts();
ad5bb451
WD
141
142 return ret;
143}
144
145#endif