Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit faf0b2e5 authored by Li Yang's avatar Li Yang Committed by Jeff Garzik
Browse files

drivers/ata: add support to Freescale 3.0Gbps SATA Controller



This patch adds support for Freescale 3.0Gbps SATA Controller supporting
Native Command Queueing(NCQ), device hotplug, and ATAPI.  This controller
can be found on MPC8315 and MPC8378.

Signed-off-by: default avatarAshish Kalra <ashish.kalra@freescale.com>
Signed-off-by: default avatarLi Yang <leoli@freescale.com>
Signed-off-by: default avatarJeff Garzik <jeff@garzik.org>
parent 8e2840e0
Loading
Loading
Loading
Loading
+9 −0
Original line number Original line Diff line number Diff line
@@ -182,6 +182,15 @@ config PATA_ACPI
	  firmware in the BIOS. This driver can sometimes handle
	  firmware in the BIOS. This driver can sometimes handle
	  otherwise unsupported hardware.
	  otherwise unsupported hardware.


config SATA_FSL
	tristate "Freescale 3.0Gbps SATA support"
	depends on PPC_MPC837x
	help
	  This option enables support for Freescale 3.0Gbps SATA controller.
	  It can be found on MPC837x and MPC8315.

	  If unsure, say N.

config PATA_ALI
config PATA_ALI
	tristate "ALi PATA support (Experimental)"
	tristate "ALi PATA support (Experimental)"
	depends on PCI && EXPERIMENTAL
	depends on PCI && EXPERIMENTAL
+1 −0
Original line number Original line Diff line number Diff line
@@ -17,6 +17,7 @@ obj-$(CONFIG_SATA_ULI) += sata_uli.o
obj-$(CONFIG_SATA_MV)		+= sata_mv.o
obj-$(CONFIG_SATA_MV)		+= sata_mv.o
obj-$(CONFIG_SATA_INIC162X)	+= sata_inic162x.o
obj-$(CONFIG_SATA_INIC162X)	+= sata_inic162x.o
obj-$(CONFIG_PDC_ADMA)		+= pdc_adma.o
obj-$(CONFIG_PDC_ADMA)		+= pdc_adma.o
obj-$(CONFIG_SATA_FSL)		+= sata_fsl.o


obj-$(CONFIG_PATA_ALI)		+= pata_ali.o
obj-$(CONFIG_PATA_ALI)		+= pata_ali.o
obj-$(CONFIG_PATA_AMD)		+= pata_amd.o
obj-$(CONFIG_PATA_AMD)		+= pata_amd.o

drivers/ata/sata_fsl.c

0 → 100644
+1490 −0

File added.

Preview size limit exceeded, changes collapsed.