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