717b040075d30ec2f4bbd15cbc24b9a40e1adf5f
[pub/USBasp.git] / LUFA / Drivers / USB / LowLevel / OTG.h
1 /*
2 LUFA Library
3 Copyright (C) Dean Camera, 2010.
4
5 dean [at] fourwalledcubicle [dot] com
6 www.fourwalledcubicle.com
7 */
8
9 /*
10 Copyright 2010 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 /** \ingroup Group_USB
32 * @defgroup Group_OTG USB On The Go (OTG) Management
33 *
34 * This module contains macros for embedded USB hosts with dual role On The Go capabilities, for managing role
35 * exchange. OTG is a way for two USB dual role devices to talk to one another directly without fixed device/host
36 * roles.
37 *
38 * @{
39 */
40
41 #ifndef __USBOTG_H__
42 #define __USBOTG_H__
43
44 /* Includes: */
45 #if defined(__AVR32__)
46 #include <avr32/io.h>
47 #include <stdint.h>
48 #include <stdbool.h>
49 #elif defined(__AVR__)
50 #include <avr/io.h>
51 #include <stdbool.h>
52 #endif
53
54 #include "../../../Common/Common.h"
55
56 /* Preprocessor Checks: */
57 #if !defined(__INCLUDE_FROM_USB_DRIVER)
58 #error Do not include this file directly. Include LUFA/Drivers/USB/USB.h instead.
59 #endif
60
61 /* Public Interface - May be used in end-application: */
62 /* Macros: */
63 /** Mask for the VBUS pulsing method of SRP, supported by some OTG devices.
64 *
65 * \see USB_OTG_DEV_Initiate_SRP()
66 */
67 #define USB_OTG_SRP_VBUS (1 << SRPSEL)
68
69 /** Mask for the Data + pulsing method of SRP, supported by some OTG devices.
70 *
71 * \see USB_OTG_DEV_Initiate_SRP()
72 */
73 #define USB_OTG_STP_DATA 0
74
75 /* Pseudo-Function Macros: */
76 #if defined(__DOXYGEN__)
77 /** Initiate a Host Negotiation Protocol request. This indicates to the other connected device
78 * that the device wishes to change device/host roles.
79 */
80 static inline void USB_OTG_Device_RequestHNP(void);
81
82 /** Cancel a Host Negotiation Protocol request. This stops a pending HNP request to the other
83 * connected device.
84 */
85 static inline void USB_OTG_Device_CancelHNPRequest(void);
86
87 /** Determines if the device is currently sending a HNP to an attached host.
88 *
89 * \return Boolean true if currently sending a HNP to the other connected device, false otherwise
90 */
91 static inline bool USB_OTG_Device_IsSendingHNP(void);
92
93 /** Accepts a HNP from a connected device, indicating that both devices should exchange
94 * device/host roles.
95 */
96 static inline void USB_OTG_Host_AcceptHNP(void);
97
98 /** Rejects a HNP from a connected device, indicating that both devices should remain in their
99 * current device/host roles.
100 */
101 static inline void USB_OTG_Host_RejectHNP(void);
102
103 /** Indicates if the connected device is not currently sending a HNP request.
104 *
105 * \return Boolean true if a HNP is currently being issued by the connected device, false otherwise.
106 */
107 static inline bool USB_OTG_Host_IsHNPReceived(void);
108
109 /** Initiates a Session Request Protocol request. Most OTG devices turn off VBUS when the USB
110 * interface is not in use, to conserve power. Sending a SRP to a USB OTG device running in
111 * host mode indicates that VBUS should be applied and a session started.
112 *
113 * There are two different methods of sending a SRP - either pulses on the VBUS line, or by
114 * pulsing the Data + line via the internal pull-up resistor.
115 *
116 * \param[in] SRPTypeMask Mask indicating the type of SRP to use, either \ref USB_OTG_SRP_VBUS or \ref USB_OTG_STP_DATA.
117 */
118 static inline void USB_OTG_Dev_InitiateSRP(uint8_t SRPTypeMask);
119 #else
120 #define USB_OTG_Device_RequestHNP() MACROS{ OTGCON |= (1 << HNPREQ); }MACROE
121
122 #define USB_OTG_Device_CancelHNPRequest() MACROS{ OTGCON &= ~(1 << HNPREQ); }MACROE
123
124 #define USB_OTG_Device_IsSendingHNP() ((OTGCON & (1 << HNPREQ)) ? true : false)
125
126 #define USB_OTG_Host_AcceptHNP() MACROS{ OTGCON |= (1 << HNPREQ); }MACROE
127
128 #define USB_OTG_Host_RejectHNP() MACROS{ OTGCON &= ~(1 << HNPREQ); }MACROE
129
130 #define USB_OTG_Host_IsHNPReceived() ((OTGCON & (1 << HNPREQ)) ? true : false)
131
132 #define USB_OTG_Device_InitiateSRP(type) MACROS{ OTGCON = ((OTGCON & ~(1 << SRPSEL)) | ((type) | (1 << SRPREQ))); }MACROE
133 #endif
134
135 #endif
136
137 /** @} */