net/mlx4_core: drop useless LIST_HEAD
[linux-2.6-block.git] / drivers / ata / ahci_platform.c
CommitLineData
1c2a49f6
AV
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>
16#include <linux/module.h>
18c25ff4 17#include <linux/pm.h>
1c2a49f6 18#include <linux/device.h>
a1a205df 19#include <linux/of_device.h>
1c2a49f6
AV
20#include <linux/platform_device.h>
21#include <linux/libata.h>
22#include <linux/ahci_platform.h>
2051e924
SS
23#include <linux/acpi.h>
24#include <linux/pci_ids.h>
1c2a49f6
AV
25#include "ahci.h"
26
018d5ef2
AM
27#define DRV_NAME "ahci"
28
c093e1d3
HG
29static 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,
904c04fe
RZ
34};
35
20bdc376
ST
36static 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
018d5ef2
AM
43static struct scsi_host_template ahci_platform_sht = {
44 AHCI_SHT(DRV_NAME),
45};
46
23b07d4c
HG
47static int ahci_probe(struct platform_device *pdev)
48{
49 struct device *dev = &pdev->dev;
23b07d4c 50 struct ahci_host_priv *hpriv;
20bdc376 51 const struct ata_port_info *port;
23b07d4c
HG
52 int rc;
53
2d17f460
KH
54 hpriv = ahci_platform_get_resources(pdev,
55 AHCI_PLATFORM_GET_RESETS);
23b07d4c
HG
56 if (IS_ERR(hpriv))
57 return PTR_ERR(hpriv);
58
59 rc = ahci_platform_enable_resources(hpriv);
60 if (rc)
61 return rc;
62
17dcc37e
SK
63 of_property_read_u32(dev->of_node,
64 "ports-implemented", &hpriv->force_port_map);
65
a1a205df 66 if (of_device_is_compatible(dev->of_node, "hisilicon,hisi-ahci"))
725c7b57 67 hpriv->flags |= AHCI_HFLAG_NO_FBS | AHCI_HFLAG_NO_NCQ;
a1a205df 68
20bdc376
ST
69 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,
018d5ef2 74 &ahci_platform_sht);
1c2a49f6 75 if (rc)
515d9b2c 76 goto disable_resources;
1c2a49f6
AV
77
78 return 0;
96a01ba5
HG
79disable_resources:
80 ahci_platform_disable_resources(hpriv);
1c2a49f6
AV
81 return rc;
82}
83
648cb6fd
HG
84static SIMPLE_DEV_PM_OPS(ahci_pm_ops, ahci_platform_suspend,
85 ahci_platform_resume);
18c25ff4 86
02aac316 87static const struct of_device_id ahci_of_match[] = {
30f3c73c
AT
88 { .compatible = "generic-ahci", },
89 /* Keep the following compatibles for device tree compatibility */
5f098a3e 90 { .compatible = "snps,spear-ahci", },
2435dcb9 91 { .compatible = "ibm,476gtr-ahci", },
c4311471 92 { .compatible = "snps,dwc-ahci", },
a1a205df 93 { .compatible = "hisilicon,hisi-ahci", },
a2127e40 94 { .compatible = "cavium,octeon-7130-ahci", },
02aac316
RH
95 {},
96};
97MODULE_DEVICE_TABLE(of, ahci_of_match);
98
2051e924 99static const struct acpi_device_id ahci_acpi_match[] = {
20bdc376 100 { "APMC0D33", (unsigned long)&ahci_port_info_nolpm },
2051e924
SS
101 { ACPI_DEVICE_CLASS(PCI_CLASS_STORAGE_SATA_AHCI, 0xffffff) },
102 {},
103};
104MODULE_DEVICE_TABLE(acpi, ahci_acpi_match);
105
1c2a49f6 106static struct platform_driver ahci_driver = {
941c77fd 107 .probe = ahci_probe,
83291d65 108 .remove = ata_platform_remove_one,
8eede5bc 109 .shutdown = ahci_platform_shutdown,
1c2a49f6 110 .driver = {
018d5ef2 111 .name = DRV_NAME,
02aac316 112 .of_match_table = ahci_of_match,
2051e924 113 .acpi_match_table = ahci_acpi_match,
17ab594f 114 .pm = &ahci_pm_ops,
1c2a49f6
AV
115 },
116};
9a99e476 117module_platform_driver(ahci_driver);
1c2a49f6
AV
118
119MODULE_DESCRIPTION("AHCI SATA platform driver");
120MODULE_AUTHOR("Anton Vorontsov <avorontsov@ru.mvista.com>");
121MODULE_LICENSE("GPL");
122MODULE_ALIAS("platform:ahci");