blob: 3aab2e3d57f3373a787abb126527307ea479046b [file] [log] [blame]
Thomas Gleixner8d7c56d2019-05-20 19:08:10 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Anton Vorontsov1c2a49f2010-03-04 20:06:06 +03002/*
3 * AHCI SATA platform driver
4 *
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>
Anton Vorontsov1c2a49f2010-03-04 20:06:06 +03009 */
10
11#include <linux/kernel.h>
Anton Vorontsov1c2a49f2010-03-04 20:06:06 +030012#include <linux/module.h>
Shiraz Hashim18c25ff2012-03-16 15:49:55 +053013#include <linux/pm.h>
Anton Vorontsov1c2a49f2010-03-04 20:06:06 +030014#include <linux/device.h>
Kefeng Wanga1a205d2014-05-14 14:13:42 +080015#include <linux/of_device.h>
Anton Vorontsov1c2a49f2010-03-04 20:06:06 +030016#include <linux/platform_device.h>
17#include <linux/libata.h>
18#include <linux/ahci_platform.h>
Suthikulpanit, Suravee2051e922015-07-07 01:55:21 +020019#include <linux/acpi.h>
20#include <linux/pci_ids.h>
Anton Vorontsov1c2a49f2010-03-04 20:06:06 +030021#include "ahci.h"
22
Akinobu Mita018d5ef2015-01-29 08:30:29 +090023#define DRV_NAME "ahci"
24
Hans de Goedec093e1d2014-02-22 17:22:54 +010025static const struct ata_port_info ahci_port_info = {
26 .flags = AHCI_FLAG_COMMON,
27 .pio_mask = ATA_PIO4,
28 .udma_mask = ATA_UDMA6,
29 .port_ops = &ahci_platform_ops,
Richard Zhu904c04fe2011-09-28 15:41:54 +080030};
31
Suman Tripathi20bdc372018-09-07 08:32:17 -060032static 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
Akinobu Mita018d5ef2015-01-29 08:30:29 +090039static struct scsi_host_template ahci_platform_sht = {
40 AHCI_SHT(DRV_NAME),
41};
42
Hans de Goede23b07d42014-02-22 16:53:34 +010043static int ahci_probe(struct platform_device *pdev)
44{
45 struct device *dev = &pdev->dev;
Hans de Goede23b07d42014-02-22 16:53:34 +010046 struct ahci_host_priv *hpriv;
Suman Tripathi20bdc372018-09-07 08:32:17 -060047 const struct ata_port_info *port;
Hans de Goede23b07d42014-02-22 16:53:34 +010048 int rc;
49
Kunihiko Hayashi2d17f462018-08-22 21:13:03 +090050 hpriv = ahci_platform_get_resources(pdev,
51 AHCI_PLATFORM_GET_RESETS);
Hans de Goede23b07d42014-02-22 16:53:34 +010052 if (IS_ERR(hpriv))
53 return PTR_ERR(hpriv);
54
55 rc = ahci_platform_enable_resources(hpriv);
56 if (rc)
57 return rc;
58
Srinivas Kandagatla17dcc372016-04-01 08:52:57 +010059 of_property_read_u32(dev->of_node,
60 "ports-implemented", &hpriv->force_port_map);
61
Kefeng Wanga1a205d2014-05-14 14:13:42 +080062 if (of_device_is_compatible(dev->of_node, "hisilicon,hisi-ahci"))
Antoine Ténart725c7b52014-07-30 20:13:56 +020063 hpriv->flags |= AHCI_HFLAG_NO_FBS | AHCI_HFLAG_NO_NCQ;
Kefeng Wanga1a205d2014-05-14 14:13:42 +080064
Suman Tripathi20bdc372018-09-07 08:32:17 -060065 port = acpi_device_get_match_data(dev);
66 if (!port)
67 port = &ahci_port_info;
68
69 rc = ahci_platform_init_host(pdev, hpriv, port,
Akinobu Mita018d5ef2015-01-29 08:30:29 +090070 &ahci_platform_sht);
Anton Vorontsov1c2a49f2010-03-04 20:06:06 +030071 if (rc)
Bartlomiej Zolnierkiewicz515d9b2c2014-08-12 18:22:27 +020072 goto disable_resources;
Anton Vorontsov1c2a49f2010-03-04 20:06:06 +030073
74 return 0;
Hans de Goede96a01ba2014-02-22 16:53:33 +010075disable_resources:
76 ahci_platform_disable_resources(hpriv);
Anton Vorontsov1c2a49f2010-03-04 20:06:06 +030077 return rc;
78}
79
Hans de Goede648cb6f2014-02-22 16:53:35 +010080static SIMPLE_DEV_PM_OPS(ahci_pm_ops, ahci_platform_suspend,
81 ahci_platform_resume);
Shiraz Hashim18c25ff2012-03-16 15:49:55 +053082
Rob Herring02aac312010-11-03 21:04:59 -050083static const struct of_device_id ahci_of_match[] = {
Antoine Ténart30f3c732014-07-30 20:13:58 +020084 { .compatible = "generic-ahci", },
85 /* Keep the following compatibles for device tree compatibility */
Viresh Kumar5f098a32012-04-21 17:40:12 +053086 { .compatible = "snps,spear-ahci", },
Alistair Popple2435dcb2013-11-22 13:08:29 +110087 { .compatible = "ibm,476gtr-ahci", },
Roger Quadrosc4311472014-02-22 16:53:38 +010088 { .compatible = "snps,dwc-ahci", },
Kefeng Wanga1a205d2014-05-14 14:13:42 +080089 { .compatible = "hisilicon,hisi-ahci", },
Aleksey Makarova2127e42016-02-11 13:53:08 +000090 { .compatible = "cavium,octeon-7130-ahci", },
Rob Herring02aac312010-11-03 21:04:59 -050091 {},
92};
93MODULE_DEVICE_TABLE(of, ahci_of_match);
94
Suthikulpanit, Suravee2051e922015-07-07 01:55:21 +020095static const struct acpi_device_id ahci_acpi_match[] = {
Suman Tripathi20bdc372018-09-07 08:32:17 -060096 { "APMC0D33", (unsigned long)&ahci_port_info_nolpm },
Suthikulpanit, Suravee2051e922015-07-07 01:55:21 +020097 { ACPI_DEVICE_CLASS(PCI_CLASS_STORAGE_SATA_AHCI, 0xffffff) },
98 {},
99};
100MODULE_DEVICE_TABLE(acpi, ahci_acpi_match);
101
Anton Vorontsov1c2a49f2010-03-04 20:06:06 +0300102static struct platform_driver ahci_driver = {
Brian Norris941c77f2012-11-02 00:46:15 -0700103 .probe = ahci_probe,
Brian Norris83291d62012-11-02 00:46:19 -0700104 .remove = ata_platform_remove_one,
Nate Watterson8eede5b2017-07-20 15:26:24 -0400105 .shutdown = ahci_platform_shutdown,
Anton Vorontsov1c2a49f2010-03-04 20:06:06 +0300106 .driver = {
Akinobu Mita018d5ef2015-01-29 08:30:29 +0900107 .name = DRV_NAME,
Rob Herring02aac312010-11-03 21:04:59 -0500108 .of_match_table = ahci_of_match,
Suthikulpanit, Suravee2051e922015-07-07 01:55:21 +0200109 .acpi_match_table = ahci_acpi_match,
Brian Norris17ab5942011-11-18 11:10:10 -0800110 .pm = &ahci_pm_ops,
Anton Vorontsov1c2a49f2010-03-04 20:06:06 +0300111 },
Anton Vorontsov1c2a49f2010-03-04 20:06:06 +0300112};
Brian Norris9a99e472012-11-02 00:46:16 -0700113module_platform_driver(ahci_driver);
Anton Vorontsov1c2a49f2010-03-04 20:06:06 +0300114
115MODULE_DESCRIPTION("AHCI SATA platform driver");
116MODULE_AUTHOR("Anton Vorontsov <avorontsov@ru.mvista.com>");
117MODULE_LICENSE("GPL");
118MODULE_ALIAS("platform:ahci");