diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-04-15 17:00:03 +0200 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2014-05-04 15:28:59 -0400 |
commit | a3464ed2f14d19ba923930f7c0c284499d64eb5b (patch) | |
tree | 6d9632d2ba95262876cc25bf762fe0d8f26fc9cb /drivers/ata/Makefile | |
parent | 5799d6d4cf86c11503aee909a1ec555453c7f22a (diff) | |
download | linux-a3464ed2f14d19ba923930f7c0c284499d64eb5b.tar.gz linux-a3464ed2f14d19ba923930f7c0c284499d64eb5b.tar.bz2 linux-a3464ed2f14d19ba923930f7c0c284499d64eb5b.zip |
ata: ahci_mvebu: new driver for Marvell Armada 380 AHCI interfaces
The Marvell Armada 380 SoC includes two AHCI compatible
interfaces. However, like all DMA-capable Marvell interface, they
require special handling to configure MBus windows. Therefore, this
commit adds a new ahci_mvebu driver, which relies on the
libahci_platform.c code recently introduced.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Acked-by: Jason Cooper <jason@lakedaemon.net>
Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'drivers/ata/Makefile')
-rw-r--r-- | drivers/ata/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/ata/Makefile b/drivers/ata/Makefile index 44c8016e565c..5a02aeecef5b 100644 --- a/drivers/ata/Makefile +++ b/drivers/ata/Makefile @@ -12,6 +12,7 @@ obj-$(CONFIG_SATA_DWC) += sata_dwc_460ex.o obj-$(CONFIG_SATA_HIGHBANK) += sata_highbank.o libahci.o obj-$(CONFIG_AHCI_DA850) += ahci_da850.o libahci.o libahci_platform.o obj-$(CONFIG_AHCI_IMX) += ahci_imx.o libahci.o libahci_platform.o +obj-$(CONFIG_AHCI_MVEBU) += ahci_mvebu.o libahci.o libahci_platform.o obj-$(CONFIG_AHCI_SUNXI) += ahci_sunxi.o libahci.o libahci_platform.o obj-$(CONFIG_AHCI_ST) += ahci_st.o libahci.o libahci_platform.o obj-$(CONFIG_AHCI_XGENE) += ahci_xgene.o libahci.o libahci_platform.o |