Subversion Repositories HelenOS

Rev

Rev 3022 | Rev 4156 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3022 Rev 4055
1
/*
1
/*
2
 * Copyright (c) 2005 Jakub Jermar
2
 * Copyright (c) 2005 Jakub Jermar
3
 * All rights reserved.
3
 * All rights reserved.
4
 *
4
 *
5
 * Redistribution and use in source and binary forms, with or without
5
 * Redistribution and use in source and binary forms, with or without
6
 * modification, are permitted provided that the following conditions
6
 * modification, are permitted provided that the following conditions
7
 * are met:
7
 * are met:
8
 *
8
 *
9
 * - Redistributions of source code must retain the above copyright
9
 * - Redistributions of source code must retain the above copyright
10
 *   notice, this list of conditions and the following disclaimer.
10
 *   notice, this list of conditions and the following disclaimer.
11
 * - Redistributions in binary form must reproduce the above copyright
11
 * - Redistributions in binary form must reproduce the above copyright
12
 *   notice, this list of conditions and the following disclaimer in the
12
 *   notice, this list of conditions and the following disclaimer in the
13
 *   documentation and/or other materials provided with the distribution.
13
 *   documentation and/or other materials provided with the distribution.
14
 * - The name of the author may not be used to endorse or promote products
14
 * - The name of the author may not be used to endorse or promote products
15
 *   derived from this software without specific prior written permission.
15
 *   derived from this software without specific prior written permission.
16
 *
16
 *
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
29
/** @addtogroup genericconsole
29
/** @addtogroup genericconsole
30
 * @{
30
 * @{
31
 */
31
 */
32
 
32
 
33
/**
33
/**
34
 * @file    cmd.c
34
 * @file    cmd.c
35
 * @brief   Kernel console command wrappers.
35
 * @brief   Kernel console command wrappers.
36
 *
36
 *
37
 * This file is meant to contain all wrapper functions for
37
 * This file is meant to contain all wrapper functions for
38
 * all kconsole commands. The point is in separating
38
 * all kconsole commands. The point is in separating
39
 * kconsole specific wrappers from kconsole-unaware functions
39
 * kconsole specific wrappers from kconsole-unaware functions
40
 * from other subsystems.
40
 * from other subsystems.
41
 */
41
 */
42
 
42
 
43
#include <console/cmd.h>
43
#include <console/cmd.h>
44
#include <console/console.h>
44
#include <console/console.h>
45
#include <console/kconsole.h>
45
#include <console/kconsole.h>
46
#include <print.h>
46
#include <print.h>
47
#include <panic.h>
47
#include <panic.h>
48
#include <arch/types.h>
48
#include <arch/types.h>
49
#include <adt/list.h>
49
#include <adt/list.h>
50
#include <arch.h>
50
#include <arch.h>
51
#include <config.h>
51
#include <config.h>
52
#include <func.h>
52
#include <func.h>
-
 
53
#include <string.h>
53
#include <macros.h>
54
#include <macros.h>
54
#include <debug.h>
55
#include <debug.h>
55
#include <symtab.h>
56
#include <symtab.h>
56
#include <cpu.h>
57
#include <cpu.h>
57
#include <mm/tlb.h>
58
#include <mm/tlb.h>
58
#include <arch/mm/tlb.h>
59
#include <arch/mm/tlb.h>
59
#include <mm/frame.h>
60
#include <mm/frame.h>
60
#include <main/version.h>
61
#include <main/version.h>
61
#include <mm/slab.h>
62
#include <mm/slab.h>
62
#include <proc/scheduler.h>
63
#include <proc/scheduler.h>
63
#include <proc/thread.h>
64
#include <proc/thread.h>
64
#include <proc/task.h>
65
#include <proc/task.h>
65
#include <ipc/ipc.h>
66
#include <ipc/ipc.h>
66
#include <ipc/irq.h>
67
#include <ipc/irq.h>
67
 
68
 
68
#ifdef CONFIG_TEST
69
#ifdef CONFIG_TEST
69
#include <test.h>
70
#include <test.h>
70
#endif
71
#endif
71
 
72
 
72
/* Data and methods for 'help' command. */
73
/* Data and methods for 'help' command. */
73
static int cmd_help(cmd_arg_t *argv);
74
static int cmd_help(cmd_arg_t *argv);
74
static cmd_info_t help_info = {
75
static cmd_info_t help_info = {
75
    .name = "help",
76
    .name = "help",
76
    .description = "List of supported commands.",
77
    .description = "List of supported commands.",
77
    .func = cmd_help,
78
    .func = cmd_help,
78
    .argc = 0
79
    .argc = 0
79
};
80
};
80
 
81
 
81
static cmd_info_t exit_info = {
82
static cmd_info_t exit_info = {
82
    .name = "exit",
83
    .name = "exit",
83
    .description = "Exit kconsole.",
84
    .description = "Exit kconsole.",
84
    .argc = 0
85
    .argc = 0
85
};
86
};
86
 
87
 
87
static int cmd_reboot(cmd_arg_t *argv);
88
static int cmd_reboot(cmd_arg_t *argv);
88
static cmd_info_t reboot_info = {
89
static cmd_info_t reboot_info = {
89
    .name = "reboot",
90
    .name = "reboot",
90
    .description = "Reboot.",
91
    .description = "Reboot.",
91
    .func = cmd_reboot,
92
    .func = cmd_reboot,
92
    .argc = 0
93
    .argc = 0
93
};
94
};
94
 
95
 
95
static int cmd_uptime(cmd_arg_t *argv);
96
static int cmd_uptime(cmd_arg_t *argv);
96
static cmd_info_t uptime_info = {
97
static cmd_info_t uptime_info = {
97
    .name = "uptime",
98
    .name = "uptime",
98
    .description = "Print uptime information.",
99
    .description = "Print uptime information.",
99
    .func = cmd_uptime,
100
    .func = cmd_uptime,
100
    .argc = 0
101
    .argc = 0
101
};
102
};
102
 
103
 
103
static int cmd_continue(cmd_arg_t *argv);
104
static int cmd_continue(cmd_arg_t *argv);
104
static cmd_info_t continue_info = {
105
static cmd_info_t continue_info = {
105
    .name = "continue",
106
    .name = "continue",
106
    .description = "Return console back to userspace.",
107
    .description = "Return console back to userspace.",
107
    .func = cmd_continue,
108
    .func = cmd_continue,
108
    .argc = 0
109
    .argc = 0
109
};
110
};
110
 
111
 
111
#ifdef CONFIG_TEST
112
#ifdef CONFIG_TEST
112
static int cmd_tests(cmd_arg_t *argv);
113
static int cmd_tests(cmd_arg_t *argv);
113
static cmd_info_t tests_info = {
114
static cmd_info_t tests_info = {
114
    .name = "tests",
115
    .name = "tests",
115
    .description = "Print available kernel tests.",
116
    .description = "Print available kernel tests.",
116
    .func = cmd_tests,
117
    .func = cmd_tests,
117
    .argc = 0
118
    .argc = 0
118
};
119
};
119
 
120
 
120
static char test_buf[MAX_CMDLINE + 1];
121
static char test_buf[MAX_CMDLINE + 1];
121
static int cmd_test(cmd_arg_t *argv);
122
static int cmd_test(cmd_arg_t *argv);
122
static cmd_arg_t test_argv[] = {
123
static cmd_arg_t test_argv[] = {
123
    {
124
    {
124
        .type = ARG_TYPE_STRING,
125
        .type = ARG_TYPE_STRING,
125
        .buffer = test_buf,
126
        .buffer = test_buf,
126
        .len = sizeof(test_buf)
127
        .len = sizeof(test_buf)
127
    }
128
    }
128
};
129
};
129
static cmd_info_t test_info = {
130
static cmd_info_t test_info = {
130
    .name = "test",
131
    .name = "test",
131
    .description = "Run kernel test.",
132
    .description = "Run kernel test.",
132
    .func = cmd_test,
133
    .func = cmd_test,
133
    .argc = 1,
134
    .argc = 1,
134
    .argv = test_argv
135
    .argv = test_argv
135
};
136
};
136
 
137
 
137
static int cmd_bench(cmd_arg_t *argv);
138
static int cmd_bench(cmd_arg_t *argv);
138
static cmd_arg_t bench_argv[] = {
139
static cmd_arg_t bench_argv[] = {
139
    {
140
    {
140
        .type = ARG_TYPE_STRING,
141
        .type = ARG_TYPE_STRING,
141
        .buffer = test_buf,
142
        .buffer = test_buf,
142
        .len = sizeof(test_buf)
143
        .len = sizeof(test_buf)
143
    },
144
    },
144
    {
145
    {
145
        .type = ARG_TYPE_INT,
146
        .type = ARG_TYPE_INT,
146
    }
147
    }
147
};
148
};
148
static cmd_info_t bench_info = {
149
static cmd_info_t bench_info = {
149
    .name = "bench",
150
    .name = "bench",
150
    .description = "Run kernel test as benchmark.",
151
    .description = "Run kernel test as benchmark.",
151
    .func = cmd_bench,
152
    .func = cmd_bench,
152
    .argc = 2,
153
    .argc = 2,
153
    .argv = bench_argv
154
    .argv = bench_argv
154
};
155
};
155
#endif
156
#endif
156
 
157
 
