/* main.arm9.c By Michael Chisholm (Chishm) All resetMemory and startBinary functions are based on the MultiNDS loader by Darkain. Original source available at: http://cvs.sourceforge.net/viewcvs.py/ndslib/ndslib/examples/loader/boot/main.cpp License: NitroHax -- Cheat tool for the Nintendo DS Copyright (C) 2008 Michael "Chishm" Chisholm This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ #define ARM9 #undef ARM7 #include #include #include #include #include #include #include #include #include #include // NULL #include #include "common.h" tNDSHeader* ndsHeader = NULL; // bool dsiModeConfirmed = false; bool arm9_dsiModeConfirmed = false; bool arm9_boostVram = false; bool arm9_scfgUnlock = false; bool arm9_TWLClockSpeeds = false; bool arm9_ExtendRam = false; bool arm9_DebugMode = false; volatile int arm9_stateFlag = ARM9_BOOT; volatile u32 arm9_errorCode = 0xFFFFFFFF; volatile bool arm9_errorClearBG = false; volatile u32 arm9_BLANK_RAM = 0; /*------------------------------------------------------------------------- External functions --------------------------------------------------------------------------*/ extern void arm9_clearCache (void); void initMBKARM9() { if (arm9_dsiModeConfirmed) { // default dsiware settings // WRAM-B fully mapped to arm7 // inverted order // *((vu32*)REG_MBK2)=0x9195999D; // *((vu32*)REG_MBK3)=0x8185898D; // WRAM-C fully mapped to arm7 // inverted order // *((vu32*)REG_MBK4)=0x9195999D; // *((vu32*)REG_MBK5)=0x8185898D; // WRAM-A not mapped (reserved to arm7) // REG_MBK6=0x00000000; // WRAM-B mapped to the 0x3740000 - 0x37BFFFF area : 512k // why? only 256k real memory is there // REG_MBK7=0x07C03740; // same as dsiware // WRAM-C mapped to the 0x3700000 - 0x373FFFF area : 256k // REG_MBK8=0x07403700; // same as dsiware // This gets set on arm7 // *((vu32*)REG_MBK1)=0x8D898581; // *((vu32*)REG_MBK2)=0x8C888480; // *((vu32*)REG_MBK3)=0x9C989490; // *((vu32*)REG_MBK4)=0x8C888480; // *((vu32*)REG_MBK5)=0x9C989490; REG_MBK6=0x00000000; REG_MBK7=0x07C03740; REG_MBK8=0x07403700; REG_MBK9=0x0300000F; } else { // MBK settings for NTR mode games // *((vu32*)REG_MBK1)=0x8D898581; // *((vu32*)REG_MBK2)=0x91898581; // *((vu32*)REG_MBK3)=0x91999591; // *((vu32*)REG_MBK4)=0x91898581; // *((vu32*)REG_MBK5)=0x91999591; REG_MBK6=0x00003000; REG_MBK7=0x00003000; REG_MBK8=0x00003000; REG_MBK9=0xFCFFFF0F; } } void SetBrightness(u8 screen, s8 bright) { u16 mode = 1 << 14; if (bright < 0) { mode = 2 << 14; bright = -bright; } if (bright > 31) { bright = 31; } *(u16*)(0x0400006C + (0x1000 * screen)) = bright + mode; } /*------------------------------------------------------------------------- arm9_errorOutput Displays an error code on screen. Written by Chishm --------------------------------------------------------------------------*/ static void arm9_errorOutput (u32 code, bool clearBG) { int i, j, k; u16 colour; REG_POWERCNT = POWER_LCD | POWER_2D_A; REG_DISPCNT = MODE_FB0; VRAM_A_CR = VRAM_ENABLE; if (clearBG) { // Clear display // for (i = 0; i < 256*192; i++) { VRAM_A[i] = 0x0000; } for (i = 0; i < 256*192; i++) { VRAM_A[i] = 0xFFFF; } } // Draw boxes of colour, signifying error codes if ((code >> 16) != 0) { // high 16 bits for (i = 0; i < 8; i++) { // Pair of bits to use if (((code>>(30-2*i))&3) == 0) { colour = 0x001F; // Red } else if (((code>>(30-2*i))&3) == 1) { colour = 0x03FF; // Yellow } else if (((code>>(30-2*i))&3) == 2) { colour = 0x03E0; // Green } else { colour = 0x7C00; // Blue } for (j = 71; j < 87; j++) { // Row for (k = 32*i+8; k < 32*i+24; k++) { // Column VRAM_A[j*256+k] = colour; } } } } if ((code >> 8) != 0) { // Low 16 bits for (i = 0; i < 8; i++) { // Pair of bits to use if (((code>>(14-2*i))&3) == 0) { colour = 0x001F; // Red } else if (((code>>(14-2*i))&3) == 1) { colour = 0x03FF; // Yellow } else if (((code>>(14-2*i))&3) == 2) { colour = 0x03E0; // Green } else { colour = 0x7C00; // Blue } for (j = 103; j < 119; j++) { // Row for (k = 32*i+8; k < 32*i+24; k++) { // Column VRAM_A[j*256+k] = colour; } } } } else { // Low 8 bits for (i = 0; i < 4; i++) { // Pair of bits to use if (((code>>(6-2*i))&3) == 0) { colour = 0x001F; // Red } else if (((code>>(6-2*i))&3) == 1) { colour = 0x03FF; // Yellow } else if (((code>>(6-2*i))&3) == 2) { colour = 0x03E0; // Green } else { colour = 0x7C00; // Blue } for (j = 87; j < 103; j++) { // Row for (k = 32*i+72; k < 32*i+88; k++) { // Column VRAM_A[j*256+k] = colour; } } } } } /*------------------------------------------------------------------------- arm9_main Clears the ARM9's icahce and dcache Clears the ARM9's DMA channels and resets video memory Jumps to the ARM9 NDS binary in sync with the display and ARM7 Written by Darkain, modified by Chishm --------------------------------------------------------------------------*/ void __attribute__((target("arm"))) arm9_main (void) { initMBKARM9(); register int i; //set shared ram to ARM7 WRAM_CR = 0x03; REG_EXMEMCNT = 0xE880; arm9_stateFlag = ARM9_START; REG_IME = 0; REG_IE = 0; REG_IF = ~0; arm9_clearCache(); for (i=0; i<16*1024; i+=4) { //first 16KB (*(vu32*)(i+0x00000000)) = 0x00000000; //clear ITCM (*(vu32*)(i+0x00800000)) = 0x00000000; //clear DTCM } for (i=16*1024; i<32*1024; i+=4) { //second 16KB (*(vu32*)(i+0x00000000)) = 0x00000000; //clear ITCM } arm9_stateFlag = ARM9_MEMCLR; (*(vu32*)0x00803FFC) = 0; //IRQ_HANDLER ARM9 version (*(vu32*)0x00803FF8) = ~0; //VBLANK_INTR_WAIT_FLAGS ARM9 version //clear out ARM9 DMA channels for (i=0; i<4; i++) { DMA_CR(i) = 0; DMA_SRC(i) = 0; DMA_DEST(i) = 0; TIMER_CR(i) = 0; TIMER_DATA(i) = 0; } // Clear out FIFO REG_IPC_SYNC = 0; REG_IPC_FIFO_CR = IPC_FIFO_ENABLE | IPC_FIFO_SEND_CLEAR; REG_IPC_FIFO_CR = 0; VRAM_A_CR = 0x80; VRAM_B_CR = 0x80; VRAM_C_CR = 0x80; // Don't mess with the VRAM used for execution // VRAM_D_CR = 0x80; VRAM_E_CR = 0x80; VRAM_F_CR = 0x80; VRAM_G_CR = 0x80; VRAM_H_CR = 0x80; VRAM_I_CR = 0x80; BG_PALETTE[0] = 0xFFFF; dmaFill((u16*)&arm9_BLANK_RAM, BG_PALETTE+1, (2*1024)-2); dmaFill((u16*)&arm9_BLANK_RAM, OAM, 2*1024); dmaFill((u16*)&arm9_BLANK_RAM, (u16*)0x04000000, 0x56); // Clear main display registers dmaFill((u16*)&arm9_BLANK_RAM, (u16*)0x04001000, 0x56); // Clear sub display registers dmaFill((u16*)&arm9_BLANK_RAM, VRAM_A, 0x20000*3); // Banks A, B, C dmaFill((u16*)&arm9_BLANK_RAM, VRAM_D, 272*1024); // Banks D (excluded), E, F, G, H, I REG_DISPSTAT = 0; //videoSetMode(0); //videoSetModeSub(0); VRAM_A_CR = 0; VRAM_B_CR = 0; VRAM_C_CR = 0; // Don't mess with the ARM7's VRAM //VRAM_D_CR = 0; VRAM_E_CR = 0; VRAM_F_CR = 0; VRAM_G_CR = 0; VRAM_H_CR = 0; VRAM_I_CR = 0; REG_POWERCNT = 0x820F; *(u16*)0x0400006C |= BIT(14); *(u16*)0x0400006C &= BIT(15); SetBrightness(0, 0); SetBrightness(1, 0); // set ARM9 state to ready and wait for it to change again arm9_stateFlag = ARM9_READY; while (arm9_stateFlag != ARM9_BOOTBIN) { if (arm9_stateFlag == ARM9_DISPERR) { // Re-enable for debugging if (arm9_DebugMode) { arm9_errorOutput(arm9_errorCode, arm9_errorClearBG); } if (arm9_stateFlag == ARM9_DISPERR) { arm9_stateFlag = ARM9_READY; } } if (arm9_stateFlag == ARM9_SETSCFG) { arm9_stateFlag = ARM9_READY; } } VoidFn arm9code = (VoidFn)ndsHeader->arm9executeAddress; while(REG_VCOUNT!=191); while(REG_VCOUNT==191); if (arm9_dsiModeConfirmed) { REG_SCFG_EXT = 0x8207F100; REG_SCFG_CLK = 0x0084; if (arm9_TWLClockSpeeds) { REG_SCFG_CLK |= BIT(0); } REG_SCFG_RST = 1; } else { // REG_SCFG_EXT = 0x8200C000; REG_SCFG_EXT=0x82000000; REG_SCFG_CLK = 0x80; if (arm9_TWLClockSpeeds) { REG_SCFG_CLK |= BIT(0); } if (arm9_ExtendRam) { REG_SCFG_EXT |= BIT(14); REG_SCFG_EXT |= BIT(15); } // Extended VRAM Access if (arm9_boostVram) { REG_SCFG_EXT |= BIT(13); } // lock SCFG if (!arm9_scfgUnlock) { REG_SCFG_EXT &= ~(1UL << 31); } } // wait for vblank then boot while(REG_VCOUNT!=191); while(REG_VCOUNT==191); arm9code(); }