sama5_matrix.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Bus Matrix header file for the SAMA5 family
  4. *
  5. * Copyright (C) 2014 Atmel
  6. * Bo Shen <voice.shen@atmel.com>
  7. */
  8. #ifndef __SAMA5_MATRIX_H
  9. #define __SAMA5_MATRIX_H
  10. struct atmel_matrix {
  11. u32 mcfg[16]; /* 0x00 ~ 0x3c: Master Configuration Register */
  12. u32 scfg[16]; /* 0x40 ~ 0x7c: Slave Configuration Register */
  13. u32 pras[16][2];/* 0x80 ~ 0xfc: Priority Register A/B */
  14. u32 res1[20]; /* 0x100 ~ 0x14c */
  15. u32 meier; /* 0x150: Master Error Interrupt Enable Register */
  16. u32 meidr; /* 0x154: Master Error Interrupt Disable Register */
  17. u32 meimr; /* 0x158: Master Error Interrupt Mask Register */
  18. u32 mesr; /* 0x15c: Master Error Status Register */
  19. u32 mear[16]; /* 0x160 ~ 0x19c: Master Error Address Register */
  20. u32 res2[17]; /* 0x1A0 ~ 0x1E0 */
  21. u32 wpmr; /* 0x1E4: Write Protection Mode Register */
  22. u32 wpsr; /* 0x1E8: Write Protection Status Register */
  23. u32 res3[5]; /* 0x1EC ~ 0x1FC */
  24. u32 ssr[16]; /* 0x200 ~ 0x23c: Security Slave Register */
  25. u32 sassr[16]; /* 0x240 ~ 0x27c: Security Areas Split Slave Register */
  26. u32 srtsr[16]; /* 0x280 ~ 0x2bc: Security Region Top Slave */
  27. u32 spselr[3]; /* 0x2c0 ~ 0x2c8: Security Peripheral Select Register */
  28. };
  29. /* Bit field in WPMR */
  30. #define ATMEL_MATRIX_WPMR_WPKEY 0x4D415400
  31. #define ATMEL_MATRIX_WPMR_WPEN 0x00000001
  32. #endif