157
/* Data and methods for 'description' command. */
158
/* Data and methods for 'description' command. */
158
static int cmd_desc(cmd_arg_t *argv);
159
static int cmd_desc(cmd_arg_t *argv);
159
static void desc_help(void);
160
static void desc_help(void);
160
static char desc_buf[MAX_CMDLINE+1];
161
static char desc_buf[MAX_CMDLINE+1];
161
static cmd_arg_t desc_argv = {
162
static cmd_arg_t desc_argv = {
162
    .type = ARG_TYPE_STRING,
163
    .type = ARG_TYPE_STRING,
163
    .buffer = desc_buf,
164
    .buffer = desc_buf,
164
    .len = sizeof(desc_buf)
165
    .len = sizeof(desc_buf)
165
};
166
};
166
static cmd_info_t desc_info = {
167
static cmd_info_t desc_info = {
167
    .name = "describe",
168
    .name = "describe",
168
    .description = "Describe specified command.",
169
    .description = "Describe specified command.",
169
    .help = desc_help,
170
    .help = desc_help,
170
    .func = cmd_desc,
171
    .func = cmd_desc,
171
    .argc = 1,
172
    .argc = 1,
172
    .argv = &desc_argv
173
    .argv = &desc_argv
173
};
174
};
174
 
175
 
175
/* Data and methods for 'symaddr' command. */
176
/* Data and methods for 'symaddr' command. */
176
static int cmd_symaddr(cmd_arg_t *argv);
177
static int cmd_symaddr(cmd_arg_t *argv);
177
static char symaddr_buf[MAX_CMDLINE+1];
178
static char symaddr_buf[MAX_CMDLINE+1];
178
static cmd_arg_t symaddr_argv = {
179
static cmd_arg_t symaddr_argv = {
179
    .type = ARG_TYPE_STRING,
180
    .type = ARG_TYPE_STRING,
180
    .buffer = symaddr_buf,
181
    .buffer = symaddr_buf,
181
    .len = sizeof(symaddr_buf)
182
    .len = sizeof(symaddr_buf)
182
};
183
};
183
static cmd_info_t symaddr_info = {
184
static cmd_info_t symaddr_info = {
184
    .name = "symaddr",
185
    .name = "symaddr",
185
    .description = "Return symbol address.",
186
    .description = "Return symbol address.",
186
    .func = cmd_symaddr,
187
    .func = cmd_symaddr,
187
    .argc = 1,
188
    .argc = 1,
188
    .argv = &symaddr_argv
189
    .argv = &symaddr_argv
189
};
190
};
190
 
191
 
191
static char set_buf[MAX_CMDLINE+1];
192
static char set_buf[MAX_CMDLINE+1];
192
static int cmd_set4(cmd_arg_t *argv);
193
static int cmd_set4(cmd_arg_t *argv);
193
static cmd_arg_t set4_argv[] = {
194
static cmd_arg_t set4_argv[] = {
194
    {
195
    {
195
        .type = ARG_TYPE_STRING,
196
        .type = ARG_TYPE_STRING,
196
        .buffer = set_buf,
197
        .buffer = set_buf,
197
        .len = sizeof(set_buf)
198
        .len = sizeof(set_buf)
198
    },
199
    },
199
    {
200
    {
200
        .type = ARG_TYPE_INT
201
        .type = ARG_TYPE_INT
201
    }
202
    }
202
};
203
};
203
static cmd_info_t set4_info = {
204
static cmd_info_t set4_info = {
204
    .name = "set4",
205
    .name = "set4",
205
    .description = "set <dest_addr> <value> - 4byte version",
206
    .description = "set <dest_addr> <value> - 4byte version",
206
    .func = cmd_set4,
207
    .func = cmd_set4,
207
    .argc = 2,
208
    .argc = 2,
208
    .argv = set4_argv
209
    .argv = set4_argv
209
};
210
};
210
 
211
 
211
/* Data and methods for 'call0' command. */
212
/* Data and methods for 'call0' command. */
212
static char call0_buf[MAX_CMDLINE + 1];
213
static char call0_buf[MAX_CMDLINE + 1];
213
static char carg1_buf[MAX_CMDLINE + 1];
214
static char carg1_buf[MAX_CMDLINE + 1];
214
static char carg2_buf[MAX_CMDLINE + 1];
215
static char carg2_buf[MAX_CMDLINE + 1];
215
static char carg3_buf[MAX_CMDLINE + 1];
216
static char carg3_buf[MAX_CMDLINE + 1];
216
 
217
 
217
static int cmd_call0(cmd_arg_t *argv);
218
static int cmd_call0(cmd_arg_t *argv);
218
static cmd_arg_t call0_argv = {
219
static cmd_arg_t call0_argv = {
219
    .type = ARG_TYPE_STRING,
220
    .type = ARG_TYPE_STRING,
220
    .buffer = call0_buf,
221
    .buffer = call0_buf,
221
    .len = sizeof(call0_buf)
222
    .len = sizeof(call0_buf)
222
};
223
};
223
static cmd_info_t call0_info = {
224
static cmd_info_t call0_info = {
224
    .name = "call0",
225
    .name = "call0",
225
    .description = "call0 <function> -> call function().",
226
    .description = "call0 <function> -> call function().",
226
    .func = cmd_call0,
227
    .func = cmd_call0,
227
    .argc = 1,
228
    .argc = 1,
228
    .argv = &call0_argv
229
    .argv = &call0_argv
229
};
230
};
230
 
231
 
231
/* Data and methods for 'mcall0' command. */
232
/* Data and methods for 'mcall0' command. */
232
static int cmd_mcall0(cmd_arg_t *argv);
233
static int cmd_mcall0(cmd_arg_t *argv);
233
static cmd_arg_t mcall0_argv = {
234
static cmd_arg_t mcall0_argv = {
234
    .type = ARG_TYPE_STRING,
235
    .type = ARG_TYPE_STRING,
235
    .buffer = call0_buf,
236
    .buffer = call0_buf,
236
    .len = sizeof(call0_buf)
237
    .len = sizeof(call0_buf)
237
};
238
};
238
static cmd_info_t mcall0_info = {
239
static cmd_info_t mcall0_info = {
239
    .name = "mcall0",
240
    .name = "mcall0",
240
    .description = "mcall0 <function> -> call function() on each CPU.",
241
    .description = "mcall0 <function> -> call function() on each CPU.",
241
    .func = cmd_mcall0,
242
    .func = cmd_mcall0,
242
    .argc = 1,
243
    .argc = 1,
243
    .argv = &mcall0_argv
244
    .argv = &mcall0_argv
244
};
245
};
245
 
246
 
246
/* Data and methods for 'call1' command. */
247
/* Data and methods for 'call1' command. */
247
static int cmd_call1(cmd_arg_t *argv);
248
static int cmd_call1(cmd_arg_t *argv);
248
static cmd_arg_t call1_argv[] = {
249
static cmd_arg_t call1_argv[] = {
249
    {
250
    {
250
        .type = ARG_TYPE_STRING,
251
        .type = ARG_TYPE_STRING,
251
        .buffer = call0_buf,
252
        .buffer = call0_buf,
252
        .len = sizeof(call0_buf)
253
        .len = sizeof(call0_buf)
253
    },
254
    },
254
    {
255
    {
255
        .type = ARG_TYPE_VAR,
256
        .type = ARG_TYPE_VAR,
256
        .buffer = carg1_buf,
257
        .buffer = carg1_buf,
257
        .len = sizeof(carg1_buf)
258
        .len = sizeof(carg1_buf)
258
    }
259
    }
259
};
260
};
260
static cmd_info_t call1_info = {
261
static cmd_info_t call1_info = {
261
    .name = "call1",
262
    .name = "call1",
262
    .description = "call1 <function> <arg1> -> call function(arg1).",
263
    .description = "call1 <function> <arg1> -> call function(arg1).",
263
    .func = cmd_call1,
264
    .func = cmd_call1,
264
    .argc = 2,
265
    .argc = 2,
265
    .argv = call1_argv
266
    .argv = call1_argv
266
};
267
};
267
 
268
 
268
/* Data and methods for 'call2' command. */
269
/* Data and methods for 'call2' command. */
269
static int cmd_call2(cmd_arg_t *argv);
270
static int cmd_call2(cmd_arg_t *argv);
270
static cmd_arg_t call2_argv[] = {
271
static cmd_arg_t call2_argv[] = {
271
    {
272
    {
272
        .type = ARG_TYPE_STRING,
273
        .type = ARG_TYPE_STRING,
273
        .buffer = call0_buf,
274
        .buffer = call0_buf,
274
        .len = sizeof(call0_buf)
275
        .len = sizeof(call0_buf)
275
    },
276
    },
276
    {
277
    {
277
        .type = ARG_TYPE_VAR,
278
        .type = ARG_TYPE_VAR,
278
        .buffer = carg1_buf,
279
        .buffer = carg1_buf,
279
        .len = sizeof(carg1_buf)
280
        .len = sizeof(carg1_buf)
280
    },
281
    },
281
    {
282
    {
282
        .type = ARG_TYPE_VAR,
283
        .type = ARG_TYPE_VAR,
283
        .buffer = carg2_buf,
284
        .buffer = carg2_buf,
284
        .len = sizeof(carg2_buf)
285
        .len = sizeof(carg2_buf)
285
    }
286
    }
286
};
287
};
287
static cmd_info_t call2_info = {
288
static cmd_info_t call2_info = {
288
    .name = "call2",
289
    .name = "call2",
289
    .description = "call2 <function> <arg1> <arg2> -> call function(arg1,arg2).",
290
    .description = "call2 <function> <arg1> <arg2> -> call function(arg1,arg2).",
290
    .func = cmd_call2,
291
    .func = cmd_call2,
291
    .argc = 3,
292
    .argc = 3,
292
    .argv = call2_argv
293
    .argv = call2_argv
293
};
294
};
294
 
