#ifndef __MTS_EEPROM_H #define __MTS_EEPROM_H #if !__KERNEL__ #include #ifndef BIT #define BIT(nr) (1UL << (nr)) #endif #endif /* on-board EEPROM * eeprom_layout_version == 0 capa_cellular is ignored * eeprom_layout_version >= 1 capa_cellular is used for has_radio */ struct mts_id_eeprom_layout { char vendor_id[32]; char product_id[32]; char device_id[32]; char hw_version[32]; uint8_t mac_addr[6]; char imei[32]; uint8_t capa[32]; uint8_t mac_bluetooth[6]; uint8_t mac_wifi[6]; uint8_t uuid[16]; uint8_t lora_eui[8]; char lora_product_id[32]; char lora_hw_version[32]; #ifdef MTRE char oem_string1[32]; char oem_string2[32]; uint16_t eeprom_layout_version; uint8_t reserved[148]; #else uint16_t eeprom_layout_version; uint8_t reserved[212]; #endif }; /* accessory card EEPROM */ struct mts_ap_eeprom_layout { char vendor_id[32]; char product_id[32]; char device_id[32]; char hw_version[32]; uint8_t mac_addr[6]; uint8_t eui[8]; uint8_t reserved[370]; }; #define DEVICE_CAPA_INDEX(c) (((c) & 0xFF) >> 3) #define DEVICE_CAPA_MASK(c) BIT((c) & 0x07) #define DEVICE_CAPA(capa_buf, c) ((capa_buf)[DEVICE_CAPA_INDEX(c)] & DEVICE_CAPA_MASK(c)) #define DEVICE_CAPA_SET(capa_buf, c) \ do { \ (capa_buf)[DEVICE_CAPA_INDEX(c)] |= DEVICE_CAPA_MASK(c); \ }while (0) #define DEVICE_CAPA_CLEAR(capa_buf, c) \ do { \ (capa_buf)[DEVICE_CAPA_INDEX(c)] &= ~DEVICE_CAPA_MASK(c); \ } while (0) #define DEVICE_CAPA_VALUE(index, bit) ((((index) & 0x1F) << 3) | ((bit) & 0x07)) #define CAPA_GPS DEVICE_CAPA_VALUE(0, 7) #define CAPA_DIN DEVICE_CAPA_VALUE(0, 6) #define CAPA_DOUT DEVICE_CAPA_VALUE(0, 5) #define CAPA_ADC DEVICE_CAPA_VALUE(0, 4) #define CAPA_BLUETOOTH DEVICE_CAPA_VALUE(1, 7) /* Used for rs9113 detection in Conduit 0.1 and others */ #define CAPA_WIFI DEVICE_CAPA_VALUE(1, 6) #define CAPA_LORA DEVICE_CAPA_VALUE(1, 3) // on-board lora #define CAPA_BATTERY DEVICE_CAPA_VALUE(1, 4) // 1st battery type #define CAPA_SUPERCAP DEVICE_CAPA_VALUE(1, 5) #define CAPA_CELLULAR DEVICE_CAPA_VALUE(1,2) // Only valid if eeprom_layout_version > 0 #define CAPA_LORA_LBT DEVICE_CAPA_VALUE(1, 1) // on-board lora lbt #define CAPA_USER_DATA_ENCRYPTION DEVICE_CAPA_VALUE(1, 0) #endif /* __MTS_EEPROM_H */