ahci_platform.c 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. /*
  2. * AHCI SATA platform driver
  3. *
  4. * Copyright 2004-2005 Red Hat, Inc.
  5. * Jeff Garzik <jgarzik@pobox.com>
  6. * Copyright 2010 MontaVista Software, LLC.
  7. * Anton Vorontsov <avorontsov@ru.mvista.com>
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License as published by
  11. * the Free Software Foundation; either version 2, or (at your option)
  12. * any later version.
  13. */
  14. #include <linux/kernel.h>
  15. #include <linux/module.h>
  16. #include <linux/pm.h>
  17. #include <linux/device.h>
  18. #include <linux/of_device.h>
  19. #include <linux/platform_device.h>
  20. #include <linux/libata.h>
  21. #include <linux/ahci_platform.h>
  22. #include <linux/acpi.h>
  23. #include <linux/pci_ids.h>
  24. #include "ahci.h"
  25. #define DRV_NAME "ahci"
  26. static const struct ata_port_info ahci_port_info = {
  27. .flags = AHCI_FLAG_COMMON,
  28. .pio_mask = ATA_PIO4,
  29. .udma_mask = ATA_UDMA6,
  30. .port_ops = &ahci_platform_ops,
  31. };
  32. static const struct ata_port_info ahci_port_info_nolpm = {
  33. .flags = AHCI_FLAG_COMMON | ATA_FLAG_NO_LPM,
  34. .pio_mask = ATA_PIO4,
  35. .udma_mask = ATA_UDMA6,
  36. .port_ops = &ahci_platform_ops,
  37. };
  38. static struct scsi_host_template ahci_platform_sht = {
  39. AHCI_SHT(DRV_NAME),
  40. };
  41. static int ahci_probe(struct platform_device *pdev)
  42. {
  43. struct device *dev = &pdev->dev;
  44. struct ahci_host_priv *hpriv;
  45. const struct ata_port_info *port;
  46. int rc;
  47. hpriv = ahci_platform_get_resources(pdev,
  48. AHCI_PLATFORM_GET_RESETS);
  49. if (IS_ERR(hpriv))
  50. return PTR_ERR(hpriv);
  51. rc = ahci_platform_enable_resources(hpriv);
  52. if (rc)
  53. return rc;
  54. of_property_read_u32(dev->of_node,
  55. "ports-implemented", &hpriv->force_port_map);
  56. if (of_device_is_compatible(dev->of_node, "hisilicon,hisi-ahci"))
  57. hpriv->flags |= AHCI_HFLAG_NO_FBS | AHCI_HFLAG_NO_NCQ;
  58. port = acpi_device_get_match_data(dev);
  59. if (!port)
  60. port = &ahci_port_info;
  61. rc = ahci_platform_init_host(pdev, hpriv, port,
  62. &ahci_platform_sht);
  63. if (rc)
  64. goto disable_resources;
  65. return 0;
  66. disable_resources:
  67. ahci_platform_disable_resources(hpriv);
  68. return rc;
  69. }
  70. static SIMPLE_DEV_PM_OPS(ahci_pm_ops, ahci_platform_suspend,
  71. ahci_platform_resume);
  72. static const struct of_device_id ahci_of_match[] = {
  73. { .compatible = "generic-ahci", },
  74. /* Keep the following compatibles for device tree compatibility */
  75. { .compatible = "snps,spear-ahci", },
  76. { .compatible = "ibm,476gtr-ahci", },
  77. { .compatible = "snps,dwc-ahci", },
  78. { .compatible = "hisilicon,hisi-ahci", },
  79. { .compatible = "cavium,octeon-7130-ahci", },
  80. {},
  81. };
  82. MODULE_DEVICE_TABLE(of, ahci_of_match);
  83. static const struct acpi_device_id ahci_acpi_match[] = {
  84. { "APMC0D33", (unsigned long)&ahci_port_info_nolpm },
  85. { ACPI_DEVICE_CLASS(PCI_CLASS_STORAGE_SATA_AHCI, 0xffffff) },
  86. {},
  87. };
  88. MODULE_DEVICE_TABLE(acpi, ahci_acpi_match);
  89. static struct platform_driver ahci_driver = {
  90. .probe = ahci_probe,
  91. .remove = ata_platform_remove_one,
  92. .shutdown = ahci_platform_shutdown,
  93. .driver = {
  94. .name = DRV_NAME,
  95. .of_match_table = ahci_of_match,
  96. .acpi_match_table = ahci_acpi_match,
  97. .pm = &ahci_pm_ops,
  98. },
  99. };
  100. module_platform_driver(ahci_driver);
  101. MODULE_DESCRIPTION("AHCI SATA platform driver");
  102. MODULE_AUTHOR("Anton Vorontsov <avorontsov@ru.mvista.com>");
  103. MODULE_LICENSE("GPL");
  104. MODULE_ALIAS("platform:ahci");