295
 
295
/* Data and methods for 'call3' command. */
296
/* Data and methods for 'call3' command. */
296
static int cmd_call3(cmd_arg_t *argv);
297
static int cmd_call3(cmd_arg_t *argv);
297
static cmd_arg_t call3_argv[] = {
298
static cmd_arg_t call3_argv[] = {
298
    {
299
    {
299
        .type = ARG_TYPE_STRING,
300
        .type = ARG_TYPE_STRING,
300
        .buffer = call0_buf,
301
        .buffer = call0_buf,
301
        .len = sizeof(call0_buf)
302
        .len = sizeof(call0_buf)
302
    },
303
    },
303
    {
304
    {
304
        .type = ARG_TYPE_VAR,
305
        .type = ARG_TYPE_VAR,
305
        .buffer = carg1_buf,
306
        .buffer = carg1_buf,
306
        .len = sizeof(carg1_buf)
307
        .len = sizeof(carg1_buf)
307
    },
308
    },
308
    {
309
    {
309
        .type = ARG_TYPE_VAR,
310
        .type = ARG_TYPE_VAR,
310
        .buffer = carg2_buf,
311
        .buffer = carg2_buf,
311
        .len = sizeof(carg2_buf)
312
        .len = sizeof(carg2_buf)
312
    },
313
    },
313
    {
314
    {
314
        .type = ARG_TYPE_VAR,
315
        .type = ARG_TYPE_VAR,
315
        .buffer = carg3_buf,
316
        .buffer = carg3_buf,
316
        .len = sizeof(carg3_buf)
317
        .len = sizeof(carg3_buf)
317
    }
318
    }
318
 
319
 
319
};
320
};
320
static cmd_info_t call3_info = {
321
static cmd_info_t call3_info = {
321
    .name = "call3",
322
    .name = "call3",
322
    .description = "call3 <function> <arg1> <arg2> <arg3> -> call function(arg1,arg2,arg3).",
323
    .description = "call3 <function> <arg1> <arg2> <arg3> -> call function(arg1,arg2,arg3).",
323
    .func = cmd_call3,
324
    .func = cmd_call3,
324
    .argc = 4,
325
    .argc = 4,
325
    .argv = call3_argv
326
    .argv = call3_argv
326
};
327
};
327
 
328
 
328
/* Data and methods for 'halt' command. */
329
/* Data and methods for 'halt' command. */
329
static int cmd_halt(cmd_arg_t *argv);
330
static int cmd_halt(cmd_arg_t *argv);
330
static cmd_info_t halt_info = {
331
static cmd_info_t halt_info = {
331
    .name = "halt",
332
    .name = "halt",
332
    .description = "Halt the kernel.",
333
    .description = "Halt the kernel.",
333
    .func = cmd_halt,
334
    .func = cmd_halt,
334
    .argc = 0
335
    .argc = 0
335
};
336
};
336
 
337
 
337
/* Data and methods for 'physmem' command. */
338
/* Data and methods for 'physmem' command. */
338
static int cmd_physmem(cmd_arg_t *argv);
339
static int cmd_physmem(cmd_arg_t *argv);
339
cmd_info_t physmem_info = {
340
cmd_info_t physmem_info = {
340
    .name = "physmem",
341
    .name = "physmem",
341
    .description = "Print physical memory configuration.",
342
    .description = "Print physical memory configuration.",
342
    .help = NULL,
343
    .help = NULL,
343
    .func = cmd_physmem,
344
    .func = cmd_physmem,
344
    .argc = 0,
345
    .argc = 0,
345
    .argv = NULL
346
    .argv = NULL
346
};
347
};
347
 
348
 
348
/* Data and methods for 'tlb' command. */
349
/* Data and methods for 'tlb' command. */
349
static int cmd_tlb(cmd_arg_t *argv);
350
static int cmd_tlb(cmd_arg_t *argv);
350
cmd_info_t tlb_info = {
351
cmd_info_t tlb_info = {
351
    .name = "tlb",
352
    .name = "tlb",
352
    .description = "Print TLB of current processor.",
353
    .description = "Print TLB of current processor.",
353
    .help = NULL,
354
    .help = NULL,
354
    .func = cmd_tlb,
355
    .func = cmd_tlb,
355
    .argc = 0,
356
    .argc = 0,
356
    .argv = NULL
357
    .argv = NULL
357
};
358
};
358
 
359
 
359
static int cmd_threads(cmd_arg_t *argv);
360
static int cmd_threads(cmd_arg_t *argv);
360
static cmd_info_t threads_info = {
361
static cmd_info_t threads_info = {
361
    .name = "threads",
362
    .name = "threads",
362
    .description = "List all threads.",
363
    .description = "List all threads.",
363
    .func = cmd_threads,
364
    .func = cmd_threads,
364
    .argc = 0
365
    .argc = 0
365
};
366
};
366
 
367
 
367
static int cmd_tasks(cmd_arg_t *argv);
368
static int cmd_tasks(cmd_arg_t *argv);
368
static cmd_info_t tasks_info = {
369
static cmd_info_t tasks_info = {
369
    .name = "tasks",
370
    .name = "tasks",
370
    .description = "List all tasks.",
371
    .description = "List all tasks.",
371
    .func = cmd_tasks,
372
    .func = cmd_tasks,
372
    .argc = 0
373
    .argc = 0
373
};
374
};
374
 
375
 
375
 
376
 
376
static int cmd_sched(cmd_arg_t *argv);
377
static int cmd_sched(cmd_arg_t *argv);
377
static cmd_info_t sched_info = {
378
static cmd_info_t sched_info = {
378
    .name = "scheduler",
379
    .name = "scheduler",
379
    .description = "List all scheduler information.",
380
    .description = "List all scheduler information.",
380
    .func = cmd_sched,
381
    .func = cmd_sched,
381
    .argc = 0
382
    .argc = 0
382
};
383
};
383
 
384
 
384
static int cmd_slabs(cmd_arg_t *argv);
385
static int cmd_slabs(cmd_arg_t *argv);
385
static cmd_info_t slabs_info = {
386
static cmd_info_t slabs_info = {
386
    .name = "slabs",
387
    .name = "slabs",
387
    .description = "List slab caches.",
388
    .description = "List slab caches.",
388
    .func = cmd_slabs,
389
    .func = cmd_slabs,
389
    .argc = 0
390
    .argc = 0
390
};
391
};
391
 
392
 
392
/* Data and methods for 'zones' command */
393
/* Data and methods for 'zones' command */
393
static int cmd_zones(cmd_arg_t *argv);
394
static int cmd_zones(cmd_arg_t *argv);
394
static cmd_info_t zones_info = {
395
static cmd_info_t zones_info = {
395
    .name = "zones",
396
    .name = "zones",
396
    .description = "List of memory zones.",
397
    .description = "List of memory zones.",
397
    .func = cmd_zones,
398
    .func = cmd_zones,
398
    .argc = 0
399
    .argc = 0
399
};
400
};
400
 
401
 
401
/* Data and methods for 'ipc_task' command */
402
/* Data and methods for 'ipc' command */
402
static int cmd_ipc_task(cmd_arg_t *argv);
403
static int cmd_ipc(cmd_arg_t *argv);
403
static cmd_arg_t ipc_task_argv = {
404
static cmd_arg_t ipc_argv = {
404
    .type = ARG_TYPE_INT,
405
    .type = ARG_TYPE_INT,
405
};
406
};
406
static cmd_info_t ipc_task_info = {
407
static cmd_info_t ipc_info = {
407
    .name = "ipc_task",
408
    .name = "ipc",
408
    .description = "ipc_task <taskid> Show IPC information of given task.",
409
    .description = "ipc <taskid> Show IPC information of given task.",
409
    .func = cmd_ipc_task,
410
    .func = cmd_ipc,
410
    .argc = 1,
411
    .argc = 1,
411
    .argv = &ipc_task_argv
412
    .argv = &ipc_argv
412
};
413
};
413
 
414
 
414
/* Data and methods for 'zone' command */
415
/* Data and methods for 'zone' command */
415
static int cmd_zone(cmd_arg_t *argv);
416
static int cmd_zone(cmd_arg_t *argv);
416
static cmd_arg_t zone_argv = {
417
static cmd_arg_t zone_argv = {
417
    .type = ARG_TYPE_INT,
418
    .type = ARG_TYPE_INT,
418
};
419
};
419
 
420
 
420
static cmd_info_t zone_info = {
421
static cmd_info_t zone_info = {
421
    .name = "zone",
422
    .name = "zone",
422
    .description = "Show memory zone structure.",
423
    .description = "Show memory zone structure.",
423
    .func = cmd_zone,
424
    .func = cmd_zone,
424
    .argc = 1,
425
    .argc = 1,
425
    .argv = &zone_argv
426
    .argv = &zone_argv
426
};
427
};
427
 
428
 
