]> git.ipfire.org Git - people/ms/u-boot.git/blame - post/lib_powerpc/twox.c
Merge branch 'master' of git://git.denx.de/u-boot-arm
[people/ms/u-boot.git] / post / lib_powerpc / twox.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 * Binary instructions instr rA,rS
13 *
14 * Logic instructions: cntlzw
15 * Arithmetic instructions: extsb, extsh
16
17 * The test contains a pre-built table of instructions, operands and
18 * expected results. For each table entry, the test will cyclically use
19 * different sets of operand registers and result registers.
20 */
21
ad5bb451
WD
22#include <post.h>
23#include "cpu_asm.h"
24
6d0f6bcf 25#if CONFIG_POST & CONFIG_SYS_POST_CPU
ad5bb451
WD
26
27extern void cpu_post_exec_21 (ulong *code, ulong *cr, ulong *res, ulong op1);
28extern ulong cpu_post_makecr (long v);
29
30static struct cpu_post_twox_s
31{
32 ulong cmd;
33 ulong op;
34 ulong res;
35} cpu_post_twox_table[] =
36{
37 {
53677ef1 38 OP_EXTSB,
ad5bb451
WD
39 3,
40 3
41 },
42 {
53677ef1 43 OP_EXTSB,
ad5bb451
WD
44 0xff,
45 -1
46 },
47 {
53677ef1 48 OP_EXTSH,
ad5bb451
WD
49 3,
50 3
51 },
52 {
53677ef1 53 OP_EXTSH,
ad5bb451
WD
54 0xff,
55 0xff
56 },
57 {
53677ef1 58 OP_EXTSH,
ad5bb451
WD
59 0xffff,
60 -1
61 },
62 {
53677ef1 63 OP_CNTLZW,
ad5bb451
WD
64 0x000fffff,
65 12
66 },
67};
d2397817 68static unsigned int cpu_post_twox_size = ARRAY_SIZE(cpu_post_twox_table);
ad5bb451
WD
69
70int cpu_post_test_twox (void)
71{
72 int ret = 0;
73 unsigned int i, reg;
74 int flag = disable_interrupts();
75
76 for (i = 0; i < cpu_post_twox_size && ret == 0; i++)
77 {
78 struct cpu_post_twox_s *test = cpu_post_twox_table + i;
79
80 for (reg = 0; reg < 32 && ret == 0; reg++)
81 {
82 unsigned int reg0 = (reg + 0) % 32;
83 unsigned int reg1 = (reg + 1) % 32;
84 unsigned int stk = reg < 16 ? 31 : 15;
53677ef1 85 unsigned long code[] =
ad5bb451
WD
86 {
87 ASM_STW(stk, 1, -4),
88 ASM_ADDI(stk, 1, -16),
89 ASM_STW(3, stk, 8),
90 ASM_STW(reg0, stk, 4),
91 ASM_STW(reg1, stk, 0),
92 ASM_LWZ(reg0, stk, 8),
93 ASM_11X(test->cmd, reg1, reg0),
94 ASM_STW(reg1, stk, 8),
95 ASM_LWZ(reg1, stk, 0),
96 ASM_LWZ(reg0, stk, 4),
97 ASM_LWZ(3, stk, 8),
98 ASM_ADDI(1, stk, 16),
99 ASM_LWZ(stk, 1, -4),
100 ASM_BLR,
101 };
53677ef1 102 unsigned long codecr[] =
ad5bb451
WD
103 {
104 ASM_STW(stk, 1, -4),
105 ASM_ADDI(stk, 1, -16),
106 ASM_STW(3, stk, 8),
107 ASM_STW(reg0, stk, 4),
108 ASM_STW(reg1, stk, 0),
109 ASM_LWZ(reg0, stk, 8),
110 ASM_11X(test->cmd, reg1, reg0) | BIT_C,
111 ASM_STW(reg1, stk, 8),
112 ASM_LWZ(reg1, stk, 0),
113 ASM_LWZ(reg0, stk, 4),
114 ASM_LWZ(3, stk, 8),
115 ASM_ADDI(1, stk, 16),
116 ASM_LWZ(stk, 1, -4),
117 ASM_BLR,
118 };
119 ulong res;
120 ulong cr;
121
122 if (ret == 0)
123 {
53677ef1
WD
124 cr = 0;
125 cpu_post_exec_21 (code, & cr, & res, test->op);
ad5bb451 126
53677ef1 127 ret = res == test->res && cr == 0 ? 0 : -1;
ad5bb451 128
53677ef1
WD
129 if (ret != 0)
130 {
93e14596 131 post_log ("Error at twox test %d !\n", i);
53677ef1 132 }
ad5bb451
WD
133 }
134
135 if (ret == 0)
136 {
53677ef1 137 cpu_post_exec_21 (codecr, & cr, & res, test->op);
ad5bb451 138
53677ef1 139 ret = res == test->res &&
ad5bb451
WD
140 (cr & 0xe0000000) == cpu_post_makecr (res) ? 0 : -1;
141
53677ef1
WD
142 if (ret != 0)
143 {
93e14596
WD
144 post_log ("Error at twox test %d !\n", i);
145 }
ad5bb451
WD
146 }
147 }
148 }
149
150 if (flag)
53677ef1 151 enable_interrupts();
ad5bb451
WD
152
153 return ret;
154}
155
156#endif