add NO-HT20, NO-HT40 flags
[platform/upstream/crda.git] / regdb.h
1 #include <linux/types.h>
2
3 /*
4  * WARNING: This file needs to be kept in sync with
5  *  - the parser (dbparse.py)
6  *  - the generator code (db2bin.py)
7  */
8
9 /* spells "RGDB" */
10 #define REGDB_MAGIC     0x52474442
11
12 /*
13  * Only supported version now, start at arbitrary number
14  * to have some more magic. We still consider this to be
15  * "Version 1" of the file.
16  */
17 #define REGDB_VERSION   19
18
19 /*
20  * The signature at the end of the file is an RSA-signed
21  * SHA-1 hash of the file.
22  */
23
24 struct regdb_file_header {
25         /* must be REGDB_MAGIC */
26         __be32  magic;
27         /* must be REGDB_VERSION */
28         __be32  version;
29         /*
30          * Pointer (offset) into file where country list starts
31          * and number of countries. The country list is sorted
32          * alphabetically to allow binary searching (should it
33          * become really huge.)
34          */
35         __be32  reg_country_ptr;
36         __be32  reg_country_num;
37         /* length (in bytes) of the signature at the end of the file */
38         __be32  signature_length;
39 };
40
41 struct regdb_file_freq_range {
42         __be32  start_freq,
43                 end_freq,
44                 max_bandwidth;
45 };
46
47 /*
48  * Values of zero mean "not applicable", i.e. the regulatory
49  * does not limit a certain value.
50  */
51 struct regdb_file_power_rule {
52         /* antenna gain is in mBi (100 * dBi) */
53         __be32  max_antenna_gain;
54         /* this is in mBm (100 * dBm) */
55         __be32  max_eirp;
56 };
57
58 enum reg_rule_flags {
59         RRF_NO_OFDM     = 1<<0,
60         RRF_NO_CCK      = 1<<1,
61         RRF_NO_INDOOR   = 1<<2,
62         RRF_NO_OUTDOOR  = 1<<3,
63         RRF_DFS         = 1<<4,
64         RRF_PTP_ONLY    = 1<<5,
65         RRF_PTMP_ONLY   = 1<<6,
66         RRF_PASSIVE_SCAN= 1<<7,
67         RRF_NO_IBSS     = 1<<8,
68         RRF_NO_HT20     = 1<<9,
69         RRF_NO_HT40     = 1<<10,
70 };
71
72 struct regdb_file_reg_rule {
73         /* pointers (offsets) into the file */
74         __be32  freq_range_ptr,
75                 power_rule_ptr;
76         /* rule flags */
77         __be32 flags;
78 };
79
80 struct regdb_file_reg_rules_collection {
81         __be32  reg_rule_num;
82         /* pointers (offsets) into the file */
83         __be32  reg_rule_ptrs[];
84 };
85
86 struct regdb_file_reg_country {
87         __u8    alpha2[2];
88         __u8    PAD[2];
89         /* pointer (offset) into the file */
90         __be32  reg_collection_ptr;
91 };
92
93
94 /*
95  * Verify that no unexpected padding is added to structures
96  * for some reason.
97  */
98
99 #define ERROR_ON(cond) \
100         ((void)sizeof(char[1 - 2*!!(cond)]))
101
102 #define CHECK_STRUCT(name, size) \
103         ERROR_ON(sizeof(struct name) != size)
104
105 static inline void check_db_binary_structs(void)
106 {
107         CHECK_STRUCT(regdb_file_header, 20);
108         CHECK_STRUCT(regdb_file_freq_range, 12);
109         CHECK_STRUCT(regdb_file_power_rule, 8);
110         CHECK_STRUCT(regdb_file_reg_rule, 12);
111         CHECK_STRUCT(regdb_file_reg_rules_collection, 4);
112         CHECK_STRUCT(regdb_file_reg_country, 8);
113 }