1
0
Fork 0
forked from len0rd/rockbox

mrobe 100: (1) device reset in system_init is same as H10. (2) make power_off actually work.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16203 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Mark Arigo 2008-02-03 00:04:02 +00:00
parent 91a503b23e
commit 06daa03630
2 changed files with 11 additions and 6 deletions

View file

@ -55,8 +55,13 @@ bool ide_powered(void)
void power_off(void)
{
/* Give things a second to settle before cutting power */
sleep(HZ);
//GPIOF_OUTPUT_VAL &=~ 0x20;
/* Disable interrupts on this core */
set_interrupt_status(IRQ_FIQ_DISABLED, IRQ_FIQ_STATUS);
/* Mask them on both cores */
CPU_INT_CLR = -1;
COP_INT_CLR = -1;
while (1)
GPIOB_OUTPUT_VAL |= 0x80;
}

View file

@ -270,12 +270,12 @@ void system_init(void)
DEV_RS2 = -1;
DEV_RS = 0;
DEV_RS2 = 0;
#elif defined (IRIVER_H10)
#elif defined (IRIVER_H10) || defined(MROBE_100)
DEV_RS = 0x3ffffef8;
DEV_RS2 = -1;
outl(inl(0x70000024) | 0xc0, 0x70000024);
DEV_RS = 0;
DEV_RS2 = 0;
outl(inl(0x70000024) | 0xc0, 0x70000024);
#endif
#if !defined(SANSA_E200) && !defined(SANSA_C200)