]> git.gir.st - tmk_keyboard.git/blob - protocol/lufa/LUFA-120730/LUFA/Drivers/USB/Class/Host/AndroidAccessoryClassHost.h
Change TOP_DIR to TMK_DIR in makefiles
[tmk_keyboard.git] / protocol / lufa / LUFA-120730 / LUFA / Drivers / USB / Class / Host / AndroidAccessoryClassHost.h
1 /*
2 LUFA Library
3 Copyright (C) Dean Camera, 2012.
4
5 dean [at] fourwalledcubicle [dot] com
6 www.lufa-lib.org
7 */
8
9 /*
10 Copyright 2012 Dean Camera (dean [at] fourwalledcubicle [dot] com)
11
12 Permission to use, copy, modify, distribute, and sell this
13 software and its documentation for any purpose is hereby granted
14 without fee, provided that the above copyright notice appear in
15 all copies and that both that the copyright notice and this
16 permission notice and warranty disclaimer appear in supporting
17 documentation, and that the name of the author not be used in
18 advertising or publicity pertaining to distribution of the
19 software without specific, written prior permission.
20
21 The author disclaim all warranties with regard to this
22 software, including all implied warranties of merchantability
23 and fitness. In no event shall the author be liable for any
24 special, indirect or consequential damages or any damages
25 whatsoever resulting from loss of use, data or profits, whether
26 in an action of contract, negligence or other tortious action,
27 arising out of or in connection with the use or performance of
28 this software.
29 */
30
31 /** \file
32 * \brief Host mode driver for the library USB Android Open Accessory Class driver.
33 *
34 * Host mode driver for the library USB Android Open Accessory Class driver.
35 *
36 * \note This file should not be included directly. It is automatically included as needed by the USB module driver
37 * dispatch header located in LUFA/Drivers/USB.h.
38 */
39
40 /** \ingroup Group_USBClassAOA
41 * \defgroup Group_USBClassAndroidAccessoryHost Android Open Accessory Class Host Mode Driver
42 *
43 * \section Sec_Dependencies Module Source Dependencies
44 * The following files must be built with any user project that uses this module:
45 * - LUFA/Drivers/USB/Class/Host/AndroidAccessoryClassHost.c <i>(Makefile source module name: LUFA_SRC_USBCLASS)</i>
46 *
47 * \section Sec_ModDescription Module Description
48 * Host Mode USB Class driver framework interface, for the Android Open Accessory USB Class driver.
49 *
50 * @{
51 */
52
53 #ifndef __AOA_CLASS_HOST_H__
54 #define __AOA_CLASS_HOST_H__
55
56 /* Includes: */
57 #include "../../USB.h"
58 #include "../Common/AndroidAccessoryClassCommon.h"
59
60 #include <stdio.h>
61
62 /* Enable C linkage for C++ Compilers: */
63 #if defined(__cplusplus)
64 extern "C" {
65 #endif
66
67 /* Preprocessor Checks: */
68 #if !defined(__INCLUDE_FROM_AOA_DRIVER)
69 #error Do not include this file directly. Include LUFA/Drivers/USB.h instead.
70 #endif
71
72 /* Public Interface - May be used in end-application: */
73 /* Macros: */
74 /** Error code for some Android Open Accessory Host functions, indicating a logical (and not hardware) error. */
75 #define AOA_ERROR_LOGICAL_CMD_FAILED 0x80
76
77 /* Type Defines: */
78 /** \brief Android Open Accessory Class Host Mode Configuration and State Structure.
79 *
80 * Class state structure. An instance of this structure should be made within the user application,
81 * and passed to each of the Android Open Accessory class driver functions as the \c AOAInterfaceInfo
82 * parameter. This stores each Android Open Accessory interface's configuration and state information.
83 */
84 typedef struct
85 {
86 struct
87 {
88 USB_Pipe_Table_t DataINPipe; /**< Data IN Pipe configuration table. */
89 USB_Pipe_Table_t DataOUTPipe; /**< Data OUT Pipe configuration table. */
90
91 char* PropertyStrings[AOA_STRING_TOTAL_STRINGS]; /**< Android Accessory property strings, sent to identify the accessory when the
92 * Android device is switched into Open Accessory mode. */
93 } Config; /**< Config data for the USB class interface within the device. All elements in this section
94 * <b>must</b> be set or the interface will fail to enumerate and operate correctly.
95 */
96 struct
97 {
98 bool IsActive; /**< Indicates if the current interface instance is connected to an attached device, valid
99 * after \ref AOA_Host_ConfigurePipes() is called and the Host state machine is in the
100 * Configured state.
101 */
102 uint8_t InterfaceNumber; /**< Interface index of the AOA interface within the attached device. */
103 } State; /**< State data for the USB class interface within the device. All elements in this section
104 * <b>may</b> be set to initial values, but may also be ignored to default to sane values when
105 * the interface is enumerated.
106 */
107 } USB_ClassInfo_AOA_Host_t;
108
109 /* Enums: */
110 /** Enum for the possible error codes returned by the \ref AOA_Host_ConfigurePipes() function. */
111 enum AOA_Host_EnumerationFailure_ErrorCodes_t
112 {
113 AOA_ENUMERROR_NoError = 0, /**< Configuration Descriptor was processed successfully. */
114 AOA_ENUMERROR_InvalidConfigDescriptor = 1, /**< The device returned an invalid Configuration Descriptor. */
115 AOA_ENUMERROR_NoCompatibleInterfaceFound = 2, /**< A compatible Android Open Accessory interface was not found in the device's Configuration Descriptor. */
116 AOA_ENUMERROR_PipeConfigurationFailed = 3, /**< One or more pipes for the specified interface could not be configured correctly. */
117 };
118
119 /* Function Prototypes: */
120 /** General management task for a given Android Open Accessory host class interface, required for the correct operation of the interface.
121 * This should be called frequently in the main program loop, before the master USB management task \ref USB_USBTask().
122 *
123 * \param[in,out] AOAInterfaceInfo Pointer to a structure containing an Android Open Accessory Class host configuration and state.
124 */
125 void AOA_Host_USBTask(USB_ClassInfo_AOA_Host_t* const AOAInterfaceInfo) ATTR_NON_NULL_PTR_ARG(1);
126
127 /** Validates a device descriptor, to check if the device is a valid Android device, and if it is currently in Android Open Accessory mode.
128 *
129 * \param[in,out] AOAInterfaceInfo Pointer to a structure containing an AOA Class host configuration and state.
130 * \param[in] DeviceDescriptor Pointer a buffer containing the attached device's Device Descriptor.
131 * \param[out] NeedModeSwitch Pointer to a boolean where the mode switch requirement of the attached device is to be stored.
132 *
133 * \return Boolean \c true if the attached device is a valid Android device, \c false otherwise.
134 */
135 bool AOA_Host_ValidateAccessoryDevice(USB_ClassInfo_AOA_Host_t* const AOAInterfaceInfo,
136 const USB_Descriptor_Device_t* const DeviceDescriptor,
137 bool* const NeedModeSwitch) ATTR_NON_NULL_PTR_ARG(1) ATTR_NON_NULL_PTR_ARG(2) ATTR_NON_NULL_PTR_ARG(3);
138
139 /** Host interface configuration routine, to configure a given Android Open Accessory host interface instance using the Configuration
140 * Descriptor read from an attached USB device. This function automatically updates the given Android Open Accessory Host instance's
141 * state values and configures the pipes required to communicate with the interface if it is found within the device. This should be
142 * called once after the stack has enumerated the attached device, while the host state machine is in the Addressed state.
143 *
144 * \param[in,out] AOAInterfaceInfo Pointer to a structure containing an AOA Class host configuration and state.
145 * \param[in] ConfigDescriptorSize Length of the attached device's Configuration Descriptor.
146 * \param[in] ConfigDescriptorData Pointer to a buffer containing the attached device's Configuration Descriptor.
147 *
148 * \return A value from the \ref AOA_Host_EnumerationFailure_ErrorCodes_t enum.
149 */
150 uint8_t AOA_Host_ConfigurePipes(USB_ClassInfo_AOA_Host_t* const AOAInterfaceInfo,
151 uint16_t ConfigDescriptorSize,
152 void* ConfigDescriptorData) ATTR_NON_NULL_PTR_ARG(1) ATTR_NON_NULL_PTR_ARG(3);
153
154 /** Starts Accessory Mode in the attached Android device. This function will validate the device's Android Open Accessory protocol
155 * version, send the configured property strings, and request a switch to Android Open Accessory mode.
156 *
157 * \param[in,out] AOAInterfaceInfo Pointer to a structure containing an AOA Class host configuration and state.
158 *
159 * \return A value from the \ref USB_Host_SendControlErrorCodes_t enum, or \ref AOA_ERROR_LOGICAL_CMD_FAILED if a logical error occurred..
160 */
161 uint8_t AOA_Host_StartAccessoryMode(USB_ClassInfo_AOA_Host_t* const AOAInterfaceInfo) ATTR_NON_NULL_PTR_ARG(1);
162
163 /** Sends a given data buffer to the attached USB device, if connected. If a device is not connected when the function is
164 * called, the data will be discarded. Bytes will be queued for transmission to the device until either the pipe bank
165 * becomes full, or the \ref AOA_Host_Flush() function is called to flush the pending data to the device. This allows for
166 * multiple bytes to be packed into a single pipe packet, increasing data throughput.
167 *
168 * \pre This function must only be called when the Host state machine is in the \ref HOST_STATE_Configured state or the
169 * call will fail.
170 *
171 * \param[in,out] AOAInterfaceInfo Pointer to a structure containing a AOA Class host configuration and state.
172 * \param[in] Buffer Pointer to a buffer containing the data to send to the device.
173 * \param[in] Length Length of the data to send to the device.
174 *
175 * \return A value from the \ref Pipe_Stream_RW_ErrorCodes_t enum.
176 */
177 uint8_t AOA_Host_SendData(USB_ClassInfo_AOA_Host_t* const AOAInterfaceInfo,
178 const uint8_t* const Buffer,
179 const uint16_t Length);
180
181 /** Sends a given null-terminated string to the attached USB device, if connected. If a device is not connected when the
182 * function is called, the string is discarded. Bytes will be queued for transmission to the device until either the pipe
183 * bank becomes full, or the \ref AOA_Host_Flush() function is called to flush the pending data to the device. This allows
184 * for multiple bytes to be packed into a single pipe packet, increasing data throughput.
185 *
186 * \pre This function must only be called when the Host state machine is in the \ref HOST_STATE_Configured state or the
187 * call will fail.
188 *
189 * \param[in,out] AOAInterfaceInfo Pointer to a structure containing a AOA Class host configuration and state.
190 * \param[in] String Pointer to the null terminated string to send to the device.
191 *
192 * \return A value from the \ref Pipe_Stream_RW_ErrorCodes_t enum.
193 */
194 uint8_t AOA_Host_SendString(USB_ClassInfo_AOA_Host_t* const AOAInterfaceInfo,
195 const char* const String) ATTR_NON_NULL_PTR_ARG(1) ATTR_NON_NULL_PTR_ARG(2);
196
197 /** Sends a given byte to the attached USB device, if connected. If a device is not connected when the function is called, the
198 * byte is discarded. Bytes will be queued for transmission to the device until either the pipe bank becomes full, or the
199 * \ref AOA_Host_Flush() function is called to flush the pending data to the host. This allows for multiple bytes to be
200 * packed into a single pipe packet, increasing data throughput.
201 *
202 * \pre This function must only be called when the Host state machine is in the \ref HOST_STATE_Configured state or the
203 * call will fail.
204 *
205 * \param[in,out] AOAInterfaceInfo Pointer to a structure containing a AOA Class host configuration and state.
206 * \param[in] Data Byte of data to send to the device.
207 *
208 * \return A value from the \ref Pipe_WaitUntilReady_ErrorCodes_t enum.
209 */
210 uint8_t AOA_Host_SendByte(USB_ClassInfo_AOA_Host_t* const AOAInterfaceInfo,
211 const uint8_t Data) ATTR_NON_NULL_PTR_ARG(1);
212
213 /** Determines the number of bytes received by the AOA interface from the device, waiting to be read. This indicates the number
214 * of bytes in the IN pipe bank only, and thus the number of calls to \ref AOA_Host_ReceiveByte() which are guaranteed to succeed
215 * immediately. If multiple bytes are to be received, they should be buffered by the user application, as the pipe bank will not be
216 * released back to the USB controller until all bytes are read.
217 *
218 * \pre This function must only be called when the Host state machine is in the \ref HOST_STATE_Configured state or the
219 * call will fail.
220 *
221 * \param[in,out] AOAInterfaceInfo Pointer to a structure containing a AOA Class host configuration and state.
222 *
223 * \return Total number of buffered bytes received from the device.
224 */
225 uint16_t AOA_Host_BytesReceived(USB_ClassInfo_AOA_Host_t* const AOAInterfaceInfo) ATTR_NON_NULL_PTR_ARG(1);
226
227 /** Reads a byte of data from the device. If no data is waiting to be read of if a USB device is not connected, the function
228 * returns a negative value. The \ref AOA_Host_BytesReceived() function may be queried in advance to determine how many bytes
229 * are currently buffered in the AOA interface's data receive pipe.
230 *
231 * \pre This function must only be called when the Host state machine is in the \ref HOST_STATE_Configured state or the
232 * call will fail.
233 *
234 * \param[in,out] AOAInterfaceInfo Pointer to a structure containing a AOA Class host configuration and state.
235 *
236 * \return Next received byte from the device, or a negative value if no data received.
237 */
238 int16_t AOA_Host_ReceiveByte(USB_ClassInfo_AOA_Host_t* const AOAInterfaceInfo) ATTR_NON_NULL_PTR_ARG(1);
239
240 /** Flushes any data waiting to be sent, ensuring that the send buffer is cleared.
241 *
242 * \pre This function must only be called when the Host state machine is in the \ref HOST_STATE_Configured state or the
243 * call will fail.
244 *
245 * \param[in,out] AOAInterfaceInfo Pointer to a structure containing a AOA Class host configuration and state.
246 *
247 * \return A value from the \ref Pipe_WaitUntilReady_ErrorCodes_t enum.
248 */
249 uint8_t AOA_Host_Flush(USB_ClassInfo_AOA_Host_t* const AOAInterfaceInfo) ATTR_NON_NULL_PTR_ARG(1);
250
251 /** Creates a standard character stream for the given AOA Device instance so that it can be used with all the regular
252 * functions in the standard \c <stdio.h> library that accept a \c FILE stream as a destination (e.g. \c fprintf). The created
253 * stream is bidirectional and can be used for both input and output functions.
254 *
255 * Reading data from this stream is non-blocking, i.e. in most instances, complete strings cannot be read in by a single
256 * fetch, as the endpoint will not be ready at some point in the transmission, aborting the transfer. However, this may
257 * be used when the read data is processed byte-per-bye (via \c getc()) or when the user application will implement its own
258 * line buffering.
259 *
260 * \note The created stream can be given as \c stdout if desired to direct the standard output from all \c <stdio.h> functions
261 * to the given AOA interface.
262 * \n\n
263 *
264 * \note This function is not available on all microcontroller architectures.
265 *
266 * \param[in,out] AOAInterfaceInfo Pointer to a structure containing a AOA Class configuration and state.
267 * \param[in,out] Stream Pointer to a FILE structure where the created stream should be placed.
268 */
269 void AOA_Host_CreateStream(USB_ClassInfo_AOA_Host_t* const AOAInterfaceInfo,
270 FILE* const Stream);
271
272 /** Identical to \ref AOA_Host_CreateStream(), except that reads are blocking until the calling stream function terminates
273 * the transfer. While blocking, the USB and AOA service tasks are called repeatedly to maintain USB communications.
274 *
275 * \note This function is not available on all microcontroller architectures.
276 *
277 * \param[in,out] AOAInterfaceInfo Pointer to a structure containing a AOA Class configuration and state.
278 * \param[in,out] Stream Pointer to a FILE structure where the created stream should be placed.
279 */
280 void AOA_Host_CreateBlockingStream(USB_ClassInfo_AOA_Host_t* const AOAInterfaceInfo,
281 FILE* const Stream);
282
283 /* Private Interface - For use in library only: */
284 #if !defined(__DOXYGEN__)
285 /* Function Prototypes: */
286 #if defined(__INCLUDE_FROM_ANDROIDACCESSORY_HOST_C)
287 #if defined(FDEV_SETUP_STREAM)
288 static int AOA_Host_putchar(char c,
289 FILE* Stream) ATTR_NON_NULL_PTR_ARG(2);
290 static int AOA_Host_getchar(FILE* Stream) ATTR_NON_NULL_PTR_ARG(1);
291 static int AOA_Host_getchar_Blocking(FILE* Stream) ATTR_NON_NULL_PTR_ARG(1);
292 #endif
293
294 static uint8_t AOA_Host_GetAccessoryProtocol(uint16_t* const Protocol) ATTR_NON_NULL_PTR_ARG(1);
295 static uint8_t AOA_Host_SendPropertyString(USB_ClassInfo_AOA_Host_t* const AOAInterfaceInfo,
296 const uint8_t StringIndex) ATTR_NON_NULL_PTR_ARG(1);
297
298 static uint8_t DCOMP_AOA_Host_NextAndroidAccessoryInterface(void* const CurrentDescriptor)
299 ATTR_WARN_UNUSED_RESULT ATTR_NON_NULL_PTR_ARG(1);
300 static uint8_t DCOMP_AOA_Host_NextInterfaceBulkEndpoint(void* const CurrentDescriptor)
301 ATTR_WARN_UNUSED_RESULT ATTR_NON_NULL_PTR_ARG(1);
302 #endif
303 #endif
304
305 /* Disable C linkage for C++ Compilers: */
306 #if defined(__cplusplus)
307 }
308 #endif
309
310 #endif
311
312 /** @} */
313
314
Imprint / Impressum