2
0

boardinfo_fpga.h 390 B

12345678910111213141516
  1. #ifndef BOARDINFO_FPGA_H
  2. #define BOARDINFO_FPGA_H
  3. #include "common.h"
  4. #include "boardinfo.h"
  5. /* Address 0 is used by FPGA, so this is the address we use... */
  6. #define BOARDINFO_ADDR 0xff000
  7. extern struct board_info board_info;
  8. extern union board_info_block board_info_raw;
  9. extern void rom_update_boardinfo(void);
  10. extern volatile bool do_update_boardinfo;
  11. #endif /* BOARDINFO_FPGA_H */