Thomas Gleixner | 8d7c56d | 2019-05-20 19:08:10 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Anton Vorontsov | 1c2a49f | 2010-03-04 20:06:06 +0300 | [diff] [blame] | 2 | /* |
| 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 Vorontsov | 1c2a49f | 2010-03-04 20:06:06 +0300 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | #include <linux/kernel.h> |
Anton Vorontsov | 1c2a49f | 2010-03-04 20:06:06 +0300 | [diff] [blame] | 12 | #include <linux/module.h> |
Shiraz Hashim | 18c25ff | 2012-03-16 15:49:55 +0530 | [diff] [blame] | 13 | #include <linux/pm.h> |
Anton Vorontsov | 1c2a49f | 2010-03-04 20:06:06 +0300 | [diff] [blame] | 14 | #include <linux/device.h> |
Kefeng Wang | a1a205d | 2014-05-14 14:13:42 +0800 | [diff] [blame] | 15 | #include <linux/of_device.h> |
Anton Vorontsov | 1c2a49f | 2010-03-04 20:06:06 +0300 | [diff] [blame] | 16 | #include <linux/platform_device.h> |
| 17 | #include <linux/libata.h> |
| 18 | #include <linux/ahci_platform.h> |
Suthikulpanit, Suravee | 2051e92 | 2015-07-07 01:55:21 +0200 | [diff] [blame] | 19 | #include <linux/acpi.h> |
| 20 | #include <linux/pci_ids.h> |
Anton Vorontsov | 1c2a49f | 2010-03-04 20:06:06 +0300 | [diff] [blame] | 21 | #include "ahci.h" |
| 22 | |
Akinobu Mita | 018d5ef | 2015-01-29 08:30:29 +0900 | [diff] [blame] | 23 | #define DRV_NAME "ahci" |
| 24 | |
Hans de Goede | c093e1d | 2014-02-22 17:22:54 +0100 | [diff] [blame] | 25 | static 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 Zhu | 904c04fe | 2011-09-28 15:41:54 +0800 | [diff] [blame] | 30 | }; |
| 31 | |
Suman Tripathi | 20bdc37 | 2018-09-07 08:32:17 -0600 | [diff] [blame] | 32 | static 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 Mita | 018d5ef | 2015-01-29 08:30:29 +0900 | [diff] [blame] | 39 | static struct scsi_host_template ahci_platform_sht = { |
| 40 | AHCI_SHT(DRV_NAME), |
| 41 | }; |
| 42 | |
Hans de Goede | 23b07d4 | 2014-02-22 16:53:34 +0100 | [diff] [blame] | 43 | static int ahci_probe(struct platform_device *pdev) |
| 44 | { |
| 45 | struct device *dev = &pdev->dev; |
Hans de Goede | 23b07d4 | 2014-02-22 16:53:34 +0100 | [diff] [blame] | 46 | struct ahci_host_priv *hpriv; |
Suman Tripathi | 20bdc37 | 2018-09-07 08:32:17 -0600 | [diff] [blame] | 47 | const struct ata_port_info *port; |
Hans de Goede | 23b07d4 | 2014-02-22 16:53:34 +0100 | [diff] [blame] | 48 | int rc; |
| 49 | |
Kunihiko Hayashi | 2d17f46 | 2018-08-22 21:13:03 +0900 | [diff] [blame] | 50 | hpriv = ahci_platform_get_resources(pdev, |
| 51 | AHCI_PLATFORM_GET_RESETS); |
Hans de Goede | 23b07d4 | 2014-02-22 16:53:34 +0100 | [diff] [blame] | 52 | 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 Kandagatla | 17dcc37 | 2016-04-01 08:52:57 +0100 | [diff] [blame] | 59 | of_property_read_u32(dev->of_node, |
| 60 | "ports-implemented", &hpriv->force_port_map); |
| 61 | |
Kefeng Wang | a1a205d | 2014-05-14 14:13:42 +0800 | [diff] [blame] | 62 | if (of_device_is_compatible(dev->of_node, "hisilicon,hisi-ahci")) |
Antoine Ténart | 725c7b5 | 2014-07-30 20:13:56 +0200 | [diff] [blame] | 63 | hpriv->flags |= AHCI_HFLAG_NO_FBS | AHCI_HFLAG_NO_NCQ; |
Kefeng Wang | a1a205d | 2014-05-14 14:13:42 +0800 | [diff] [blame] | 64 | |
Suman Tripathi | 20bdc37 | 2018-09-07 08:32:17 -0600 | [diff] [blame] | 65 | 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 Mita | 018d5ef | 2015-01-29 08:30:29 +0900 | [diff] [blame] | 70 | &ahci_platform_sht); |
Anton Vorontsov | 1c2a49f | 2010-03-04 20:06:06 +0300 | [diff] [blame] | 71 | if (rc) |
Bartlomiej Zolnierkiewicz | 515d9b2c | 2014-08-12 18:22:27 +0200 | [diff] [blame] | 72 | goto disable_resources; |
Anton Vorontsov | 1c2a49f | 2010-03-04 20:06:06 +0300 | [diff] [blame] | 73 | |
| 74 | return 0; |
Hans de Goede | 96a01ba | 2014-02-22 16:53:33 +0100 | [diff] [blame] | 75 | disable_resources: |
| 76 | ahci_platform_disable_resources(hpriv); |
Anton Vorontsov | 1c2a49f | 2010-03-04 20:06:06 +0300 | [diff] [blame] | 77 | return rc; |
| 78 | } |
| 79 | |
Hans de Goede | 648cb6f | 2014-02-22 16:53:35 +0100 | [diff] [blame] | 80 | static SIMPLE_DEV_PM_OPS(ahci_pm_ops, ahci_platform_suspend, |
| 81 | ahci_platform_resume); |
Shiraz Hashim | 18c25ff | 2012-03-16 15:49:55 +0530 | [diff] [blame] | 82 | |
Rob Herring | 02aac31 | 2010-11-03 21:04:59 -0500 | [diff] [blame] | 83 | static const struct of_device_id ahci_of_match[] = { |
Antoine Ténart | 30f3c73 | 2014-07-30 20:13:58 +0200 | [diff] [blame] | 84 | { .compatible = "generic-ahci", }, |
| 85 | /* Keep the following compatibles for device tree compatibility */ |
Viresh Kumar | 5f098a3 | 2012-04-21 17:40:12 +0530 | [diff] [blame] | 86 | { .compatible = "snps,spear-ahci", }, |
Alistair Popple | 2435dcb | 2013-11-22 13:08:29 +1100 | [diff] [blame] | 87 | { .compatible = "ibm,476gtr-ahci", }, |
Roger Quadros | c431147 | 2014-02-22 16:53:38 +0100 | [diff] [blame] | 88 | { .compatible = "snps,dwc-ahci", }, |
Kefeng Wang | a1a205d | 2014-05-14 14:13:42 +0800 | [diff] [blame] | 89 | { .compatible = "hisilicon,hisi-ahci", }, |
Aleksey Makarov | a2127e4 | 2016-02-11 13:53:08 +0000 | [diff] [blame] | 90 | { .compatible = "cavium,octeon-7130-ahci", }, |
Rob Herring | 02aac31 | 2010-11-03 21:04:59 -0500 | [diff] [blame] | 91 | {}, |
| 92 | }; |
| 93 | MODULE_DEVICE_TABLE(of, ahci_of_match); |
| 94 | |
Suthikulpanit, Suravee | 2051e92 | 2015-07-07 01:55:21 +0200 | [diff] [blame] | 95 | static const struct acpi_device_id ahci_acpi_match[] = { |
Suman Tripathi | 20bdc37 | 2018-09-07 08:32:17 -0600 | [diff] [blame] | 96 | { "APMC0D33", (unsigned long)&ahci_port_info_nolpm }, |
Suthikulpanit, Suravee | 2051e92 | 2015-07-07 01:55:21 +0200 | [diff] [blame] | 97 | { ACPI_DEVICE_CLASS(PCI_CLASS_STORAGE_SATA_AHCI, 0xffffff) }, |
| 98 | {}, |
| 99 | }; |
| 100 | MODULE_DEVICE_TABLE(acpi, ahci_acpi_match); |
| 101 | |
Anton Vorontsov | 1c2a49f | 2010-03-04 20:06:06 +0300 | [diff] [blame] | 102 | static struct platform_driver ahci_driver = { |
Brian Norris | 941c77f | 2012-11-02 00:46:15 -0700 | [diff] [blame] | 103 | .probe = ahci_probe, |
Brian Norris | 83291d6 | 2012-11-02 00:46:19 -0700 | [diff] [blame] | 104 | .remove = ata_platform_remove_one, |
Nate Watterson | 8eede5b | 2017-07-20 15:26:24 -0400 | [diff] [blame] | 105 | .shutdown = ahci_platform_shutdown, |
Anton Vorontsov | 1c2a49f | 2010-03-04 20:06:06 +0300 | [diff] [blame] | 106 | .driver = { |
Akinobu Mita | 018d5ef | 2015-01-29 08:30:29 +0900 | [diff] [blame] | 107 | .name = DRV_NAME, |
Rob Herring | 02aac31 | 2010-11-03 21:04:59 -0500 | [diff] [blame] | 108 | .of_match_table = ahci_of_match, |
Suthikulpanit, Suravee | 2051e92 | 2015-07-07 01:55:21 +0200 | [diff] [blame] | 109 | .acpi_match_table = ahci_acpi_match, |
Brian Norris | 17ab594 | 2011-11-18 11:10:10 -0800 | [diff] [blame] | 110 | .pm = &ahci_pm_ops, |
Anton Vorontsov | 1c2a49f | 2010-03-04 20:06:06 +0300 | [diff] [blame] | 111 | }, |
Anton Vorontsov | 1c2a49f | 2010-03-04 20:06:06 +0300 | [diff] [blame] | 112 | }; |
Brian Norris | 9a99e47 | 2012-11-02 00:46:16 -0700 | [diff] [blame] | 113 | module_platform_driver(ahci_driver); |
Anton Vorontsov | 1c2a49f | 2010-03-04 20:06:06 +0300 | [diff] [blame] | 114 | |
| 115 | MODULE_DESCRIPTION("AHCI SATA platform driver"); |
| 116 | MODULE_AUTHOR("Anton Vorontsov <avorontsov@ru.mvista.com>"); |
| 117 | MODULE_LICENSE("GPL"); |
| 118 | MODULE_ALIAS("platform:ahci"); |