2010-03-04 17:06:06 +00:00
|
|
|
/*
|
|
|
|
* AHCI SATA platform driver
|
|
|
|
*
|
|
|
|
* Copyright 2004-2005 Red Hat, Inc.
|
|
|
|
* Jeff Garzik <jgarzik@pobox.com>
|
|
|
|
* Copyright 2010 MontaVista Software, LLC.
|
|
|
|
* Anton Vorontsov <avorontsov@ru.mvista.com>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
* any later version.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/module.h>
|
2012-03-16 10:19:55 +00:00
|
|
|
#include <linux/pm.h>
|
2010-03-04 17:06:06 +00:00
|
|
|
#include <linux/device.h>
|
2014-05-14 06:13:42 +00:00
|
|
|
#include <linux/of_device.h>
|
2010-03-04 17:06:06 +00:00
|
|
|
#include <linux/platform_device.h>
|
|
|
|
#include <linux/libata.h>
|
|
|
|
#include <linux/ahci_platform.h>
|
|
|
|
#include "ahci.h"
|
|
|
|
|
2014-02-22 16:22:54 +00:00
|
|
|
static const struct ata_port_info ahci_port_info = {
|
|
|
|
.flags = AHCI_FLAG_COMMON,
|
|
|
|
.pio_mask = ATA_PIO4,
|
|
|
|
.udma_mask = ATA_UDMA6,
|
|
|
|
.port_ops = &ahci_platform_ops,
|
2011-09-28 07:41:54 +00:00
|
|
|
};
|
|
|
|
|
2014-02-22 15:53:34 +00:00
|
|
|
static int ahci_probe(struct platform_device *pdev)
|
|
|
|
{
|
|
|
|
struct device *dev = &pdev->dev;
|
|
|
|
struct ahci_host_priv *hpriv;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
hpriv = ahci_platform_get_resources(pdev);
|
|
|
|
if (IS_ERR(hpriv))
|
|
|
|
return PTR_ERR(hpriv);
|
|
|
|
|
|
|
|
rc = ahci_platform_enable_resources(hpriv);
|
|
|
|
if (rc)
|
|
|
|
return rc;
|
|
|
|
|
2014-05-14 06:13:42 +00:00
|
|
|
if (of_device_is_compatible(dev->of_node, "hisilicon,hisi-ahci"))
|
2014-07-30 18:13:56 +00:00
|
|
|
hpriv->flags |= AHCI_HFLAG_NO_FBS | AHCI_HFLAG_NO_NCQ;
|
2014-05-14 06:13:42 +00:00
|
|
|
|
2014-07-30 18:13:56 +00:00
|
|
|
rc = ahci_platform_init_host(pdev, hpriv, &ahci_port_info);
|
2010-03-04 17:06:06 +00:00
|
|
|
if (rc)
|
2014-08-12 16:22:27 +00:00
|
|
|
goto disable_resources;
|
2010-03-04 17:06:06 +00:00
|
|
|
|
|
|
|
return 0;
|
2014-02-22 15:53:33 +00:00
|
|
|
disable_resources:
|
|
|
|
ahci_platform_disable_resources(hpriv);
|
2010-03-04 17:06:06 +00:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2014-02-22 15:53:35 +00:00
|
|
|
static SIMPLE_DEV_PM_OPS(ahci_pm_ops, ahci_platform_suspend,
|
|
|
|
ahci_platform_resume);
|
2012-03-16 10:19:55 +00:00
|
|
|
|
2010-11-04 02:04:59 +00:00
|
|
|
static const struct of_device_id ahci_of_match[] = {
|
2014-07-30 18:13:58 +00:00
|
|
|
{ .compatible = "generic-ahci", },
|
|
|
|
/* Keep the following compatibles for device tree compatibility */
|
2012-04-21 12:10:12 +00:00
|
|
|
{ .compatible = "snps,spear-ahci", },
|
2013-04-16 09:28:02 +00:00
|
|
|
{ .compatible = "snps,exynos5440-ahci", },
|
2013-11-22 02:08:29 +00:00
|
|
|
{ .compatible = "ibm,476gtr-ahci", },
|
2014-02-22 15:53:38 +00:00
|
|
|
{ .compatible = "snps,dwc-ahci", },
|
2014-05-14 06:13:42 +00:00
|
|
|
{ .compatible = "hisilicon,hisi-ahci", },
|
2010-11-04 02:04:59 +00:00
|
|
|
{},
|
|
|
|
};
|
|
|
|
MODULE_DEVICE_TABLE(of, ahci_of_match);
|
|
|
|
|
2010-03-04 17:06:06 +00:00
|
|
|
static struct platform_driver ahci_driver = {
|
2012-11-02 07:46:15 +00:00
|
|
|
.probe = ahci_probe,
|
2012-11-02 07:46:19 +00:00
|
|
|
.remove = ata_platform_remove_one,
|
2010-03-04 17:06:06 +00:00
|
|
|
.driver = {
|
|
|
|
.name = "ahci",
|
2010-11-04 02:04:59 +00:00
|
|
|
.of_match_table = ahci_of_match,
|
2011-11-18 19:10:10 +00:00
|
|
|
.pm = &ahci_pm_ops,
|
2010-03-04 17:06:06 +00:00
|
|
|
},
|
|
|
|
};
|
2012-11-02 07:46:16 +00:00
|
|
|
module_platform_driver(ahci_driver);
|
2010-03-04 17:06:06 +00:00
|
|
|
|
|
|
|
MODULE_DESCRIPTION("AHCI SATA platform driver");
|
|
|
|
MODULE_AUTHOR("Anton Vorontsov <avorontsov@ru.mvista.com>");
|
|
|
|
MODULE_LICENSE("GPL");
|
|
|
|
MODULE_ALIAS("platform:ahci");
|