428
/* Data and methods for 'cpus' command. */
429
/* Data and methods for 'cpus' command. */
429
static int cmd_cpus(cmd_arg_t *argv);
430
static int cmd_cpus(cmd_arg_t *argv);
430
cmd_info_t cpus_info = {
431
cmd_info_t cpus_info = {
431
    .name = "cpus",
432
    .name = "cpus",
432
    .description = "List all processors.",
433
    .description = "List all processors.",
433
    .help = NULL,
434
    .help = NULL,
434
    .func = cmd_cpus,
435
    .func = cmd_cpus,
435
    .argc = 0,
436
    .argc = 0,
436
    .argv = NULL
437
    .argv = NULL
437
};
438
};
438
 
439
 
439
/* Data and methods for 'version' command. */
440
/* Data and methods for 'version' command. */
440
static int cmd_version(cmd_arg_t *argv);
441
static int cmd_version(cmd_arg_t *argv);
441
cmd_info_t version_info = {
442
cmd_info_t version_info = {
442
    .name = "version",
443
    .name = "version",
443
    .description = "Print version information.",
444
    .description = "Print version information.",
444
    .help = NULL,
445
    .help = NULL,
445
    .func = cmd_version,
446
    .func = cmd_version,
446
    .argc = 0,
447
    .argc = 0,
447
    .argv = NULL
448
    .argv = NULL
448
};
449
};
449
 
450
 
450
static cmd_info_t *basic_commands[] = {
451
static cmd_info_t *basic_commands[] = {
451
    &call0_info,
452
    &call0_info,
452
    &mcall0_info,
453
    &mcall0_info,
453
    &call1_info,
454
    &call1_info,
454
    &call2_info,
455
    &call2_info,
455
    &call3_info,
456
    &call3_info,
456
    &continue_info,
457
    &continue_info,
457
    &cpus_info,
458
    &cpus_info,
458
    &desc_info,
459
    &desc_info,
459
    &exit_info,
460
    &exit_info,
460
    &reboot_info,
461
    &reboot_info,
461
    &uptime_info,
462
    &uptime_info,
462
    &halt_info,
463
    &halt_info,
463
    &help_info,
464
    &help_info,
464
    &ipc_task_info,
465
    &ipc_info,
465
    &set4_info,
466
    &set4_info,
466
    &slabs_info,
467
    &slabs_info,
467
    &symaddr_info,
468
    &symaddr_info,
468
    &sched_info,
469
    &sched_info,
469
    &threads_info,
470
    &threads_info,
470
    &tasks_info,
471
    &tasks_info,
471
    &physmem_info,
472
    &physmem_info,
472
    &tlb_info,
473
    &tlb_info,
473
    &version_info,
474
    &version_info,
474
    &zones_info,
475
    &zones_info,
475
    &zone_info,
476
    &zone_info,
476
#ifdef CONFIG_TEST
477
#ifdef CONFIG_TEST
477
    &tests_info,
478
    &tests_info,
478
    &test_info,
479
    &test_info,
479
    &bench_info,
480
    &bench_info,
480
#endif
481
#endif
481
    NULL
482
    NULL
482
};
483
};
483
 
484
 
484
 
485
 
485
/** Initialize command info structure.
486
/** Initialize command info structure.
486
 *
487
 *
487
 * @param cmd Command info structure.
488
 * @param cmd Command info structure.
488
 *
489
 *
489
 */
490
 */
490
void cmd_initialize(cmd_info_t *cmd)
491
void cmd_initialize(cmd_info_t *cmd)
491
{
492
{
492
    spinlock_initialize(&cmd->lock, "cmd");
493
    spinlock_initialize(&cmd->lock, "cmd");
493
    link_initialize(&cmd->link);
494
    link_initialize(&cmd->link);
494
}
495
}
495
 
496
 
496
/** Initialize and register commands. */
497
/** Initialize and register commands. */
497
void cmd_init(void)
498
void cmd_init(void)
498
{
499
{
499
    unsigned int i;
500
    unsigned int i;
500
 
501
 
501
    for (i = 0; basic_commands[i]; i++) {
502
    for (i = 0; basic_commands[i]; i++) {
502
        cmd_initialize(basic_commands[i]);
503
        cmd_initialize(basic_commands[i]);
503
        if (!cmd_register(basic_commands[i]))
504
        if (!cmd_register(basic_commands[i]))
504
            panic("could not register command %s\n", basic_commands[i]->name);
505
            printf("Cannot register command %s\n", basic_commands[i]->name);
505
    }
506
    }
506
}
507
}
507
 
508
 
508
 
509
 
509
/** List supported commands.
510
/** List supported commands.
510
 *
511
 *
511
 * @param argv Argument vector.
512
 * @param argv Argument vector.
512
 *
513
 *
513
 * @return 0 on failure, 1 on success.
514
 * @return 0 on failure, 1 on success.
514
 */
515
 */
515
int cmd_help(cmd_arg_t *argv)
516
int cmd_help(cmd_arg_t *argv)
516
{
517
{
517
    link_t *cur;
-
 
518
 
-
 
519
    spinlock_lock(&cmd_lock);
518
    spinlock_lock(&cmd_lock);
520
   
519
   
-
 
520
    link_t *cur;
-
 
521
    size_t len = 0;
521
    for (cur = cmd_head.next; cur != &cmd_head; cur = cur->next) {
522
    for (cur = cmd_head.next; cur != &cmd_head; cur = cur->next) {
522
        cmd_info_t *hlp;
523
        cmd_info_t *hlp;
523
       
-
 
524
        hlp = list_get_instance(cur, cmd_info_t, link);
524
        hlp = list_get_instance(cur, cmd_info_t, link);
-
 
525
       
525
        spinlock_lock(&hlp->lock);
526
        spinlock_lock(&hlp->lock);
-
 
527
        if (strlen(hlp->name) > len)
-
 
528
            len = strlen(hlp->name);
-
 
529
        spinlock_unlock(&hlp->lock);
-
 
530
    }
-
 
531
   
-
 
532
    for (cur = cmd_head.next; cur != &cmd_head; cur = cur->next) {
-
 
533
        cmd_info_t *hlp;
-
 
534
        hlp = list_get_instance(cur, cmd_info_t, link);
526
       
535
       
-
 
536
        spinlock_lock(&hlp->lock);
527
        printf("%s - %s\n", hlp->name, hlp->description);
537
        printf("%-*s %s\n", len, hlp->name, hlp->description);
528
 
-
 
529
        spinlock_unlock(&hlp->lock);
538
        spinlock_unlock(&hlp->lock);
530
    }
539
    }
531
   
540
   
532
    spinlock_unlock(&cmd_lock);
541
    spinlock_unlock(&cmd_lock);
533
 
542
   
534
    return 1;
543
    return 1;
535
}
544
}
536
 
545
 
537
 
546
 
538
/** Reboot the system.
547
/** Reboot the system.
539
 *
548
 *
540
 * @param argv Argument vector.
549
 * @param argv Argument vector.
541
 *
550
 *
542
 * @return 0 on failure, 1 on success.
551
 * @return 0 on failure, 1 on success.
543
 */
552
 */
544
int cmd_reboot(cmd_arg_t *argv)
553
int cmd_reboot(cmd_arg_t *argv)
545
{
554
{
546
    reboot();
555
    reboot();
547
   
556
   
548
    /* Not reached */
557
    /* Not reached */
549
    return 1;
558
    return 1;
550
}
559
}
551
 
560
 
552
 
561
 
553
/** Print system uptime information.
562
/** Print system uptime information.
554
 *
563
 *
555
 * @param argv Argument vector.
564
 * @param argv Argument vector.
556
 *
565
 *
557
 * @return 0 on failure, 1 on success.
566
 * @return 0 on failure, 1 on success.
558
 */
567
 */
559
int cmd_uptime(cmd_arg_t *argv)
568
int cmd_uptime(cmd_arg_t *argv)
560
{
569
{
561
    ASSERT(uptime);
570
    ASSERT(uptime);
562
   
571
   
563
    /* This doesn't have to be very accurate */
572
    /* This doesn't have to be very accurate */
564
    unative_t sec = uptime->seconds1;
573
    unative_t sec = uptime->seconds1;
565
   
574
   
566
    printf("Up %u days, %u hours, %u minutes, %u seconds\n",
575
    printf("Up %" PRIun " days, %" PRIun " hours, %" PRIun " minutes, %" PRIun " seconds\n",
567
        sec / 86400, (sec % 86400) / 3600, (sec % 3600) / 60, sec % 60);
576
        sec / 86400, (sec % 86400) / 3600, (sec % 3600) / 60, sec % 60);
568
   
577
   
569
    return 1;
578
    return 1;
570
}
579
}
571
 
580
 
572
/** Describe specified command.
581
/** Describe specified command.
573
 *
582
 *
574
 * @param argv Argument vector.
583
 * @param argv Argument vector.
575
 *
584
 *
576
 * @return 0 on failure, 1 on success.
585
 * @return 0 on failure, 1 on success.
577
 */
586
 */
