ahci_platform.c 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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 "ahci.h"
  23. #define DRV_NAME "ahci"
  24. static const struct ata_port_info ahci_port_info = {
  25. .flags = AHCI_FLAG_COMMON,
  26. .pio_mask = ATA_PIO4,
  27. .udma_mask = ATA_UDMA6,
  28. .port_ops = &ahci_platform_ops,
  29. };
  30. static struct scsi_host_template ahci_platform_sht = {
  31. AHCI_SHT(DRV_NAME),
  32. };
  33. static int ahci_probe(struct platform_device *pdev)
  34. {
  35. struct device *dev = &pdev->dev;
  36. struct ahci_host_priv *hpriv;
  37. int rc;
  38. hpriv = ahci_platform_get_resources(pdev);
  39. if (IS_ERR(hpriv))
  40. return PTR_ERR(hpriv);
  41. rc = ahci_platform_enable_resources(hpriv);
  42. if (rc)
  43. return rc;
  44. if (of_device_is_compatible(dev->of_node, "hisilicon,hisi-ahci"))
  45. hpriv->flags |= AHCI_HFLAG_NO_FBS | AHCI_HFLAG_NO_NCQ;
  46. rc = ahci_platform_init_host(pdev, hpriv, &ahci_port_info,
  47. &ahci_platform_sht);
  48. if (rc)
  49. goto disable_resources;
  50. return 0;
  51. disable_resources:
  52. ahci_platform_disable_resources(hpriv);
  53. return rc;
  54. }
  55. static SIMPLE_DEV_PM_OPS(ahci_pm_ops, ahci_platform_suspend,
  56. ahci_platform_resume);
  57. static const struct of_device_id ahci_of_match[] = {
  58. { .compatible = "generic-ahci", },
  59. /* Keep the following compatibles for device tree compatibility */
  60. { .compatible = "snps,spear-ahci", },
  61. { .compatible = "snps,exynos5440-ahci", },
  62. { .compatible = "ibm,476gtr-ahci", },
  63. { .compatible = "snps,dwc-ahci", },
  64. { .compatible = "hisilicon,hisi-ahci", },
  65. { .compatible = "fsl,qoriq-ahci", },
  66. {},
  67. };
  68. MODULE_DEVICE_TABLE(of, ahci_of_match);
  69. static struct platform_driver ahci_driver = {
  70. .probe = ahci_probe,
  71. .remove = ata_platform_remove_one,
  72. .driver = {
  73. .name = DRV_NAME,
  74. .of_match_table = ahci_of_match,
  75. .pm = &ahci_pm_ops,
  76. },
  77. };
  78. module_platform_driver(ahci_driver);
  79. MODULE_DESCRIPTION("AHCI SATA platform driver");
  80. MODULE_AUTHOR("Anton Vorontsov <avorontsov@ru.mvista.com>");
  81. MODULE_LICENSE("GPL");
  82. MODULE_ALIAS("platform:ahci");