GBA-Exploader/libraries/libnds32/include/nds/arm7/serial.h
ApacheThunder 540515c7fc Add game specific gbaframe support ...
* Can now use gbaframes specific to a gba rom being loaded to ram/flash.
Have a bmp file with filename matching the game rom being flashed in
GBA_SIGN path. If it finds a matching BMP it will use that before
falling back to the default gbaframe.bmp paths.
* nds-bootstrap now used for booting retail NDS roms from file browser.
Note that currently GBA-Exploader does not create new save files so only
games with existing save files (currently hardcoded to GBA_SAV path like
with GBA games) can be booted with this.
2024-11-17 15:44:06 -06:00

121 lines
3.2 KiB
C

/*---------------------------------------------------------------------------------
SPI control for the ARM7
Copyright (C) 2005 - 2011
Michael Noland (joat)
Jason Rogers (dovoto)
Dave Murphy (WinterMute)
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any
damages arising from the use of this software.
Permission is granted to anyone to use this software for any
purpose, including commercial applications, and to alter it and
redistribute it freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you
must not claim that you wrote the original software. If you use
this software in a product, an acknowledgment in the product
documentation would be appreciated but is not required.
2. Altered source versions must be plainly marked as such, and
must not be misrepresented as being the original software.
3. This notice may not be removed or altered from any source
distribution.
---------------------------------------------------------------------------------*/
#ifndef SERIAL_ARM7_INCLUDE
#define SERIAL_ARM7_INCLUDE
#ifndef ARM7
#error Serial header is for ARM7 only
#endif
#include <nds/bios.h>
// 'Networking'
#define REG_RCNT (*(vu16*)0x04000134)
#define REG_KEYXY (*(vu16*)0x04000136)
#define RTC_CR (*(vu16*)0x04000138)
#define RTC_CR8 (*( vu8*)0x04000138)
#define REG_SIOCNT (*(vu16*)0x04000128)
#define SIO_DATA8 (*(vu8*)0x0400012A)
#define SIO_DATA32 (*(vu32*)0x04000120)
// Fixme: Does the hardware still support 16 bit comms mode?
// BIOS makes use of 32 bit mode, so some regs still exist
#define SIO_MULTI_0 (*(vu16*)0x04000120)
#define SIO_MULTI_1 (*(vu16*)0x04000122)
#define SIO_MULTI_2 (*(vu16*)0x04000124)
#define SIO_MULTI_3 (*(vu16*)0x04000126)
#define SIO_MULTI_SEND (*(vu16*)0x0400012A)
// SPI chain registers
#define REG_SPICNT (*(vu16*)0x040001C0)
#define REG_SPIDATA (*(vu16*)0x040001C2)
#define SPI_ENABLE BIT(15)
#define SPI_IRQ BIT(14)
#define SPI_BUSY BIT(7)
// meh
#define SPI_BAUD_4MHz 0
#define SPI_BAUD_2MHz 1
#define SPI_BAUD_1MHz 2
#define SPI_BAUD_512KHz 3
// Pick the SPI transfer length
#define SPI_BYTE_MODE (0<<10)
#define SPI_HWORD_MODE (1<<10)
// Pick the SPI device
#define SPI_DEVICE_POWER (0 << 8)
#define SPI_DEVICE_FIRMWARE (1 << 8)
#define SPI_DEVICE_NVRAM (1 << 8)
#define SPI_DEVICE_TOUCH (2 << 8)
#define SPI_DEVICE_MICROPHONE (2 << 8)
// When used, the /CS line will stay low after the transfer ends
// i.e. when we're part of a continuous transfer
#define SPI_CONTINUOUS BIT(11)
// Fixme: does this stuff really belong in serial.h?
// Fixme: does this stuff really belong in serial.h?
// Firmware commands
#define FIRMWARE_WREN 0x06
#define FIRMWARE_WRDI 0x04
#define FIRMWARE_RDID 0x9F
#define FIRMWARE_RDSR 0x05
#define FIRMWARE_READ 0x03
#define FIRMWARE_PW 0x0A
#define FIRMWARE_PP 0x02
#define FIRMWARE_FAST 0x0B
#define FIRMWARE_PE 0xDB
#define FIRMWARE_SE 0xD8
#define FIRMWARE_DP 0xB9
#define FIRMWARE_RDP 0xAB
static inline
void SerialWaitBusy() {
while (REG_SPICNT & SPI_BUSY);
}
// Read the firmware
void readFirmware(u32 address, void * destination, u32 size);
#endif