578
int cmd_desc(cmd_arg_t *argv)
587
int cmd_desc(cmd_arg_t *argv)
579
{
588
{
580
    link_t *cur;
589
    link_t *cur;
581
 
590
 
582
    spinlock_lock(&cmd_lock);
591
    spinlock_lock(&cmd_lock);
583
   
592
   
584
    for (cur = cmd_head.next; cur != &cmd_head; cur = cur->next) {
593
    for (cur = cmd_head.next; cur != &cmd_head; cur = cur->next) {
585
        cmd_info_t *hlp;
594
        cmd_info_t *hlp;
586
       
595
       
587
        hlp = list_get_instance(cur, cmd_info_t, link);
596
        hlp = list_get_instance(cur, cmd_info_t, link);
588
        spinlock_lock(&hlp->lock);
597
        spinlock_lock(&hlp->lock);
589
 
598
 
590
        if (strncmp(hlp->name, (const char *) argv->buffer, strlen(hlp->name)) == 0) {
599
        if (strncmp(hlp->name, (const char *) argv->buffer, strlen(hlp->name)) == 0) {
591
            printf("%s - %s\n", hlp->name, hlp->description);
600
            printf("%s - %s\n", hlp->name, hlp->description);
592
            if (hlp->help)
601
            if (hlp->help)
593
                hlp->help();
602
                hlp->help();
594
            spinlock_unlock(&hlp->lock);
603
            spinlock_unlock(&hlp->lock);
595
            break;
604
            break;
596
        }
605
        }
597
 
606
 
598
        spinlock_unlock(&hlp->lock);
607
        spinlock_unlock(&hlp->lock);
599
    }
608
    }
600
   
609
   
601
    spinlock_unlock(&cmd_lock);
610
    spinlock_unlock(&cmd_lock);
602
 
611
 
603
    return 1;
612
    return 1;
604
}
613
}
605
 
614
 
606
/** Search symbol table */
615
/** Search symbol table */
607
int cmd_symaddr(cmd_arg_t *argv)
616
int cmd_symaddr(cmd_arg_t *argv)
608
{
617
{
609
    symtab_print_search((char *) argv->buffer);
618
    symtab_print_search((char *) argv->buffer);
610
   
619
   
611
    return 1;
620
    return 1;
612
}
621
}
613
 
622
 
614
/** Call function with zero parameters */
623
/** Call function with zero parameters */
615
int cmd_call0(cmd_arg_t *argv)
624
int cmd_call0(cmd_arg_t *argv)
616
{
625
{
617
    uintptr_t symaddr;
626
    uintptr_t symaddr;
618
    char *symbol;
627
    char *symbol;
619
    unative_t (*f)(void);
628
    unative_t (*fnc)(void);
620
#ifdef ia64
-
 
621
    struct {
-
 
622
        unative_t f;
-
 
623
        unative_t gp;
629
    fncptr_t fptr;
624
    } fptr;
-
 
625
#endif
-
 
626
 
630
   
627
    symaddr = get_symbol_addr((char *) argv->buffer);
631
    symaddr = get_symbol_addr((char *) argv->buffer);
628
    if (!symaddr)
632
    if (!symaddr)
629
        printf("Symbol %s not found.\n", argv->buffer);
633
        printf("Symbol %s not found.\n", argv->buffer);
630
    else if (symaddr == (uintptr_t) -1) {
634
    else if (symaddr == (uintptr_t) -1) {
631
        symtab_print_search((char *) argv->buffer);
635
        symtab_print_search((char *) argv->buffer);
632
        printf("Duplicate symbol, be more specific.\n");
636
        printf("Duplicate symbol, be more specific.\n");
633
    } else {
637
    } else {
634
        symbol = get_symtab_entry(symaddr);
638
        symbol = get_symtab_entry(symaddr);
635
        printf("Calling %s() (%.*p)\n", symbol, sizeof(uintptr_t) * 2, symaddr);
639
        fnc = (unative_t (*)(void)) arch_construct_function(&fptr, (void *) symaddr, (void *) cmd_call0);
636
#ifdef ia64
-
 
637
        fptr.f = symaddr;
-
 
638
        fptr.gp = ((unative_t *)cmd_call2)[1];
-
 
639
        f =  (unative_t (*)(void)) &fptr;
-
 
640
#else
-
 
641
        f =  (unative_t (*)(void)) symaddr;
640
        printf("Calling %s() (%p)\n", symbol, symaddr);
642
#endif
-
 
643
        printf("Result: %#zx\n", f());
641
        printf("Result: %#" PRIxn "\n", fnc());
644
    }
642
    }
645
   
643
   
646
    return 1;
644
    return 1;
647
}
645
}
648
 
646
 
649
/** Call function with zero parameters on each CPU */
647
/** Call function with zero parameters on each CPU */
650
int cmd_mcall0(cmd_arg_t *argv)
648
int cmd_mcall0(cmd_arg_t *argv)
651
{
649
{
652
    /*
650
    /*
653
     * For each CPU, create a thread which will
651
     * For each CPU, create a thread which will
654
     * call the function.
652
     * call the function.
655
     */
653
     */
656
   
654
   
657
    count_t i;
655
    count_t i;
658
    for (i = 0; i < config.cpu_count; i++) {
656
    for (i = 0; i < config.cpu_count; i++) {
659
        if (!cpus[i].active)
657
        if (!cpus[i].active)
660
            continue;
658
            continue;
661
       
659
       
662
        thread_t *t;
660
        thread_t *t;
663
        if ((t = thread_create((void (*)(void *)) cmd_call0, (void *) argv, TASK, THREAD_FLAG_WIRED, "call0", false))) {
661
        if ((t = thread_create((void (*)(void *)) cmd_call0, (void *) argv, TASK, THREAD_FLAG_WIRED, "call0", false))) {
664
            spinlock_lock(&t->lock);
662
            spinlock_lock(&t->lock);
665
            t->cpu = &cpus[i];
663
            t->cpu = &cpus[i];
666
            spinlock_unlock(&t->lock);
664
            spinlock_unlock(&t->lock);
667
            printf("cpu%u: ", i);
665
            printf("cpu%u: ", i);
668
            thread_ready(t);
666
            thread_ready(t);
669
            thread_join(t);
667
            thread_join(t);
670
            thread_detach(t);
668
            thread_detach(t);
671
        } else
669
        } else
672
            printf("Unable to create thread for cpu%u\n", i);
670
            printf("Unable to create thread for cpu%u\n", i);
673
    }
671
    }
674
   
672
   
675
    return 1;
673
    return 1;
676
}
674
}
677
 
675
 
678
/** Call function with one parameter */
676
/** Call function with one parameter */
679
int cmd_call1(cmd_arg_t *argv)
677
int cmd_call1(cmd_arg_t *argv)
680
{
678
{
681
    uintptr_t symaddr;
679
    uintptr_t symaddr;
682
    char *symbol;
680
    char *symbol;
683
    unative_t (*f)(unative_t,...);
681
    unative_t (*fnc)(unative_t, ...);
684
    unative_t arg1 = argv[1].intval;
682
    unative_t arg1 = argv[1].intval;
685
#ifdef ia64
-
 
686
    struct {
-
 
687
        unative_t f;
-
 
688
        unative_t gp;
683
    fncptr_t fptr;
689
    }fptr;
-
 
690
#endif
-
 
691
 
684
   
692
    symaddr = get_symbol_addr((char *) argv->buffer);
685
    symaddr = get_symbol_addr((char *) argv->buffer);
693
    if (!symaddr)
686
    if (!symaddr)
694
        printf("Symbol %s not found.\n", argv->buffer);
687
        printf("Symbol %s not found.\n", argv->buffer);
695
    else if (symaddr == (uintptr_t) -1) {
688
    else if (symaddr == (uintptr_t) -1) {
696
        symtab_print_search((char *) argv->buffer);
689
        symtab_print_search((char *) argv->buffer);
697
        printf("Duplicate symbol, be more specific.\n");
690
        printf("Duplicate symbol, be more specific.\n");
698
    } else {
691
    } else {
699
        symbol = get_symtab_entry(symaddr);
692
        symbol = get_symtab_entry(symaddr);
700
 
-
 
701
        printf("Calling f(%#zx): %.*p: %s\n", arg1, sizeof(uintptr_t) * 2, symaddr, symbol);
693
        fnc = (unative_t (*)(unative_t, ...)) arch_construct_function(&fptr, (void *) symaddr, (void *) cmd_call1);
702
#ifdef ia64
-
 
703
        fptr.f = symaddr;
-
 
704
        fptr.gp = ((unative_t *)cmd_call2)[1];
-
 
705
        f =  (unative_t (*)(unative_t,...)) &fptr;
-
 
706
#else
-
 
707
        f =  (unative_t (*)(unative_t,...)) symaddr;
694
        printf("Calling f(%#" PRIxn "): %p: %s\n", arg1, symaddr, symbol);
708
#endif
-
 
709
        printf("Result: %#zx\n", f(arg1));
695
        printf("Result: %#" PRIxn "\n", fnc(arg1));
710
    }
696
    }
711
   
697
   
712
    return 1;
698
    return 1;
713
}
699
}
714
 
700
 
