Clipv2: reboot to OF when USB is inserted
[kugel-rb.git] / firmware / target / arm / as3525 / usb-as3525.c
blob8bde82faf5caeaf7b40e24f69209fe862a9db1f7
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 #else
35 #if defined(SANSA_FUZEV2)
36 #define USB_DETECT_PIN 3
37 #elif defined(SANSA_CLIPV2)
38 #define USB_DETECT_PIN 6
39 #endif
40 #endif
42 void usb_enable(bool on)
44 #ifdef HAVE_USBSTACK
45 if (on)
46 usb_core_init();
47 else
48 usb_core_exit();
49 #else
50 (void)on;
51 #endif
54 void usb_init_device(void)
56 #ifdef USB_DETECT_PIN
57 GPIOA_DIR &= ~(1 << USB_DETECT_PIN); /* set as input */
58 #endif
61 #if CONFIG_CPU == AS3525
62 void usb_insert_int(void)
64 usb_status = USB_INSERTED;
67 void usb_remove_int(void)
69 usb_status = USB_EXTRACTED;
72 int usb_detect(void)
74 return usb_status;
76 #else
77 int usb_detect(void)
79 #ifdef USB_DETECT_PIN
80 if (GPIOA_PIN( USB_DETECT_PIN ))
81 return USB_INSERTED;
82 else
83 #endif
84 return USB_EXTRACTED;
86 #endif