No intentional warnings.
[kugel-rb.git] / firmware / target / arm / as3525 / usb-as3525.c
blob92257f6a21f3b8f76ac475b053c7192d52f1fa76
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 #if CONFIG_CPU == AS3525
33 static int usb_status = USB_EXTRACTED;
34 #endif
36 void usb_enable(bool on)
38 #ifdef HAVE_USBSTACK
39 if (on)
40 usb_core_init();
41 else
42 usb_core_exit();
43 #else
44 (void)on;
45 #endif
48 void usb_init_device(void)
50 #ifdef USB_DETECT_PIN
51 GPIOA_DIR &= ~(1 << USB_DETECT_PIN); /* set as input */
52 #endif
55 #if CONFIG_CPU == AS3525
56 void usb_insert_int(void)
58 usb_status = USB_INSERTED;
61 void usb_remove_int(void)
63 usb_status = USB_EXTRACTED;
66 int usb_detect(void)
68 return usb_status;
70 #else
71 int usb_detect(void)
73 #ifdef USB_DETECT_PIN
74 if (GPIOA_PIN( USB_DETECT_PIN ))
75 return USB_INSERTED;
76 else
77 #endif
78 return USB_EXTRACTED;
80 #endif