AMS SoC's: Some register bit changes need interrupt protection: timer API and CGU_PERI.
[kugel-rb.git] / firmware / target / arm / as3525 / usb-as3525.c
blob524d8d2c7dc266d4ae4b116e02cc08379574b3bc
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright © 2008 Rafaël Carré
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
22 #include <stdbool.h>
23 #include "config.h"
24 #include "usb.h"
25 #ifdef HAVE_USBSTACK
26 #include "usb_core.h"
27 #endif
28 #include "usb-target.h"
29 #include "power.h"
30 #include "as3525.h"
32 static int usb_status = USB_EXTRACTED;
34 void usb_enable(bool on)
36 #if defined(HAVE_USBSTACK) && defined(USE_ROCKBOX_USB)
37 if (on)
38 usb_core_init();
39 else
40 usb_core_exit();
41 #else
42 (void)on;
43 #endif
46 void usb_insert_int(void)
48 usb_status = USB_INSERTED;
51 void usb_remove_int(void)
53 usb_status = USB_EXTRACTED;
56 int usb_detect(void)
58 return usb_status;