blob: cf1e0e18a7a98af51d14d6bf4389f8c730751627 [file] [log] [blame]
Anton Vorontsov1c2a49f2010-03-04 20:06:06 +03001/*
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
15#include <linux/kernel.h>
Anton Vorontsov1c2a49f2010-03-04 20:06:06 +030016#include <linux/module.h>
Shiraz Hashim18c25ff2012-03-16 15:49:55 +053017#include <linux/pm.h>
Anton Vorontsov1c2a49f2010-03-04 20:06:06 +030018#include <linux/device.h>
Kefeng Wanga1a205d2014-05-14 14:13:42 +080019#include <linux/of_device.h>
Anton Vorontsov1c2a49f2010-03-04 20:06:06 +030020#include <linux/platform_device.h>
21#include <linux/libata.h>
22#include <linux/ahci_platform.h>
Suthikulpanit, Suravee2051e922015-07-07 01:55:21 +020023#include <linux/acpi.h>
24#include <linux/pci_ids.h>
Anton Vorontsov1c2a49f2010-03-04 20:06:06 +030025#include "ahci.h"
26
Akinobu Mita018d5ef2015-01-29 08:30:29 +090027#define DRV_NAME "ahci"
28
Hans de Goedec093e1d2014-02-22 17:22:54 +010029static const struct ata_port_info ahci_port_info = {
30 .flags = AHCI_FLAG_COMMON,
31 .pio_mask = ATA_PIO4,
32 .udma_mask = ATA_UDMA6,
33 .port_ops = &ahci_platform_ops,
Richard Zhu904c04f2011-09-28 15:41:54 +080034};
35
Suman Tripathicc5f4622018-09-07 08:32:17 -060036static const struct ata_port_info ahci_port_info_nolpm = {
37 .flags = AHCI_FLAG_COMMON | ATA_FLAG_NO_LPM,
38 .pio_mask = ATA_PIO4,
39 .udma_mask = ATA_UDMA6,
40 .port_ops = &ahci_platform_ops,
41};
42
Akinobu Mita018d5ef2015-01-29 08:30:29 +090043static struct scsi_host_template ahci_platform_sht = {
44 AHCI_SHT(DRV_NAME),
45};
46
Hans de Goede23b07d42014-02-22 16:53:34 +010047static int ahci_probe(struct platform_device *pdev)
48{
49 struct device *dev = &pdev->dev;
Hans de Goede23b07d42014-02-22 16:53:34 +010050 struct ahci_host_priv *hpriv;
Suman Tripathicc5f4622018-09-07 08:32:17 -060051 const struct ata_port_info *port;
Hans de Goede23b07d42014-02-22 16:53:34 +010052 int rc;
53
Kunihiko Hayashi2d17f462018-08-22 21:13:03 +090054 hpriv = ahci_platform_get_resources(pdev,
55 AHCI_PLATFORM_GET_RESETS);
Hans de Goede23b07d42014-02-22 16:53:34 +010056 if (IS_ERR(hpriv))
57 return PTR_ERR(hpriv);
58
59 rc = ahci_platform_enable_resources(hpriv);
60 if (rc)
61 return rc;
62
Srinivas Kandagatla17dcc372016-04-01 08:52:57 +010063 of_property_read_u32(dev->of_node,
64 "ports-implemented", &hpriv->force_port_map);
65
Kefeng Wanga1a205d2014-05-14 14:13:42 +080066 if (of_device_is_compatible(dev->of_node, "hisilicon,hisi-ahci"))
Antoine Ténart725c7b52014-07-30 20:13:56 +020067 hpriv->flags |= AHCI_HFLAG_NO_FBS | AHCI_HFLAG_NO_NCQ;
Kefeng Wanga1a205d2014-05-14 14:13:42 +080068
Suman Tripathicc5f4622018-09-07 08:32:17 -060069 port = acpi_device_get_match_data(dev);
70 if (!port)
71 port = &ahci_port_info;
72
73 rc = ahci_platform_init_host(pdev, hpriv, port,
Akinobu Mita018d5ef2015-01-29 08:30:29 +090074 &ahci_platform_sht);
Anton Vorontsov1c2a49f2010-03-04 20:06:06 +030075 if (rc)
Bartlomiej Zolnierkiewicz515d9b2c2014-08-12 18:22:27 +020076 goto disable_resources;
Anton Vorontsov1c2a49f2010-03-04 20:06:06 +030077
78 return 0;
Hans de Goede96a01ba2014-02-22 16:53:33 +010079disable_resources:
80 ahci_platform_disable_resources(hpriv);
Anton Vorontsov1c2a49f2010-03-04 20:06:06 +030081 return rc;
82}
83
Hans de Goede648cb6f2014-02-22 16:53:35 +010084static SIMPLE_DEV_PM_OPS(ahci_pm_ops, ahci_platform_suspend,
85 ahci_platform_resume);
Shiraz Hashim18c25ff2012-03-16 15:49:55 +053086
Rob Herring02aac312010-11-03 21:04:59 -050087static const struct of_device_id ahci_of_match[] = {
Antoine Ténart30f3c732014-07-30 20:13:58 +020088 { .compatible = "generic-ahci", },
89 /* Keep the following compatibles for device tree compatibility */
Viresh Kumar5f098a32012-04-21 17:40:12 +053090 { .compatible = "snps,spear-ahci", },
Alistair Popple2435dcb2013-11-22 13:08:29 +110091 { .compatible = "ibm,476gtr-ahci", },
Roger Quadrosc4311472014-02-22 16:53:38 +010092 { .compatible = "snps,dwc-ahci", },
Kefeng Wanga1a205d2014-05-14 14:13:42 +080093 { .compatible = "hisilicon,hisi-ahci", },
Aleksey Makarova2127e42016-02-11 13:53:08 +000094 { .compatible = "cavium,octeon-7130-ahci", },
Rob Herring02aac312010-11-03 21:04:59 -050095 {},
96};
97MODULE_DEVICE_TABLE(of, ahci_of_match);
98
Suthikulpanit, Suravee2051e922015-07-07 01:55:21 +020099static const struct acpi_device_id ahci_acpi_match[] = {
Suman Tripathicc5f4622018-09-07 08:32:17 -0600100 { "APMC0D33", (unsigned long)&ahci_port_info_nolpm },
Suthikulpanit, Suravee2051e922015-07-07 01:55:21 +0200101 { ACPI_DEVICE_CLASS(PCI_CLASS_STORAGE_SATA_AHCI, 0xffffff) },
102 {},
103};
104MODULE_DEVICE_TABLE(acpi, ahci_acpi_match);
105
Anton Vorontsov1c2a49f2010-03-04 20:06:06 +0300106static struct platform_driver ahci_driver = {
Brian Norris941c77f2012-11-02 00:46:15 -0700107 .probe = ahci_probe,
Brian Norris83291d62012-11-02 00:46:19 -0700108 .remove = ata_platform_remove_one,
Nate Watterson8eede5b2017-07-20 15:26:24 -0400109 .shutdown = ahci_platform_shutdown,
Anton Vorontsov1c2a49f2010-03-04 20:06:06 +0300110 .driver = {
Akinobu Mita018d5ef2015-01-29 08:30:29 +0900111 .name = DRV_NAME,
Rob Herring02aac312010-11-03 21:04:59 -0500112 .of_match_table = ahci_of_match,
Suthikulpanit, Suravee2051e922015-07-07 01:55:21 +0200113 .acpi_match_table = ahci_acpi_match,
Brian Norris17ab5942011-11-18 11:10:10 -0800114 .pm = &ahci_pm_ops,
Anton Vorontsov1c2a49f2010-03-04 20:06:06 +0300115 },
Anton Vorontsov1c2a49f2010-03-04 20:06:06 +0300116};
Brian Norris9a99e472012-11-02 00:46:16 -0700117module_platform_driver(ahci_driver);
Anton Vorontsov1c2a49f2010-03-04 20:06:06 +0300118
119MODULE_DESCRIPTION("AHCI SATA platform driver");
120MODULE_AUTHOR("Anton Vorontsov <avorontsov@ru.mvista.com>");
121MODULE_LICENSE("GPL");
122MODULE_ALIAS("platform:ahci");