/*--------------------------------------------------------------------------------- $Id: serial.h,v 1.18 2008-11-19 18:44:50 dovoto Exp $ ARM7 serial control Copyright (C) 2005 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 // 'Networking' #define REG_RCNT (*(vu16*)0x04000134) #define REG_KEYXY (*(vu16*)0x04000136) #define RTC_CR (*(vu16*)0x04000138) #define RTC_CR8 (*( vu8*)0x04000138) #define REG_SIOCNT (*(vuint16*)0x04000128) #define SIO_DATA8 (*(vuint8*)0x0400012A) #define SIO_DATA32 (*(vuint32*)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 (*(vuint16*)0x04000120) #define SIO_MULTI_1 (*(vuint16*)0x04000122) #define SIO_MULTI_2 (*(vuint16*)0x04000124) #define SIO_MULTI_3 (*(vuint16*)0x04000126) #define SIO_MULTI_SEND (*(vuint16*)0x0400012A) // SPI chain registers #define REG_SPICNT (*(vuint16*)0x040001C0) #define REG_SPIDATA (*(vuint16*)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) swiDelay(1); } // Read the firmware void readFirmware(u32 address, void * destination, u32 size); #endif