mirror of
https://github.com/d0k3/GodMode9.git
synced 2025-06-26 13:42:47 +00:00
- moved all SPI code to the ARM11 - reimplemented NVRAM reading for the new SPI interface
117 lines
2.3 KiB
C
117 lines
2.3 KiB
C
/*
|
|
Written by Wolfvak, specially sublicensed under the GPLv2
|
|
Read LICENSE for more details
|
|
*/
|
|
|
|
#pragma once
|
|
#include <types.h>
|
|
|
|
#ifdef ARM9
|
|
#define PXI_BASE (0x10008000)
|
|
#define PXI_RX_INTERRUPT (14)
|
|
#else
|
|
#define PXI_BASE (0x10163000)
|
|
#define PXI_RX_INTERRUPT (83)
|
|
#endif
|
|
|
|
enum {
|
|
PXI_LEGACY_MODE = 0,
|
|
PXI_GET_SHMEM,
|
|
|
|
PXI_I2C_READ,
|
|
PXI_I2C_WRITE,
|
|
|
|
PXI_NVRAM_READ,
|
|
};
|
|
|
|
/*
|
|
* These should be somewhat "unusual"
|
|
* IDs and shouldnt be similar to
|
|
* those used by any other software
|
|
*/
|
|
enum {
|
|
ARM11_READY_BARRIER = 19,
|
|
};
|
|
|
|
#define PXI_FIFO_LEN (16)
|
|
#define PXI_MAX_ARGS (64)
|
|
|
|
#define PXI_SYNC_RECV ((vu8*)(PXI_BASE + 0x00))
|
|
#define PXI_SYNC_SEND ((vu8*)(PXI_BASE + 0x01))
|
|
#define PXI_SYNC_IRQ ((vu8*)(PXI_BASE + 0x03))
|
|
#define PXI_CNT ((vu16*)(PXI_BASE + 0x04))
|
|
#define PXI_SEND ((vu32*)(PXI_BASE + 0x08))
|
|
#define PXI_RECV ((vu32*)(PXI_BASE + 0x0C))
|
|
|
|
#define PXI_CNT_SEND_FIFO_EMPTY (BIT(0))
|
|
#define PXI_CNT_SEND_FIFO_FULL (BIT(1))
|
|
#define PXI_CNT_SEND_FIFO_EMPTY_IRQ (BIT(2))
|
|
#define PXI_CNT_SEND_FIFO_FLUSH (BIT(3))
|
|
#define PXI_CNT_RECV_FIFO_EMPTY (BIT(8))
|
|
#define PXI_CNT_RECV_FIFO_FULL (BIT(9))
|
|
#define PXI_CNT_RECV_FIFO_AVAIL_IRQ (BIT(10))
|
|
#define PXI_CNT_ENABLE_FIFO (BIT(15))
|
|
|
|
static inline void PXI_SetRemote(u8 msg)
|
|
{
|
|
*PXI_SYNC_SEND = msg;
|
|
}
|
|
|
|
static inline u8 PXI_GetRemote(void)
|
|
{
|
|
return *PXI_SYNC_RECV;
|
|
}
|
|
|
|
static inline void PXI_WaitRemote(u8 msg)
|
|
{
|
|
while(PXI_GetRemote() != msg);
|
|
}
|
|
|
|
static inline void PXI_Reset(void)
|
|
{
|
|
*PXI_SYNC_IRQ = 0;
|
|
*PXI_CNT = PXI_CNT_SEND_FIFO_FLUSH | PXI_CNT_ENABLE_FIFO;
|
|
for (int i = 0; i < PXI_FIFO_LEN; i++)
|
|
*PXI_RECV;
|
|
|
|
*PXI_CNT = 0;
|
|
*PXI_CNT = PXI_CNT_RECV_FIFO_AVAIL_IRQ | PXI_CNT_ENABLE_FIFO;
|
|
|
|
PXI_SetRemote(0xFF);
|
|
}
|
|
|
|
static inline void PXI_Barrier(u8 barrier_id)
|
|
{
|
|
PXI_SetRemote(barrier_id);
|
|
PXI_WaitRemote(barrier_id);
|
|
}
|
|
|
|
static inline void PXI_Send(u32 w)
|
|
{
|
|
while(*PXI_CNT & PXI_CNT_SEND_FIFO_FULL);
|
|
*PXI_SEND = w;
|
|
}
|
|
|
|
static inline u32 PXI_Recv(void)
|
|
{
|
|
while(*PXI_CNT & PXI_CNT_RECV_FIFO_EMPTY);
|
|
return *PXI_RECV;
|
|
}
|
|
|
|
static inline void PXI_SendArray(const u32 *w, u32 c)
|
|
{
|
|
while(c--) PXI_Send(*(w++));
|
|
}
|
|
|
|
static inline void PXI_RecvArray(u32 *w, u32 c)
|
|
{
|
|
while(c--) *(w++) = PXI_Recv();
|
|
}
|
|
|
|
static inline u32 PXI_DoCMD(u32 cmd, const u32 *args, u32 argc)
|
|
{
|
|
PXI_Send((argc << 16) | cmd);
|
|
PXI_SendArray(args, argc);
|
|
return PXI_Recv();
|
|
}
|