Skip to content

Commit

Permalink
Added print-register function to ARMv7Processor
Browse files Browse the repository at this point in the history
  • Loading branch information
azonenberg committed Jul 17, 2018
1 parent 3ceae70 commit 9adc80e
Show file tree
Hide file tree
Showing 3 changed files with 94 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ARMCortexM4.cpp
Expand Up @@ -126,7 +126,7 @@ void ARMCortexM4::PrintInfo()
//LogVerbose("PC = %08x\n", pc);

//DEBUG
//EnterDebugState();
EnterDebugState();

/*
//uint32_t value = ReadMemory(0xE0000000);//m_ap->ReadWord(0x80000000); //ReadMemory(0xFC000000);
Expand Down
93 changes: 89 additions & 4 deletions ARMv7MProcessor.cpp
Expand Up @@ -151,10 +151,91 @@ bool ARMv7MProcessor::HaltedDueToUnrecoverableException()
return false;
}

const char* ARMv7MProcessor::GetRegisterName(ARM_V7M_CPU_REGISTERS reg)
{
switch(reg)
{
case R0:
return "R0";
case R1:
return "R1";
case R2:
return "R2";
case R3:
return "R3";
case R4:
return "R4";
case R5:
return "R5";
case R6:
return "R6";
case R7:
return "R7";
case R8:
return "R8";
case R9:
return "R9";
case R10:
return "R10";
case R11:
return "R11";
case R12:
return "R12";
case SP:
return "SP";
case LR:
return "LR";
case DBGRA:
return "DBGRA";
case XPSR:
return "xPSR";
case MSP:
return "MSP";
case PSP:
return "PSP";
case CTRL:
return "CTRL";
}
return "(invalid)";
}

uint32_t ARMv7MProcessor::ReadCPURegister(ARM_V7M_CPU_REGISTERS reg)
{
//TODO
return 0;
//Request the read
WriteRegisterByIndex(DCRSR, (0x0000 << 16) | reg); //0000 = read, 0001 = write

//Poll DHCSR.S_REGRDY until we're done
while(true)
{
uint32_t dhcsr = ReadRegisterByIndex(DHCSR);
if(dhcsr & 0x00010000)
break;
usleep(100);
}

//Read the actual data
return ReadRegisterByIndex(DCRDR);
}

void ARMv7MProcessor::DumpRegisters()
{
ARM_V7M_CPU_REGISTERS all_regs[] =
{
R0, R1, R2, R3, R4, R5, R6,
R7, R8, R9, R10, R11, R12,
SP,
LR,
DBGRA,
XPSR,
MSP,
PSP,
CTRL
};

LogNotice("Dumping registers...\n");
LogIndenter li;
for(auto reg : all_regs)
LogNotice("%8s: %08x\n", GetRegisterName(reg), ReadCPURegister(reg));
}

/**
Expand All @@ -176,13 +257,17 @@ void ARMv7MProcessor::EnterDebugState()
while(true)
{
uint32_t dhcsr = ReadRegisterByIndex(DHCSR);
if(dhcsr & 0x00010000)
if(dhcsr & 0x00020000)
break;
LogTrace("DHCSR = %08x\n", dhcsr);
//LogTrace("DHCSR = %08x\n", dhcsr);
usleep(1000);
}

//DEBUG
DumpRegisters();
}


void ARMv7MProcessor::ExitDebugState()
{
/*
Expand Down
4 changes: 4 additions & 0 deletions ARMv7MProcessor.h
Expand Up @@ -94,6 +94,7 @@ class ARMv7MProcessor : public DebuggableDevice
CPACR = 0x0362, //Coprocessor Access Control Register
DHCSR = 0x037c, //Debug Halting Control/Status Register
DCRSR = 0x037d, //Debug Core Register Selector
DCRDR = 0x037e, //Debug Core Register Data Register
DEMCR = 0x037f, //Debug Exception Monitor Control Register
STIR = 0x03c0 //Software Triggered Interrupt Register
};
Expand Down Expand Up @@ -140,6 +141,7 @@ class ARMv7MProcessor : public DebuggableDevice
// CPU register access

uint32_t ReadCPURegister(ARM_V7M_CPU_REGISTERS reg);
const char* GetRegisterName(ARM_V7M_CPU_REGISTERS reg);

protected:
//void PrintIDRegister(ARMv7MDebugIDRegister did);
Expand All @@ -150,6 +152,8 @@ class ARMv7MProcessor : public DebuggableDevice
void EnterDebugState();
void ExitDebugState();

void DumpRegisters();

/*
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// ID register state etc
Expand Down

0 comments on commit 9adc80e

Please sign in to comment.