pata_rb532_cf.c 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284
  1. /*
  2. * A low-level PATA driver to handle a Compact Flash connected on the
  3. * Mikrotik's RouterBoard 532 board.
  4. *
  5. * Copyright (C) 2007 Gabor Juhos <juhosg at openwrt.org>
  6. * Copyright (C) 2008 Florian Fainelli <florian@openwrt.org>
  7. *
  8. * This file was based on: drivers/ata/pata_ixp4xx_cf.c
  9. * Copyright (C) 2006-07 Tower Technologies
  10. * Author: Alessandro Zummo <a.zummo@towertech.it>
  11. *
  12. * Also was based on the driver for Linux 2.4.xx published by Mikrotik for
  13. * their RouterBoard 1xx and 5xx series devices. The original Mikrotik code
  14. * seems not to have a license.
  15. *
  16. * This program is free software; you can redistribute it and/or modify
  17. * it under the terms of the GNU General Public License version 2 as
  18. * published by the Free Software Foundation.
  19. *
  20. */
  21. #include <linux/kernel.h>
  22. #include <linux/module.h>
  23. #include <linux/platform_device.h>
  24. #include <linux/io.h>
  25. #include <linux/interrupt.h>
  26. #include <linux/irq.h>
  27. #include <linux/libata.h>
  28. #include <scsi/scsi_host.h>
  29. #include <asm/gpio.h>
  30. #define DRV_NAME "pata-rb532-cf"
  31. #define DRV_VERSION "0.1.0"
  32. #define DRV_DESC "PATA driver for RouterBOARD 532 Compact Flash"
  33. #define RB500_CF_MAXPORTS 1
  34. #define RB500_CF_IO_DELAY 400
  35. #define RB500_CF_REG_BASE 0x0800
  36. #define RB500_CF_REG_ERR 0x080D
  37. #define RB500_CF_REG_CTRL 0x080E
  38. /* 32bit buffered data register offset */
  39. #define RB500_CF_REG_DBUF32 0x0C00
  40. struct rb532_cf_info {
  41. void __iomem *iobase;
  42. unsigned int gpio_line;
  43. int frozen;
  44. unsigned int irq;
  45. };
  46. /* ------------------------------------------------------------------------ */
  47. static inline void rb532_pata_finish_io(struct ata_port *ap)
  48. {
  49. struct ata_host *ah = ap->host;
  50. struct rb532_cf_info *info = ah->private_data;
  51. /* FIXME: Keep previous delay. If this is merely a fence then
  52. ata_sff_sync might be sufficient. */
  53. ata_sff_dma_pause(ap);
  54. ndelay(RB500_CF_IO_DELAY);
  55. set_irq_type(info->irq, IRQ_TYPE_LEVEL_HIGH);
  56. }
  57. static void rb532_pata_exec_command(struct ata_port *ap,
  58. const struct ata_taskfile *tf)
  59. {
  60. writeb(tf->command, ap->ioaddr.command_addr);
  61. rb532_pata_finish_io(ap);
  62. }
  63. static unsigned int rb532_pata_data_xfer(struct ata_device *adev, unsigned char *buf,
  64. unsigned int buflen, int write_data)
  65. {
  66. struct ata_port *ap = adev->link->ap;
  67. void __iomem *ioaddr = ap->ioaddr.data_addr;
  68. int retlen = buflen;
  69. if (write_data) {
  70. for (; buflen > 0; buflen--, buf++)
  71. writeb(*buf, ioaddr);
  72. } else {
  73. for (; buflen > 0; buflen--, buf++)
  74. *buf = readb(ioaddr);
  75. }
  76. rb532_pata_finish_io(adev->link->ap);
  77. return retlen;
  78. }
  79. static void rb532_pata_freeze(struct ata_port *ap)
  80. {
  81. struct rb532_cf_info *info = ap->host->private_data;
  82. info->frozen = 1;
  83. }
  84. static void rb532_pata_thaw(struct ata_port *ap)
  85. {
  86. struct rb532_cf_info *info = ap->host->private_data;
  87. info->frozen = 0;
  88. }
  89. static irqreturn_t rb532_pata_irq_handler(int irq, void *dev_instance)
  90. {
  91. struct ata_host *ah = dev_instance;
  92. struct rb532_cf_info *info = ah->private_data;
  93. if (gpio_get_value(info->gpio_line)) {
  94. set_irq_type(info->irq, IRQ_TYPE_LEVEL_LOW);
  95. if (!info->frozen)
  96. ata_sff_interrupt(info->irq, dev_instance);
  97. } else {
  98. set_irq_type(info->irq, IRQ_TYPE_LEVEL_HIGH);
  99. }
  100. return IRQ_HANDLED;
  101. }
  102. static struct ata_port_operations rb532_pata_port_ops = {
  103. .inherits = &ata_sff_port_ops,
  104. .sff_exec_command = rb532_pata_exec_command,
  105. .sff_data_xfer = rb532_pata_data_xfer,
  106. .freeze = rb532_pata_freeze,
  107. .thaw = rb532_pata_thaw,
  108. };
  109. /* ------------------------------------------------------------------------ */
  110. static struct scsi_host_template rb532_pata_sht = {
  111. ATA_PIO_SHT(DRV_NAME),
  112. };
  113. /* ------------------------------------------------------------------------ */
  114. static void rb532_pata_setup_ports(struct ata_host *ah)
  115. {
  116. struct rb532_cf_info *info = ah->private_data;
  117. struct ata_port *ap;
  118. ap = ah->ports[0];
  119. ap->ops = &rb532_pata_port_ops;
  120. ap->pio_mask = 0x1f; /* PIO4 */
  121. ap->flags = ATA_FLAG_NO_LEGACY | ATA_FLAG_MMIO;
  122. ap->ioaddr.cmd_addr = info->iobase + RB500_CF_REG_BASE;
  123. ap->ioaddr.ctl_addr = info->iobase + RB500_CF_REG_CTRL;
  124. ap->ioaddr.altstatus_addr = info->iobase + RB500_CF_REG_CTRL;
  125. ata_sff_std_ports(&ap->ioaddr);
  126. ap->ioaddr.data_addr = info->iobase + RB500_CF_REG_DBUF32;
  127. ap->ioaddr.error_addr = info->iobase + RB500_CF_REG_ERR;
  128. }
  129. static __devinit int rb532_pata_driver_probe(struct platform_device *pdev)
  130. {
  131. unsigned int irq;
  132. int gpio;
  133. struct resource *res;
  134. struct ata_host *ah;
  135. struct rb532_cf_info *info;
  136. int ret;
  137. res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
  138. if (!res) {
  139. dev_err(&pdev->dev, "no IOMEM resource found\n");
  140. return -EINVAL;
  141. }
  142. irq = platform_get_irq(pdev, 0);
  143. if (irq <= 0) {
  144. dev_err(&pdev->dev, "no IRQ resource found\n");
  145. return -ENOENT;
  146. }
  147. gpio = irq_to_gpio(irq);
  148. if (gpio < 0) {
  149. dev_err(&pdev->dev, "no GPIO found for irq%d\n", irq);
  150. return -ENOENT;
  151. }
  152. ret = gpio_request(gpio, DRV_NAME);
  153. if (ret) {
  154. dev_err(&pdev->dev, "GPIO request failed\n");
  155. return ret;
  156. }
  157. /* allocate host */
  158. ah = ata_host_alloc(&pdev->dev, RB500_CF_MAXPORTS);
  159. if (!ah)
  160. return -ENOMEM;
  161. platform_set_drvdata(pdev, ah);
  162. info = devm_kzalloc(&pdev->dev, sizeof(*info), GFP_KERNEL);
  163. if (!info)
  164. return -ENOMEM;
  165. ah->private_data = info;
  166. info->gpio_line = gpio;
  167. info->irq = irq;
  168. info->iobase = devm_ioremap_nocache(&pdev->dev, res->start,
  169. res->end - res->start + 1);
  170. if (!info->iobase)
  171. return -ENOMEM;
  172. ret = gpio_direction_input(gpio);
  173. if (ret) {
  174. dev_err(&pdev->dev, "unable to set GPIO direction, err=%d\n",
  175. ret);
  176. goto err_free_gpio;
  177. }
  178. rb532_pata_setup_ports(ah);
  179. ret = ata_host_activate(ah, irq, rb532_pata_irq_handler,
  180. IRQF_TRIGGER_LOW, &rb532_pata_sht);
  181. if (ret)
  182. goto err_free_gpio;
  183. return 0;
  184. err_free_gpio:
  185. gpio_free(gpio);
  186. return ret;
  187. }
  188. static __devexit int rb532_pata_driver_remove(struct platform_device *pdev)
  189. {
  190. struct ata_host *ah = platform_get_drvdata(pdev);
  191. struct rb532_cf_info *info = ah->private_data;
  192. ata_host_detach(ah);
  193. gpio_free(info->gpio_line);
  194. return 0;
  195. }
  196. /* work with hotplug and coldplug */
  197. MODULE_ALIAS("platform:" DRV_NAME);
  198. static struct platform_driver rb532_pata_platform_driver = {
  199. .probe = rb532_pata_driver_probe,
  200. .remove = __devexit_p(rb532_pata_driver_remove),
  201. .driver = {
  202. .name = DRV_NAME,
  203. .owner = THIS_MODULE,
  204. },
  205. };
  206. /* ------------------------------------------------------------------------ */
  207. #define DRV_INFO DRV_DESC " version " DRV_VERSION
  208. static int __init rb532_pata_module_init(void)
  209. {
  210. printk(KERN_INFO DRV_INFO "\n");
  211. return platform_driver_register(&rb532_pata_platform_driver);
  212. }
  213. static void __exit rb532_pata_module_exit(void)
  214. {
  215. platform_driver_unregister(&rb532_pata_platform_driver);
  216. }
  217. MODULE_AUTHOR("Gabor Juhos <juhosg at openwrt.org>");
  218. MODULE_AUTHOR("Florian Fainelli <florian@openwrt.org>");
  219. MODULE_DESCRIPTION(DRV_DESC);
  220. MODULE_VERSION(DRV_VERSION);
  221. MODULE_LICENSE("GPL");
  222. module_init(rb532_pata_module_init);
  223. module_exit(rb532_pata_module_exit);