ahci_platform.c 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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. static const struct ata_port_info ahci_port_info = {
  24. .flags = AHCI_FLAG_COMMON,
  25. .pio_mask = ATA_PIO4,
  26. .udma_mask = ATA_UDMA6,
  27. .port_ops = &ahci_platform_ops,
  28. };
  29. static int ahci_probe(struct platform_device *pdev)
  30. {
  31. struct device *dev = &pdev->dev;
  32. struct ahci_platform_data *pdata = dev_get_platdata(dev);
  33. struct ahci_host_priv *hpriv;
  34. unsigned long hflags = 0;
  35. int rc;
  36. hpriv = ahci_platform_get_resources(pdev);
  37. if (IS_ERR(hpriv))
  38. return PTR_ERR(hpriv);
  39. rc = ahci_platform_enable_resources(hpriv);
  40. if (rc)
  41. return rc;
  42. /*
  43. * Some platforms might need to prepare for mmio region access,
  44. * which could be done in the following init call. So, the mmio
  45. * region shouldn't be accessed before init (if provided) has
  46. * returned successfully.
  47. */
  48. if (pdata && pdata->init) {
  49. rc = pdata->init(dev, hpriv->mmio);
  50. if (rc)
  51. goto disable_resources;
  52. }
  53. if (of_device_is_compatible(dev->of_node, "hisilicon,hisi-ahci"))
  54. hflags |= AHCI_HFLAG_NO_FBS | AHCI_HFLAG_NO_NCQ;
  55. rc = ahci_platform_init_host(pdev, hpriv, &ahci_port_info,
  56. hflags, 0, 0);
  57. if (rc)
  58. goto pdata_exit;
  59. return 0;
  60. pdata_exit:
  61. if (pdata && pdata->exit)
  62. pdata->exit(dev);
  63. disable_resources:
  64. ahci_platform_disable_resources(hpriv);
  65. return rc;
  66. }
  67. static SIMPLE_DEV_PM_OPS(ahci_pm_ops, ahci_platform_suspend,
  68. ahci_platform_resume);
  69. static const struct of_device_id ahci_of_match[] = {
  70. { .compatible = "snps,spear-ahci", },
  71. { .compatible = "snps,exynos5440-ahci", },
  72. { .compatible = "ibm,476gtr-ahci", },
  73. { .compatible = "snps,dwc-ahci", },
  74. { .compatible = "hisilicon,hisi-ahci", },
  75. {},
  76. };
  77. MODULE_DEVICE_TABLE(of, ahci_of_match);
  78. static struct platform_driver ahci_driver = {
  79. .probe = ahci_probe,
  80. .remove = ata_platform_remove_one,
  81. .driver = {
  82. .name = "ahci",
  83. .owner = THIS_MODULE,
  84. .of_match_table = ahci_of_match,
  85. .pm = &ahci_pm_ops,
  86. },
  87. };
  88. module_platform_driver(ahci_driver);
  89. MODULE_DESCRIPTION("AHCI SATA platform driver");
  90. MODULE_AUTHOR("Anton Vorontsov <avorontsov@ru.mvista.com>");
  91. MODULE_LICENSE("GPL");
  92. MODULE_ALIAS("platform:ahci");