2007-07-15 06:19:33 -05:00
|
|
|
/***************************************************************************
|
|
|
|
* Copyright (C) 2007 by Dominic Rath *
|
|
|
|
* Dominic.Rath@gmx.de *
|
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
|
|
* it under the terms of the GNU General Public License as published by *
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
|
|
* (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This program is distributed in the hope that it will be useful, *
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
* GNU General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU General Public License *
|
2016-05-16 15:41:00 -05:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
|
2007-07-15 06:19:33 -05:00
|
|
|
***************************************************************************/
|
2012-02-05 06:03:04 -06:00
|
|
|
|
2007-07-15 06:19:33 -05:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2009-12-07 16:54:13 -06:00
|
|
|
#include "arm.h"
|
2007-07-15 06:19:33 -05:00
|
|
|
#include "etm_dummy.h"
|
|
|
|
|
2009-11-10 01:56:52 -06:00
|
|
|
COMMAND_HANDLER(handle_etm_dummy_config_command)
|
2007-07-15 06:19:33 -05:00
|
|
|
{
|
2009-11-13 12:11:13 -06:00
|
|
|
struct target *target;
|
2009-11-11 23:52:02 -06:00
|
|
|
struct arm *arm;
|
2008-11-19 01:32:30 -06:00
|
|
|
|
2009-11-15 10:15:59 -06:00
|
|
|
target = get_target(CMD_ARGV[0]);
|
2008-11-19 01:32:30 -06:00
|
|
|
|
2012-02-05 06:03:04 -06:00
|
|
|
if (!target) {
|
2009-11-15 10:15:59 -06:00
|
|
|
LOG_ERROR("target '%s' not defined", CMD_ARGV[0]);
|
2008-11-19 01:32:30 -06:00
|
|
|
return ERROR_FAIL;
|
2007-07-15 06:19:33 -05:00
|
|
|
}
|
2008-11-19 01:32:30 -06:00
|
|
|
|
2009-11-11 23:52:02 -06:00
|
|
|
arm = target_to_arm(target);
|
2012-02-05 06:03:04 -06:00
|
|
|
if (!is_arm(arm)) {
|
helper/command: change prototype of command_print/command_print_sameline
To prepare for handling TCL return values consistently, all calls
to command_print/command_print_sameline should switch to CMD as
first parameter.
Change prototype of command_print() and command_print_sameline()
to pass CMD instead of CMD_CTX.
Since the first parameter is currently not used, the change can be
done though scripts without manual coding.
This patch is created using the command:
sed -i PATTERN $(find src/ doc/ -type f)
with all the following patters:
's/\(command_print(cmd\)->ctx,/\1,/'
's/\(command_print(CMD\)_CTX,/\1,/'
's/\(command_print(struct command_\)context \*context,/\1invocation *cmd,/'
's/\(command_print_sameline(cmd\)->ctx,/\1,/'
's/\(command_print_sameline(CMD\)_CTX,/\1,/'
's/\(command_print_sameline(struct command_\)context \*context,/\1invocation *cmd,/'
This change is inspired by http://openocd.zylin.com/1815 from Paul
Fertser but is now done through scripting.
Change-Id: I3386d8f96cdc477e7a2308dd18269de3bed04385
Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
Signed-off-by: Paul Fertser <fercerpav@gmail.com>
Reviewed-on: http://openocd.zylin.com/5081
Tested-by: jenkins
Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
2019-04-03 03:37:24 -05:00
|
|
|
command_print(CMD, "target '%s' isn't an ARM", CMD_ARGV[0]);
|
2008-11-19 01:32:30 -06:00
|
|
|
return ERROR_FAIL;
|
2007-07-15 06:19:33 -05:00
|
|
|
}
|
2008-11-19 01:32:30 -06:00
|
|
|
|
2009-11-11 23:52:02 -06:00
|
|
|
if (arm->etm)
|
|
|
|
arm->etm->capture_driver_priv = NULL;
|
2012-02-05 06:03:04 -06:00
|
|
|
else {
|
2008-03-25 10:45:17 -05:00
|
|
|
LOG_ERROR("target has no ETM defined, ETM dummy left unconfigured");
|
2008-11-19 01:32:30 -06:00
|
|
|
return ERROR_FAIL;
|
2007-07-15 06:19:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
2009-11-23 09:43:06 -06:00
|
|
|
static const struct command_registration etm_dummy_config_command_handlers[] = {
|
|
|
|
{
|
|
|
|
.name = "config",
|
2010-01-07 17:22:41 -06:00
|
|
|
.handler = handle_etm_dummy_config_command,
|
2009-11-23 09:43:06 -06:00
|
|
|
.mode = COMMAND_CONFIG,
|
2010-01-07 17:22:41 -06:00
|
|
|
.usage = "target",
|
2009-11-23 09:43:06 -06:00
|
|
|
},
|
|
|
|
COMMAND_REGISTRATION_DONE
|
|
|
|
};
|
|
|
|
static const struct command_registration etm_dummy_command_handlers[] = {
|
|
|
|
{
|
|
|
|
.name = "etm_dummy",
|
|
|
|
.mode = COMMAND_ANY,
|
|
|
|
.help = "Dummy ETM capture driver command group",
|
|
|
|
.chain = etm_dummy_config_command_handlers,
|
2019-01-04 08:13:53 -06:00
|
|
|
.usage = "",
|
2009-11-23 09:43:06 -06:00
|
|
|
},
|
|
|
|
COMMAND_REGISTRATION_DONE
|
|
|
|
};
|
|
|
|
|
2009-11-13 11:35:48 -06:00
|
|
|
static int etm_dummy_init(struct etm_context *etm_ctx)
|
2007-07-15 06:19:33 -05:00
|
|
|
{
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
2009-11-13 11:35:48 -06:00
|
|
|
static trace_status_t etm_dummy_status(struct etm_context *etm_ctx)
|
2007-07-15 06:19:33 -05:00
|
|
|
{
|
|
|
|
return TRACE_IDLE;
|
|
|
|
}
|
|
|
|
|
2009-11-13 11:35:48 -06:00
|
|
|
static int etm_dummy_read_trace(struct etm_context *etm_ctx)
|
2007-07-15 06:19:33 -05:00
|
|
|
{
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
2009-11-13 11:35:48 -06:00
|
|
|
static int etm_dummy_start_capture(struct etm_context *etm_ctx)
|
2007-07-15 06:19:33 -05:00
|
|
|
{
|
|
|
|
return ERROR_ETM_PORTMODE_NOT_SUPPORTED;
|
|
|
|
}
|
|
|
|
|
2009-11-13 11:35:48 -06:00
|
|
|
static int etm_dummy_stop_capture(struct etm_context *etm_ctx)
|
2007-07-15 06:19:33 -05:00
|
|
|
{
|
|
|
|
return ERROR_OK;
|
|
|
|
}
|
|
|
|
|
2012-02-05 06:03:04 -06:00
|
|
|
struct etm_capture_driver etm_dummy_capture_driver = {
|
2007-07-15 06:19:33 -05:00
|
|
|
.name = "dummy",
|
2009-11-23 10:24:02 -06:00
|
|
|
.commands = etm_dummy_command_handlers,
|
2007-07-15 06:19:33 -05:00
|
|
|
.init = etm_dummy_init,
|
|
|
|
.status = etm_dummy_status,
|
|
|
|
.start_capture = etm_dummy_start_capture,
|
|
|
|
.stop_capture = etm_dummy_stop_capture,
|
|
|
|
.read_trace = etm_dummy_read_trace,
|
|
|
|
};
|