Staging: merge 2.6.39-rc3 into staging-next
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / staging / ath6kl / include / common / wmix.h
blob1ab6fc532934d258a70444e3ef9e793991f248a3
1 //------------------------------------------------------------------------------
2 // <copyright file="wmix.h" company="Atheros">
3 // Copyright (c) 2004-2010 Atheros Corporation. All rights reserved.
4 //
5 //
6 // Permission to use, copy, modify, and/or distribute this software for any
7 // purpose with or without fee is hereby granted, provided that the above
8 // copyright notice and this permission notice appear in all copies.
9 //
10 // THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 // WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 // MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 // ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 // WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 // ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 // OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19 //------------------------------------------------------------------------------
20 //==============================================================================
21 // Author(s): ="Atheros"
22 //==============================================================================
25 * This file contains extensions of the WMI protocol specified in the
26 * Wireless Module Interface (WMI). It includes definitions of all
27 * extended commands and events. Extensions include useful commands
28 * that are not directly related to wireless activities. They may
29 * be hardware-specific, and they might not be supported on all
30 * implementations.
32 * Extended WMIX commands are encapsulated in a WMI message with
33 * cmd=WMI_EXTENSION_CMD.
36 #ifndef _WMIX_H_
37 #define _WMIX_H_
39 #ifdef __cplusplus
40 extern "C" {
41 #endif
43 #include "dbglog.h"
46 * Extended WMI commands are those that are needed during wireless
47 * operation, but which are not really wireless commands. This allows,
48 * for instance, platform-specific commands. Extended WMI commands are
49 * embedded in a WMI command message with WMI_COMMAND_ID=WMI_EXTENSION_CMDID.
50 * Extended WMI events are similarly embedded in a WMI event message with
51 * WMI_EVENT_ID=WMI_EXTENSION_EVENTID.
53 typedef PREPACK struct {
54 u32 commandId;
55 } POSTPACK WMIX_CMD_HDR;
57 typedef enum {
58 WMIX_DSETOPEN_REPLY_CMDID = 0x2001,
59 WMIX_DSETDATA_REPLY_CMDID,
60 WMIX_GPIO_OUTPUT_SET_CMDID,
61 WMIX_GPIO_INPUT_GET_CMDID,
62 WMIX_GPIO_REGISTER_SET_CMDID,
63 WMIX_GPIO_REGISTER_GET_CMDID,
64 WMIX_GPIO_INTR_ACK_CMDID,
65 WMIX_HB_CHALLENGE_RESP_CMDID,
66 WMIX_DBGLOG_CFG_MODULE_CMDID,
67 WMIX_PROF_CFG_CMDID, /* 0x200a */
68 WMIX_PROF_ADDR_SET_CMDID,
69 WMIX_PROF_START_CMDID,
70 WMIX_PROF_STOP_CMDID,
71 WMIX_PROF_COUNT_GET_CMDID,
72 } WMIX_COMMAND_ID;
74 typedef enum {
75 WMIX_DSETOPENREQ_EVENTID = 0x3001,
76 WMIX_DSETCLOSE_EVENTID,
77 WMIX_DSETDATAREQ_EVENTID,
78 WMIX_GPIO_INTR_EVENTID,
79 WMIX_GPIO_DATA_EVENTID,
80 WMIX_GPIO_ACK_EVENTID,
81 WMIX_HB_CHALLENGE_RESP_EVENTID,
82 WMIX_DBGLOG_EVENTID,
83 WMIX_PROF_COUNT_EVENTID,
84 } WMIX_EVENT_ID;
87 * =============DataSet support=================
91 * WMIX_DSETOPENREQ_EVENTID
92 * DataSet Open Request Event
94 typedef PREPACK struct {
95 u32 dset_id;
96 u32 targ_dset_handle; /* echo'ed, not used by Host, */
97 u32 targ_reply_fn; /* echo'ed, not used by Host, */
98 u32 targ_reply_arg; /* echo'ed, not used by Host, */
99 } POSTPACK WMIX_DSETOPENREQ_EVENT;
102 * WMIX_DSETCLOSE_EVENTID
103 * DataSet Close Event
105 typedef PREPACK struct {
106 u32 access_cookie;
107 } POSTPACK WMIX_DSETCLOSE_EVENT;
110 * WMIX_DSETDATAREQ_EVENTID
111 * DataSet Data Request Event
113 typedef PREPACK struct {
114 u32 access_cookie;
115 u32 offset;
116 u32 length;
117 u32 targ_buf; /* echo'ed, not used by Host, */
118 u32 targ_reply_fn; /* echo'ed, not used by Host, */
119 u32 targ_reply_arg; /* echo'ed, not used by Host, */
120 } POSTPACK WMIX_DSETDATAREQ_EVENT;
122 typedef PREPACK struct {
123 u32 status;
124 u32 targ_dset_handle;
125 u32 targ_reply_fn;
126 u32 targ_reply_arg;
127 u32 access_cookie;
128 u32 size;
129 u32 version;
130 } POSTPACK WMIX_DSETOPEN_REPLY_CMD;
132 typedef PREPACK struct {
133 u32 status;
134 u32 targ_buf;
135 u32 targ_reply_fn;
136 u32 targ_reply_arg;
137 u32 length;
138 u8 buf[1];
139 } POSTPACK WMIX_DSETDATA_REPLY_CMD;
143 * =============GPIO support=================
144 * All masks are 18-bit masks with bit N operating on GPIO pin N.
147 #include "gpio.h"
150 * Set GPIO pin output state.
151 * In order for output to be driven, a pin must be enabled for output.
152 * This can be done during initialization through the GPIO Configuration
153 * DataSet, or during operation with the enable_mask.
155 * If a request is made to simultaneously set/clear or set/disable or
156 * clear/disable or disable/enable, results are undefined.
158 typedef PREPACK struct {
159 u32 set_mask; /* pins to set */
160 u32 clear_mask; /* pins to clear */
161 u32 enable_mask; /* pins to enable for output */
162 u32 disable_mask; /* pins to disable/tristate */
163 } POSTPACK WMIX_GPIO_OUTPUT_SET_CMD;
166 * Set a GPIO register. For debug/exceptional cases.
167 * Values for gpioreg_id are GPIO_REGISTER_IDs, defined in a
168 * platform-dependent header.
170 typedef PREPACK struct {
171 u32 gpioreg_id; /* GPIO register ID */
172 u32 value; /* value to write */
173 } POSTPACK WMIX_GPIO_REGISTER_SET_CMD;
175 /* Get a GPIO register. For debug/exceptional cases. */
176 typedef PREPACK struct {
177 u32 gpioreg_id; /* GPIO register to read */
178 } POSTPACK WMIX_GPIO_REGISTER_GET_CMD;
181 * Host acknowledges and re-arms GPIO interrupts. A single
182 * message should be used to acknowledge all interrupts that
183 * were delivered in an earlier WMIX_GPIO_INTR_EVENT message.
185 typedef PREPACK struct {
186 u32 ack_mask; /* interrupts to acknowledge */
187 } POSTPACK WMIX_GPIO_INTR_ACK_CMD;
190 * Target informs Host of GPIO interrupts that have occurred since the
191 * last WMIX_GIPO_INTR_ACK_CMD was received. Additional information --
192 * the current GPIO input values is provided -- in order to support
193 * use of a GPIO interrupt as a Data Valid signal for other GPIO pins.
195 typedef PREPACK struct {
196 u32 intr_mask; /* pending GPIO interrupts */
197 u32 input_values; /* recent GPIO input values */
198 } POSTPACK WMIX_GPIO_INTR_EVENT;
201 * Target responds to Host's earlier WMIX_GPIO_INPUT_GET_CMDID request
202 * using a GPIO_DATA_EVENT with
203 * value set to the mask of GPIO pin inputs and
204 * reg_id set to GPIO_ID_NONE
207 * Target responds to Hosts's earlier WMIX_GPIO_REGISTER_GET_CMDID request
208 * using a GPIO_DATA_EVENT with
209 * value set to the value of the requested register and
210 * reg_id identifying the register (reflects the original request)
211 * NB: reg_id supports the future possibility of unsolicited
212 * WMIX_GPIO_DATA_EVENTs (for polling GPIO input), and it may
213 * simplify Host GPIO support.
215 typedef PREPACK struct {
216 u32 value;
217 u32 reg_id;
218 } POSTPACK WMIX_GPIO_DATA_EVENT;
221 * =============Error Detection support=================
225 * WMIX_HB_CHALLENGE_RESP_CMDID
226 * Heartbeat Challenge Response command
228 typedef PREPACK struct {
229 u32 cookie;
230 u32 source;
231 } POSTPACK WMIX_HB_CHALLENGE_RESP_CMD;
234 * WMIX_HB_CHALLENGE_RESP_EVENTID
235 * Heartbeat Challenge Response Event
237 #define WMIX_HB_CHALLENGE_RESP_EVENT WMIX_HB_CHALLENGE_RESP_CMD
239 typedef PREPACK struct {
240 struct dbglog_config_s config;
241 } POSTPACK WMIX_DBGLOG_CFG_MODULE_CMD;
244 * =============Target Profiling support=================
247 typedef PREPACK struct {
248 u32 period; /* Time (in 30.5us ticks) between samples */
249 u32 nbins;
250 } POSTPACK WMIX_PROF_CFG_CMD;
252 typedef PREPACK struct {
253 u32 addr;
254 } POSTPACK WMIX_PROF_ADDR_SET_CMD;
257 * Target responds to Hosts's earlier WMIX_PROF_COUNT_GET_CMDID request
258 * using a WMIX_PROF_COUNT_EVENT with
259 * addr set to the next address
260 * count set to the corresponding count
262 typedef PREPACK struct {
263 u32 addr;
264 u32 count;
265 } POSTPACK WMIX_PROF_COUNT_EVENT;
268 #ifdef __cplusplus
270 #endif
272 #endif /* _WMIX_H_ */