spi_flash.h 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. /*
  2. * Copyright (c) 2017 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef __SPI_FLASH_H__
  7. #define __SPI_FLASH_H__
  8. #include <drivers/flash.h>
  9. #define SPINOR_MAX_3BYTES_ADDRESS (0xFFFFFF)
  10. #define SPI_FLAG_NO_IRQ_LOCK (1 << 0)
  11. #define SPI_FLAG_SPI_MODE0 (1 << 1)
  12. #define SPI_FLAG_SPI_NXIO (1 << 2)
  13. #define SPI_FLAG_NEED_EXIT_CONTINUOUS_READ (1 << 3)
  14. #define SPI_FLAG_WR_4IO (1 << 4)
  15. #define SPI_FLAG_QPI_MODE (1 << 5)
  16. #define SPI_FLAG_NO_NEED_EXIT_CONTINUOUS_READ (1 << 8)
  17. #define SPINOR_FLAG_UNLOCK_IRQ_WAIT_READY (1 << 0)
  18. #define SPINOR_FLAG_4BYTE_ADDRESS_MODE_EN (1 << 1)
  19. #define SPINOR_FLAG_NO_WAIT_READY (1 << 2)
  20. struct acts_spi_reg
  21. {
  22. volatile uint32_t ctrl;
  23. volatile uint32_t status;
  24. volatile uint32_t txdat;
  25. volatile uint32_t rxdat;
  26. volatile uint32_t bc;
  27. volatile uint32_t reserve[4];
  28. volatile uint32_t delaychain;
  29. } ;
  30. struct spi_info
  31. {
  32. /* spi controller address */
  33. unsigned int base;
  34. unsigned int flag;
  35. unsigned short cs_gpio;
  36. unsigned char bus_width;
  37. unsigned char delay_chain;
  38. unsigned int freq_khz;
  39. unsigned int dma_base;
  40. void (*set_cs)(struct spi_info *si, int value);
  41. void (*set_clk)(struct spi_info *si, unsigned int freq_khz);
  42. void (*prepare_hook)(struct spi_info *si);
  43. };
  44. struct spinor_info {
  45. struct spi_info spi;
  46. unsigned int chipid;
  47. unsigned int flag;
  48. };
  49. struct spinor_operation_api {
  50. int (*init)(struct spinor_info *sni);
  51. void (*set_clk)(unsigned int clk_mhz);
  52. unsigned int (*read_chipid) (struct spinor_info *sni);
  53. unsigned int (*read_status) (struct spinor_info *sni, unsigned char cmd);
  54. void (*write_status)(struct spinor_info *sni, unsigned char cmd,
  55. unsigned char *status, int len);
  56. int (*read) (struct spinor_info *sni, unsigned int addr, void *buf, int len);
  57. int (*write) (struct spinor_info *sni, unsigned int addr, const void *buf, int len);
  58. int (*erase) (struct spinor_info *sni, unsigned int addr, int len);
  59. void (*continuous_read_reset) (struct spinor_info *sni);/*new add by lark*/
  60. int (*write_rdm)(struct spinor_info *sni, unsigned int addr, const void *data, int len);
  61. void (*set_addr_mode) (struct spinor_info *sni, unsigned char addr_len);
  62. void (*write_cmd) (struct spinor_info *sni, unsigned char cmd);
  63. int (*transfer)(struct spinor_info *sni, unsigned char cmd, unsigned int addr,
  64. int addr_len, void *buf, int length,
  65. unsigned char dummy_len, unsigned int flag);
  66. };
  67. // brom api address
  68. #define p_spinor_api ((struct spinor_operation_api *)SPINOR_API_ADDR)
  69. /* NOR Flash vendors ID */
  70. #define XSPI_NOR_MANU_ID_MACRONIX 0xc2 /* Macronix (MX) */
  71. /* spinor commands */
  72. #define XSPI_NOR_CMD_READ_STATUS 0x05 /* read status1 */
  73. #define XSPI_NOR_CMD_READ_STATUS2 0x35 /* read status2 */
  74. #define NOR_STATUS2_SUS1 (1<<7)
  75. #define NOR_STATUS2_SUS2 (1<<2)
  76. #define XSPI_NOR_CMD_READ_STATUS3 0x15 /* read status3 */
  77. #define XSPI_NOR_CMD_WRITE_STATUS 0x01 /* write status1 */
  78. #define XSPI_NOR_CMD_WRITE_STATUS2 0x31 /* write status2 */
  79. #define XSPI_NOR_CMD_WRITE_STATUS3 0x11 /* write status3 */
  80. #define XSPI_NOR_CMD_QPI_ENABLE 0x38 /* QPI ENABLE CMD*/
  81. #define XSPI_NOR_CMD_QPI_DISABLE 0xFF /* QPI DISABLE CMD*/
  82. #define XSPI_NOR_CMD_SETPARA_QPI 0xC0 /* set param in qpi mode*/
  83. #define SPI_FLAG_SPI_4XIO (1 << 2)
  84. //#define SPI_FLAG_USE_MIO_ADDR_DATA (1<<12)
  85. struct spi_flash_acts_config {
  86. #if IS_ENABLED(CONFIG_FLASH_PAGE_LAYOUT)
  87. struct flash_pages_layout pages_layout;
  88. #endif
  89. uint32_t chip_size;
  90. uint32_t page_size;
  91. };
  92. #define DEV_CFG(dev) \
  93. ((const struct spi_flash_acts_config *const)(dev)->config)
  94. #define DEV_DATA(dev) \
  95. ((struct spinor_info *)(dev)->data)
  96. #define SPI_CTL(base) (base+0x0000)
  97. #define SPI_STA(base) (base+0x0004)
  98. #define SPI_TXDAT(base) (base+0x0008)
  99. #define SPI_RXDAT(base) (base+0x000c)
  100. #define SPI_BC(base) (base+0x0010)
  101. #define SPI_STA_READY (0x1 << 8)
  102. #ifdef CONFIG_SPI_NOR_FLASH_DRV_EXT
  103. extern const struct spinor_operation_api spinor_4b_addr_op_api;
  104. const struct spinor_operation_api *spi3nor_get_api(void);
  105. int spinor_erase_security(struct spinor_info *sni, unsigned int addr);
  106. int spinor_write_security(struct spinor_info *sni, unsigned int addr, const void *data, int len);
  107. int spinor_read_security(struct spinor_info *sni, unsigned int addr, void *data, int len);
  108. int spinor_read_uid(struct spinor_info *sni, void *data, int len);
  109. void spinor_test_uid_securty(const struct device *dev);
  110. #endif
  111. #ifdef CONFIG_NOR_CODE_IN_RAM
  112. void spinor_resume_finished(struct spinor_info *sni);
  113. #endif
  114. void spi0_nor_xip_lock(void);
  115. void spi0_nor_xip_unlock(void);
  116. #endif /* __SPI_FLASH_H__ */