Christopher N. Hesse | afec0fd | 2017-02-09 19:17:06 +0100 | [diff] [blame] | 1 | /* |
Davis Mosenkovs | 8b4ba0d | 2017-01-09 12:11:31 -0800 | [diff] [blame] | 2 | * Copyright (C) 2017-2018, The LineageOS Project |
Christopher N. Hesse | afec0fd | 2017-02-09 19:17:06 +0100 | [diff] [blame] | 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #ifndef MACADDR_MAPPINGS_H |
| 18 | #define MACADDR_MAPPINGS_H |
| 19 | |
| 20 | #define MAX_RANGE_ENTRIES 100 |
| 21 | #define RANGE_ENTRY_LEN 9 |
| 22 | |
| 23 | enum Type { |
| 24 | NONE, |
| 25 | MURATA, |
| 26 | SEMCOSH, |
Christopher N. Hesse | afec0fd | 2017-02-09 19:17:06 +0100 | [diff] [blame] | 27 | SEMCO3RD, |
| 28 | SEMCO, |
| 29 | WISOL, |
| 30 | TYPE_MAX = WISOL |
| 31 | }; |
| 32 | |
| 33 | struct company_range { |
| 34 | int type; |
| 35 | char macaddrs[MAX_RANGE_ENTRIES][RANGE_ENTRY_LEN]; |
| 36 | }; |
| 37 | |
| 38 | /* |
| 39 | * address mappings from http://hwaddress.com |
| 40 | */ |
| 41 | |
| 42 | static const struct company_range murata_ranges = { |
| 43 | .type = MURATA, |
| 44 | .macaddrs = { |
| 45 | "00:0e:6d", |
| 46 | "00:13:e0", |
| 47 | "00:21:e8", |
| 48 | "00:26:e8", |
| 49 | "00:37:6d", |
| 50 | "00:60:57", |
ivanmeler | 083245a | 2018-11-27 11:55:20 +0100 | [diff] [blame] | 51 | "00:9d:6b", |
Christopher N. Hesse | afec0fd | 2017-02-09 19:17:06 +0100 | [diff] [blame] | 52 | "00:ae:fa", |
| 53 | "04:46:65", |
| 54 | "10:5f:06", |
ivanmeler | 89502e5 | 2019-01-28 13:11:54 +0100 | [diff] [blame] | 55 | "10:98:c3", |
Christopher N. Hesse | afec0fd | 2017-02-09 19:17:06 +0100 | [diff] [blame] | 56 | "10:a5:d0", |
| 57 | "10:d5:42", |
| 58 | "14:7d:c5", |
Vahempio | e483571 | 2018-06-29 19:17:40 +0200 | [diff] [blame] | 59 | "1c:70:22", |
Christopher N. Hesse | afec0fd | 2017-02-09 19:17:06 +0100 | [diff] [blame] | 60 | "1c:99:4c", |
| 61 | "20:02:af", |
| 62 | "40:f3:08", |
ivanmeler | 5e6355b | 2018-06-28 02:22:17 -0700 | [diff] [blame] | 63 | "44:91:60", |
Christopher N. Hesse | afec0fd | 2017-02-09 19:17:06 +0100 | [diff] [blame] | 64 | "44:a7:cf", |
| 65 | "5c:da:d4", |
| 66 | "5c:f8:a1", |
| 67 | "60:21:c0", |
| 68 | "60:f1:89", |
| 69 | "78:4b:87", |
| 70 | "78:52:1a", |
| 71 | "88:30:8a", |
Davis Mosenkovs | 2fa73d6 | 2018-01-28 15:49:52 -0800 | [diff] [blame] | 72 | "8c:45:00", |
Christopher N. Hesse | afec0fd | 2017-02-09 19:17:06 +0100 | [diff] [blame] | 73 | "90:b6:86", |
| 74 | "98:f1:70", |
Davis Mosenkovs | 8b4ba0d | 2017-01-09 12:11:31 -0800 | [diff] [blame] | 75 | "a0:c9:a0", |
Christopher N. Hesse | afec0fd | 2017-02-09 19:17:06 +0100 | [diff] [blame] | 76 | "a0:cc:2b", |
| 77 | "a4:08:ea", |
| 78 | "b0:72:bf", |
| 79 | "b8:d7:af", |
| 80 | "c8:14:79", |
ivanmeler | acec2d1 | 2018-08-28 20:27:39 +0200 | [diff] [blame] | 81 | "cc:c0:79", |
Christopher N. Hesse | afec0fd | 2017-02-09 19:17:06 +0100 | [diff] [blame] | 82 | "d0:e4:4a", |
| 83 | "d8:c4:6a", |
| 84 | "dc:ef:ca", |
| 85 | "f0:27:65", |
| 86 | "fc:c2:de", |
| 87 | "fc:db:b3" |
| 88 | } |
| 89 | }; |
| 90 | |
| 91 | static const struct company_range semcosh_ranges = { |
| 92 | .type = SEMCOSH, |
| 93 | .macaddrs = { |
| 94 | "34:23:ba", |
| 95 | "38:aa:3c", |
| 96 | "5c:0a:5b", |
ivanmeler | 083245a | 2018-11-27 11:55:20 +0100 | [diff] [blame] | 97 | "6c:c7:ec", |
Christopher N. Hesse | afec0fd | 2017-02-09 19:17:06 +0100 | [diff] [blame] | 98 | "88:32:9b", |
| 99 | "90:18:7c", |
| 100 | "cc:3a:61" |
| 101 | } |
| 102 | }; |
| 103 | |
| 104 | static const struct company_range semco3rd_ranges = { |
| 105 | .type = SEMCO3RD, |
| 106 | .macaddrs = { |
ivanmeler | 5e6355b | 2018-06-28 02:22:17 -0700 | [diff] [blame] | 107 | "04:d6:aa", |
ivanmeler | 28016cc | 2019-01-31 12:58:17 +0100 | [diff] [blame] | 108 | "08:c5:e1", |
ivanmeler | 89502e5 | 2019-01-28 13:11:54 +0100 | [diff] [blame] | 109 | "24:18:1d", |
Christopher N. Hesse | afec0fd | 2017-02-09 19:17:06 +0100 | [diff] [blame] | 110 | "2c:0e:3d", |
ivanmeler | 89502e5 | 2019-01-28 13:11:54 +0100 | [diff] [blame] | 111 | "30:07:4d", |
Christopher N. Hesse | afec0fd | 2017-02-09 19:17:06 +0100 | [diff] [blame] | 112 | "54:88:0e", |
| 113 | "84:38:38", |
| 114 | "8c:f5:a3", |
| 115 | "ac:36:13", |
| 116 | "ac:5f:3e", |
| 117 | "b4:79:a7", |
| 118 | "c0:97:27", |
| 119 | "c0:bd:d1", |
| 120 | "c8:ba:94", |
Martin Bouchet | 8794541 | 2017-02-15 01:26:29 -0300 | [diff] [blame] | 121 | "d0:22:be", |
Christopher N. Hesse | afec0fd | 2017-02-09 19:17:06 +0100 | [diff] [blame] | 122 | "d0:25:44", |
| 123 | "e8:50:8b", |
| 124 | "ec:1f:72", |
| 125 | "ec:9b:f3", |
Christopher N. Hesse | afec0fd | 2017-02-09 19:17:06 +0100 | [diff] [blame] | 126 | "f4:09:d8", |
| 127 | "f8:04:2e" |
| 128 | } |
| 129 | }; |
| 130 | |
| 131 | static const struct company_range semco_ranges = { |
| 132 | .type = SEMCO, |
| 133 | .macaddrs = { |
ivanmeler | 2b9386f | 2019-02-03 11:22:51 +0100 | [diff] [blame] | 134 | "48:13:7e", |
Christopher N. Hesse | afec0fd | 2017-02-09 19:17:06 +0100 | [diff] [blame] | 135 | "4c:66:41", |
| 136 | "51:f6:6b", |
ivanmeler | 89502e5 | 2019-01-28 13:11:54 +0100 | [diff] [blame] | 137 | "94:76:b7", |
ivanmeler | 5b915c8 | 2019-02-13 16:30:38 +0100 | [diff] [blame] | 138 | "a4:84:31", |
Sean hoyt | e3800ac | 2017-02-14 17:32:01 +0000 | [diff] [blame] | 139 | "cc:07:ab", |
Christopher N. Hesse | afec0fd | 2017-02-09 19:17:06 +0100 | [diff] [blame] | 140 | "d8:c4:e9", |
ivanmeler | 2b9386f | 2019-02-03 11:22:51 +0100 | [diff] [blame] | 141 | "e8:3a:12", |
Paul Keith | c51a095 | 2018-08-01 21:41:08 +0200 | [diff] [blame] | 142 | "ec:9b:f3", |
ivanmeler | 2b9386f | 2019-02-03 11:22:51 +0100 | [diff] [blame] | 143 | "f0:25:b7", |
| 144 | "f8:e6:1a" |
Christopher N. Hesse | afec0fd | 2017-02-09 19:17:06 +0100 | [diff] [blame] | 145 | } |
| 146 | }; |
| 147 | |
| 148 | static const struct company_range wisol_ranges = { |
| 149 | .type = WISOL, |
| 150 | .macaddrs = { |
| 151 | "48:5a:3f", |
| 152 | "70:2c:1f" |
| 153 | } |
| 154 | }; |
| 155 | |
| 156 | static const struct company_range *all_ranges[TYPE_MAX] = { |
| 157 | &murata_ranges, |
| 158 | &semcosh_ranges, |
| 159 | &semco3rd_ranges, |
| 160 | &semco_ranges, |
| 161 | &wisol_ranges |
| 162 | }; |
| 163 | |
| 164 | #endif // MACADDR_MAPPINGS_H |