2006-03-22 11:06:45 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 by Linus Nielsen Feltzing
|
|
|
|
*
|
2008-06-28 18:10:04 +00:00
|
|
|
* 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.
|
2006-03-22 11:06:45 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
#include "config.h"
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "cpu.h"
|
|
|
|
#include "system.h"
|
2007-09-04 08:03:07 +00:00
|
|
|
#include "usb.h"
|
2010-08-01 11:10:39 +00:00
|
|
|
#include "usb-target.h"
|
2006-03-22 11:06:45 +00:00
|
|
|
|
|
|
|
void usb_init_device(void)
|
|
|
|
{
|
2010-03-19 23:39:00 +00:00
|
|
|
and_l(~0x00800000, &GPIO_OUT); /* RESET asserted */
|
|
|
|
or_l(0x00000010, &GPIO_OUT); /* bus powered */
|
2006-03-22 11:06:45 +00:00
|
|
|
or_l(0x00800010, &GPIO_ENABLE);
|
2006-10-18 20:56:29 +00:00
|
|
|
or_l(0x00800010, &GPIO_FUNCTION);
|
2010-03-19 23:39:00 +00:00
|
|
|
sleep(1);
|
|
|
|
or_l(0x00800000, &GPIO_OUT); /* RESET deasserted */
|
2006-03-22 11:06:45 +00:00
|
|
|
|
|
|
|
or_l(0x00800000, &GPIO1_FUNCTION); /* USB detect */
|
|
|
|
}
|
|
|
|
|
2007-09-04 08:03:07 +00:00
|
|
|
int usb_detect(void)
|
2006-03-22 11:06:45 +00:00
|
|
|
{
|
2007-09-04 08:03:07 +00:00
|
|
|
return (GPIO1_READ & 0x00800000) ? USB_INSERTED : USB_EXTRACTED;
|
2006-03-22 11:06:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void usb_enable(bool on)
|
|
|
|
{
|
|
|
|
if(on) {
|
|
|
|
or_l(0x00000008, &GPIO1_OUT);
|
|
|
|
} else {
|
|
|
|
and_l(~0x00000008, &GPIO1_OUT);
|
|
|
|
}
|
|
|
|
}
|