Tidying
This commit is contained in:
@@ -37,21 +37,62 @@ namespace Bloom::Targets::Microchip::Avr::Avr8Bit
|
||||
std::map<std::string, PadDescriptor> padDescriptorsByName;
|
||||
std::map<int, TargetVariant> targetVariantsById;
|
||||
|
||||
/**
|
||||
* Extracts the ID from the target's memory.
|
||||
*
|
||||
* This function will cache the ID value and use the cached version for any subsequent calls.
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
TargetSignature getId() override;
|
||||
|
||||
/**
|
||||
* Extracts the AVR8 target parameters from the loaded part description file.
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
virtual TargetParameters& getTargetParameters();
|
||||
|
||||
/**
|
||||
* Generates a collection of PadDescriptor object from data in the loaded part description file and
|
||||
* populates this->padDescriptorsByName.
|
||||
*/
|
||||
virtual void loadPadDescriptors();
|
||||
|
||||
/**
|
||||
* Extracts target variant information from the loaded part description file and generates a collection
|
||||
* of TargetVariant objects.
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
virtual std::vector<TargetVariant> generateVariantsFromPartDescription();
|
||||
|
||||
/**
|
||||
* Populates this->targetVariantsById using this->generateVariantsFromPartDescription() and data from
|
||||
* this->padDescriptorsByName.
|
||||
*/
|
||||
virtual void loadTargetVariants();
|
||||
|
||||
public:
|
||||
explicit Avr8() = default;
|
||||
Avr8(const std::string& name): name(name) {};
|
||||
|
||||
[[nodiscard]] std::string getName() const override {
|
||||
return this->name;
|
||||
}
|
||||
/*
|
||||
* The functions below implement the Target interface for AVR8 targets.
|
||||
*
|
||||
* See the Bloom::Targets::Target interface class for documentation on the expected behaviour of
|
||||
* each function.
|
||||
*/
|
||||
|
||||
void preActivationConfigure(const TargetConfig& targetConfig) override;
|
||||
void postActivationConfigure() override;
|
||||
virtual void postPromotionConfigure() override;
|
||||
|
||||
void activate() override;
|
||||
void deactivate() override;
|
||||
|
||||
/**
|
||||
* Checks if DebugTool is compatible with AVR8 targets.
|
||||
* All AVR8 compatible debug tools must provide a valid Avr8Interface.
|
||||
*
|
||||
* @param debugTool
|
||||
* @return
|
||||
@@ -64,31 +105,8 @@ namespace Bloom::Targets::Microchip::Avr::Avr8Bit
|
||||
this->avr8Interface = debugTool->getAvr8Interface();
|
||||
};
|
||||
|
||||
void preActivationConfigure(const TargetConfig& targetConfig) override;
|
||||
void postActivationConfigure() override;
|
||||
|
||||
virtual void postPromotionConfigure() override;
|
||||
|
||||
void activate() override;
|
||||
|
||||
void deactivate() override;
|
||||
|
||||
TargetSignature getId() override;
|
||||
|
||||
void run() override;
|
||||
|
||||
void stop() override;
|
||||
|
||||
void step() override;
|
||||
|
||||
void reset() override;
|
||||
|
||||
void setBreakpoint(std::uint32_t address) override;
|
||||
void removeBreakpoint(std::uint32_t address) override;
|
||||
void clearAllBreakpoints() override;
|
||||
|
||||
/**
|
||||
* AVR8 targets are promotable. See promote() method for more.
|
||||
* Instances to this target class can be promoted. See Avr8::promote() method for more.
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
@@ -96,25 +114,52 @@ namespace Bloom::Targets::Microchip::Avr::Avr8Bit
|
||||
return true;
|
||||
}
|
||||
|
||||
virtual std::vector<TargetVariant> generateVariantsFromPartDescription();
|
||||
/**
|
||||
* Instances of this generic Avr8 target class will be promoted to a family specific class (see the Mega, Xmega
|
||||
* and Tiny classes for more).
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
virtual std::unique_ptr<Targets::Target> promote() override;
|
||||
|
||||
std::string getName() const override {
|
||||
return this->name;
|
||||
}
|
||||
|
||||
virtual TargetDescriptor getDescriptor() override;
|
||||
|
||||
virtual std::unique_ptr<Targets::Target> promote() override;
|
||||
void run() override;
|
||||
void stop() override;
|
||||
void step() override;
|
||||
void reset() override;
|
||||
|
||||
void setBreakpoint(std::uint32_t address) override;
|
||||
void removeBreakpoint(std::uint32_t address) override;
|
||||
void clearAllBreakpoints() override;
|
||||
|
||||
virtual TargetRegisters readGeneralPurposeRegisters(std::set<std::size_t> registerIds) override;
|
||||
virtual void writeRegisters(const TargetRegisters& registers) override;
|
||||
virtual TargetRegisters readRegisters(const TargetRegisterDescriptors& descriptors) override;
|
||||
virtual TargetMemoryBuffer readMemory(TargetMemoryType memoryType, std::uint32_t startAddress, std::uint32_t bytes) override;
|
||||
virtual void writeMemory(TargetMemoryType memoryType, std::uint32_t startAddress, const TargetMemoryBuffer& buffer) override;
|
||||
|
||||
virtual TargetMemoryBuffer readMemory(
|
||||
TargetMemoryType memoryType,
|
||||
std::uint32_t startAddress,
|
||||
std::uint32_t bytes
|
||||
) override;
|
||||
virtual void writeMemory(
|
||||
TargetMemoryType memoryType,
|
||||
std::uint32_t startAddress,
|
||||
const TargetMemoryBuffer& buffer
|
||||
) override;
|
||||
|
||||
virtual TargetState getState() override;
|
||||
|
||||
virtual std::uint32_t getProgramCounter() override;
|
||||
virtual TargetRegister getProgramCounterRegister() override;
|
||||
virtual void setProgramCounter(std::uint32_t programCounter) override;
|
||||
|
||||
virtual TargetRegister getStackPointerRegister() override;
|
||||
virtual TargetRegister getStatusRegister() override;
|
||||
virtual void setProgramCounter(std::uint32_t programCounter) override;
|
||||
|
||||
virtual std::map<int, TargetPinState> getPinStates(int variantId) override;
|
||||
virtual void setPinState(
|
||||
|
||||
@@ -30,14 +30,14 @@ namespace Bloom::Targets
|
||||
class Target
|
||||
{
|
||||
protected:
|
||||
bool activated = false;
|
||||
|
||||
/**
|
||||
* Target related configuration provided by the user. This is passed in via the first stage of target
|
||||
* configuration. See Target::preActivationConfigure() for more.
|
||||
*/
|
||||
TargetConfig config;
|
||||
|
||||
bool activated = false;
|
||||
|
||||
public:
|
||||
explicit Target() {}
|
||||
|
||||
@@ -54,15 +54,15 @@ namespace Bloom::Targets
|
||||
* that is required in order for us to successfully activate the target. For an example, we use this method in
|
||||
* the Avr8 target class to configure the debug tool with the correct physical interface and config variant
|
||||
* parameters (taken from the user's settings, via the TargetConfig instance). Without these being configured,
|
||||
* the debug tool would not be able to interface with the target, and thus target activation would fail.
|
||||
* the debug tool would not be able to interface with the AVR8 target, and thus target activation would fail.
|
||||
*
|
||||
* postActivationConfigure() - The second stage is right after target activation (successful invocation of
|
||||
* Target::activate()). At this point, we will have established a connection with the target and so interaction
|
||||
* with the target is permitted here. We use this method in the Avr8 target class to extract the target signature
|
||||
* from the target's memory, which we then use to find & load the correct part description file.
|
||||
*
|
||||
* postPromotionConfigure() - The final stage of configuration occurs just after the target has been promoted
|
||||
* to its final form. See the Target::promote() method for more in this.
|
||||
* postPromotionConfigure() - The final stage of configuration occurs just after the target instance has been
|
||||
* promoted to a different class. See the Target::promote() method for more in this.
|
||||
*
|
||||
* If any of the three configuration methods throw an exception, the exception will be treated as a fatal error.
|
||||
* In response, the TargetController will shutdown, along with the rest of Bloom.
|
||||
@@ -98,13 +98,15 @@ namespace Bloom::Targets
|
||||
|
||||
/**
|
||||
* Should check if the given debugTool is compatible with the target. Returning false in this method will
|
||||
* prevent Bloom from attempting to use the selected debug tool with the selected target.
|
||||
* prevent Bloom from attempting to use the selected debug tool with the selected target. An InvalidConfig
|
||||
* exception will be raised and Bloom will shutdown.
|
||||
*
|
||||
* For AVR8 targets, we simply check if the debug tool returns a valid Avr8Interface
|
||||
* (via DebugTool::getAvr8Interface()). If it fails to do so, it would mean that the debug tool, or more so our
|
||||
* debug tool driver, does not support AVR8 targets.
|
||||
*
|
||||
* @param debugTool
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
virtual bool isDebugToolSupported(DebugTool* debugTool) = 0;
|
||||
@@ -158,6 +160,9 @@ namespace Bloom::Targets
|
||||
* - The call to Target::promote() on the current target instance returns a target class type that is equal
|
||||
* to the type of the current target instance (promotion failed).
|
||||
*
|
||||
* Once at least one of the above conditions are met, the TargetController will break out of the loop and use
|
||||
* the last promoted target instance from there onwards.
|
||||
*
|
||||
* See TargetController::startup() for more on this.
|
||||
*
|
||||
* @return
|
||||
@@ -220,9 +225,10 @@ namespace Bloom::Targets
|
||||
virtual void clearAllBreakpoints() = 0;
|
||||
|
||||
/**
|
||||
* Should read general purpose register values, for the given general prupose register ids.
|
||||
* Should read general purpose register values, for the given general purpose register ids.
|
||||
*
|
||||
* @param registerIds
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
virtual TargetRegisters readGeneralPurposeRegisters(std::set<std::size_t> registerIds) = 0;
|
||||
@@ -238,6 +244,7 @@ namespace Bloom::Targets
|
||||
* Should read register values of the registers described by the given descriptors.
|
||||
*
|
||||
* @param descriptors
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
virtual TargetRegisters readRegisters(const TargetRegisterDescriptors& descriptors) = 0;
|
||||
@@ -248,6 +255,7 @@ namespace Bloom::Targets
|
||||
* @param memoryType
|
||||
* @param startAddress
|
||||
* @param bytes
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
virtual TargetMemoryBuffer readMemory(TargetMemoryType memoryType, std::uint32_t startAddress, std::uint32_t bytes) = 0;
|
||||
@@ -282,6 +290,13 @@ namespace Bloom::Targets
|
||||
*/
|
||||
virtual TargetRegister getProgramCounterRegister() = 0;
|
||||
|
||||
/**
|
||||
* Should update the program counter on the target.
|
||||
*
|
||||
* @param programCounter
|
||||
*/
|
||||
virtual void setProgramCounter(std::uint32_t programCounter) = 0;
|
||||
|
||||
/**
|
||||
* Should fetch the status register value.
|
||||
*
|
||||
@@ -296,17 +311,11 @@ namespace Bloom::Targets
|
||||
*/
|
||||
virtual TargetRegister getStackPointerRegister() = 0;
|
||||
|
||||
/**
|
||||
* Should update the program counter on the target.
|
||||
*
|
||||
* @param programCounter
|
||||
*/
|
||||
virtual void setProgramCounter(std::uint32_t programCounter) = 0;
|
||||
|
||||
/**
|
||||
* Should get the current pin states for each pin on the target, mapped by pin number
|
||||
*
|
||||
* @param variantId
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
virtual std::map<int, TargetPinState> getPinStates(int variantId) = 0;
|
||||
|
||||
Reference in New Issue
Block a user