pata_rb532_cf.c 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  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/gfp.h>
  22. #include <linux/kernel.h>
  23. #include <linux/module.h>
  24. #include <linux/platform_device.h>
  25. #include <linux/io.h>
  26. #include <linux/interrupt.h>
  27. #include <linux/irq.h>
  28. #include <linux/libata.h>
  29. #include <scsi/scsi_host.h>
  30. #include <asm/gpio.h>
  31. #define DRV_NAME "pata-rb532-cf"
  32. #define DRV_VERSION "0.1.0"
  33. #define DRV_DESC "PATA driver for RouterBOARD 532 Compact Flash"
  34. #define RB500_CF_MAXPORTS 1
  35. #define RB500_CF_IO_DELAY 400
  36. #define RB500_CF_REG_BASE 0x0800
  37. #define RB500_CF_REG_ERR 0x080D
  38. #define RB500_CF_REG_CTRL 0x080E
  39. /* 32bit buffered data register offset */
  40. #define RB500_CF_REG_DBUF32 0x0C00
  41. struct rb532_cf_info {
  42. void __iomem *iobase;
  43. unsigned int gpio_line;
  44. unsigned int irq;
  45. };
  46. /* ------------------------------------------------------------------------ */
  47. static irqreturn_t rb532_pata_irq_handler(int irq, void *dev_instance)
  48. {
  49. struct ata_host *ah = dev_instance;
  50. struct rb532_cf_info *info = ah->private_data;
  51. if (gpio_get_value(info->gpio_line)) {
  52. set_irq_type(info->irq, IRQ_TYPE_LEVEL_LOW);
  53. ata_sff_interrupt(info->irq, dev_instance);
  54. } else {
  55. set_irq_type(info->irq, IRQ_TYPE_LEVEL_HIGH);
  56. }
  57. return IRQ_HANDLED;
  58. }
  59. static struct ata_port_operations rb532_pata_port_ops = {
  60. .inherits = &ata_sff_port_ops,
  61. .sff_data_xfer = ata_sff_data_xfer32,
  62. };
  63. /* ------------------------------------------------------------------------ */
  64. static struct scsi_host_template rb532_pata_sht = {
  65. ATA_PIO_SHT(DRV_NAME),
  66. };
  67. /* ------------------------------------------------------------------------ */
  68. static void rb532_pata_setup_ports(struct ata_host *ah)
  69. {
  70. struct rb532_cf_info *info = ah->private_data;
  71. struct ata_port *ap;
  72. ap = ah->ports[0];
  73. ap->ops = &rb532_pata_port_ops;
  74. ap->pio_mask = ATA_PIO4;
  75. ap->flags = ATA_FLAG_NO_LEGACY | ATA_FLAG_MMIO;
  76. ap->ioaddr.cmd_addr = info->iobase + RB500_CF_REG_BASE;
  77. ap->ioaddr.ctl_addr = info->iobase + RB500_CF_REG_CTRL;
  78. ap->ioaddr.altstatus_addr = info->iobase + RB500_CF_REG_CTRL;
  79. ata_sff_std_ports(&ap->ioaddr);
  80. ap->ioaddr.data_addr = info->iobase + RB500_CF_REG_DBUF32;
  81. ap->ioaddr.error_addr = info->iobase + RB500_CF_REG_ERR;
  82. }
  83. static __devinit int rb532_pata_driver_probe(struct platform_device *pdev)
  84. {
  85. int irq;
  86. int gpio;
  87. struct resource *res;
  88. struct ata_host *ah;
  89. struct rb532_cf_info *info;
  90. int ret;
  91. res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
  92. if (!res) {
  93. dev_err(&pdev->dev, "no IOMEM resource found\n");
  94. return -EINVAL;
  95. }
  96. irq = platform_get_irq(pdev, 0);
  97. if (irq <= 0) {
  98. dev_err(&pdev->dev, "no IRQ resource found\n");
  99. return -ENOENT;
  100. }
  101. gpio = irq_to_gpio(irq);
  102. if (gpio < 0) {
  103. dev_err(&pdev->dev, "no GPIO found for irq%d\n", irq);
  104. return -ENOENT;
  105. }
  106. ret = gpio_request(gpio, DRV_NAME);
  107. if (ret) {
  108. dev_err(&pdev->dev, "GPIO request failed\n");
  109. return ret;
  110. }
  111. /* allocate host */
  112. ah = ata_host_alloc(&pdev->dev, RB500_CF_MAXPORTS);
  113. if (!ah)
  114. return -ENOMEM;
  115. platform_set_drvdata(pdev, ah);
  116. info = devm_kzalloc(&pdev->dev, sizeof(*info), GFP_KERNEL);
  117. if (!info)
  118. return -ENOMEM;
  119. ah->private_data = info;
  120. info->gpio_line = gpio;
  121. info->irq = irq;
  122. info->iobase = devm_ioremap_nocache(&pdev->dev, res->start,
  123. resource_size(res));
  124. if (!info->iobase)
  125. return -ENOMEM;
  126. ret = gpio_direction_input(gpio);
  127. if (ret) {
  128. dev_err(&pdev->dev, "unable to set GPIO direction, err=%d\n",
  129. ret);
  130. goto err_free_gpio;
  131. }
  132. rb532_pata_setup_ports(ah);
  133. ret = ata_host_activate(ah, irq, rb532_pata_irq_handler,
  134. IRQF_TRIGGER_LOW, &rb532_pata_sht);
  135. if (ret)
  136. goto err_free_gpio;
  137. return 0;
  138. err_free_gpio:
  139. gpio_free(gpio);
  140. return ret;
  141. }
  142. static __devexit int rb532_pata_driver_remove(struct platform_device *pdev)
  143. {
  144. struct ata_host *ah = platform_get_drvdata(pdev);
  145. struct rb532_cf_info *info = ah->private_data;
  146. ata_host_detach(ah);
  147. gpio_free(info->gpio_line);
  148. return 0;
  149. }
  150. /* work with hotplug and coldplug */
  151. MODULE_ALIAS("platform:" DRV_NAME);
  152. static struct platform_driver rb532_pata_platform_driver = {
  153. .probe = rb532_pata_driver_probe,
  154. .remove = __devexit_p(rb532_pata_driver_remove),
  155. .driver = {
  156. .name = DRV_NAME,
  157. .owner = THIS_MODULE,
  158. },
  159. };
  160. /* ------------------------------------------------------------------------ */
  161. #define DRV_INFO DRV_DESC " version " DRV_VERSION
  162. static int __init rb532_pata_module_init(void)
  163. {
  164. printk(KERN_INFO DRV_INFO "\n");
  165. return platform_driver_register(&rb532_pata_platform_driver);
  166. }
  167. static void __exit rb532_pata_module_exit(void)
  168. {
  169. platform_driver_unregister(&rb532_pata_platform_driver);
  170. }
  171. MODULE_AUTHOR("Gabor Juhos <juhosg at openwrt.org>");
  172. MODULE_AUTHOR("Florian Fainelli <florian@openwrt.org>");
  173. MODULE_DESCRIPTION(DRV_DESC);
  174. MODULE_VERSION(DRV_VERSION);
  175. MODULE_LICENSE("GPL");
  176. module_init(rb532_pata_module_init);
  177. module_exit(rb532_pata_module_exit);