/* BootMii - a Free Software replacement for the Nintendo/BroadOn bootloader. Requires mini. Copyright (C) 2008, 2009 Haxx Enterprises Copyright (C) 2009 Andre Heider "dhewg" Copyright (C) 2008, 2009 Hector Martin "marcan" Copyright (C) 2008, 2009 Sven Peter Copyright (C) 2009 John Kelley # This code is licensed to you under the terms of the GNU GPL, version 2; # see file COPYING or http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt */ #include "bootmii_ppc.h" #include "string.h" #include "ipc.h" #include "mini_ipc.h" #include "nandfs.h" #include "fat.h" #include "malloc.h" #include "diskio.h" #include "printf.h" #include "video_low.h" #include "input.h" #include "console.h" #include "ohci.h" #include "irq.h" #define MINIMUM_MINI_VERSION 0x00010001 otp_t otp; seeprom_t seeprom; static void dsp_reset(void) { write16(0x0c00500a, read16(0x0c00500a) & ~0x01f8); write16(0x0c00500a, read16(0x0c00500a) | 0x0010); write16(0x0c005036, 0); } static char ascii(char s) { if(s < 0x20) return '.'; if(s > 0x7E) return '.'; return s; } void hexdump(void *d, int len) { u8 *data; int i, off; data = (u8*)d; for (off=0; off=len) printf(" "); else printf("%02x ",data[off+i]); printf(" "); for(i=0; i<16; i++) if((i+off)>=len) printf(" "); else printf("%c",ascii(data[off+i])); printf("\n"); } } void testOTP(void) { printf("reading OTP...\n"); getotp(&otp); printf("read OTP!\n"); printf("OTP:\n"); hexdump(&otp, sizeof(otp)); printf("reading SEEPROM...\n"); getseeprom(&seeprom); printf("read SEEPROM!\n"); printf("SEEPROM:\n"); hexdump(&seeprom, sizeof(seeprom)); } int main(void) { int vmode = -1; exception_init(); dsp_reset(); irq_initialize(); irq_enable(IRQ_OHCI0); ipc_initialize(); ipc_slowping(); gecko_init(); input_init(); init_fb(vmode); ohci_init(); VIDEO_Init(vmode); VIDEO_SetFrameBuffer(get_xfb()); VISetupEncoder(); u32 version = ipc_getvers(); u16 mini_version_major = version >> 16 & 0xFFFF; u16 mini_version_minor = version & 0xFFFF; printf("Mini version: %d.%0d\n", mini_version_major, mini_version_minor); if (version < MINIMUM_MINI_VERSION) { printf("Sorry, this version of MINI (armboot.bin)\n" "is too old, please update to at least %d.%0d.\n", (MINIMUM_MINI_VERSION >> 16), (MINIMUM_MINI_VERSION & 0xFFFF)); for (;;) ; // better ideas welcome! } print_str_noscroll(112, 112, "ohai, world!\n"); testOTP(); printf("bye, world!\n"); while(1) { // just to get sure we are still in this loop //wtf? _CPU_ISR_Enable() // don't know why this is needed... udelay(100000); printf("x"); } return 0; }