Target driver passthrough commands
Added `pm` commands to manage the program mode of WCH targets
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
#include "Monitor.hpp"
|
||||
|
||||
#include "src/DebugServer/Gdb/ResponsePackets/ResponsePacket.hpp"
|
||||
#include "src/DebugServer/Gdb/ResponsePackets/EmptyResponsePacket.hpp"
|
||||
|
||||
#include "src/Services/StringService.hpp"
|
||||
@@ -9,6 +10,7 @@ namespace DebugServer::Gdb::CommandPackets
|
||||
{
|
||||
using Services::TargetControllerService;
|
||||
|
||||
using ResponsePackets::ResponsePacket;
|
||||
using ResponsePackets::EmptyResponsePacket;
|
||||
|
||||
Monitor::Monitor(const RawPacket& rawPacket)
|
||||
@@ -34,6 +36,17 @@ namespace DebugServer::Gdb::CommandPackets
|
||||
const Targets::TargetDescriptor&,
|
||||
TargetControllerService& targetControllerService
|
||||
) {
|
||||
const auto passthroughResponse = targetControllerService.invokeTargetPassthroughCommand(
|
||||
Targets::PassthroughCommand{.arguments = this->commandArguments}
|
||||
);
|
||||
|
||||
if (passthroughResponse.has_value()) {
|
||||
debugSession.connection.writePacket(ResponsePacket{
|
||||
Services::StringService::toHex(passthroughResponse->output)
|
||||
});
|
||||
return;
|
||||
}
|
||||
|
||||
Logger::error("Unknown custom GDB command (\"" + this->command + "\") received.");
|
||||
debugSession.connection.writePacket(EmptyResponsePacket{});
|
||||
}
|
||||
|
||||
@@ -54,6 +54,7 @@ namespace Services
|
||||
using TargetController::Commands::EnableProgrammingMode;
|
||||
using TargetController::Commands::DisableProgrammingMode;
|
||||
using TargetController::Commands::Shutdown;
|
||||
using TargetController::Commands::InvokeTargetPassthroughCommand;
|
||||
|
||||
using Targets::TargetDescriptor;
|
||||
using Targets::TargetState;
|
||||
@@ -345,6 +346,16 @@ namespace Services
|
||||
);
|
||||
}
|
||||
|
||||
std::optional<Targets::PassthroughResponse> TargetControllerService::invokeTargetPassthroughCommand(
|
||||
Targets::PassthroughCommand&& command
|
||||
) const {
|
||||
return this->commandManager.sendCommandAndWaitForResponse(
|
||||
std::make_unique<InvokeTargetPassthroughCommand>(std::move(command)),
|
||||
this->defaultTimeout,
|
||||
this->activeAtomicSessionId
|
||||
)->response;
|
||||
}
|
||||
|
||||
TargetControllerService::AtomicSession TargetControllerService::makeAtomicSession() {
|
||||
return AtomicSession{*this};
|
||||
}
|
||||
|
||||
@@ -20,6 +20,8 @@
|
||||
#include "src/Targets/TargetGpioPadState.hpp"
|
||||
#include "src/Targets/TargetMemory.hpp"
|
||||
#include "src/Targets/TargetBreakpoint.hpp"
|
||||
#include "src/Targets/PassthroughCommand.hpp"
|
||||
#include "src/Targets/PassthroughResponse.hpp"
|
||||
|
||||
#include "src/Exceptions/Exception.hpp"
|
||||
|
||||
@@ -266,6 +268,10 @@ namespace Services
|
||||
*/
|
||||
void shutdown() const;
|
||||
|
||||
std::optional<Targets::PassthroughResponse> invokeTargetPassthroughCommand(
|
||||
Targets::PassthroughCommand&& command
|
||||
) const;
|
||||
|
||||
/**
|
||||
* Starts a new atomic session with the TC, via an TargetControllerService::AtomicSession RAII object.
|
||||
* The session will end when the object is destroyed.
|
||||
|
||||
@@ -31,5 +31,6 @@ namespace TargetController::Commands
|
||||
GET_TARGET_PROGRAM_COUNTER,
|
||||
ENABLE_PROGRAMMING_MODE,
|
||||
DISABLE_PROGRAMMING_MODE,
|
||||
INVOKE_TARGET_PASSTHROUGH_COMMAND,
|
||||
};
|
||||
}
|
||||
|
||||
@@ -0,0 +1,31 @@
|
||||
#pragma once
|
||||
|
||||
#include "Command.hpp"
|
||||
#include "src/TargetController/Responses/TargetPassthroughResponse.hpp"
|
||||
|
||||
#include "src/Targets/PassthroughCommand.hpp"
|
||||
|
||||
namespace TargetController::Commands
|
||||
{
|
||||
class InvokeTargetPassthroughCommand: public Command
|
||||
{
|
||||
public:
|
||||
using SuccessResponseType = Responses::TargetPassthroughResponse;
|
||||
static constexpr CommandType type = CommandType::INVOKE_TARGET_PASSTHROUGH_COMMAND;
|
||||
static const inline std::string name = "InvokeTargetPassthroughCommand";
|
||||
|
||||
Targets::PassthroughCommand command;
|
||||
|
||||
explicit InvokeTargetPassthroughCommand(Targets::PassthroughCommand&& command)
|
||||
: command(std::move(command))
|
||||
{};
|
||||
|
||||
[[nodiscard]] CommandType getType() const override {
|
||||
return InvokeTargetPassthroughCommand::type;
|
||||
}
|
||||
|
||||
[[nodiscard]] bool requiresStoppedTargetState() const override {
|
||||
return true;
|
||||
}
|
||||
};
|
||||
}
|
||||
@@ -17,5 +17,6 @@ namespace TargetController::Responses
|
||||
TARGET_STACK_POINTER,
|
||||
TARGET_PROGRAM_COUNTER,
|
||||
PROGRAM_BREAKPOINT,
|
||||
TARGET_PASSTHROUGH_RESPONSE,
|
||||
};
|
||||
}
|
||||
|
||||
26
src/TargetController/Responses/TargetPassthroughResponse.hpp
Normal file
26
src/TargetController/Responses/TargetPassthroughResponse.hpp
Normal file
@@ -0,0 +1,26 @@
|
||||
#pragma once
|
||||
|
||||
#include <optional>
|
||||
|
||||
#include "Response.hpp"
|
||||
|
||||
#include "src/Targets/PassthroughResponse.hpp"
|
||||
|
||||
namespace TargetController::Responses
|
||||
{
|
||||
class TargetPassthroughResponse: public Response
|
||||
{
|
||||
public:
|
||||
static constexpr ResponseType type = ResponseType::TARGET_PASSTHROUGH_RESPONSE;
|
||||
|
||||
std::optional<Targets::PassthroughResponse> response;
|
||||
|
||||
explicit TargetPassthroughResponse(std::optional<Targets::PassthroughResponse>&& response)
|
||||
: response(std::move(response))
|
||||
{}
|
||||
|
||||
[[nodiscard]] ResponseType getType() const override {
|
||||
return TargetPassthroughResponse::type;
|
||||
}
|
||||
};
|
||||
}
|
||||
@@ -51,6 +51,7 @@ namespace TargetController
|
||||
using Commands::GetTargetProgramCounter;
|
||||
using Commands::EnableProgrammingMode;
|
||||
using Commands::DisableProgrammingMode;
|
||||
using Commands::InvokeTargetPassthroughCommand;
|
||||
|
||||
using Responses::Response;
|
||||
using Responses::AtomicSessionId;
|
||||
@@ -60,6 +61,7 @@ namespace TargetController
|
||||
using Responses::TargetStackPointer;
|
||||
using Responses::TargetProgramCounter;
|
||||
using Responses::ProgramBreakpoint;
|
||||
using Responses::TargetPassthroughResponse;
|
||||
|
||||
TargetControllerComponent::TargetControllerComponent(
|
||||
const ProjectConfig& projectConfig,
|
||||
@@ -262,6 +264,10 @@ namespace TargetController
|
||||
std::bind(&TargetControllerComponent::handleDisableProgrammingMode, this, std::placeholders::_1)
|
||||
);
|
||||
|
||||
this->registerCommandHandler<InvokeTargetPassthroughCommand>(
|
||||
std::bind(&TargetControllerComponent::handleTargetPassthroughCommand, this, std::placeholders::_1)
|
||||
);
|
||||
|
||||
// Register event handlers
|
||||
this->eventListener->registerCallbackForEventType<Events::ShutdownTargetController>(
|
||||
std::bind(&TargetControllerComponent::onShutdownTargetControllerEvent, this, std::placeholders::_1)
|
||||
@@ -1173,4 +1179,10 @@ namespace TargetController
|
||||
|
||||
return std::make_unique<Response>();
|
||||
}
|
||||
|
||||
std::unique_ptr<TargetPassthroughResponse> TargetControllerComponent::handleTargetPassthroughCommand(
|
||||
InvokeTargetPassthroughCommand& command
|
||||
) {
|
||||
return std::make_unique<TargetPassthroughResponse>(this->target->invokePassthroughCommand(command.command));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -45,6 +45,7 @@
|
||||
#include "Commands/GetTargetProgramCounter.hpp"
|
||||
#include "Commands/EnableProgrammingMode.hpp"
|
||||
#include "Commands/DisableProgrammingMode.hpp"
|
||||
#include "Commands/InvokeTargetPassthroughCommand.hpp"
|
||||
|
||||
// Responses
|
||||
#include "Responses/Response.hpp"
|
||||
@@ -57,6 +58,7 @@
|
||||
#include "Responses/TargetStackPointer.hpp"
|
||||
#include "Responses/TargetProgramCounter.hpp"
|
||||
#include "Responses/ProgramBreakpoint.hpp"
|
||||
#include "Responses/TargetPassthroughResponse.hpp"
|
||||
|
||||
#include "src/DebugToolDrivers/DebugTools.hpp"
|
||||
#include "src/Targets/BriefTargetDescriptor.hpp"
|
||||
@@ -379,5 +381,8 @@ namespace TargetController
|
||||
);
|
||||
std::unique_ptr<Responses::Response> handleEnableProgrammingMode(Commands::EnableProgrammingMode& command);
|
||||
std::unique_ptr<Responses::Response> handleDisableProgrammingMode(Commands::DisableProgrammingMode& command);
|
||||
std::unique_ptr<Responses::TargetPassthroughResponse> handleTargetPassthroughCommand(
|
||||
Commands::InvokeTargetPassthroughCommand& command
|
||||
);
|
||||
};
|
||||
}
|
||||
|
||||
@@ -335,6 +335,14 @@ namespace Targets::Microchip::Avr8
|
||||
}
|
||||
}
|
||||
|
||||
// Make RAM, FLASH and EEPROM available for inspection the Insight GUI.
|
||||
descriptor.getMemorySegmentDescriptor("data", "internal_ram").inspectionEnabled = true;
|
||||
descriptor.getMemorySegmentDescriptor("prog", "internal_program_memory").inspectionEnabled = true;
|
||||
descriptor.getMemorySegmentDescriptor(
|
||||
descriptor.getFirstAddressSpaceDescriptorContainingMemorySegment("internal_eeprom").key,
|
||||
"internal_eeprom"
|
||||
).inspectionEnabled = true;
|
||||
|
||||
return descriptor;
|
||||
}
|
||||
|
||||
@@ -683,6 +691,11 @@ namespace Targets::Microchip::Avr8
|
||||
return this->activeProgrammingSession.has_value();
|
||||
}
|
||||
|
||||
std::optional<PassthroughResponse> Avr8::invokePassthroughCommand(const PassthroughCommand& command) {
|
||||
// AVR targets do not currently support any passthrough commands
|
||||
return std::nullopt;
|
||||
}
|
||||
|
||||
std::map<TargetPadId, GpioPadDescriptor> Avr8::generateGpioPadDescriptorMapping(
|
||||
const std::vector<TargetPeripheralDescriptor>& portPeripheralDescriptors
|
||||
) {
|
||||
|
||||
@@ -105,11 +105,11 @@ namespace Targets::Microchip::Avr8
|
||||
void setGpioPadState(const TargetPadDescriptor& padDescriptor, const TargetGpioPadState& state) override;
|
||||
|
||||
void enableProgrammingMode() override;
|
||||
|
||||
void disableProgrammingMode() override;
|
||||
|
||||
bool programmingModeEnabled() override;
|
||||
|
||||
std::optional<PassthroughResponse> invokePassthroughCommand(const PassthroughCommand& command) override;
|
||||
|
||||
protected:
|
||||
DebugToolDrivers::TargetInterfaces::TargetPowerManagementInterface* targetPowerManagementInterface = nullptr;
|
||||
DebugToolDrivers::TargetInterfaces::Microchip::Avr8::Avr8DebugInterface* avr8DebugInterface = nullptr;
|
||||
|
||||
12
src/Targets/PassthroughCommand.hpp
Normal file
12
src/Targets/PassthroughCommand.hpp
Normal file
@@ -0,0 +1,12 @@
|
||||
#pragma once
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
namespace Targets
|
||||
{
|
||||
struct PassthroughCommand
|
||||
{
|
||||
std::vector<std::string> arguments;
|
||||
};
|
||||
}
|
||||
11
src/Targets/PassthroughResponse.hpp
Normal file
11
src/Targets/PassthroughResponse.hpp
Normal file
@@ -0,0 +1,11 @@
|
||||
#pragma once
|
||||
|
||||
#include <string>
|
||||
|
||||
namespace Targets
|
||||
{
|
||||
struct PassthroughResponse
|
||||
{
|
||||
std::string output;
|
||||
};
|
||||
}
|
||||
@@ -3,12 +3,13 @@
|
||||
#include <utility>
|
||||
#include <cassert>
|
||||
|
||||
|
||||
#include "src/Targets/DynamicRegisterValue.hpp"
|
||||
|
||||
#include "src/Exceptions/InvalidConfig.hpp"
|
||||
#include "src/Exceptions/Exception.hpp"
|
||||
|
||||
#include "src/EventManager/EventManager.hpp"
|
||||
|
||||
#include "src/Services/StringService.hpp"
|
||||
#include "src/Logger/Logger.hpp"
|
||||
|
||||
@@ -350,6 +351,95 @@ namespace Targets::RiscV::Wch
|
||||
return programCounter;
|
||||
}
|
||||
|
||||
std::optional<PassthroughResponse> WchRiscV::invokePassthroughCommand(const PassthroughCommand& command) {
|
||||
using Services::StringService;
|
||||
|
||||
const auto& arguments = command.arguments;
|
||||
if (arguments.empty()) {
|
||||
return std::nullopt;
|
||||
}
|
||||
|
||||
auto response = PassthroughResponse{};
|
||||
|
||||
try {
|
||||
if (arguments[0] == "pm") {
|
||||
const auto &actualAliasedSegment = this->resolveAliasedMemorySegment();
|
||||
|
||||
if (arguments.size() == 1) {
|
||||
response.output = "Program mode: \"" + StringService::applyTerminalColor(
|
||||
actualAliasedSegment == this->bootProgramSegmentDescriptor ? "boot mode" : "user mode",
|
||||
StringService::TerminalColor::DARK_YELLOW
|
||||
) + "\"\n";
|
||||
response.output += "Aliased memory segment key: \""
|
||||
+ StringService::applyTerminalColor(
|
||||
actualAliasedSegment.key,
|
||||
StringService::TerminalColor::DARK_YELLOW
|
||||
) + "\"\n";
|
||||
response.output += "Mapped address -> aliased address: " + StringService::applyTerminalColor(
|
||||
"0x" + StringService::asciiToUpper(
|
||||
StringService::toHex(this->mappedSegmentDescriptor.addressRange.startAddress)
|
||||
),
|
||||
StringService::TerminalColor::BLUE
|
||||
) + " -> " + StringService::applyTerminalColor(
|
||||
"0x" + StringService::asciiToUpper(
|
||||
StringService::toHex(actualAliasedSegment.addressRange.startAddress)
|
||||
),
|
||||
StringService::TerminalColor::BLUE
|
||||
) + "\n";
|
||||
response.output += "Program counter: " + StringService::applyTerminalColor(
|
||||
"0x" + StringService::asciiToUpper(StringService::toHex(this->getProgramCounter())),
|
||||
StringService::TerminalColor::BLUE
|
||||
) + "\n";
|
||||
|
||||
return response;
|
||||
}
|
||||
|
||||
if (arguments[1] == "boot") {
|
||||
if (actualAliasedSegment == this->bootProgramSegmentDescriptor) {
|
||||
response.output += "Target is already in \"boot mode\"\n";
|
||||
response.output += "Proceeding, anyway...\n\n";
|
||||
}
|
||||
|
||||
this->enableBootMode();
|
||||
EventManager::triggerEvent(std::make_shared<Events::TargetReset>());
|
||||
|
||||
response.output += "Boot mode has been enabled\n";
|
||||
response.output += "Program counter: " + StringService::applyTerminalColor(
|
||||
"0x" + StringService::asciiToUpper(StringService::toHex(this->getProgramCounter())),
|
||||
StringService::TerminalColor::BLUE
|
||||
) + "\n";
|
||||
|
||||
return response;
|
||||
}
|
||||
|
||||
if (arguments[1] == "user") {
|
||||
if (actualAliasedSegment == this->mainProgramSegmentDescriptor) {
|
||||
response.output += "Target is already in \"user mode\"\n";
|
||||
response.output += "Proceeding, anyway...\n\n";
|
||||
}
|
||||
|
||||
this->enableUserMode();
|
||||
EventManager::triggerEvent(std::make_shared<Events::TargetReset>());
|
||||
|
||||
response.output += "User mode has been enabled\n";
|
||||
response.output += "Program counter: " + StringService::applyTerminalColor(
|
||||
"0x" + StringService::asciiToUpper(StringService::toHex(this->getProgramCounter())),
|
||||
StringService::TerminalColor::BLUE
|
||||
) + "\n";
|
||||
|
||||
return response;
|
||||
}
|
||||
}
|
||||
|
||||
} catch (const Exceptions::Exception& exception) {
|
||||
Logger::error("Passthrough command error: " + exception.getMessage());
|
||||
response.output = "Error: " + exception.getMessage();
|
||||
return response;
|
||||
}
|
||||
|
||||
return std::nullopt;
|
||||
}
|
||||
|
||||
const TargetMemorySegmentDescriptor& WchRiscV::resolveAliasedMemorySegment() {
|
||||
/*
|
||||
* To determine the aliased segment, we probe the boundary of the boot segment via the mapped segment.
|
||||
|
||||
@@ -43,6 +43,8 @@ namespace Targets::RiscV::Wch
|
||||
|
||||
TargetMemoryAddress getProgramCounter() override;
|
||||
|
||||
std::optional<PassthroughResponse> invokePassthroughCommand(const PassthroughCommand& command) override;
|
||||
|
||||
protected:
|
||||
WchRiscVTargetConfig targetConfig;
|
||||
TargetDescriptionFile targetDescriptionFile;
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
#include <memory>
|
||||
#include <set>
|
||||
#include <map>
|
||||
#include <optional>
|
||||
|
||||
#include "src/ProjectConfig.hpp"
|
||||
|
||||
@@ -19,6 +20,9 @@
|
||||
#include "TargetPadDescriptor.hpp"
|
||||
#include "TargetGpioPadState.hpp"
|
||||
|
||||
#include "PassthroughCommand.hpp"
|
||||
#include "PassthroughResponse.hpp"
|
||||
|
||||
#include "src/DebugToolDrivers/DebugTool.hpp"
|
||||
|
||||
namespace Targets
|
||||
@@ -150,5 +154,7 @@ namespace Targets
|
||||
virtual void enableProgrammingMode() = 0;
|
||||
virtual void disableProgrammingMode() = 0;
|
||||
virtual bool programmingModeEnabled() = 0;
|
||||
|
||||
virtual std::optional<PassthroughResponse> invokePassthroughCommand(const PassthroughCommand& command) = 0;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user