Adds flash cartridge support to Atari Lynx firmware

This commit is contained in:
Roger Braunstein 2024-07-13 15:48:09 -07:00
parent 68ae4b7111
commit ac44f5d90d
2 changed files with 295 additions and 48 deletions

View File

@ -55,7 +55,7 @@
// //
// * Blank pins have various uses depending on cartridge but are not necessary for dumping. // * Blank pins have various uses depending on cartridge but are not necessary for dumping.
// IMPORTANT: All data are stored as BIG-ENDIAN. Many ROM dumps online are little endian. // IMPORTANT: All data are stored as BIG-ENDIAN. Many ROM dumps online are little endian.
// See https://github.com/kasamikona/Loopy-Tools/blob/master/ROM%20Structure.md // See https://github.com/kasamikona/Loopy-Tools/blob/master/Documentation/ROM%20Structure.md
// //
// By @partlyhuman // By @partlyhuman
// Special thanks to @kasamikona // Special thanks to @kasamikona

View File

@ -40,6 +40,7 @@
// | 34 |- SWVCC // | 34 |- SWVCC
// +----+ // +----+
// //
// Version 1.1
// By @partlyhuman // By @partlyhuman
// This implementation would not be possible without the invaluable // This implementation would not be possible without the invaluable
// documentation on // documentation on
@ -50,11 +51,6 @@
// by Karri Kaksonen (whitelynx.fi) and Igor as well as countless contributions // by Karri Kaksonen (whitelynx.fi) and Igor as well as countless contributions
// by the Atari Lynx community // by the Atari Lynx community
// //
// Version 1.0
// Future enhancements
// 1. EEPROM read/write
// 2. Homebrew flash cart programming
//
#ifdef ENABLE_LYNX #ifdef ENABLE_LYNX
#pragma region DEFS #pragma region DEFS
@ -62,9 +58,9 @@
#define LYNX_HEADER_SIZE 64 #define LYNX_HEADER_SIZE 64
#define LYNX_WE 8 #define LYNX_WE 8
#define LYNX_OE 9 #define LYNX_OE 9
#define LYNX_AUDIN 46 #define LYNX_AUDIN_ON 0x80000
#define LYNX_BLOCKADDR 2048UL #define LYNX_BLOCKADDR 2048UL
#define LYNX_BLOCKCOUNT 256UL #define LYNX_BLOCKCOUNT 256
// Includes \0 // Includes \0
static const char LYNX[5] = "LYNX"; static const char LYNX[5] = "LYNX";
@ -90,10 +86,8 @@ void setup_LYNX() {
// CE is tied low, not accessible // CE is tied low, not accessible
pinMode(LYNX_WE, OUTPUT); pinMode(LYNX_WE, OUTPUT);
pinMode(LYNX_OE, OUTPUT); pinMode(LYNX_OE, OUTPUT);
pinMode(LYNX_AUDIN, OUTPUT);
digitalWrite(LYNX_WE, HIGH); digitalWrite(LYNX_WE, HIGH);
digitalWrite(LYNX_OE, HIGH); digitalWrite(LYNX_OE, HIGH);
digitalWrite(LYNX_AUDIN, HIGH);
strcpy(romName, LYNX); strcpy(romName, LYNX);
mode = CORE_LYNX; mode = CORE_LYNX;
@ -103,11 +97,16 @@ static void dataDir_LYNX(byte direction) {
DDRC = (direction == OUTPUT) ? 0xff : 0x00; DDRC = (direction == OUTPUT) ? 0xff : 0x00;
} }
static uint8_t readByte_LYNX(uint32_t addr, uint8_t audin = 0) { static void setAddr_LYNX(uint32_t addr) {
digitalWrite(LYNX_OE, HIGH);
PORTF = addr & 0xff; PORTF = addr & 0xff;
PORTK = (addr >> 8) & 0xff; PORTK = (addr >> 8) & 0xff;
PORTL = ((addr >> 16) & 0b111) | (audin << 3); // AUDIN connected to L3
PORTL = ((addr >> 16) & 0b1111);
}
static uint8_t readByte_LYNX(uint32_t addr) {
digitalWrite(LYNX_OE, HIGH);
setAddr_LYNX(addr);
digitalWrite(LYNX_OE, LOW); digitalWrite(LYNX_OE, LOW);
delayMicroseconds(20); delayMicroseconds(20);
uint8_t data = PINC; uint8_t data = PINC;
@ -115,8 +114,28 @@ static uint8_t readByte_LYNX(uint32_t addr, uint8_t audin = 0) {
return data; return data;
} }
static bool waitPressButton_LYNX(bool ret = false) {
print_STR(press_button_STR, true);
display_Update();
wait();
return ret;
}
#pragma region HIGHLEVEL #pragma region HIGHLEVEL
static void compareStride_LYNX(uint8_t b, int i, int stride) {
uint8_t other = readByte_LYNX(i + stride);
if (other == 0xff) {
// If this is a flash cart, these in-between spaces should be formatted to all 1's
// in which case, we DON'T report this as an unmirrored area
return;
}
if (b != other) {
// if these bytes differ, they're likely in the same block, which means the block size contains both addresses (next POT beyond the stride)
lynxBlockSize = max(lynxBlockSize, stride << 1);
}
}
static bool detectCart_LYNX() { static bool detectCart_LYNX() {
// Could omit logging to save a few bytes // Could omit logging to save a few bytes
display_Clear(); display_Clear();
@ -128,26 +147,21 @@ static bool detectCart_LYNX() {
// Somewhat arbitrary, however many bytes would be unlikely to be // Somewhat arbitrary, however many bytes would be unlikely to be
// coincidentally mirrored // coincidentally mirrored
const size_t DETECT_BYTES = 128; const size_t DETECT_BYTES = 128;
for (int i = 0; i < DETECT_BYTES && lynxBlockSize < LYNX_BLOCKADDR; i++) {
for (int i = 0; i < DETECT_BYTES; i++) {
uint8_t b = readByte_LYNX(i); uint8_t b = readByte_LYNX(i);
// If any differences are detected when AUDIN=1, AUDIN is used to bankswitch // If any differences are detected when AUDIN=1, AUDIN is used to bankswitch
// meaning we also use the maximum block size // meaning we also use the maximum block size
// (1024kb cart / 256 blocks = 4kb block bank switched between lower/upper 2kb blocks) // (1024kb cart / 256 blocks = 4kb block bank switched between lower/upper 2kb blocks)
if (b != readByte_LYNX(i, 1)) { if (b != readByte_LYNX(i + LYNX_AUDIN_ON)) {
lynxUseAudin = true; lynxUseAudin = true;
lynxBlockSize = 2048; lynxBlockSize = 2048;
break; break;
} }
// Identify mirroring of largest stride // Identify mirroring of largest stride
// Valid cart sizes of 128kb, 256kb, 512kb / 256 blocks = block sizes of 512b, 1024b, 2048b // Valid cart sizes of 128kb, 256kb, 512kb / 256 blocks = block sizes of 512b, 1024b, 2048b
if (b != readByte_LYNX(i + 1024)) { compareStride_LYNX(b, i, 256);
lynxBlockSize = max(lynxBlockSize, 2048); compareStride_LYNX(b, i, 512);
} else if (b != readByte_LYNX(i + 512)) { compareStride_LYNX(b, i, 1024);
lynxBlockSize = max(lynxBlockSize, 1024);
} else if (b != readByte_LYNX(i + 256)) {
lynxBlockSize = max(lynxBlockSize, 512);
}
} }
if (lynxBlockSize == 0) { if (lynxBlockSize == 0) {
@ -184,49 +198,269 @@ static void writeHeader_LYNX() {
myFile.write(header, LYNX_HEADER_SIZE); myFile.write(header, LYNX_HEADER_SIZE);
} }
// Saves memory by using existing sd buffer instead of a second block-sized buffer (which could be up to 2KB)
// Minimum block size is 512b, size of sdBuffer is 512b, all block sizes multiples of 512b,
// so we shouldn't need to check for leftovers...
static inline void ringBufferWrite_LYNX(uint32_t blocki, uint8_t byte) {
sdBuffer[blocki % 512] = byte;
if ((blocki + 1) % 512 == 0) {
myFile.write(sdBuffer, 512);
}
}
static void readROM_LYNX() { static void readROM_LYNX() {
dataDir_LYNX(INPUT); dataDir_LYNX(INPUT);
// The upper part of the address is used as a block address // The upper part of the address is used as a block address
// There are always 256 blocks, but the size of the block can vary // There are always 256 blocks, but the size of the block can vary
// So outer loop always steps through block addresses // So outer loop always steps through block addresses
uint32_t i;
const uint32_t upto = LYNX_BLOCKCOUNT * LYNX_BLOCKADDR; const uint32_t upto = LYNX_BLOCKCOUNT * LYNX_BLOCKADDR;
for (uint32_t blockAddr = 0; blockAddr < upto; blockAddr += LYNX_BLOCKADDR) { for (uint32_t blockAddr = 0; blockAddr < upto; blockAddr += LYNX_BLOCKADDR) {
draw_progressbar(blockAddr, upto); draw_progressbar(blockAddr, upto);
blinkLED(); blinkLED();
if (lynxUseAudin) { for (uint32_t i = 0; i < lynxBlockSize; i++) {
// AUDIN bank switching uses a 4kb block split to 2 banks uint32_t addr = blockAddr + i;
for (i = 0; i < lynxBlockSize / 2; i++) { if (lynxUseAudin && i >= lynxBlockSize / 2) {
ringBufferWrite_LYNX(i, readByte_LYNX(blockAddr + i, 0)); addr += LYNX_AUDIN_ON - lynxBlockSize / 2;
} }
for (; i < lynxBlockSize; i++) { uint8_t byte = readByte_LYNX(addr);
ringBufferWrite_LYNX(i, readByte_LYNX(blockAddr + i - (lynxBlockSize / 2), 1)); sdBuffer[i % 512] = byte;
} if ((i + 1) % 512 == 0) {
} else { myFile.write(sdBuffer, 512);
for (i = 0; i < lynxBlockSize; i++) {
ringBufferWrite_LYNX(i, readByte_LYNX(i + blockAddr));
} }
} }
} }
draw_progressbar(upto, upto); draw_progressbar(upto, upto);
} }
#pragma region FLASH
#ifdef ENABLE_FLASH
static void writeByte_LYNX(uint32_t addr, uint8_t data) {
digitalWrite(LYNX_OE, HIGH);
digitalWrite(LYNX_WE, HIGH);
setAddr_LYNX(addr);
PORTC = data;
digitalWrite(LYNX_WE, LOW);
delayMicroseconds(20);
digitalWrite(LYNX_WE, HIGH);
}
// Implements data complement status checking
// We only look at D7, or the highest bit of expected
void waitForDataComplement_LYNX(uint8_t expected) {
dataDir_LYNX(INPUT);
uint8_t status;
do {
digitalWrite(LYNX_OE, LOW);
// one nop = 62.5ns
// tOE = 30-50ns depending on flash
NOP;
status = PINC;
digitalWrite(LYNX_OE, HIGH);
// test highest bit
} while ((status ^ expected) >> 7);
dataDir_LYNX(OUTPUT);
}
static bool readHeader_LYNX() {
uint32_t romSize = fileSize;
print_Msg(F("Checking ROM..."));
display_Update();
char header[LYNX_HEADER_SIZE];
myFile.read(header, LYNX_HEADER_SIZE);
// Check for header to start with LYNX, assume valid .LNX header
if (strncmp(header, LYNX, 4) == 0) {
// Pull values from header
lynxBlockSize = (header[5] << 8) | header[4];
lynxUseAudin = header[59];
romSize = fileSize - LYNX_HEADER_SIZE;
println_Msg(FS(FSTRING_EMPTY));
} else {
// Header not valid, assume unheadered, rewind so we don't skip valid data
println_Msg(F("[NO HEADER]"));
myFile.seek(0);
// Get block size from file size
lynxBlockSize = fileSize / LYNX_BLOCKCOUNT;
lynxUseAudin = lynxBlockSize >= 2048;
romSize = fileSize;
}
print_Msg(F("AUDIN="));
print_Msg(lynxUseAudin);
print_Msg(F(" BLOCK="));
println_Msg(lynxBlockSize);
print_Msg(FS(FSTRING_ROM_SIZE));
print_Msg(romSize / 1024);
println_Msg(F("KB"));
// Ensure valid block size, file size, and file fits in flash
uint32_t expectedSize = (uint32_t)LYNX_BLOCKCOUNT * lynxBlockSize;
if (lynxBlockSize % 256 != 0 || lynxBlockSize > LYNX_BLOCKADDR || lynxBlockSize <= 0) {
println_Msg(FS(FSTRING_EMPTY));
print_STR(error_STR, false);
println_Msg(F("Invalid block size"));
return waitPressButton_LYNX();
}
if (romSize != expectedSize) {
println_Msg(FS(FSTRING_EMPTY));
print_STR(error_STR, false);
println_Msg(F("Invalid file size"));
return waitPressButton_LYNX();
}
if (expectedSize > flashSize) {
println_Msg(FS(FSTRING_EMPTY));
print_STR(error_STR, false);
print_STR(file_too_big_STR, true);
return waitPressButton_LYNX();
}
println_Msg(FS(FSTRING_OK));
display_Update();
return true;
}
static bool detectFlash_LYNX() {
print_Msg(F("Detecting flash..."));
// SOFTWARE ID PROGRAM
dataDir_LYNX(OUTPUT);
writeByte_LYNX(0x5555, 0xAA);
writeByte_LYNX(0x2AAA, 0x55);
writeByte_LYNX(0x5555, 0x90);
dataDir_LYNX(INPUT);
// tIDA = 150ns
NOP;
NOP;
NOP;
// MFG,DEVICE
uint16_t deviceId = (readByte_LYNX(0x0) << 8) | readByte_LYNX(0x1);
// EXIT SOFTWARE ID PROGRAM
dataDir_LYNX(OUTPUT);
writeByte_LYNX(0x5555, 0xAA);
writeByte_LYNX(0x2AAA, 0x55);
writeByte_LYNX(0x5555, 0xF0);
flashSize = 0;
switch (deviceId) {
case 0xBFB5:
// SST39SF010 = 1Mbit
flashSize = 131072UL;
break;
case 0xBFB6:
// SST39SF020 = 2Mbit
flashSize = 262144UL;
break;
case 0xBFB7:
// SST39SF040 = 4Mbit
flashSize = 524288UL;
break;
// case 0xC2A4:
// // MX29F040 = 4Mbit
// flashSize = 524288UL;
// break;
// case 0xC2D5:
// // MX29F080 = 8Mbit
// flashSize = 1048576UL;
// break;
}
if (flashSize <= 0) {
println_Msg(FS(FSTRING_EMPTY));
print_STR(error_STR, false);
println_Msg(F("Not recognized"));
return waitPressButton_LYNX();
}
print_Msg(flashSize / 1024);
println_Msg(F("KB"));
display_Update();
return true;
}
static void eraseFlash_LYNX() {
print_Msg(F("Erasing..."));
display_Update();
// CHIP ERASE PROGRAM
dataDir_LYNX(OUTPUT);
writeByte_LYNX(0x5555, 0xAA);
writeByte_LYNX(0x2AAA, 0x55);
writeByte_LYNX(0x5555, 0x80);
writeByte_LYNX(0x5555, 0xAA);
writeByte_LYNX(0x2AAA, 0x55);
writeByte_LYNX(0x5555, 0x10);
waitForDataComplement_LYNX(0xFF);
println_Msg(FS(FSTRING_OK));
display_Update();
}
static void writeROM_LYNX() {
filePath[0] = '\0';
sd.chdir("/");
fileBrowser(FS(FSTRING_SELECT_FILE));
display_Clear();
// HACK: openFlashFile() checks fileSize against flashSize for you, but this disregards header size:
// if size(rom) == size(flash) but size(rom + header) > size(flash) we'd get a false negative
// Pretend we have infinite flash size, allow openFlashFile() to pass this test, then do our own test in readHeader_LYNX()
flashSize = ULONG_MAX;
if (!openFlashFile()) return;
if (!detectFlash_LYNX()) return;
if (!readHeader_LYNX()) return;
// Pause to read debug info
// wait();
// or alternately auto-advance
delay(2000);
display_Clear();
eraseFlash_LYNX();
print_STR(flashing_file_STR, true);
display_Update();
dataDir_LYNX(OUTPUT);
uint8_t block[lynxBlockSize];
const uint32_t upto = LYNX_BLOCKCOUNT * LYNX_BLOCKADDR;
for (uint32_t blockAddr = 0; blockAddr < upto; blockAddr += LYNX_BLOCKADDR) {
draw_progressbar(blockAddr, upto);
blinkLED();
myFile.read(block, lynxBlockSize);
for (uint32_t i = 0; i < lynxBlockSize; i++) {
uint32_t addr = blockAddr + i;
if (lynxUseAudin && i >= lynxBlockSize / 2) {
addr += LYNX_AUDIN_ON - lynxBlockSize / 2;
}
// BYTE PROGRAM
uint8_t b = block[i];
writeByte_LYNX(0x5555, 0xAA);
writeByte_LYNX(0x2AAA, 0x55);
writeByte_LYNX(0x5555, 0xA0);
writeByte_LYNX(addr, b);
waitForDataComplement_LYNX(b);
}
}
draw_progressbar(upto, upto);
myFile.close();
dataDir_LYNX(INPUT);
print_STR(done_STR, true);
waitPressButton_LYNX();
}
#endif
#pragma region MENU #pragma region MENU
static const char* const menuOptionsLYNX[] PROGMEM = {FSTRING_READ_ROM, FSTRING_RESET}; static const char PROGMEM LYNX_MENU_FLASH[] = "Program Flashcart";
static const char* const menuOptionsLYNX[] PROGMEM = { FSTRING_READ_ROM, LYNX_MENU_FLASH, FSTRING_RESET };
void lynxMenu() { void lynxMenu() {
size_t menuCount = sizeof(menuOptionsLYNX) / sizeof(menuOptionsLYNX[0]); size_t menuCount = sizeof(menuOptionsLYNX) / sizeof(menuOptionsLYNX[0]);
@ -246,8 +480,21 @@ void lynxMenu() {
sd.chdir("/"); sd.chdir("/");
compareCRC("lynx.txt", 0, true, LYNX_HEADER_SIZE); compareCRC("lynx.txt", 0, true, LYNX_HEADER_SIZE);
print_STR(done_STR, true); print_STR(done_STR, true);
display_Update(); waitPressButton_LYNX();
wait(); break;
#ifdef ENABLE_FLASH
case 1:
writeROM_LYNX();
break;
#endif
case 2:
resetArduino();
break;
default:
print_MissingModule();
break; break;
} }
} }