MCF52233_QSPI.h
上传用户:dongxin
上传日期:2022-06-22
资源大小:370k
文件大小:3k
源码类别:

uCOS

开发平台:

Others

  1. /* Coldfire C Header File
  2.  * Copyright Freescale Semiconductor Inc
  3.  * All rights reserved.
  4.  *
  5.  * 2007/03/19 Revision: 0.91
  6.  */
  7. #ifndef __MCF52233_QSPI_H__
  8. #define __MCF52233_QSPI_H__
  9. /*********************************************************************
  10. *
  11. * Queued Serial Peripheral Interface (QSPI)
  12. *
  13. *********************************************************************/
  14. /* Register read/write macros */
  15. #define MCF_QSPI_QMR                         (*(vuint16*)(&__IPSBAR[0x340]))
  16. #define MCF_QSPI_QDLYR                       (*(vuint16*)(&__IPSBAR[0x344]))
  17. #define MCF_QSPI_QWR                         (*(vuint16*)(&__IPSBAR[0x348]))
  18. #define MCF_QSPI_QIR                         (*(vuint16*)(&__IPSBAR[0x34C]))
  19. #define MCF_QSPI_QAR                         (*(vuint16*)(&__IPSBAR[0x350]))
  20. #define MCF_QSPI_QDR                         (*(vuint16*)(&__IPSBAR[0x354]))
  21. /* Bit definitions and macros for MCF_QSPI_QMR */
  22. #define MCF_QSPI_QMR_BAUD(x)                 (((x)&0xFF)<<0)
  23. #define MCF_QSPI_QMR_CPHA                    (0x100)
  24. #define MCF_QSPI_QMR_CPOL                    (0x200)
  25. #define MCF_QSPI_QMR_BITS(x)                 (((x)&0xF)<<0xA)
  26. #define MCF_QSPI_QMR_DOHIE                   (0x4000)
  27. #define MCF_QSPI_QMR_MSTR                    (0x8000)
  28. /* Bit definitions and macros for MCF_QSPI_QDLYR */
  29. #define MCF_QSPI_QDLYR_DTL(x)                (((x)&0xFF)<<0)
  30. #define MCF_QSPI_QDLYR_QCD(x)                (((x)&0x7F)<<0x8)
  31. #define MCF_QSPI_QDLYR_SPE                   (0x8000)
  32. /* Bit definitions and macros for MCF_QSPI_QWR */
  33. #define MCF_QSPI_QWR_NEWQP(x)                (((x)&0xF)<<0)
  34. #define MCF_QSPI_QWR_CPTQP(x)                (((x)&0xF)<<0x4)
  35. #define MCF_QSPI_QWR_ENDQP(x)                (((x)&0xF)<<0x8)
  36. #define MCF_QSPI_QWR_CSIV                    (0x1000)
  37. #define MCF_QSPI_QWR_WRTO                    (0x2000)
  38. #define MCF_QSPI_QWR_WREN                    (0x4000)
  39. #define MCF_QSPI_QWR_HALT                    (0x8000)
  40. /* Bit definitions and macros for MCF_QSPI_QIR */
  41. #define MCF_QSPI_QIR_SPIF                    (0x1)
  42. #define MCF_QSPI_QIR_ABRT                    (0x4)
  43. #define MCF_QSPI_QIR_WCEF                    (0x8)
  44. #define MCF_QSPI_QIR_SPIFE                   (0x100)
  45. #define MCF_QSPI_QIR_ABRTE                   (0x400)
  46. #define MCF_QSPI_QIR_WCEFE                   (0x800)
  47. #define MCF_QSPI_QIR_ABRTL                   (0x1000)
  48. #define MCF_QSPI_QIR_ABRTB                   (0x4000)
  49. #define MCF_QSPI_QIR_WCEFB                   (0x8000)
  50. /* Bit definitions and macros for MCF_QSPI_QAR */
  51. #define MCF_QSPI_QAR_ADDR(x)                 (((x)&0x3F)<<0)
  52. #define MCF_QSPI_QAR_TRANS                   (0)
  53. #define MCF_QSPI_QAR_RECV                    (0x10)
  54. #define MCF_QSPI_QAR_CMD                     (0x20)
  55. /* Bit definitions and macros for MCF_QSPI_QDR */
  56. #define MCF_QSPI_QDR_DATA(x)                 (((x)&0xFFFF)<<0)
  57. #define MCF_QSPI_QDR_CONT                    (0x8000)
  58. #define MCF_QSPI_QDR_BITSE                   (0x4000)
  59. #define MCF_QSPI_QDR_DT                      (0x2000)
  60. #define MCF_QSPI_QDR_DSCK                    (0x1000)
  61. #define MCF_QSPI_QDR_QSPI_CS3                (0x800)
  62. #define MCF_QSPI_QDR_QSPI_CS2                (0x400)
  63. #define MCF_QSPI_QDR_QSPI_CS1                (0x200)
  64. #define MCF_QSPI_QDR_QSPI_CS0                (0x100)
  65. #endif /* __MCF52233_QSPI_H__ */