Skip to content
Snippets Groups Projects
Commit 47f3ba4b authored by cnlohr's avatar cnlohr
Browse files

Leverage DelayUS more.

parent e5d3b630
No related branches found
No related tags found
No related merge requests found
...@@ -18,6 +18,11 @@ void Sleep(uint32_t dwMilliseconds); ...@@ -18,6 +18,11 @@ void Sleep(uint32_t dwMilliseconds);
#include <unistd.h> #include <unistd.h>
#endif #endif
#if defined(WINDOWS) || defined(WIN32) || defined(_WIN32)
#define usleep(x) Sleep((x)/1000);
#endif
static int64_t StringToMemoryAddress( const char * number ) __attribute__((used)); static int64_t StringToMemoryAddress( const char * number ) __attribute__((used));
static void StaticUpdatePROGBUFRegs( void * dev ) __attribute__((used)); static void StaticUpdatePROGBUFRegs( void * dev ) __attribute__((used));
int DefaultReadBinaryBlob( void * dev, uint32_t address_to_read_from, uint32_t read_size, uint8_t * blob ); int DefaultReadBinaryBlob( void * dev, uint32_t address_to_read_from, uint32_t read_size, uint8_t * blob );
...@@ -543,7 +548,7 @@ keep_going: ...@@ -543,7 +548,7 @@ keep_going:
fprintf( stderr, "Error: File I/O Fault.\n" ); fprintf( stderr, "Error: File I/O Fault.\n" );
exit( -10 ); exit( -10 );
} }
if( len > 16384 ) if( len > iss->flash_size )
{ {
fprintf( stderr, "Error: Image for CH32V003 too large (%d)\n", len ); fprintf( stderr, "Error: Image for CH32V003 too large (%d)\n", len );
exit( -9 ); exit( -9 );
...@@ -733,7 +738,7 @@ int DefaultSetupInterface( void * dev ) ...@@ -733,7 +738,7 @@ int DefaultSetupInterface( void * dev )
struct InternalState * iss = (struct InternalState*)(((struct ProgrammerStructBase*)dev)->internal); struct InternalState * iss = (struct InternalState*)(((struct ProgrammerStructBase*)dev)->internal);
if( MCF.Control3v3 ) MCF.Control3v3( dev, 1 ); if( MCF.Control3v3 ) MCF.Control3v3( dev, 1 );
if( MCF.DelayUS ) MCF.DelayUS( dev, 16000 ); MCF.DelayUS( dev, 16000 );
MCF.WriteReg32( dev, DMSHDWCFGR, 0x5aa50000 | (1<<10) ); // Shadow Config Reg MCF.WriteReg32( dev, DMSHDWCFGR, 0x5aa50000 | (1<<10) ); // Shadow Config Reg
MCF.WriteReg32( dev, DMCFGR, 0x5aa50000 | (1<<10) ); // CFGR (1<<10 == Allow output from slave) MCF.WriteReg32( dev, DMCFGR, 0x5aa50000 | (1<<10) ); // CFGR (1<<10 == Allow output from slave)
MCF.WriteReg32( dev, DMCFGR, 0x5aa50000 | (1<<10) ); // Bug in silicon? If coming out of cold boot, and we don't do our little "song and dance" this has to be called. MCF.WriteReg32( dev, DMCFGR, 0x5aa50000 | (1<<10) ); // Bug in silicon? If coming out of cold boot, and we don't do our little "song and dance" this has to be called.
...@@ -1230,7 +1235,7 @@ int DefaultWriteBinaryBlob( void * dev, uint32_t address_to_write, uint32_t blob ...@@ -1230,7 +1235,7 @@ int DefaultWriteBinaryBlob( void * dev, uint32_t address_to_write, uint32_t blob
} }
#endif #endif
if(MCF.DelayUS) MCF.DelayUS( dev, 100 ); // Why do we need this? (We seem to need this on the WCH programmers?) MCF.DelayUS( dev, 100 ); // Why do we need this? (We seem to need this on the WCH programmers?)
return 0; return 0;
timedout: timedout:
fprintf( stderr, "Timed out\n" ); fprintf( stderr, "Timed out\n" );
...@@ -1610,6 +1615,10 @@ static int DefaultHaltMode( void * dev, int mode ) ...@@ -1610,6 +1615,10 @@ static int DefaultHaltMode( void * dev, int mode )
iss->flash_unlocked = 0; iss->flash_unlocked = 0;
iss->processor_in_mode = mode; iss->processor_in_mode = mode;
// In case processor halt process needs to complete, i.e. if it was in the middle of a flash op.
MCF.DelayUS( dev, 3000 );
return 0; return 0;
} }
...@@ -1709,13 +1718,7 @@ int DefaultUnbrick( void * dev ) ...@@ -1709,13 +1718,7 @@ int DefaultUnbrick( void * dev )
if( MCF.DelayUS ) if( MCF.DelayUS )
MCF.DelayUS( dev, 20000 ); MCF.DelayUS( dev, 20000 );
else else
{
#if defined(WINDOWS) || defined(WIN32) || defined(_WIN32)
Sleep(20);
#else
usleep(20000); usleep(20000);
#endif
}
if( timeout == max_timeout ) if( timeout == max_timeout )
{ {
...@@ -1773,6 +1776,12 @@ int DefaultVoidHighLevelState( void * dev ) ...@@ -1773,6 +1776,12 @@ int DefaultVoidHighLevelState( void * dev )
return 0; return 0;
} }
int DefaultDelayUS( void * dev, int us )
{
usleep( us );
return 0;
}
int SetupAutomaticHighLevelFunctions( void * dev ) int SetupAutomaticHighLevelFunctions( void * dev )
{ {
// Will populate high-level functions from low-level functions. // Will populate high-level functions from low-level functions.
...@@ -1827,11 +1836,14 @@ int SetupAutomaticHighLevelFunctions( void * dev ) ...@@ -1827,11 +1836,14 @@ int SetupAutomaticHighLevelFunctions( void * dev )
MCF.ConfigureNRSTAsGPIO = DefaultConfigureNRSTAsGPIO; MCF.ConfigureNRSTAsGPIO = DefaultConfigureNRSTAsGPIO;
if( !MCF.VoidHighLevelState ) if( !MCF.VoidHighLevelState )
MCF.VoidHighLevelState = DefaultVoidHighLevelState; MCF.VoidHighLevelState = DefaultVoidHighLevelState;
if( !MCF.DelayUS )
MCF.DelayUS = DefaultDelayUS;
struct InternalState * iss = calloc( 1, sizeof( struct InternalState ) ); struct InternalState * iss = calloc( 1, sizeof( struct InternalState ) );
iss->ram_base = 0x20000000; iss->ram_base = 0x20000000;
iss->ram_size = 2048; iss->ram_size = 2048;
iss->sector_size = 64; iss->sector_size = 64;
iss->flash_size = 16384;
((struct ProgrammerStructBase*)dev)->internal = iss; ((struct ProgrammerStructBase*)dev)->internal = iss;
return 0; return 0;
......
...@@ -115,6 +115,7 @@ struct InternalState ...@@ -115,6 +115,7 @@ struct InternalState
uint32_t ram_base; uint32_t ram_base;
uint32_t ram_size; uint32_t ram_size;
int sector_size; int sector_size;
int flash_size;
uint8_t flash_sector_status[MAX_FLASH_SECTORS]; // 0 means unerased/unknown. 1 means erased. uint8_t flash_sector_status[MAX_FLASH_SECTORS]; // 0 means unerased/unknown. 1 means erased.
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment