1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * AHCI SATA platform driver
5 * Copyright 2004-2005 Red Hat, Inc.
6 * Jeff Garzik <jgarzik@pobox.com>
7 * Copyright 2010 MontaVista Software, LLC.
8 * Anton Vorontsov <avorontsov@ru.mvista.com>
11 #include <linux/kernel.h>
12 #include <linux/mod_devicetable.h>
13 #include <linux/module.h>
15 #include <linux/device.h>
16 #include <linux/platform_device.h>
17 #include <linux/property.h>
18 #include <linux/libata.h>
19 #include <linux/ahci_platform.h>
20 #include <linux/pci_ids.h>
23 #define DRV_NAME "ahci"
25 static const struct ata_port_info ahci_port_info = {
26 .flags = AHCI_FLAG_COMMON,
28 .udma_mask = ATA_UDMA6,
29 .port_ops = &ahci_platform_ops,
32 static const struct ata_port_info ahci_port_info_nolpm = {
33 .flags = AHCI_FLAG_COMMON | ATA_FLAG_NO_LPM,
35 .udma_mask = ATA_UDMA6,
36 .port_ops = &ahci_platform_ops,
39 static const struct scsi_host_template ahci_platform_sht = {
43 static int ahci_probe(struct platform_device *pdev)
45 struct device *dev = &pdev->dev;
46 struct ahci_host_priv *hpriv;
47 const struct ata_port_info *port;
50 hpriv = ahci_platform_get_resources(pdev,
51 AHCI_PLATFORM_GET_RESETS);
53 return PTR_ERR(hpriv);
55 rc = ahci_platform_enable_resources(hpriv);
59 if (device_is_compatible(dev, "hisilicon,hisi-ahci"))
60 hpriv->flags |= AHCI_HFLAG_NO_FBS | AHCI_HFLAG_NO_NCQ;
62 port = device_get_match_data(dev);
64 port = &ahci_port_info;
66 rc = ahci_platform_init_host(pdev, hpriv, port,
69 goto disable_resources;
73 ahci_platform_disable_resources(hpriv);
77 static SIMPLE_DEV_PM_OPS(ahci_pm_ops, ahci_platform_suspend,
78 ahci_platform_resume);
80 static const struct of_device_id ahci_of_match[] = {
81 { .compatible = "generic-ahci", },
82 /* Keep the following compatibles for device tree compatibility */
83 { .compatible = "ibm,476gtr-ahci", },
84 { .compatible = "hisilicon,hisi-ahci", },
85 { .compatible = "cavium,octeon-7130-ahci", },
88 MODULE_DEVICE_TABLE(of, ahci_of_match);
90 static const struct acpi_device_id ahci_acpi_match[] = {
91 { "APMC0D33", (unsigned long)&ahci_port_info_nolpm },
92 { ACPI_DEVICE_CLASS(PCI_CLASS_STORAGE_SATA_AHCI, 0xffffff) },
95 MODULE_DEVICE_TABLE(acpi, ahci_acpi_match);
97 static struct platform_driver ahci_driver = {
99 .remove_new = ata_platform_remove_one,
100 .shutdown = ahci_platform_shutdown,
103 .of_match_table = ahci_of_match,
104 .acpi_match_table = ahci_acpi_match,
108 module_platform_driver(ahci_driver);
110 MODULE_DESCRIPTION("AHCI SATA platform driver");
111 MODULE_AUTHOR("Anton Vorontsov <avorontsov@ru.mvista.com>");
112 MODULE_LICENSE("GPL");
113 MODULE_ALIAS("platform:ahci");