2015-08-05 11:54:00 +02:00
|
|
|
/*
|
|
|
|
* draw.c
|
|
|
|
* by Reisyukaku
|
2015-08-15 04:28:26 +02:00
|
|
|
* Copyright (c) 2015 All Rights Reserved
|
2015-08-05 11:54:00 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "draw.h"
|
|
|
|
#include "fs.h"
|
2015-08-21 20:11:23 +02:00
|
|
|
#include "memory.h"
|
2015-08-05 11:54:00 +02:00
|
|
|
|
2016-03-10 14:58:11 +01:00
|
|
|
static const struct fb {
|
|
|
|
u8 *top_left;
|
|
|
|
u8 *top_right;
|
|
|
|
u8 *bottom;
|
|
|
|
} *const fb = (struct fb *)0x23FFFE00;
|
2016-02-08 03:37:03 +01:00
|
|
|
|
2016-03-10 14:58:11 +01:00
|
|
|
void __attribute__((naked)) shutdownLCD(void){
|
2016-03-21 04:58:20 +01:00
|
|
|
//Disable interrupts
|
|
|
|
__asm(".word 0xF10C01C0");
|
2016-03-10 14:58:11 +01:00
|
|
|
vu32 *const arm11 = (u32 *)0x1FFFFFF8;
|
2016-02-29 16:28:43 +01:00
|
|
|
|
|
|
|
//Clear ARM11 entry offset
|
|
|
|
*arm11 = 0;
|
|
|
|
|
|
|
|
//Shutdown LCDs
|
2016-03-10 03:06:18 +01:00
|
|
|
*(vu32 *)0x10202A44 = 0;
|
|
|
|
*(vu32 *)0x10202244 = 0;
|
|
|
|
*(vu32 *)0x10202014 = 0;
|
2016-02-29 16:28:43 +01:00
|
|
|
|
2016-03-17 00:08:13 +01:00
|
|
|
//Wait for the entry to be set
|
2016-03-06 16:24:42 +01:00
|
|
|
while(!*arm11);
|
2016-02-29 16:28:43 +01:00
|
|
|
//Jump to it
|
|
|
|
((void (*)())*arm11)();
|
|
|
|
}
|
|
|
|
|
2016-03-20 01:00:45 +01:00
|
|
|
static void clearScreens(void){
|
|
|
|
memset32(fb->top_left, 0, 0x46500);
|
|
|
|
memset32(fb->top_right, 0, 0x46500);
|
|
|
|
memset32(fb->bottom, 0, 0x38400);
|
2015-08-06 07:17:10 +02:00
|
|
|
}
|
|
|
|
|
2015-08-05 11:54:00 +02:00
|
|
|
void loadSplash(void){
|
2016-03-20 01:00:45 +01:00
|
|
|
clearScreens();
|
2016-03-10 03:06:18 +01:00
|
|
|
//Don't delay boot if no splash image is on the SD
|
2016-03-20 01:00:45 +01:00
|
|
|
if(fileRead(fb->top_left, "/aurei/splash.bin", 0x46500) +
|
|
|
|
fileRead(fb->bottom, "/aurei/splashbottom.bin", 0x38400)){
|
|
|
|
u64 i = 0x1300000; while(--i) __asm("mov r0, r0"); //Less Ghetto sleep func
|
2016-03-10 04:25:38 +01:00
|
|
|
}
|
2015-08-05 11:54:00 +02:00
|
|
|
}
|