blob: 16a447b461191e0b2762b1fd007e312982dcde26 [file] [log] [blame]
Prameela Rani Garnepudi4c10d562018-02-27 19:56:13 +05301/**
2 * Copyright (c) 2017 Redpine Signals Inc.
3 *
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
17#ifndef __RSI_HEADER_H__
18#define __RSI_HEADER_H__
19
20/* HAL queue information */
21#define RSI_COEX_Q 0x0
22#define RSI_BT_Q 0x2
23#define RSI_WLAN_Q 0x3
24#define RSI_WIFI_MGMT_Q 0x4
25#define RSI_WIFI_DATA_Q 0x5
26#define RSI_BT_MGMT_Q 0x6
27#define RSI_BT_DATA_Q 0x7
28
29enum rsi_host_intf {
30 RSI_HOST_INTF_SDIO = 0,
31 RSI_HOST_INTF_USB
32};
33
34#endif