pata_rb532_cf.c 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  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/gpio.h>
  29. #include <linux/libata.h>
  30. #include <scsi/scsi_host.h>
  31. #include <asm/mach-rc32434/rb.h>
  32. #define DRV_NAME "pata-rb532-cf"
  33. #define DRV_VERSION "0.1.0"
  34. #define DRV_DESC "PATA driver for RouterBOARD 532 Compact Flash"
  35. #define RB500_CF_MAXPORTS 1
  36. #define RB500_CF_IO_DELAY 400
  37. #define RB500_CF_REG_BASE 0x0800
  38. #define RB500_CF_REG_ERR 0x080D
  39. #define RB500_CF_REG_CTRL 0x080E
  40. /* 32bit buffered data register offset */
  41. #define RB500_CF_REG_DBUF32 0x0C00
  42. struct rb532_cf_info {
  43. void __iomem *iobase;
  44. unsigned int gpio_line;
  45. unsigned int irq;
  46. };
  47. /* ------------------------------------------------------------------------ */
  48. static irqreturn_t rb532_pata_irq_handler(int irq, void *dev_instance)
  49. {
  50. struct ata_host *ah = dev_instance;
  51. struct rb532_cf_info *info = ah->private_data;
  52. if (gpio_get_value(info->gpio_line)) {
  53. irq_set_irq_type(info->irq, IRQ_TYPE_LEVEL_LOW);
  54. ata_sff_interrupt(info->irq, dev_instance);
  55. } else {
  56. irq_set_irq_type(info->irq, IRQ_TYPE_LEVEL_HIGH);
  57. }
  58. return IRQ_HANDLED;
  59. }
  60. static struct ata_port_operations rb532_pata_port_ops = {
  61. .inherits = &ata_sff_port_ops,
  62. .sff_data_xfer = ata_sff_data_xfer32,
  63. };
  64. /* ------------------------------------------------------------------------ */
  65. static struct scsi_host_template rb532_pata_sht = {
  66. ATA_PIO_SHT(DRV_NAME),
  67. };
  68. /* ------------------------------------------------------------------------ */
  69. static void rb532_pata_setup_ports(struct ata_host *ah)
  70. {
  71. struct rb532_cf_info *info = ah->private_data;
  72. struct ata_port *ap;
  73. ap = ah->ports[0];
  74. ap->ops = &rb532_pata_port_ops;
  75. ap->pio_mask = ATA_PIO4;
  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 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 cf_device *pdata;
  90. struct rb532_cf_info *info;
  91. int ret;
  92. res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
  93. if (!res) {
  94. dev_err(&pdev->dev, "no IOMEM resource found\n");
  95. return -EINVAL;
  96. }
  97. irq = platform_get_irq(pdev, 0);
  98. if (irq <= 0) {
  99. dev_err(&pdev->dev, "no IRQ resource found\n");
  100. return -ENOENT;
  101. }
  102. pdata = dev_get_platdata(&pdev->dev);
  103. if (!pdata) {
  104. dev_err(&pdev->dev, "no platform data specified\n");
  105. return -EINVAL;
  106. }
  107. gpio = pdata->gpio_pin;
  108. if (gpio < 0) {
  109. dev_err(&pdev->dev, "no GPIO found for irq%d\n", irq);
  110. return -ENOENT;
  111. }
  112. ret = gpio_request(gpio, DRV_NAME);
  113. if (ret) {
  114. dev_err(&pdev->dev, "GPIO request failed\n");
  115. return ret;
  116. }
  117. /* allocate host */
  118. ah = ata_host_alloc(&pdev->dev, RB500_CF_MAXPORTS);
  119. if (!ah)
  120. return -ENOMEM;
  121. platform_set_drvdata(pdev, ah);
  122. info = devm_kzalloc(&pdev->dev, sizeof(*info), GFP_KERNEL);
  123. if (!info)
  124. return -ENOMEM;
  125. ah->private_data = info;
  126. info->gpio_line = gpio;
  127. info->irq = irq;
  128. info->iobase = devm_ioremap_nocache(&pdev->dev, res->start,
  129. resource_size(res));
  130. if (!info->iobase)
  131. return -ENOMEM;
  132. ret = gpio_direction_input(gpio);
  133. if (ret) {
  134. dev_err(&pdev->dev, "unable to set GPIO direction, err=%d\n",
  135. ret);
  136. goto err_free_gpio;
  137. }
  138. rb532_pata_setup_ports(ah);
  139. ret = ata_host_activate(ah, irq, rb532_pata_irq_handler,
  140. IRQF_TRIGGER_LOW, &rb532_pata_sht);
  141. if (ret)
  142. goto err_free_gpio;
  143. return 0;
  144. err_free_gpio:
  145. gpio_free(gpio);
  146. return ret;
  147. }
  148. static int rb532_pata_driver_remove(struct platform_device *pdev)
  149. {
  150. struct ata_host *ah = platform_get_drvdata(pdev);
  151. struct rb532_cf_info *info = ah->private_data;
  152. ata_host_detach(ah);
  153. gpio_free(info->gpio_line);
  154. return 0;
  155. }
  156. static struct platform_driver rb532_pata_platform_driver = {
  157. .probe = rb532_pata_driver_probe,
  158. .remove = rb532_pata_driver_remove,
  159. .driver = {
  160. .name = DRV_NAME,
  161. },
  162. };
  163. #define DRV_INFO DRV_DESC " version " DRV_VERSION
  164. module_platform_driver(rb532_pata_platform_driver);
  165. MODULE_AUTHOR("Gabor Juhos <juhosg at openwrt.org>");
  166. MODULE_AUTHOR("Florian Fainelli <florian@openwrt.org>");
  167. MODULE_DESCRIPTION(DRV_DESC);
  168. MODULE_VERSION(DRV_VERSION);
  169. MODULE_LICENSE("GPL");
  170. MODULE_ALIAS("platform:" DRV_NAME);