715
/** Call function with two parameters */
701
/** Call function with two parameters */
716
int cmd_call2(cmd_arg_t *argv)
702
int cmd_call2(cmd_arg_t *argv)
717
{
703
{
718
    uintptr_t symaddr;
704
    uintptr_t symaddr;
719
    char *symbol;
705
    char *symbol;
720
    unative_t (*f)(unative_t,unative_t,...);
706
    unative_t (*fnc)(unative_t, unative_t, ...);
721
    unative_t arg1 = argv[1].intval;
707
    unative_t arg1 = argv[1].intval;
722
    unative_t arg2 = argv[2].intval;
708
    unative_t arg2 = argv[2].intval;
723
#ifdef ia64
-
 
724
    struct {
-
 
725
        unative_t f;
-
 
726
        unative_t gp;
709
    fncptr_t fptr;
727
    }fptr;
-
 
728
#endif
-
 
729
 
710
   
730
    symaddr = get_symbol_addr((char *) argv->buffer);
711
    symaddr = get_symbol_addr((char *) argv->buffer);
731
    if (!symaddr)
712
    if (!symaddr)
732
        printf("Symbol %s not found.\n", argv->buffer);
713
        printf("Symbol %s not found.\n", argv->buffer);
733
    else if (symaddr == (uintptr_t) -1) {
714
    else if (symaddr == (uintptr_t) -1) {
734
        symtab_print_search((char *) argv->buffer);
715
        symtab_print_search((char *) argv->buffer);
735
        printf("Duplicate symbol, be more specific.\n");
716
        printf("Duplicate symbol, be more specific.\n");
736
    } else {
717
    } else {
737
        symbol = get_symtab_entry(symaddr);
718
        symbol = get_symtab_entry(symaddr);
-
 
719
        fnc = (unative_t (*)(unative_t, unative_t, ...)) arch_construct_function(&fptr, (void *) symaddr, (void *) cmd_call2);
738
        printf("Calling f(0x%zx,0x%zx): %.*p: %s\n",
720
        printf("Calling f(%#" PRIxn ", %#" PRIxn "): %p: %s\n",
739
               arg1, arg2, sizeof(uintptr_t) * 2, symaddr, symbol);
721
               arg1, arg2, symaddr, symbol);
740
#ifdef ia64
-
 
741
        fptr.f = symaddr;
-
 
742
        fptr.gp = ((unative_t *)cmd_call2)[1];
-
 
743
        f =  (unative_t (*)(unative_t,unative_t,...)) &fptr;
-
 
744
#else
-
 
745
        f =  (unative_t (*)(unative_t,unative_t,...)) symaddr;
-
 
746
#endif
-
 
747
        printf("Result: %#zx\n", f(arg1, arg2));
722
        printf("Result: %#" PRIxn "\n", fnc(arg1, arg2));
748
    }
723
    }
749
   
724
   
750
    return 1;
725
    return 1;
751
}
726
}
752
 
727
 
753
/** Call function with three parameters */
728
/** Call function with three parameters */
754
int cmd_call3(cmd_arg_t *argv)
729
int cmd_call3(cmd_arg_t *argv)
755
{
730
{
756
    uintptr_t symaddr;
731
    uintptr_t symaddr;
757
    char *symbol;
732
    char *symbol;
758
    unative_t (*f)(unative_t,unative_t,unative_t,...);
733
    unative_t (*fnc)(unative_t, unative_t, unative_t, ...);
759
    unative_t arg1 = argv[1].intval;
734
    unative_t arg1 = argv[1].intval;
760
    unative_t arg2 = argv[2].intval;
735
    unative_t arg2 = argv[2].intval;
761
    unative_t arg3 = argv[3].intval;
736
    unative_t arg3 = argv[3].intval;
762
#ifdef ia64
-
 
763
    struct {
-
 
764
        unative_t f;
-
 
765
        unative_t gp;
737
    fncptr_t fptr;
766
    }fptr;
-
 
767
#endif
-
 
768
 
738
   
769
    symaddr = get_symbol_addr((char *) argv->buffer);
739
    symaddr = get_symbol_addr((char *) argv->buffer);
770
    if (!symaddr)
740
    if (!symaddr)
771
        printf("Symbol %s not found.\n", argv->buffer);
741
        printf("Symbol %s not found.\n", argv->buffer);
772
    else if (symaddr == (uintptr_t) -1) {
742
    else if (symaddr == (uintptr_t) -1) {
773
        symtab_print_search((char *) argv->buffer);
743
        symtab_print_search((char *) argv->buffer);
774
        printf("Duplicate symbol, be more specific.\n");
744
        printf("Duplicate symbol, be more specific.\n");
775
    } else {
745
    } else {
776
        symbol = get_symtab_entry(symaddr);
746
        symbol = get_symtab_entry(symaddr);
-
 
747
        fnc = (unative_t (*)(unative_t, unative_t, unative_t, ...)) arch_construct_function(&fptr, (void *) symaddr, (void *) cmd_call3);
777
        printf("Calling f(0x%zx,0x%zx, 0x%zx): %.*p: %s\n",
748
        printf("Calling f(%#" PRIxn ",%#" PRIxn ", %#" PRIxn "): %p: %s\n",
778
               arg1, arg2, arg3, sizeof(uintptr_t) * 2, symaddr, symbol);
749
               arg1, arg2, arg3, symaddr, symbol);
779
#ifdef ia64
-
 
780
        fptr.f = symaddr;
-
 
781
        fptr.gp = ((unative_t *)cmd_call2)[1];
-
 
782
        f =  (unative_t (*)(unative_t,unative_t,unative_t,...)) &fptr;
-
 
783
#else
-
 
784
        f =  (unative_t (*)(unative_t,unative_t,unative_t,...)) symaddr;
-
 
785
#endif
-
 
786
        printf("Result: %#zx\n", f(arg1, arg2, arg3));
750
        printf("Result: %#" PRIxn "\n", fnc(arg1, arg2, arg3));
787
    }
751
    }
788
   
752
   
789
    return 1;
753
    return 1;
790
}
754
}
791
 
755
 
792
 
756
 
793
/** Print detailed description of 'describe' command. */
757
/** Print detailed description of 'describe' command. */
794
void desc_help(void)
758
void desc_help(void)
795
{
759
{
796
    printf("Syntax: describe command_name\n");
760
    printf("Syntax: describe command_name\n");
797
}
761
}
798
 
762
 
799
/** Halt the kernel.
763
/** Halt the kernel.
800
 *
764
 *
801
 * @param argv Argument vector (ignored).
765
 * @param argv Argument vector (ignored).
802
 *
766
 *
803
 * @return 0 on failure, 1 on success (never returns).
767
 * @return 0 on failure, 1 on success (never returns).
804
 */
768
 */
805
int cmd_halt(cmd_arg_t *argv)
769
int cmd_halt(cmd_arg_t *argv)
806
{
770
{
807
    halt();
771
    halt();
808
    return 1;
772
    return 1;
809
}
773
}
810
 
774
 
811
/** Command for printing TLB contents.
775
/** Command for printing TLB contents.
812
 *
776
 *
813
 * @param argv Not used.
777
 * @param argv Not used.
814
 *
778
 *
815
 * @return Always returns 1.
779
 * @return Always returns 1.
816
 */
780
 */
817
int cmd_tlb(cmd_arg_t *argv)
781
int cmd_tlb(cmd_arg_t *argv)
818
{
782
{
819
    tlb_print();
783
    tlb_print();
820
    return 1;
784
    return 1;
821
}
785
}
822
 
786
 
823
/** Command for printing physical memory configuration.
787
/** Command for printing physical memory configuration.
824
 *
788
 *
825
 * @param argv Not used.
789
 * @param argv Not used.
826
 *
790
 *
827
 * @return Always returns 1.
791
 * @return Always returns 1.
828
 */
792
 */
829
int cmd_physmem(cmd_arg_t *argv)
793
int cmd_physmem(cmd_arg_t *argv)
830
{
794
{
831
    physmem_print();
795
    physmem_print();
832
    return 1;
796
    return 1;
833
}
797
}
834
 
798
 
835
/** Write 4 byte value to address */
799
/** Write 4 byte value to address */
836
int cmd_set4(cmd_arg_t *argv)
800
int cmd_set4(cmd_arg_t *argv)
837
{
801
{
838
    uint32_t *addr;
802
    uint32_t *addr;
839
    uint32_t arg1 = argv[1].intval;
803
    uint32_t arg1 = argv[1].intval;
840
    bool pointer = false;
804
    bool pointer = false;
841
 
805
 
842
    if (((char *)argv->buffer)[0] == '*') {
806
    if (((char *)argv->buffer)[0] == '*') {
843
        addr = (uint32_t *) get_symbol_addr((char *) argv->buffer + 1);
807
        addr = (uint32_t *) get_symbol_addr((char *) argv->buffer + 1);
844
        pointer = true;
808
        pointer = true;
845
    } else if (((char *) argv->buffer)[0] >= '0' &&
809
    } else if (((char *) argv->buffer)[0] >= '0' &&
846
           ((char *)argv->buffer)[0] <= '9')
810
           ((char *)argv->buffer)[0] <= '9')
847
        addr = (uint32_t *)atoi((char *)argv->buffer);
811
        addr = (uint32_t *)atoi((char *)argv->buffer);
848
    else
812
    else
849
        addr = (uint32_t *)get_symbol_addr((char *) argv->buffer);
813
        addr = (uint32_t *)get_symbol_addr((char *) argv->buffer);
850
 
814
 
851
    if (!addr)
815
    if (!addr)
852
        printf("Symbol %s not found.\n", argv->buffer);
816
        printf("Symbol %s not found.\n", argv->buffer);
853
    else if (addr == (uint32_t *) -1) {
817
    else if (addr == (uint32_t *) -1) {
854
        symtab_print_search((char *) argv->buffer);
818
        symtab_print_search((char *) argv->buffer);
855
        printf("Duplicate symbol, be more specific.\n");
819
        printf("Duplicate symbol, be more specific.\n");
856
    } else {
820
    } else {
857
        if (pointer)
821
        if (pointer)
858
            addr = (uint32_t *)(*(unative_t *)addr);
822
            addr = (uint32_t *)(*(unative_t *)addr);
859
        printf("Writing 0x%x -> %.*p\n", arg1, sizeof(uintptr_t) * 2, addr);
823
        printf("Writing %#" PRIx64 " -> %p\n", arg1, addr);
860
        *addr = arg1;
824
        *addr = arg1;
861
       
825
       
862
    }
826
    }
863
   
827
   
864
    return 1;
828
    return 1;
865
}
829
}
866
 
