2009-04-10 18:15:10 +02:00
|
|
|
/*
|
|
|
|
mini - a Free Software replacement for the Nintendo/BroadOn IOS.
|
|
|
|
panic flash codes
|
|
|
|
|
|
|
|
Copyright (C) 2008, 2009 Hector Martin "marcan" <marcan@marcansoft.com>
|
|
|
|
|
2009-05-11 07:53:16 +02:00
|
|
|
# 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
|
2009-04-10 18:15:10 +02:00
|
|
|
*/
|
2009-05-11 07:53:16 +02:00
|
|
|
|
2008-12-28 14:35:37 +01:00
|
|
|
#include "types.h"
|
|
|
|
#include "utils.h"
|
|
|
|
#include "start.h"
|
|
|
|
#include "hollywood.h"
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
#define PANIC_ON 200000
|
|
|
|
#define PANIC_OFF 300000
|
|
|
|
#define PANIC_INTER 1000000
|
|
|
|
|
|
|
|
// figure out a use for mode...
|
|
|
|
|
|
|
|
void panic2(int mode, ...)
|
|
|
|
{
|
|
|
|
int arg;
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
clear32(HW_GPIO1OUT, HW_GPIO1_SLOT);
|
|
|
|
clear32(HW_GPIO1DIR, HW_GPIO1_SLOT);
|
|
|
|
clear32(HW_GPIO1OWNER, HW_GPIO1_SLOT);
|
|
|
|
|
|
|
|
while(1) {
|
|
|
|
va_start(ap, mode);
|
|
|
|
|
|
|
|
while(1) {
|
|
|
|
arg = va_arg(ap, int);
|
|
|
|
if(arg < 0)
|
|
|
|
break;
|
|
|
|
set32(HW_GPIO1OUT, HW_GPIO1_SLOT);
|
|
|
|
udelay(arg * PANIC_ON);
|
|
|
|
clear32(HW_GPIO1OUT, HW_GPIO1_SLOT);
|
|
|
|
udelay(PANIC_OFF);
|
|
|
|
}
|
|
|
|
|
|
|
|
va_end(ap);
|
|
|
|
|
|
|
|
udelay(PANIC_INTER);
|
|
|
|
}
|
|
|
|
}
|
2009-04-13 22:13:45 +02:00
|
|
|
|