1 #include <linux/types.h>
4 * WARNING: This file needs to be kept in sync with
5 * - the parser (dbparse.py)
6 * - the generator code (db2bin.py)
10 #define REGDB_MAGIC 0x52474442
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.
17 #define REGDB_VERSION 19
20 * The signature at the end of the file is an RSA-signed
21 * SHA-1 hash of the file.
24 struct regdb_file_header {
25 /* must be REGDB_MAGIC */
27 /* must be REGDB_VERSION */
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.)
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;
41 struct regdb_file_freq_range {
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;
58 RRF_NO_OUTDOOR = 1<<3,
64 struct regdb_file_reg_rule {
65 /* pointers (offsets) into the file */
66 __be32 freq_range_ptr,
72 struct regdb_file_reg_rules_collection {
74 /* pointers (offsets) into the file */
75 __be32 reg_rule_ptrs[];
78 struct regdb_file_reg_country {
81 /* pointer (offset) into the file */
82 __be32 reg_collection_ptr;