r852.h 5.2 KB

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