mirror of
https://github.com/saymrwulf/uhd.git
synced 2026-05-16 21:10:10 +00:00
This includes a rev_compat field, which we can use to identify the last hardware revision this hardware is compatible with. Example: Say the current hardware revision is 7, but it is compatible with version 5, then we store 7 as the current rev, and 5 as the rev_compat. Software can now check the rev_compat rather than the current rev for compatibility. This makes MPM more future-proof against minor, compatible hardware changes.
93 lines
2.2 KiB
C
93 lines
2.2 KiB
C
//
|
|
// Copyright 2017 Ettus Research, a National Instruments Company
|
|
//
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
//
|
|
|
|
#ifndef EEPROM_H
|
|
#define EEPROM_H
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
typedef uint32_t u32;
|
|
typedef uint16_t u16;
|
|
typedef uint8_t u8;
|
|
|
|
#define ETH_ALEN 6
|
|
|
|
/* TODO: Come up with a smarter way to do this when we start using this on
|
|
* another device */
|
|
#define NVMEM_PATH_SLOT_A "/sys/bus/nvmem/devices/9-00500/nvmem"
|
|
#define NVMEM_PATH_SLOT_B "/sys/bus/nvmem/devices/10-00500/nvmem"
|
|
#define NVMEM_PATH_MB "/sys/bus/nvmem/devices/2-00500/nvmem"
|
|
|
|
struct usrp_sulfur_eeprom {
|
|
u32 magic;
|
|
u32 version;
|
|
u32 mcu_flags[4];
|
|
u16 pid;
|
|
u16 rev;
|
|
u8 serial[8];
|
|
u8 eth_addr0[ETH_ALEN];
|
|
u16 dt_compat;
|
|
u8 eth_addr1[ETH_ALEN];
|
|
u16 mcu_compat;
|
|
u8 eth_addr2[ETH_ALEN];
|
|
u16 rev_compat;
|
|
u32 crc;
|
|
} __attribute__((packed));
|
|
|
|
struct db_rev {
|
|
u8 rev;
|
|
u8 dt_compat;
|
|
} __attribute__((packed));
|
|
|
|
struct usrp_sulfur_db_eeprom {
|
|
u32 magic;
|
|
u32 version;
|
|
u16 pid;
|
|
union rev {
|
|
u16 v1_rev;
|
|
struct db_rev v2_rev;
|
|
} rev;
|
|
char serial[8];
|
|
u32 crc;
|
|
} __attribute__((packed));
|
|
|
|
/* Motherboard EEPROM stuff */
|
|
struct usrp_sulfur_eeprom *usrp_sulfur_eeprom_new(const u32 *mcu_flags,
|
|
const u16 pid,
|
|
const u16 rev,
|
|
const char *serial,
|
|
const char *eth_addr0,
|
|
const char *eth_addr1,
|
|
const char *eth_addr2,
|
|
const u16 dt_compat,
|
|
const u16 mcu_compat,
|
|
const u16 rev_compat);
|
|
|
|
void usrp_sulfur_eeprom_to_i2c(struct usrp_sulfur_eeprom *ep, const char *path);
|
|
|
|
void usrp_sulfur_eeprom_to_file(struct usrp_sulfur_eeprom *ep,
|
|
const char *path);
|
|
|
|
void usrp_sulfur_eeprom_recrc(struct usrp_sulfur_eeprom *ep);
|
|
|
|
struct usrp_sulfur_eeprom *usrp_sulfur_eeprom_from_file(const char *path);
|
|
|
|
void usrp_sulfur_eeprom_print(const struct usrp_sulfur_eeprom *ep);
|
|
|
|
/* Daughterboard EEPROM stuff */
|
|
struct usrp_sulfur_db_eeprom *usrp_sulfur_db_eeprom_new(const u16 pid,
|
|
const u16 rev,
|
|
const char *serial,
|
|
const u16 dt_compat);
|
|
|
|
void usrp_sulfur_db_eeprom_to_file(struct usrp_sulfur_db_eeprom *ep,
|
|
const char *path);
|
|
|
|
struct usrp_sulfur_db_eeprom *usrp_sulfur_db_eeprom_from_file(const char *path);
|
|
|
|
void usrp_sulfur_db_eeprom_print(const struct usrp_sulfur_db_eeprom *ep);
|
|
|
|
#endif /* EEPROM_H */
|