Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
card10
openocd
Commits
28300bbf
Commit
28300bbf
authored
Nov 23, 2009
by
Zachary T Welch
Browse files
cortex_a8: use register_commands()
parent
df95fe25
Changes
1
Show whitespace changes
Inline
Side-by-side
src/target/cortex_a8.c
View file @
28300bbf
...
...
@@ -1625,28 +1625,36 @@ COMMAND_HANDLER(cortex_a8_handle_dbginit_command)
return
ERROR_OK
;
}
static
const
struct
command_registration
cortex_a8_exec_command_handlers
[]
=
{
{
.
name
=
"cache_info"
,
.
handler
=
&
cortex_a8_handle_cache_info_command
,
.
mode
=
COMMAND_EXEC
,
.
help
=
"display information about target caches"
,
},
{
.
name
=
"dbginit"
,
.
handler
=
&
cortex_a8_handle_dbginit_command
,
.
mode
=
COMMAND_EXEC
,
.
help
=
"Initialize core debug"
,
},
COMMAND_REGISTRATION_DONE
};
static
const
struct
command_registration
cortex_a8_command_handlers
[]
=
{
{
.
name
=
"cortex_a8"
,
.
mode
=
COMMAND_ANY
,
.
help
=
"Cortex-A8 command group"
,
.
chain
=
cortex_a8_exec_command_handlers
,
},
COMMAND_REGISTRATION_DONE
};
static
int
cortex_a8_register_commands
(
struct
command_context
*
cmd_ctx
)
{
struct
command
*
cortex_a8_cmd
;
int
retval
=
ERROR_OK
;
armv4_5_register_commands
(
cmd_ctx
);
armv7a_register_commands
(
cmd_ctx
);
cortex_a8_cmd
=
COMMAND_REGISTER
(
cmd_ctx
,
NULL
,
"cortex_a8"
,
NULL
,
COMMAND_ANY
,
"cortex_a8 specific commands"
);
COMMAND_REGISTER
(
cmd_ctx
,
cortex_a8_cmd
,
"cache_info"
,
cortex_a8_handle_cache_info_command
,
COMMAND_EXEC
,
"display information about target caches"
);
COMMAND_REGISTER
(
cmd_ctx
,
cortex_a8_cmd
,
"dbginit"
,
cortex_a8_handle_dbginit_command
,
COMMAND_EXEC
,
"Initialize core debug"
);
return
retval
;
return
register_commands
(
cmd_ctx
,
NULL
,
cortex_a8_command_handlers
);
}
struct
target_type
cortexa8_target
=
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment