r852.h 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright © 2009 - Maxim Levitsky
  4. * driver for Ricoh xD readers
  5. */
  6. #include <linux/pci.h>
  7. #include <linux/completion.h>
  8. #include <linux/workqueue.h>
  9. #include <linux/mtd/rawnand.h>
  10. #include <linux/spinlock.h>
  11. /* nand interface + ecc
  12. byte write/read does one cycle on nand data lines.
  13. dword write/read does 4 cycles
  14. if R852_CTL_ECC_ACCESS is set in R852_CTL, then dword read reads
  15. results of ecc correction, if DMA read was done before.
  16. If write was done two dword reads read generated ecc checksums
  17. */
  18. #define R852_DATALINE 0x00
  19. /* control register */
  20. #define R852_CTL 0x04
  21. #define R852_CTL_COMMAND 0x01 /* send command (#CLE)*/
  22. #define R852_CTL_DATA 0x02 /* read/write data (#ALE)*/
  23. #define R852_CTL_ON 0x04 /* only seem to controls the hd led, */
  24. /* but has to be set on start...*/
  25. #define R852_CTL_RESET 0x08 /* unknown, set only on start once*/
  26. #define R852_CTL_CARDENABLE 0x10 /* probably (#CE) - always set*/
  27. #define R852_CTL_ECC_ENABLE 0x20 /* enable ecc engine */
  28. #define R852_CTL_ECC_ACCESS 0x40 /* read/write ecc via reg #0*/
  29. #define R852_CTL_WRITE 0x80 /* set when performing writes (#WP) */
  30. /* card detection status */
  31. #define R852_CARD_STA 0x05
  32. #define R852_CARD_STA_CD 0x01 /* state of #CD line, same as 0x04 */
  33. #define R852_CARD_STA_RO 0x02 /* card is readonly */
  34. #define R852_CARD_STA_PRESENT 0x04 /* card is present (#CD) */
  35. #define R852_CARD_STA_ABSENT 0x08 /* card is absent */
  36. #define R852_CARD_STA_BUSY 0x80 /* card is busy - (#R/B) */
  37. /* card detection irq status & enable*/
  38. #define R852_CARD_IRQ_STA 0x06 /* IRQ status */
  39. #define R852_CARD_IRQ_ENABLE 0x07 /* IRQ enable */
  40. #define R852_CARD_IRQ_CD 0x01 /* fire when #CD lights, same as 0x04*/
  41. #define R852_CARD_IRQ_REMOVE 0x04 /* detect card removal */
  42. #define R852_CARD_IRQ_INSERT 0x08 /* detect card insert */
  43. #define R852_CARD_IRQ_UNK1 0x10 /* unknown */
  44. #define R852_CARD_IRQ_GENABLE 0x80 /* general enable */
  45. #define R852_CARD_IRQ_MASK 0x1D
  46. /* hardware enable */
  47. #define R852_HW 0x08
  48. #define R852_HW_ENABLED 0x01 /* hw enabled */
  49. #define R852_HW_UNKNOWN 0x80
  50. /* dma capabilities */
  51. #define R852_DMA_CAP 0x09
  52. #define R852_SMBIT 0x20 /* if set with bit #6 or bit #7, then */
  53. /* hw is smartmedia */
  54. #define R852_DMA1 0x40 /* if set w/bit #7, dma is supported */
  55. #define R852_DMA2 0x80 /* if set w/bit #6, dma is supported */
  56. /* physical DMA address - 32 bit value*/
  57. #define R852_DMA_ADDR 0x0C
  58. /* dma settings */
  59. #define R852_DMA_SETTINGS 0x10
  60. #define R852_DMA_MEMORY 0x01 /* (memory <-> internal hw buffer) */
  61. #define R852_DMA_READ 0x02 /* 0 = write, 1 = read */
  62. #define R852_DMA_INTERNAL 0x04 /* (internal hw buffer <-> card) */
  63. /* dma IRQ status */
  64. #define R852_DMA_IRQ_STA 0x14
  65. /* dma IRQ enable */
  66. #define R852_DMA_IRQ_ENABLE 0x18
  67. #define R852_DMA_IRQ_MEMORY 0x01 /* (memory <-> internal hw buffer) */
  68. #define R852_DMA_IRQ_ERROR 0x02 /* error did happen */
  69. #define R852_DMA_IRQ_INTERNAL 0x04 /* (internal hw buffer <-> card) */
  70. #define R852_DMA_IRQ_MASK 0x07 /* mask of all IRQ bits */
  71. /* ECC syndrome format - read from reg #0 will return two copies of these for
  72. each half of the page.
  73. first byte is error byte location, and second, bit location + flags */
  74. #define R852_ECC_ERR_BIT_MSK 0x07 /* error bit location */
  75. #define R852_ECC_CORRECT 0x10 /* no errors - (guessed) */
  76. #define R852_ECC_CORRECTABLE 0x20 /* correctable error exist */
  77. #define R852_ECC_FAIL 0x40 /* non correctable error detected */
  78. #define R852_DMA_LEN 512
  79. #define DMA_INTERNAL 0
  80. #define DMA_MEMORY 1
  81. struct r852_device {
  82. struct nand_controller controller;
  83. void __iomem *mmio; /* mmio */
  84. struct nand_chip *chip; /* nand chip backpointer */
  85. struct pci_dev *pci_dev; /* pci backpointer */
  86. /* dma area */
  87. dma_addr_t phys_dma_addr; /* bus address of buffer*/
  88. struct completion dma_done; /* data transfer done */
  89. dma_addr_t phys_bounce_buffer; /* bus address of bounce buffer */
  90. uint8_t *bounce_buffer; /* virtual address of bounce buffer */
  91. int dma_dir; /* 1 = read, 0 = write */
  92. int dma_stage; /* 0 - idle, 1 - first step,
  93. 2 - second step */
  94. int dma_state; /* 0 = internal, 1 = memory */
  95. int dma_error; /* dma errors */
  96. int dma_usable; /* is it possible to use dma */
  97. /* card status area */
  98. struct delayed_work card_detect_work;
  99. struct workqueue_struct *card_workqueue;
  100. int card_registered; /* card registered with mtd */
  101. int card_detected; /* card detected in slot */
  102. int card_unstable; /* whenever the card is inserted,
  103. is not known yet */
  104. int readonly; /* card is readonly */
  105. int sm; /* Is card smartmedia */
  106. /* interrupt handling */
  107. spinlock_t irqlock; /* IRQ protecting lock */
  108. int irq; /* irq num */
  109. /* misc */
  110. void *tmp_buffer; /* temporary buffer */
  111. uint8_t ctlreg; /* cached contents of control reg */
  112. };
  113. #define dbg(format, ...) \
  114. if (debug) \
  115. pr_debug(format "\n", ## __VA_ARGS__)
  116. #define dbg_verbose(format, ...) \
  117. if (debug > 1) \
  118. pr_debug(format "\n", ## __VA_ARGS__)
  119. #define message(format, ...) \
  120. pr_info(format "\n", ## __VA_ARGS__)