new regulatory database scheme, flags are per-rule now
[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 struct regdb_file_power_rule {
48         /* antenna gain is in mBi (100 * dBi) */
49         __be32  max_antenna_gain;
50         /* these are in mBm (100 * dBm) */
51         __be32  max_ir, max_eirp;
52 };
53
54 enum reg_rule_flags {
55         RRF_NO_OFDM     = 1<<0,
56         RRF_NO_CCK      = 1<<1,
57         RRF_NO_INDOOR   = 1<<2,
58         RRF_NO_OUTDOOR  = 1<<3,
59         RRF_DFS         = 1<<4,
60         RRF_PTP_ONLY    = 1<<5,
61         RRF_PTMP_ONLY   = 1<<6,
62 };
63
64 struct regdb_file_reg_rule {
65         /* pointers (offsets) into the file */
66         __be32  freq_range_ptr,
67                 power_rule_ptr;
68         /* rule flags */
69         __be32 flags;
70 };
71
72 struct regdb_file_reg_rules_collection {
73         __be32  reg_rule_num;
74         /* pointers (offsets) into the file */
75         __be32  reg_rule_ptrs[];
76 };
77
78 struct regdb_file_reg_country {
79         __u8    alpha2[2];
80         __u8    PAD[2];
81         /* pointer (offset) into the file */
82         __be32  reg_collection_ptr;
83 };