830
 
867
/** Command for listings SLAB caches
831
/** Command for listings SLAB caches
868
 *
832
 *
869
 * @param argv Ignores
833
 * @param argv Ignores
870
 *
834
 *
871
 * @return Always 1
835
 * @return Always 1
872
 */
836
 */
873
int cmd_slabs(cmd_arg_t * argv) {
837
int cmd_slabs(cmd_arg_t * argv) {
874
    slab_print_list();
838
    slab_print_list();
875
    return 1;
839
    return 1;
876
}
840
}
877
 
841
 
878
 
842
 
879
/** Command for listings Thread information
843
/** Command for listings Thread information
880
 *
844
 *
881
 * @param argv Ignores
845
 * @param argv Ignores
882
 *
846
 *
883
 * @return Always 1
847
 * @return Always 1
884
 */
848
 */
885
int cmd_threads(cmd_arg_t * argv) {
849
int cmd_threads(cmd_arg_t * argv) {
886
    thread_print_list();
850
    thread_print_list();
887
    return 1;
851
    return 1;
888
}
852
}
889
 
853
 
890
/** Command for listings Task information
854
/** Command for listings Task information
891
 *
855
 *
892
 * @param argv Ignores
856
 * @param argv Ignores
893
 *
857
 *
894
 * @return Always 1
858
 * @return Always 1
895
 */
859
 */
896
int cmd_tasks(cmd_arg_t * argv) {
860
int cmd_tasks(cmd_arg_t * argv) {
897
    task_print_list();
861
    task_print_list();
898
    return 1;
862
    return 1;
899
}
863
}
900
 
864
 
901
/** Command for listings Thread information
865
/** Command for listings Thread information
902
 *
866
 *
903
 * @param argv Ignores
867
 * @param argv Ignores
904
 *
868
 *
905
 * @return Always 1
869
 * @return Always 1
906
 */
870
 */
907
int cmd_sched(cmd_arg_t * argv) {
871
int cmd_sched(cmd_arg_t * argv) {
908
    sched_print_list();
872
    sched_print_list();
909
    return 1;
873
    return 1;
910
}
874
}
911
 
875
 
912
/** Command for listing memory zones
876
/** Command for listing memory zones
913
 *
877
 *
914
 * @param argv Ignored
878
 * @param argv Ignored
915
 *
879
 *
916
 * return Always 1
880
 * return Always 1
917
 */
881
 */
918
int cmd_zones(cmd_arg_t * argv) {
882
int cmd_zones(cmd_arg_t * argv) {
919
    zone_print_list();
883
    zone_print_list();
920
    return 1;
884
    return 1;
921
}
885
}
922
 
886
 
923
/** Command for memory zone details
887
/** Command for memory zone details
924
 *
888
 *
925
 * @param argv Integer argument from cmdline expected
889
 * @param argv Integer argument from cmdline expected
926
 *
890
 *
927
 * return Always 1
891
 * return Always 1
928
 */
892
 */
929
int cmd_zone(cmd_arg_t * argv) {
893
int cmd_zone(cmd_arg_t * argv) {
930
    zone_print_one(argv[0].intval);
894
    zone_print_one(argv[0].intval);
931
    return 1;
895
    return 1;
932
}
896
}
933
 
897
 
934
/** Command for printing task ipc details
898
/** Command for printing task ipc details
935
 *
899
 *
936
 * @param argv Integer argument from cmdline expected
900
 * @param argv Integer argument from cmdline expected
937
 *
901
 *
938
 * return Always 1
902
 * return Always 1
939
 */
903
 */
940
int cmd_ipc_task(cmd_arg_t * argv) {
904
int cmd_ipc(cmd_arg_t * argv) {
941
    ipc_print_task(argv[0].intval);
905
    ipc_print_task(argv[0].intval);
942
    return 1;
906
    return 1;
943
}
907
}
944
 
908
 
945
 
909
 
946
/** Command for listing processors.
910
/** Command for listing processors.
947
 *
911
 *
948
 * @param argv Ignored.
912
 * @param argv Ignored.
949
 *
913
 *
950
 * return Always 1.
914
 * return Always 1.
951
 */
915
 */
952
int cmd_cpus(cmd_arg_t *argv)
916
int cmd_cpus(cmd_arg_t *argv)
953
{
917
{
954
    cpu_list();
918
    cpu_list();
955
    return 1;
919
    return 1;
956
}
920
}
957
 
921
 
958
/** Command for printing kernel version.
922
/** Command for printing kernel version.
959
 *
923
 *
960
 * @param argv Ignored.
924
 * @param argv Ignored.
961
 *
925
 *
962
 * return Always 1.
926
 * return Always 1.
963
 */
927
 */
964
int cmd_version(cmd_arg_t *argv)
928
int cmd_version(cmd_arg_t *argv)
965
{
929
{
966
    version_print();
930
    version_print();
967
    return 1;
931
    return 1;
968
}
932
}
969
 
933
 
970
/** Command for returning console back to userspace.
934
/** Command for returning console back to userspace.
971
 *
935
 *
972
 * @param argv Ignored.
936
 * @param argv Ignored.
973
 *
937
 *
974
 * return Always 1.
938
 * return Always 1.
975
 */
939
 */
976
int cmd_continue(cmd_arg_t *argv)
940
int cmd_continue(cmd_arg_t *argv)
977
{
941
{
978
    printf("The kernel will now relinquish the console.\n");
942
    printf("The kernel will now relinquish the console.\n");
-
 
943
    release_console();
-
 
944
   
979
    printf("Use userspace controls to redraw the screen.\n");
945
    if ((kconsole_notify) && (kconsole_irq.notif_cfg.notify))
980
    arch_release_console();
946
        ipc_irq_send_msg_0(&kconsole_irq);
-
 
947
   
981
    return 1;
948
    return 1;
982
}
949
}
983
 
950
 
984
#ifdef CONFIG_TEST
951
#ifdef CONFIG_TEST
985
/** Command for printing kernel tests list.
952
/** Command for printing kernel tests list.
986
 *
953
 *
987
 * @param argv Ignored.
954
 * @param argv Ignored.
988
 *
955
 *
989
 * return Always 1.
956
 * return Always 1.
990
 */
957
 */
991
int cmd_tests(cmd_arg_t *argv)
958
int cmd_tests(cmd_arg_t *argv)
992
{
959
{
-
 
960
    size_t len = 0;
993
    test_t *test;
961
    test_t *test;
-
 
962
    for (test = tests; test->name != NULL; test++) {
-
 
963
        if (strlen(test->name) > len)
-
 
964
            len = strlen(test->name);
-
 
965
    }
994
   
966
   
995
    for (test = tests; test->name != NULL; test++)
967
    for (test = tests; test->name != NULL; test++)
996
        printf("%s\t\t%s%s\n", test->name, test->desc, (test->safe ? "" : " (unsafe)"));
968
        printf("%-*s %s%s\n", len, test->name, test->desc, (test->safe ? "" : " (unsafe)"));
997
   
969
   
998
    printf("*\t\tRun all safe tests\n");
970
    printf("%-*s Run all safe tests\n", len, "*");
999
    return 1;
971
    return 1;
1000
}
972
}
1001
 
973
 
1002
static bool run_test(const test_t *test)
974
static bool run_test(const test_t *test)
1003
{
975
{
1004
    printf("%s\t\t%s\n", test->name, test->desc);
976
    printf("%s (%s)\n", test->name, test->desc);
1005
   
977
   
1006
    /* Update and read thread accounting
978
    /* Update and read thread accounting
1007
       for benchmarking */
979
       for benchmarking */
1008
    ipl_t ipl = interrupts_disable();
980
    ipl_t ipl = interrupts_disable();
1009
    spinlock_lock(&TASK->lock);
981
    spinlock_lock(&TASK->lock);
1010
    uint64_t t0 = task_get_accounting(TASK);
982
    uint64_t t0 = task_get_accounting(TASK);
1011
    spinlock_unlock(&TASK->lock);
983
    spinlock_unlock(&TASK->lock);
1012
    interrupts_restore(ipl);
984
    interrupts_restore(ipl);
1013
   
985
   
1014
    /* Execute the test */
986
    /* Execute the test */
1015
    char * ret = test->entry(false);
987
    char * ret = test->entry(false);
1016
   
988
   
1017
    /* Update and read thread accounting */
989
    /* Update and read thread accounting */
1018
    ipl = interrupts_disable();
990
    ipl = interrupts_disable();
1019
    spinlock_lock(&TASK->lock);
991
    spinlock_lock(&TASK->lock);
1020
    uint64_t dt = task_get_accounting(TASK) - t0;
992
    uint64_t dt = task_get_accounting(TASK) - t0;
1021
    spinlock_unlock(&TASK->lock);
993
    spinlock_unlock(&TASK->lock);
1022
    interrupts_restore(ipl);
994
    interrupts_restore(ipl);
1023
   
995
   
1024
    uint64_t cycles;
996
    uint64_t cycles;
1025
    char suffix;
997
    char suffix;
1026
    order(dt, &cycles, &suffix);
998
    order(dt, &cycles, &suffix);
1027
       
999
       
1028
    printf("Time: %llu%c cycles\n", cycles, suffix);
1000
    printf("Time: %" PRIu64 "%c cycles\n", cycles, suffix);
1029
   
1001
   
1030
    if (ret == NULL) {
1002
    if (ret == NULL) {
1031
        printf("Test passed\n");
1003
        printf("Test passed\n");
1032
        return true;
1004
        return true;
1033
    }
1005
    }
1034
 
1006
 
1035
    printf("%s\n", ret);
1007
    printf("%s\n", ret);
1036
    return false;
1008
    return false;
1037
}
1009
}
1038
 
