]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | // SPDX-License-Identifier: GPL-2.0+ |
2d1a537d WD |
2 | /* |
3 | * (C) Copyright 2003 | |
4 | * Tait Electronics Limited, Christchurch, New Zealand | |
2d1a537d WD |
5 | */ |
6 | ||
7 | /* | |
8 | * This file provides a shell like 'test' function to return | |
9 | * true/false from an integer or string compare of two memory | |
10 | * locations or a location and a scalar/literal. | |
11 | * A few parts were lifted from bash 'test' command | |
12 | */ | |
13 | ||
14 | #include <common.h> | |
15 | #include <config.h> | |
16 | #include <command.h> | |
7b51b576 | 17 | #include <env.h> |
7861204c SW |
18 | #include <mapmem.h> |
19 | ||
20 | #include <asm/io.h> | |
2d1a537d WD |
21 | |
22 | #define EQ 0 | |
23 | #define NE 1 | |
24 | #define LT 2 | |
25 | #define GT 3 | |
26 | #define LE 4 | |
27 | #define GE 5 | |
28 | ||
29 | struct op_tbl_s { | |
30 | char *op; /* operator string */ | |
31 | int opcode; /* internal representation of opcode */ | |
32 | }; | |
33 | ||
34 | typedef struct op_tbl_s op_tbl_t; | |
35 | ||
fc9903f3 | 36 | static const op_tbl_t op_table [] = { |
2d1a537d WD |
37 | { "-lt", LT }, |
38 | { "<" , LT }, | |
39 | { "-gt", GT }, | |
40 | { ">" , GT }, | |
41 | { "-eq", EQ }, | |
42 | { "==" , EQ }, | |
43 | { "-ne", NE }, | |
44 | { "!=" , NE }, | |
45 | { "<>" , NE }, | |
46 | { "-ge", GE }, | |
47 | { ">=" , GE }, | |
48 | { "-le", LE }, | |
49 | { "<=" , LE }, | |
50 | }; | |
51 | ||
2d1a537d WD |
52 | static long evalexp(char *s, int w) |
53 | { | |
f3651764 | 54 | long l = 0; |
7861204c SW |
55 | unsigned long addr; |
56 | void *buf; | |
2d1a537d WD |
57 | |
58 | /* if the parameter starts with a * then assume is a pointer to the value we want */ | |
59 | if (s[0] == '*') { | |
7861204c SW |
60 | addr = simple_strtoul(&s[1], NULL, 16); |
61 | buf = map_physmem(addr, w, MAP_WRBACK); | |
986fe378 | 62 | if (!buf && addr) { |
7861204c SW |
63 | puts("Failed to map physical memory\n"); |
64 | return 0; | |
65 | } | |
f3651764 | 66 | switch (w) { |
736d1746 | 67 | case 1: |
dafd6488 | 68 | l = (long)(*(u8 *)buf); |
736d1746 SW |
69 | break; |
70 | case 2: | |
dafd6488 | 71 | l = (long)(*(u16 *)buf); |
736d1746 SW |
72 | break; |
73 | case 4: | |
dafd6488 | 74 | l = (long)(*(u32 *)buf); |
736d1746 | 75 | break; |
f3651764 | 76 | } |
7861204c SW |
77 | unmap_physmem(buf, w); |
78 | return l; | |
2d1a537d WD |
79 | } else { |
80 | l = simple_strtoul(s, NULL, 16); | |
81 | } | |
82 | ||
2c79fd40 SC |
83 | /* avoid overflow on mask calculus */ |
84 | return (w >= sizeof(long)) ? l : (l & ((1UL << (w * 8)) - 1)); | |
2d1a537d WD |
85 | } |
86 | ||
87 | static char * evalstr(char *s) | |
88 | { | |
89 | /* if the parameter starts with a * then assume a string pointer else its a literal */ | |
90 | if (s[0] == '*') { | |
91 | return (char *)simple_strtoul(&s[1], NULL, 16); | |
06109f49 HS |
92 | } else if (s[0] == '$') { |
93 | int i = 2; | |
94 | ||
95 | if (s[1] != '{') | |
96 | return NULL; | |
97 | ||
98 | while (s[i] != '}') { | |
99 | if (s[i] == 0) | |
100 | return NULL; | |
101 | i++; | |
102 | } | |
103 | s[i] = 0; | |
00caae6d | 104 | return env_get((const char *)&s[2]); |
2d1a537d WD |
105 | } else { |
106 | return s; | |
107 | } | |
108 | } | |
109 | ||
110 | static int stringcomp(char *s, char *t, int op) | |
111 | { | |
cc22b795 | 112 | int p; |
2d1a537d WD |
113 | char *l, *r; |
114 | ||
115 | l = evalstr(s); | |
116 | r = evalstr(t); | |
117 | ||
cc22b795 | 118 | p = strcmp(l, r); |
2d1a537d WD |
119 | switch (op) { |
120 | case EQ: return (p == 0); | |
121 | case NE: return (p != 0); | |
122 | case LT: return (p < 0); | |
123 | case GT: return (p > 0); | |
124 | case LE: return (p <= 0); | |
125 | case GE: return (p >= 0); | |
126 | } | |
127 | return (0); | |
128 | } | |
129 | ||
130 | static int arithcomp (char *s, char *t, int op, int w) | |
131 | { | |
132 | long l, r; | |
133 | ||
134 | l = evalexp (s, w); | |
135 | r = evalexp (t, w); | |
136 | ||
137 | switch (op) { | |
138 | case EQ: return (l == r); | |
139 | case NE: return (l != r); | |
140 | case LT: return (l < r); | |
141 | case GT: return (l > r); | |
142 | case LE: return (l <= r); | |
143 | case GE: return (l >= r); | |
144 | } | |
145 | return (0); | |
146 | } | |
147 | ||
088f1b19 | 148 | static int binary_test(char *op, char *arg1, char *arg2, int w) |
2d1a537d WD |
149 | { |
150 | int len, i; | |
fc9903f3 | 151 | const op_tbl_t *optp; |
2d1a537d WD |
152 | |
153 | len = strlen(op); | |
154 | ||
155 | for (optp = (op_tbl_t *)&op_table, i = 0; | |
fc9903f3 | 156 | i < ARRAY_SIZE(op_table); |
2d1a537d WD |
157 | optp++, i++) { |
158 | ||
159 | if ((strncmp (op, optp->op, len) == 0) && (len == strlen (optp->op))) { | |
160 | if (w == 0) { | |
161 | return (stringcomp(arg1, arg2, optp->opcode)); | |
162 | } else { | |
163 | return (arithcomp (arg1, arg2, optp->opcode, w)); | |
164 | } | |
165 | } | |
166 | } | |
167 | ||
168 | printf("Unknown operator '%s'\n", op); | |
169 | return 0; /* op code not found */ | |
170 | } | |
171 | ||
172 | /* command line interface to the shell test */ | |
088f1b19 | 173 | static int do_itest(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
2d1a537d | 174 | { |
cd0a9de6 | 175 | int value, w; |
2d1a537d | 176 | |
cd0a9de6 | 177 | /* Validate arguments */ |
47e26b1b | 178 | if ((argc != 4)) |
4c12eeb8 | 179 | return CMD_RET_USAGE; |
2d1a537d WD |
180 | |
181 | /* Check for a data width specification. | |
182 | * Defaults to long (4) if no specification. | |
183 | * Uses -2 as 'width' for .s (string) so as not to upset existing code | |
184 | */ | |
185 | switch (w = cmd_get_data_size(argv[0], 4)) { | |
186 | case 1: | |
187 | case 2: | |
188 | case 4: | |
189 | value = binary_test (argv[2], argv[1], argv[3], w); | |
190 | break; | |
191 | case -2: | |
192 | value = binary_test (argv[2], argv[1], argv[3], 0); | |
193 | break; | |
194 | case -1: | |
195 | default: | |
196 | puts("Invalid data width specifier\n"); | |
197 | value = 0; | |
198 | break; | |
199 | } | |
200 | ||
201 | return !value; | |
202 | } | |
203 | ||
204 | U_BOOT_CMD( | |
205 | itest, 4, 0, do_itest, | |
2fb2604d | 206 | "return true/false on integer compare", |
a89c33db | 207 | "[.b, .w, .l, .s] [*]value1 <op> [*]value2" |
2d1a537d | 208 | ); |