pci.h 306 B

123456789101112131415161718
  1. #ifndef PCI_H
  2. #define PCI_H
  3. #include <stdint.h>
  4. typedef struct {
  5. uint32_t reserve_1;
  6. uint32_t sbtmsg_addr;
  7. uint32_t cfg_reg_addr;
  8. uint32_t reserve_2;
  9. uint32_t lmk_a_addr;
  10. uint32_t lmk_b_addr;
  11. uint32_t reserve_3;
  12. uint32_t att_pe_1_addr;
  13. uint32_t att_pe_2_addr;
  14. } reg_addr_pci;
  15. #endif /* PCI_H */