dma2d_lite.h 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /*
  2. * Copyright (c) 2020 Actions Technology Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_DRIVERS_DISPLAY_DMA2D_LITE_H_
  7. #define ZEPHYR_DRIVERS_DISPLAY_DMA2D_LITE_H_
  8. /**
  9. * @brief SDMA Channel Config Module (SDMA_CHAN_Type)
  10. */
  11. typedef struct { /*!< DMA Channel Config Structure */
  12. volatile uint32_t CTL; /*!< (@ 0x00000000) Control Register */
  13. volatile uint32_t START; /*!< (@ 0x00000004) Start Register */
  14. volatile uint32_t SADDR; /*!< (@ 0x00000008) Source Address 0 Register */
  15. const volatile uint32_t RESERVED_1;
  16. volatile uint32_t DADDR; /*!< (@ 0x00000010) Source Address 1 Register */
  17. const volatile uint32_t RESERVED_2;
  18. volatile uint32_t BC; /*!< (@ 0x00000018) Byte Counter Register */
  19. volatile uint32_t RC; /*!< (@ 0x0000001C) Remain Counter Register */
  20. const volatile uint32_t RESERVED_3[56];
  21. } SDMA_CHAN_Type; /*!< Size = 256 (0x100) */
  22. /**
  23. * @brief SDMA Line Config Module (SDMA_LINE_Type)
  24. */
  25. typedef struct { /*!< SDMA Line Config Structure */
  26. volatile uint32_t LENGTH; /*!< (@ 0x00000000) Line Length Register */
  27. volatile uint32_t COUNT; /*!< (@ 0x00000004) Line Count Register */
  28. volatile uint32_t SSTRIDE; /*!< (@ 0x00000008) Line Src Stride Register */
  29. volatile uint32_t DSTRIDE; /*!< (@ 0x0000000C) Line Dest Stride Register */
  30. volatile uint32_t REMAIN; /*!< (@ 0x00000010) Line Remain Register */
  31. volatile uint32_t BYTE_REMAIN_IN_LINE; /*!< (@ 0x00000014) Byte Remain in Transmitting Line Register */
  32. const volatile uint32_t RESERVED[2];
  33. } SDMA_LINE_Type; /*!< Size = 32 (0x20) */
  34. /**
  35. * @brief SDMA Module (SDMA)
  36. */
  37. typedef struct { /*!< SDMA Structure */
  38. volatile uint32_t IP; /*!< (@ 0x00000000) Interrupt Pending Register */
  39. volatile uint32_t IE; /*!< (@ 0x00000004) Interrupt Enable Register */
  40. const volatile uint32_t RESERVED_1[26];
  41. volatile uint32_t PRIORITY; /*!< (@ 0x00000070) Priority Control Register */
  42. const volatile uint32_t RESERVED_2[3];
  43. volatile uint32_t DEBUG; /*!< (@ 0x00000080) Debug Register */
  44. const volatile uint32_t RESERVED_3[7];
  45. volatile uint32_t COUPLE_CONFIG; /*!< (@ 0x000000A0) Debug Register */
  46. volatile uint32_t COUPLE_BUF_ADDR; /*!< (@ 0x000000A4) Debug Register */
  47. volatile uint32_t COUPLE_BUF_SIZE; /*!< (@ 0x000000A8) Debug Register */
  48. volatile uint32_t COUPLE_START; /*!< (@ 0x000000AC) Debug Register */
  49. volatile uint32_t COUPLE_WRITER_POINTER; /*!< (@ 0x000000B0) Debug Register */
  50. volatile uint32_t COUPLE_READ_POINTER; /*!< (@ 0x000000B4) Debug Register */
  51. const volatile uint32_t RESERVED_4[18];
  52. SDMA_CHAN_Type CHAN_CTL[5];
  53. const volatile uint32_t RESERVED_5[384];
  54. SDMA_LINE_Type LINE_CTL[5];
  55. const volatile uint32_t RESERVED_6[24];
  56. volatile uint32_t COLOR_FILL_DATA[3]; /*!< (@ 0x000000AC) Color Fill Data Register */
  57. } __attribute__((__packed__)) SDMA_Type; /*!< Size = 3340 (0xD0C) */
  58. #endif /* ZEPHYR_DRIVERS_DISPLAY_DMA2D_LITE_H_ */