Fix warning about missing newline at the EOF
[maemo-rb.git] / firmware / export / usb.h
blob4af5617b3e223c4e7c7e2d1509722bc9c97f8a8c
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2002 by Linus Nielsen Feltzing
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 ****************************************************************************/
21 #ifndef _USB_H_
22 #define _USB_H_
24 #include "config.h"
25 #include "kernel.h"
26 #include "button.h"
28 #if defined(IPOD_COLOR) || defined(IPOD_4G) \
29 || defined(IPOD_MINI) || defined(IPOD_MINI2G)
30 #define USB_FIREWIRE_HANDLING
31 #endif
33 /* Messages from usb_tick and thread states */
34 enum
36 #ifdef HAVE_LCD_BITMAP
37 USB_SCREENDUMP = -1, /* State */
38 #endif
39 USB_EXTRACTED = 0, /* Event+State */
40 USB_INSERTED, /* Event+State */
41 USB_POWERED, /* State - transitional indicator if no power */
42 #ifdef USB_DETECT_BY_CORE
43 USB_HOSTED, /* Event - host presence was detected */
44 #endif
45 #if (CONFIG_STORAGE & STORAGE_MMC)
46 USB_REENABLE, /* Event */
47 #endif
48 #ifdef HAVE_USBSTACK
49 USB_TRANSFER_COMPLETION, /* Event */
50 #endif
51 #ifdef USB_FIREWIRE_HANDLING
52 USB_REQUEST_REBOOT, /* Event */
53 #endif
54 USB_QUIT, /* Event */
55 #if defined(HAVE_USB_CHARGING_ENABLE) && defined(HAVE_USBSTACK)
56 USB_CHARGER_UPDATE, /* Event */
57 #endif
58 #ifdef HAVE_BOOTLOADER_USB_MODE
59 USB_HANDLED, /* Bootloader status code */
60 #endif
63 #ifdef HAVE_USB_POWER
64 #if CONFIG_KEYPAD == RECORDER_PAD
65 #define USBPOWER_BUTTON BUTTON_F1
66 #define USBPOWER_BTN_IGNORE BUTTON_ON
67 #elif CONFIG_KEYPAD == ONDIO_PAD
68 #define USBPOWER_BUTTON BUTTON_MENU
69 #define USBPOWER_BTN_IGNORE BUTTON_OFF
70 /*allow people to define this in config-target.h if they need it*/
71 #elif !defined(USBPOWER_BTN_IGNORE)
72 #define USBPOWER_BTN_IGNORE 0
73 #endif
74 #endif
76 #ifdef HAVE_USBSTACK
77 /* USB class drivers */
78 enum {
79 #ifdef USB_ENABLE_STORAGE
80 USB_DRIVER_MASS_STORAGE,
81 #endif
82 #ifdef USB_ENABLE_SERIAL
83 USB_DRIVER_SERIAL,
84 #endif
85 #ifdef USB_ENABLE_CHARGING_ONLY
86 USB_DRIVER_CHARGING_ONLY,
87 #endif
88 #ifdef USB_ENABLE_HID
89 USB_DRIVER_HID,
90 #endif
91 USB_NUM_DRIVERS
94 struct usb_transfer_completion_event_data
96 unsigned char endpoint;
97 int dir;
98 int status;
99 int length;
100 void* data;
102 #endif /* HAVE_USBSTACK */
104 void usb_init(void) INIT_ATTR;
105 void usb_enable(bool on);
106 void usb_attach(void);
107 void usb_start_monitoring(void) INIT_ATTR;
108 void usb_close(void);
109 void usb_acknowledge(long id);
110 void usb_wait_for_disconnect(struct event_queue *q);
111 int usb_wait_for_disconnect_w_tmo(struct event_queue *q, int ticks);
112 bool usb_inserted(void); /* return the official value, what's been reported to the threads */
113 int usb_detect(void); /* return the raw hardware value - nothing/pc/charger */
114 /* For tick-less USB monitoring (USB_STATUS_BY_EVENT) */
115 void usb_status_event(int current_status);
116 #ifdef HAVE_USB_POWER
117 bool usb_powered(void);
118 #ifdef HAVE_USB_CHARGING_ENABLE
119 enum {
120 USB_CHARGING_DISABLE,
121 USB_CHARGING_ENABLE,
122 USB_CHARGING_FORCE
124 /* called by app, implemented by usb_core on targets with rockbox usb
125 * or target-specific code on others
127 void usb_charging_enable(int state);
128 #ifdef HAVE_USBSTACK
129 void usb_charger_update(void);
130 #endif /* HAVE_USBSTACK */
131 #endif /* HAVE_USB_CHARGING_ENABLE */
132 #endif /* HAVE_USB_POWER */
133 #ifdef HAVE_USBSTACK
134 void usb_signal_transfer_completion(
135 struct usb_transfer_completion_event_data *event_data);
136 bool usb_driver_enabled(int driver);
137 bool usb_exclusive_storage(void); /* storage is available for usb */
138 #endif
139 int usb_release_exclusive_storage(void);
141 #ifdef USB_FIREWIRE_HANDLING
142 bool firewire_detect(void);
143 void usb_firewire_connect_event(void);
144 #endif
146 #ifdef USB_ENABLE_HID
147 void usb_set_hid(bool enable);
148 #endif
150 #if defined(USB_ENABLE_STORAGE) && defined(HAVE_MULTIDRIVE)
151 void usb_set_skip_first_drive(bool skip);
152 #endif
154 #if !defined(SIMULATOR) && !defined(USB_NONE)
155 void usb_init_device(void);
156 #endif
158 #endif