2007-09-20 04:46:41 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
2007-09-22 15:43:38 +00:00
|
|
|
* $Id$
|
2007-09-20 04:46:41 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 2007 by Karl Kurbjun
|
|
|
|
*
|
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.
|
2007-09-20 04:46:41 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "cpu.h"
|
|
|
|
#include "system.h"
|
|
|
|
#include "kernel.h"
|
|
|
|
#include "ata.h"
|
2008-05-18 14:01:36 +00:00
|
|
|
#include "usb.h"
|
2008-09-10 20:14:22 +00:00
|
|
|
#include "usb-target.h"
|
2007-09-20 04:46:41 +00:00
|
|
|
|
|
|
|
#define USB_RST_ASSERT
|
|
|
|
#define USB_RST_DEASSERT
|
|
|
|
|
|
|
|
#define USB_VPLUS_PWR_ASSERT
|
|
|
|
#define USB_VPLUS_PWR_DEASSERT
|
|
|
|
|
2008-05-18 14:01:36 +00:00
|
|
|
#define USB_UNIT_IS_PRESENT USB_EXTRACTED
|
2007-09-20 04:46:41 +00:00
|
|
|
|
|
|
|
/* The usb detect is one pin to the cpu active low */
|
2008-05-18 14:01:36 +00:00
|
|
|
inline int usb_detect(void)
|
2007-09-20 04:46:41 +00:00
|
|
|
{
|
|
|
|
return USB_UNIT_IS_PRESENT;
|
|
|
|
}
|
|
|
|
|
|
|
|
void usb_init_device(void)
|
|
|
|
{
|
|
|
|
// ata_enable(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void usb_enable(bool on)
|
|
|
|
{
|
|
|
|
if (on)
|
|
|
|
{
|
|
|
|
USB_VPLUS_PWR_ASSERT;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
USB_VPLUS_PWR_DEASSERT;
|
|
|
|
}
|
|
|
|
}
|