lastbus_v1.h 395 B

1234567891011121314151617181920
  1. #ifndef __LASTBUS_H__
  2. #define __LASTBUS_H__
  3. #define NUM_MASTER_PORT 3
  4. #define NUM_SLAVE_PORT 4
  5. #define get_bit_at(reg, pos) (((reg) >> (pos)) & 1)
  6. #define BUS_MCU_M0 0x05A4
  7. #define BUS_MCU_S1 0x05B0
  8. #define BUS_MCU_M0_M 0x05C0
  9. #define BUS_MCU_S1_M 0x05CC
  10. #define NUM_MON 5
  11. #define BUS_PERI_R0 0x0500
  12. #define BUS_PERI_R1 0x0504
  13. #define BUS_PERI_MON 0x0508
  14. #endif /* end of __LASTBUS_H__ */