Add DM320 I²C driver, although not (yet) enabled in the sources.
[Rockbox.git] / firmware / export / usb_core.h
blobc37a3e3387a8a85bc4f1515da60b4c3077fafc5d
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id: $
10 * Copyright (C) 2007 by Björn Stenberg
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 ****************************************************************************/
19 #ifndef USB_CORE_H
20 #define USB_CORE_H
22 #ifndef BOOTLOADER
24 //#define USB_SERIAL
25 #define USB_STORAGE
26 #define USB_CHARGING_ONLY
27 #else /* BOOTLOADER */
28 #define USB_CHARGING_ONLY
29 #endif /* BOOTLOADER */
31 #include "usb_ch9.h"
32 #include "usb.h"
34 /* endpoints */
35 #define EP_CONTROL 0
36 #define NUM_ENDPOINTS 3
38 extern int usb_max_pkt_size;
40 void usb_core_init(void);
41 void usb_core_exit(void);
42 void usb_core_control_request(struct usb_ctrlrequest* req);
43 void usb_core_transfer_complete(int endpoint, bool in, int status, int length);
44 void usb_core_bus_reset(void);
45 bool usb_core_exclusive_connection(void);
46 void usb_core_enable_driver(int driver,bool enabled);
47 bool usb_core_driver_enabled (int driver);
48 void usb_core_handle_transfer_completion(
49 struct usb_transfer_completion_event_data* event);
50 #ifdef HAVE_HOTSWAP
51 void usb_core_hotswap_event(int volume,bool inserted);
52 #endif
53 #endif