diff options
Diffstat (limited to 'board/scalys/common/board_configuration_data.h')
-rw-r--r-- | board/scalys/common/board_configuration_data.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/board/scalys/common/board_configuration_data.h b/board/scalys/common/board_configuration_data.h new file mode 100644 index 0000000..14cbec0 --- /dev/null +++ b/board/scalys/common/board_configuration_data.h @@ -0,0 +1,22 @@ +#ifndef _BCD_H +#define _BCD_H + +#define BCD_LENGTH_SIZE 4 +#define BCD_HASH_SIZE 4 + +#ifndef BCD_I2C_BUS +#define BCD_I2C_BUS 0 +#endif + +#ifndef BCD_I2C_ADDRESS +#define BCD_I2C_ADDRESS 0x51 +#endif + +#ifndef BCD_EEPROM_SIZE +#define BCD_EEPROM_SIZE 0x10000 +#endif + +const void* get_boardinfo_eeprom(void); +int add_mac_addressess_to_env(const void* blob); + +#endif /* _BCD_H */ |