1010
 
1039
static bool run_bench(const test_t *test, const uint32_t cnt)
1011
static bool run_bench(const test_t *test, const uint32_t cnt)
1040
{
1012
{
1041
    uint32_t i;
1013
    uint32_t i;
1042
    bool ret = true;
1014
    bool ret = true;
1043
    uint64_t cycles;
1015
    uint64_t cycles;
1044
    char suffix;
1016
    char suffix;
1045
   
1017
   
1046
    if (cnt < 1)
1018
    if (cnt < 1)
1047
        return true;
1019
        return true;
1048
   
1020
   
1049
    uint64_t *data = (uint64_t *) malloc(sizeof(uint64_t) * cnt, 0);
1021
    uint64_t *data = (uint64_t *) malloc(sizeof(uint64_t) * cnt, 0);
1050
    if (data == NULL) {
1022
    if (data == NULL) {
1051
        printf("Error allocating memory for statistics\n");
1023
        printf("Error allocating memory for statistics\n");
1052
        return false;
1024
        return false;
1053
    }
1025
    }
1054
   
1026
   
1055
    for (i = 0; i < cnt; i++) {
1027
    for (i = 0; i < cnt; i++) {
1056
        printf("%s (%d/%d) ... ", test->name, i + 1, cnt);
1028
        printf("%s (%u/%u) ... ", test->name, i + 1, cnt);
1057
       
1029
       
1058
        /* Update and read thread accounting
1030
        /* Update and read thread accounting
1059
           for benchmarking */
1031
           for benchmarking */
1060
        ipl_t ipl = interrupts_disable();
1032
        ipl_t ipl = interrupts_disable();
1061
        spinlock_lock(&TASK->lock);
1033
        spinlock_lock(&TASK->lock);
1062
        uint64_t t0 = task_get_accounting(TASK);
1034
        uint64_t t0 = task_get_accounting(TASK);
1063
        spinlock_unlock(&TASK->lock);
1035
        spinlock_unlock(&TASK->lock);
1064
        interrupts_restore(ipl);
1036
        interrupts_restore(ipl);
1065
       
1037
       
1066
        /* Execute the test */
1038
        /* Execute the test */
1067
        char * ret = test->entry(true);
1039
        char * ret = test->entry(true);
1068
       
1040
       
1069
        /* Update and read thread accounting */
1041
        /* Update and read thread accounting */
1070
        ipl = interrupts_disable();
1042
        ipl = interrupts_disable();
1071
        spinlock_lock(&TASK->lock);
1043
        spinlock_lock(&TASK->lock);
1072
        uint64_t dt = task_get_accounting(TASK) - t0;
1044
        uint64_t dt = task_get_accounting(TASK) - t0;
1073
        spinlock_unlock(&TASK->lock);
1045
        spinlock_unlock(&TASK->lock);
1074
        interrupts_restore(ipl);
1046
        interrupts_restore(ipl);
1075
       
1047
       
1076
        if (ret != NULL) {
1048
        if (ret != NULL) {
1077
            printf("%s\n", ret);
1049
            printf("%s\n", ret);
1078
            ret = false;
1050
            ret = false;
1079
            break;
1051
            break;
1080
        }
1052
        }
1081
       
1053
       
1082
        data[i] = dt;
1054
        data[i] = dt;
1083
        order(dt, &cycles, &suffix);
1055
        order(dt, &cycles, &suffix);
1084
        printf("OK (%llu%c cycles)\n", cycles, suffix);
1056
        printf("OK (%" PRIu64 "%c cycles)\n", cycles, suffix);
1085
    }
1057
    }
1086
   
1058
   
1087
    if (ret) {
1059
    if (ret) {
1088
        printf("\n");
1060
        printf("\n");
1089
       
1061
       
1090
        uint64_t sum = 0;
1062
        uint64_t sum = 0;
1091
       
1063
       
1092
        for (i = 0; i < cnt; i++) {
1064
        for (i = 0; i < cnt; i++) {
1093
            sum += data[i];
1065
            sum += data[i];
1094
        }
1066
        }
1095
       
1067
       
1096
        order(sum / (uint64_t) cnt, &cycles, &suffix);
1068
        order(sum / (uint64_t) cnt, &cycles, &suffix);
1097
        printf("Average\t\t%llu%c\n", cycles, suffix);
1069
        printf("Average\t\t%" PRIu64 "%c\n", cycles, suffix);
1098
    }
1070
    }
1099
   
1071
   
1100
    free(data);
1072
    free(data);
1101
   
1073
   
1102
    return ret;
1074
    return ret;
1103
}
1075
}
1104
 
1076
 
1105
/** Command for returning kernel tests
1077
/** Command for returning kernel tests
1106
 *
1078
 *
1107
 * @param argv Argument vector.
1079
 * @param argv Argument vector.
1108
 *
1080
 *
1109
 * return Always 1.
1081
 * return Always 1.
1110
 */
1082
 */
1111
int cmd_test(cmd_arg_t *argv)
1083
int cmd_test(cmd_arg_t *argv)
1112
{
1084
{
1113
    test_t *test;
1085
    test_t *test;
1114
   
1086
   
1115
    if (strcmp((char *) argv->buffer, "*") == 0) {
1087
    if (strcmp((char *) argv->buffer, "*") == 0) {
1116
        for (test = tests; test->name != NULL; test++) {
1088
        for (test = tests; test->name != NULL; test++) {
1117
            if (test->safe) {
1089
            if (test->safe) {
1118
                printf("\n");
1090
                printf("\n");
1119
                if (!run_test(test))
1091
                if (!run_test(test))
1120
                    break;
1092
                    break;
1121
            }
1093
            }
1122
        }
1094
        }
1123
    } else {
1095
    } else {
1124
        bool fnd = false;
1096
        bool fnd = false;
1125
       
1097
       
1126
        for (test = tests; test->name != NULL; test++) {
1098
        for (test = tests; test->name != NULL; test++) {
1127
            if (strcmp(test->name, (char *) argv->buffer) == 0) {
1099
            if (strcmp(test->name, (char *) argv->buffer) == 0) {
1128
                fnd = true;
1100
                fnd = true;
1129
                run_test(test);
1101
                run_test(test);
1130
                break;
1102
                break;
1131
            }
1103
            }
1132
        }
1104
        }
1133
       
1105
       
1134
        if (!fnd)
1106
        if (!fnd)
1135
            printf("Unknown test\n");
1107
            printf("Unknown test\n");
1136
    }
1108
    }
1137
   
1109
   
1138
    return 1;
1110
    return 1;
1139
}
1111
}
1140
 
1112
 
1141
/** Command for returning kernel tests as benchmarks
1113
/** Command for returning kernel tests as benchmarks
1142
 *
1114
 *
1143
 * @param argv Argument vector.
1115
 * @param argv Argument vector.
1144
 *
1116
 *
1145
 * return Always 1.
1117
 * return Always 1.
1146
 */
1118
 */
1147
int cmd_bench(cmd_arg_t *argv)
1119
int cmd_bench(cmd_arg_t *argv)
1148
{
1120
{
1149
    test_t *test;
1121
    test_t *test;
1150
    uint32_t cnt = argv[1].intval;
1122
    uint32_t cnt = argv[1].intval;
1151
   
1123
   
1152
    bool fnd = false;
1124
    bool fnd = false;
1153
   
1125
   
1154
    for (test = tests; test->name != NULL; test++) {
1126
    for (test = tests; test->name != NULL; test++) {
1155
        if (strcmp(test->name, (char *) argv->buffer) == 0) {
1127
        if (strcmp(test->name, (char *) argv->buffer) == 0) {
1156
            fnd = true;
1128
            fnd = true;
1157
           
1129
           
1158
            if (test->safe)
1130
            if (test->safe)
1159
                run_bench(test, cnt);
1131
                run_bench(test, cnt);
1160
            else
1132
            else
1161
                printf("Unsafe test\n");
1133
                printf("Unsafe test\n");
1162
           
1134
           
1163
            break;
1135
            break;
1164
        }
1136
        }
1165
    }
1137
    }
1166
       
1138
       
1167
    if (!fnd)
1139
    if (!fnd)
1168
        printf("Unknown test\n");
1140
        printf("Unknown test\n");
1169
 
1141
 
1170
    return 1;
1142
    return 1;
1171
}
1143
}
1172
 
1144
 
1173
#endif
1145
#endif
1174
 
1146
 
1175
/** @}
1147
/** @}
1176
 */
1148
 */
1177
 
1149