acffca89a9
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29233 a1c6a512-1295-4272-9138-f99709370657
64 lines
1.9 KiB
C
64 lines
1.9 KiB
C
/***************************************************************************
|
|
* __________ __ ___.
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
* \/ \/ \/ \/ \/
|
|
* $Id$
|
|
*
|
|
* Copyright (C) 2007, 2009 by Karl Kurbjun
|
|
*
|
|
* 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 2
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
* KIND, either express or implied.
|
|
*
|
|
****************************************************************************/
|
|
/*#define LOGF_ENABLE*/
|
|
|
|
#include "config.h"
|
|
#include "logf.h"
|
|
#include "cpu.h"
|
|
#include "system.h"
|
|
|
|
#include "m66591.h"
|
|
|
|
void usb_init_device(void) {
|
|
logf("mxx: SOC Init");
|
|
|
|
udelay(100);
|
|
|
|
/* Drive the reset pin low */
|
|
IO_GIO_BITCLR0 = 1<<2;
|
|
|
|
/* Wait a bit */
|
|
udelay(100);
|
|
|
|
/* Release the reset (drive it high) */
|
|
IO_GIO_BITSET0 = 1<<2;
|
|
|
|
udelay(500);
|
|
|
|
/* Enable the MXX interrupt */
|
|
IO_INTC_EINT1 |= (1<<8); /* IRQ_GIO3 */
|
|
}
|
|
|
|
/* This is the initial interupt handler routine for the USB controller */
|
|
void GIO3 (void) __attribute__ ((section(".icode")));
|
|
void GIO3 (void) {
|
|
/* Clear the interrupt, this is critical to do before running the full
|
|
* handler otherwise you might miss an interrupt and everything will stop
|
|
* working.
|
|
*
|
|
* The M66591 interrupt line is attached to GPIO3.
|
|
*/
|
|
IO_INTC_IRQ1 = (1<<8);
|
|
|
|
/* Start the full handler which is located in the driver */
|
|
USB_DEVICE();
|
|
}
|
|
|