1/*-
2 * Copyright (c) 2010 Damien Bergamini <damien.bergamini@free.fr>
3 * Copyright (c) 2016 Andriy Voskoboinyk <avos@FreeBSD.org>
4 *
5 * Permission to use, copy, modify, and distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
8 *
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 *
17 * $OpenBSD: if_urtwnreg.h,v 1.3 2010/11/16 18:02:59 damien Exp $
18 */
19
20#ifndef R92C_ROM_DEFS_H
21#define R92C_ROM_DEFS_H
22
23#define R92C_MAX_CHAINS			2
24#define R92C_GROUP_2G			3
25
26#define R92C_EFUSE_MAX_LEN		512
27#define R92C_EFUSE_MAP_LEN		128
28
29/*
30 * Some generic rom parsing macros.
31 */
32#define RTWN_GET_ROM_VAR(var, def)	(((var) != 0xff) ? (var) : (def))
33#define RTWN_SIGN4TO8(val)		(((val) & 0x08) ? (val) | 0xf0 : (val))
34
35#define LOW_PART_M	0x0f
36#define LOW_PART_S	0
37#define HIGH_PART_M	0xf0
38#define HIGH_PART_S	4
39
40/* Bits for rf_board_opt (rf_opt1) field. */
41#define R92C_ROM_RF1_REGULATORY_M	0x07
42#define R92C_ROM_RF1_REGULATORY_S	0
43#define R92C_ROM_RF1_BOARD_TYPE_M	0xe0
44#define R92C_ROM_RF1_BOARD_TYPE_S	5
45
46/* Generic board types. */
47#define R92C_BOARD_TYPE_DONGLE		0
48#define R92C_BOARD_TYPE_HIGHPA		1
49#define R92C_BOARD_TYPE_MINICARD	2
50#define R92C_BOARD_TYPE_SOLO		3
51#define R92C_BOARD_TYPE_COMBO		4
52
53/* Bits for channel_plan field. */
54#define R92C_CHANNEL_PLAN_BY_HW		0x80
55
56#endif	/* R92C_ROM_DEFS_H */
57