TARGET_TREE is not needed anymore
[maemo-rb.git] / firmware / export / usb.h
blob8954e9cc597e71a10ed5dd8a417984fb8c880eb3
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 #if (CONFIG_STORAGE & STORAGE_MMC)
43 USB_REENABLE, /* Event */
44 #endif
45 #ifdef HAVE_USBSTACK
46 USB_TRANSFER_COMPLETION, /* Event */
47 #endif
48 #ifdef USB_FIREWIRE_HANDLING
49 USB_REQUEST_REBOOT, /* Event */
50 #endif
51 USB_QUIT, /* Event */
52 #if defined(HAVE_USB_CHARGING_ENABLE) && defined(HAVE_USBSTACK)
53 USB_CHARGER_UPDATE, /* Event */
54 #endif
55 #ifdef HAVE_BOOTLOADER_USB_MODE
56 USB_HANDLED, /* Bootloader status code */
57 #endif
60 #ifdef HAVE_USB_POWER
61 #if CONFIG_KEYPAD == RECORDER_PAD
62 #define USBPOWER_BUTTON BUTTON_F1
63 #define USBPOWER_BTN_IGNORE BUTTON_ON
64 #elif CONFIG_KEYPAD == ONDIO_PAD
65 #define USBPOWER_BUTTON BUTTON_MENU
66 #define USBPOWER_BTN_IGNORE BUTTON_OFF
67 /*allow people to define this in config-target.h if they need it*/
68 #elif !defined(USBPOWER_BTN_IGNORE)
69 #define USBPOWER_BTN_IGNORE 0
70 #endif
71 #endif
73 #ifdef HAVE_USBSTACK
74 /* USB class drivers */
75 enum {
76 #ifdef USB_ENABLE_STORAGE
77 USB_DRIVER_MASS_STORAGE,
78 #endif
79 #ifdef USB_ENABLE_SERIAL
80 USB_DRIVER_SERIAL,
81 #endif
82 #ifdef USB_ENABLE_CHARGING_ONLY
83 USB_DRIVER_CHARGING_ONLY,
84 #endif
85 #ifdef USB_ENABLE_HID
86 USB_DRIVER_HID,
87 #endif
88 USB_NUM_DRIVERS
91 struct usb_transfer_completion_event_data
93 unsigned char endpoint;
94 int dir;
95 int status;
96 int length;
97 void* data;
99 #endif /* HAVE_USBSTACK */
101 void usb_init(void) INIT_ATTR;
102 void usb_enable(bool on);
103 void usb_attach(void);
104 void usb_start_monitoring(void) INIT_ATTR;
105 void usb_close(void);
106 void usb_acknowledge(long id);
107 void usb_wait_for_disconnect(struct event_queue *q);
108 int usb_wait_for_disconnect_w_tmo(struct event_queue *q, int ticks);
109 bool usb_inserted(void); /* return the official value, what's been reported to the threads */
110 int usb_detect(void); /* return the raw hardware value - nothing/pc/charger */
111 /* For tick-less USB monitoring (USB_STATUS_BY_EVENT) */
112 void usb_status_event(int current_status);
113 #ifdef HAVE_USB_POWER
114 bool usb_powered(void);
115 #ifdef HAVE_USB_CHARGING_ENABLE
116 enum {
117 USB_CHARGING_DISABLE,
118 USB_CHARGING_ENABLE,
119 USB_CHARGING_FORCE
121 /* called by app, implemented by usb_core on targets with rockbox usb
122 * or target-specific code on others
124 void usb_charging_enable(int state);
125 #ifdef HAVE_USBSTACK
126 void usb_charger_update(void);
127 #endif /* HAVE_USBSTACK */
128 #endif /* HAVE_USB_CHARGING_ENABLE */
129 #endif /* HAVE_USB_POWER */
130 #ifdef HAVE_USBSTACK
131 void usb_signal_transfer_completion(
132 struct usb_transfer_completion_event_data *event_data);
133 bool usb_driver_enabled(int driver);
134 bool usb_exclusive_storage(void); /* storage is available for usb */
135 #endif
136 int usb_release_exclusive_storage(void);
138 #ifdef USB_FIREWIRE_HANDLING
139 bool firewire_detect(void);
140 void usb_firewire_connect_event(void);
141 #endif
143 #ifdef USB_ENABLE_HID
144 void usb_set_hid(bool enable);
145 #endif
147 #if defined(USB_ENABLE_STORAGE) && defined(HAVE_MULTIDRIVE)
148 void usb_set_skip_first_drive(bool skip);
149 #endif
151 #if !defined(SIMULATOR) && !defined(USB_NONE)
152 void usb_init_device(void);
153 #endif
155 #endif