License cleanup: add SPDX GPL-2.0 license identifier to files with no license
Many source files in the tree are missing licensing information, which
makes it harder for compliance tools to determine the correct license.
By default all files without license information are under the default
license of the kernel, which is GPL version 2.
Update the files which contain no license information with the 'GPL-2.0'
SPDX license identifier. The SPDX identifier is a legally binding
shorthand, which can be used instead of the full boiler plate text.
This patch is based on work done by Thomas Gleixner and Kate Stewart and
Philippe Ombredanne.
How this work was done:
Patches were generated and checked against linux-4.14-rc6 for a subset of
the use cases:
- file had no licensing information it it.
- file was a */uapi/* one with no licensing information in it,
- file was a */uapi/* one with existing licensing information,
Further patches will be generated in subsequent months to fix up cases
where non-standard license headers were used, and references to license
had to be inferred by heuristics based on keywords.
The analysis to determine which SPDX License Identifier to be applied to
a file was done in a spreadsheet of side by side results from of the
output of two independent scanners (ScanCode & Windriver) producing SPDX
tag:value files created by Philippe Ombredanne. Philippe prepared the
base worksheet, and did an initial spot review of a few 1000 files.
The 4.13 kernel was the starting point of the analysis with 60,537 files
assessed. Kate Stewart did a file by file comparison of the scanner
results in the spreadsheet to determine which SPDX license identifier(s)
to be applied to the file. She confirmed any determination that was not
immediately clear with lawyers working with the Linux Foundation.
Criteria used to select files for SPDX license identifier tagging was:
- Files considered eligible had to be source code files.
- Make and config files were included as candidates if they contained >5
lines of source
- File already had some variant of a license header in it (even if <5
lines).
All documentation files were explicitly excluded.
The following heuristics were used to determine which SPDX license
identifiers to apply.
- when both scanners couldn't find any license traces, file was
considered to have no license information in it, and the top level
COPYING file license applied.
For non */uapi/* files that summary was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 11139
and resulted in the first patch in this series.
If that file was a */uapi/* path one, it was "GPL-2.0 WITH
Linux-syscall-note" otherwise it was "GPL-2.0". Results of that was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 WITH Linux-syscall-note 930
and resulted in the second patch in this series.
- if a file had some form of licensing information in it, and was one
of the */uapi/* ones, it was denoted with the Linux-syscall-note if
any GPL family license was found in the file or had no licensing in
it (per prior point). Results summary:
SPDX license identifier # files
---------------------------------------------------|------
GPL-2.0 WITH Linux-syscall-note 270
GPL-2.0+ WITH Linux-syscall-note 169
((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause) 21
((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) 17
LGPL-2.1+ WITH Linux-syscall-note 15
GPL-1.0+ WITH Linux-syscall-note 14
((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause) 5
LGPL-2.0+ WITH Linux-syscall-note 4
LGPL-2.1 WITH Linux-syscall-note 3
((GPL-2.0 WITH Linux-syscall-note) OR MIT) 3
((GPL-2.0 WITH Linux-syscall-note) AND MIT) 1
and that resulted in the third patch in this series.
- when the two scanners agreed on the detected license(s), that became
the concluded license(s).
- when there was disagreement between the two scanners (one detected a
license but the other didn't, or they both detected different
licenses) a manual inspection of the file occurred.
- In most cases a manual inspection of the information in the file
resulted in a clear resolution of the license that should apply (and
which scanner probably needed to revisit its heuristics).
- When it was not immediately clear, the license identifier was
confirmed with lawyers working with the Linux Foundation.
- If there was any question as to the appropriate license identifier,
the file was flagged for further research and to be revisited later
in time.
In total, over 70 hours of logged manual review was done on the
spreadsheet to determine the SPDX license identifiers to apply to the
source files by Kate, Philippe, Thomas and, in some cases, confirmation
by lawyers working with the Linux Foundation.
Kate also obtained a third independent scan of the 4.13 code base from
FOSSology, and compared selected files where the other two scanners
disagreed against that SPDX file, to see if there was new insights. The
Windriver scanner is based on an older version of FOSSology in part, so
they are related.
Thomas did random spot checks in about 500 files from the spreadsheets
for the uapi headers and agreed with SPDX license identifier in the
files he inspected. For the non-uapi files Thomas did random spot checks
in about 15000 files.
In initial set of patches against 4.14-rc6, 3 files were found to have
copy/paste license identifier errors, and have been fixed to reflect the
correct identifier.
Additionally Philippe spent 10 hours this week doing a detailed manual
inspection and review of the 12,461 patched files from the initial patch
version early this week with:
- a full scancode scan run, collecting the matched texts, detected
license ids and scores
- reviewing anything where there was a license detected (about 500+
files) to ensure that the applied SPDX license was correct
- reviewing anything where there was no detection but the patch license
was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied
SPDX license was correct
This produced a worksheet with 20 files needing minor correction. This
worksheet was then exported into 3 different .csv files for the
different types of files to be modified.
These .csv files were then reviewed by Greg. Thomas wrote a script to
parse the csv files and add the proper SPDX tag to the file, in the
format that the file expected. This script was further refined by Greg
based on the output to detect more types of files automatically and to
distinguish between header and source .c files (which need different
comment types.) Finally Greg ran the script using the .csv files to
generate the patches.
Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org>
Reviewed-by: Philippe Ombredanne <pombredanne@nexb.com>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2017-11-01 15:07:57 +01:00
|
|
|
# SPDX-License-Identifier: GPL-2.0
|
2006-08-14 20:27:36 +02:00
|
|
|
#
|
|
|
|
# SATA/PATA driver configuration
|
|
|
|
#
|
|
|
|
|
2011-01-08 03:32:02 +01:00
|
|
|
config HAVE_PATA_PLATFORM
|
|
|
|
bool
|
|
|
|
help
|
|
|
|
This is an internal configuration node for any machine that
|
|
|
|
uses pata-platform driver to enable the relevant driver in the
|
|
|
|
configuration structure without having to submit endless patches
|
|
|
|
to update the PATA_PLATFORM entry.
|
|
|
|
|
2007-05-11 07:48:54 +02:00
|
|
|
menuconfig ATA
|
2014-02-15 03:29:34 +01:00
|
|
|
tristate "Serial ATA and Parallel ATA drivers (libata)"
|
2007-05-10 15:45:57 +02:00
|
|
|
depends on HAS_IOMEM
|
2006-10-20 23:39:35 +02:00
|
|
|
depends on BLOCK
|
2006-08-24 08:41:25 +02:00
|
|
|
select SCSI
|
2014-08-07 01:09:27 +02:00
|
|
|
select GLOB
|
2006-08-10 13:31:37 +02:00
|
|
|
---help---
|
2014-02-15 03:29:34 +01:00
|
|
|
If you want to use an ATA hard disk, ATA tape drive, ATA CD-ROM or
|
2006-08-10 13:31:37 +02:00
|
|
|
any other ATA device under Linux, say Y and make sure that you know
|
|
|
|
the name of your ATA host adapter (the card inside your computer
|
|
|
|
that "speaks" the ATA protocol, also called ATA controller),
|
|
|
|
because you will be asked for it.
|
|
|
|
|
2007-06-11 20:59:34 +02:00
|
|
|
NOTE: ATA enables basic SCSI support; *however*,
|
|
|
|
'SCSI disk support', 'SCSI tape support', or
|
|
|
|
'SCSI CDROM support' may also be needed,
|
|
|
|
depending on your hardware configuration.
|
|
|
|
|
2006-08-24 08:41:25 +02:00
|
|
|
if ATA
|
|
|
|
|
2007-01-01 20:31:15 +01:00
|
|
|
config ATA_NONSTANDARD
|
|
|
|
bool
|
|
|
|
default n
|
|
|
|
|
2009-07-15 04:43:39 +02:00
|
|
|
config ATA_VERBOSE_ERROR
|
|
|
|
bool "Verbose ATA error reporting"
|
|
|
|
default y
|
|
|
|
help
|
|
|
|
This option adds parsing of ATA command descriptions and error bits
|
|
|
|
in libata kernel output, making it easier to interpret.
|
|
|
|
This option will enlarge the kernel by approx. 6KB. Disable it only
|
|
|
|
if kernel size is more important than ease of debugging.
|
|
|
|
|
|
|
|
If unsure, say Y.
|
|
|
|
|
2007-05-05 16:50:38 +02:00
|
|
|
config ATA_ACPI
|
2008-03-18 23:06:48 +01:00
|
|
|
bool "ATA ACPI Support"
|
ata: ahci_platform: Add ACPI _CLS matching
This patch adds ACPI supports for AHCI platform driver, which uses _CLS
method to match the device.
The following is an example of ASL structure in DSDT for a SATA controller,
which contains _CLS package to be matched by the ahci_platform driver:
Device (AHC0) // AHCI Controller
{
Name(_HID, "AMDI0600")
Name (_CCA, 1)
Name (_CLS, Package (3)
{
0x01, // Base Class: Mass Storage
0x06, // Sub-Class: serial ATA
0x01, // Interface: AHCI
})
Name (_CRS, ResourceTemplate ()
{
Memory32Fixed (ReadWrite, 0xE0300000, 0x00010000)
Interrupt (ResourceConsumer, Level, ActiveHigh, Exclusive,,,) { 387 }
})
}
Also, since ATA driver should not require PCI support for ATA_ACPI,
this patch removes dependency in the driver/ata/Kconfig.
Acked-by: Tejun Heo <tj@kernel.org>
Acked-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Reviewed-by: Hanjun Guo <hanjun.guo@linaro.org>
Signed-off-by: Suravee Suthikulpanit <Suravee.Suthikulpanit@amd.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
2015-07-07 01:55:21 +02:00
|
|
|
depends on ACPI
|
2007-05-05 16:50:38 +02:00
|
|
|
default y
|
|
|
|
help
|
|
|
|
This option adds support for ATA-related ACPI objects.
|
|
|
|
These ACPI objects add the ability to retrieve taskfiles
|
|
|
|
from the ACPI BIOS and write them to the disk controller.
|
|
|
|
These objects may be related to performance, security,
|
|
|
|
power management, or other areas.
|
|
|
|
You can disable this at kernel boot time by using the
|
|
|
|
option libata.noacpi=1
|
|
|
|
|
2013-01-15 10:20:58 +01:00
|
|
|
config SATA_ZPODD
|
2013-03-02 06:00:37 +01:00
|
|
|
bool "SATA Zero Power Optical Disc Drive (ZPODD) support"
|
2014-12-13 00:44:04 +01:00
|
|
|
depends on ATA_ACPI && PM
|
2013-01-15 10:20:58 +01:00
|
|
|
default n
|
|
|
|
help
|
2013-03-02 06:00:37 +01:00
|
|
|
This option adds support for SATA Zero Power Optical Disc
|
|
|
|
Drive (ZPODD). It requires both the ODD and the platform
|
|
|
|
support, and if enabled, will automatically power on/off the
|
|
|
|
ODD when certain condition is satisfied. This does not impact
|
|
|
|
end user's experience of the ODD, only power is saved when
|
|
|
|
the ODD is not in use (i.e. no disc inside).
|
2013-01-15 10:20:58 +01:00
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2008-04-07 15:47:22 +02:00
|
|
|
config SATA_PMP
|
|
|
|
bool "SATA Port Multiplier support"
|
|
|
|
default y
|
|
|
|
help
|
2008-04-17 21:55:24 +02:00
|
|
|
This option adds support for SATA Port Multipliers
|
|
|
|
(the SATA version of an ethernet hub, or SAS expander).
|
2008-04-07 15:47:22 +02:00
|
|
|
|
2017-01-03 19:09:47 +01:00
|
|
|
if HAS_DMA
|
|
|
|
|
2010-05-19 22:10:24 +02:00
|
|
|
comment "Controllers with non-SFF native interface"
|
|
|
|
|
2006-08-14 20:10:07 +02:00
|
|
|
config SATA_AHCI
|
2006-08-10 13:31:37 +02:00
|
|
|
tristate "AHCI SATA support"
|
2006-08-24 08:41:25 +02:00
|
|
|
depends on PCI
|
2006-08-10 13:31:37 +02:00
|
|
|
help
|
|
|
|
This option enables support for AHCI Serial ATA.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2010-03-04 18:06:06 +01:00
|
|
|
config SATA_AHCI_PLATFORM
|
|
|
|
tristate "Platform AHCI SATA support"
|
|
|
|
help
|
|
|
|
This option enables support for Platform AHCI Serial ATA
|
|
|
|
controllers.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2016-06-16 15:53:32 +02:00
|
|
|
config AHCI_BRCM
|
|
|
|
tristate "Broadcom AHCI SATA support"
|
2016-06-16 15:53:33 +02:00
|
|
|
depends on ARCH_BRCMSTB || BMIPS_GENERIC || ARCH_BCM_NSP
|
2015-05-13 01:28:21 +02:00
|
|
|
help
|
|
|
|
This option enables support for the AHCI SATA3 controller found on
|
2016-06-16 15:53:32 +02:00
|
|
|
Broadcom SoC's.
|
2015-05-13 01:28:21 +02:00
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2014-03-25 19:51:40 +01:00
|
|
|
config AHCI_DA850
|
|
|
|
tristate "DaVinci DA850 AHCI SATA support"
|
|
|
|
depends on ARCH_DAVINCI_DA850
|
|
|
|
help
|
|
|
|
This option enables support for the DaVinci DA850 SoC's
|
|
|
|
onboard AHCI SATA.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2017-03-14 12:04:51 +01:00
|
|
|
config AHCI_DM816
|
|
|
|
tristate "DaVinci DM816 AHCI SATA support"
|
|
|
|
depends on ARCH_OMAP2PLUS
|
|
|
|
help
|
|
|
|
This option enables support for the DaVinci DM816 SoC's
|
|
|
|
onboard AHCI SATA controller.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2014-03-12 13:39:38 +01:00
|
|
|
config AHCI_ST
|
|
|
|
tristate "ST AHCI SATA support"
|
2014-03-12 13:39:41 +01:00
|
|
|
depends on ARCH_STI
|
2014-02-26 15:47:21 +01:00
|
|
|
help
|
2014-03-12 13:39:38 +01:00
|
|
|
This option enables support for ST AHCI SATA controller.
|
2014-02-26 15:47:21 +01:00
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2013-07-24 08:15:29 +02:00
|
|
|
config AHCI_IMX
|
|
|
|
tristate "Freescale i.MX AHCI SATA support"
|
2014-04-08 11:06:26 +02:00
|
|
|
depends on MFD_SYSCON && (ARCH_MXC || COMPILE_TEST)
|
2017-01-11 14:36:16 +01:00
|
|
|
depends on (HWMON && (THERMAL || !THERMAL_OF)) || !HWMON
|
2013-07-24 08:15:29 +02:00
|
|
|
help
|
|
|
|
This option enables support for the Freescale i.MX SoC's
|
|
|
|
onboard AHCI SATA.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2015-06-09 10:53:50 +02:00
|
|
|
config AHCI_CEVA
|
|
|
|
tristate "CEVA AHCI SATA support"
|
|
|
|
depends on OF
|
|
|
|
help
|
|
|
|
This option enables support for the CEVA AHCI SATA.
|
|
|
|
It can be found on the Xilinx Zynq UltraScale+ MPSoC.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2017-08-18 03:13:07 +02:00
|
|
|
config AHCI_MTK
|
|
|
|
tristate "MediaTek AHCI SATA support"
|
|
|
|
depends on ARCH_MEDIATEK
|
|
|
|
select MFD_SYSCON
|
|
|
|
help
|
|
|
|
This option enables support for the MediaTek SoC's
|
|
|
|
onboard AHCI SATA controller.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2014-04-15 17:00:03 +02:00
|
|
|
config AHCI_MVEBU
|
|
|
|
tristate "Marvell EBU AHCI SATA support"
|
|
|
|
depends on ARCH_MVEBU
|
|
|
|
help
|
|
|
|
This option enables support for the Marvebu EBU SoC's
|
|
|
|
onboard AHCI SATA.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2016-02-11 14:53:08 +01:00
|
|
|
config AHCI_OCTEON
|
|
|
|
tristate "Cavium Octeon Soc Serial ATA"
|
|
|
|
depends on SATA_AHCI_PLATFORM && CAVIUM_OCTEON_SOC
|
|
|
|
default y
|
|
|
|
help
|
|
|
|
This option enables support for Cavium Octeon SoC Serial ATA.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2014-02-22 16:53:36 +01:00
|
|
|
config AHCI_SUNXI
|
|
|
|
tristate "Allwinner sunxi AHCI SATA support"
|
2014-03-25 19:51:39 +01:00
|
|
|
depends on ARCH_SUNXI
|
2014-02-22 16:53:36 +01:00
|
|
|
help
|
|
|
|
This option enables support for the Allwinner sunxi SoC's
|
|
|
|
onboard AHCI SATA.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2014-07-18 09:12:30 +02:00
|
|
|
config AHCI_TEGRA
|
|
|
|
tristate "NVIDIA Tegra124 AHCI SATA support"
|
|
|
|
depends on ARCH_TEGRA
|
|
|
|
help
|
|
|
|
This option enables support for the NVIDIA Tegra124 SoC's
|
|
|
|
onboard AHCI SATA.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2014-03-15 00:53:20 +01:00
|
|
|
config AHCI_XGENE
|
|
|
|
tristate "APM X-Gene 6.0Gbps AHCI SATA host controller support"
|
2014-04-02 18:41:59 +02:00
|
|
|
depends on PHY_XGENE
|
2014-03-15 00:53:20 +01:00
|
|
|
help
|
|
|
|
This option enables support for APM X-Gene SoC SATA host controller.
|
|
|
|
|
2015-09-07 10:23:16 +02:00
|
|
|
config AHCI_QORIQ
|
|
|
|
tristate "Freescale QorIQ AHCI SATA support"
|
|
|
|
depends on OF
|
|
|
|
help
|
|
|
|
This option enables support for the Freescale QorIQ AHCI SoC's
|
|
|
|
onboard AHCI SATA.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2010-05-19 22:10:24 +02:00
|
|
|
config SATA_FSL
|
|
|
|
tristate "Freescale 3.0Gbps SATA support"
|
|
|
|
depends on FSL_SOC
|
2008-04-07 15:47:21 +02:00
|
|
|
help
|
2010-05-19 22:10:24 +02:00
|
|
|
This option enables support for Freescale 3.0Gbps SATA controller.
|
|
|
|
It can be found on MPC837x and MPC8315.
|
2008-04-07 15:47:21 +02:00
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
ata: Add driver for Faraday Technology FTIDE010
This adds a driver for the Faraday Technology FTIDE010
PATA IP block.
When used with the Storlink/Storm/Cortina Systems Gemini
SoC, the PATA interface is accompanied by a PATA<->SATA
bridge, so while the device appear as a PATA controller,
it attaches physically to SATA disks, and also has a
designated memory area with registers to set up the bridge.
The Gemini SATA bridge is separated into its own driver
file to make things modular and make it possible to reuse
the PATA driver as stand-alone on other systems than the
Gemini.
dmesg excerpt from the D-Link DIR-685 storage router:
gemini-sata-bridge 46000000.sata: SATA ID 00000e00, PHY ID: 01000100
gemini-sata-bridge 46000000.sata: set up the Gemini IDE/SATA nexus
ftide010 63000000.ata: set up Gemini PATA0
ftide010 63000000.ata: device ID 00000500, irq 26, io base 0x63000000
ftide010 63000000.ata: SATA0 (master) start
gemini-sata-bridge 46000000.sata: SATA0 PHY ready
scsi host0: pata-ftide010
ata1: PATA max UDMA/133 irq 26
ata1.00: ATA-8: INTEL SSDSA2CW120G3, 4PC10302, max UDMA/133
ata1.00: 234441648 sectors, multi 1: LBA48 NCQ (depth 0/32)
ata1.00: configured for UDMA/133
scsi 0:0:0:0: Direct-Access ATA INTEL SSDSA2CW12 0302 PQ: 0 ANSI: 5
ata1.00: Enabling discard_zeroes_data
sd 0:0:0:0: [sda] 234441648 512-byte logical blocks: (120 GB/112 GiB)
sd 0:0:0:0: [sda] Write Protect is off
sd 0:0:0:0: [sda] Write cache: enabled, read cache:
enabled, doesn't support DPO or FUA
ata1.00: Enabling discard_zeroes_data
ata1.00: Enabling discard_zeroes_data
sd 0:0:0:0: [sda] Attached SCSI disk
After this I can flawlessly mount and read/write copy etc files
from /dev/sda[n].
Cc: John Feng-Hsin Chiang <john453@faraday-tech.com>
Cc: Greentime Hu <green.hu@gmail.com>
Acked-by: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Acked-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
2017-06-04 10:50:08 +02:00
|
|
|
config SATA_GEMINI
|
|
|
|
tristate "Gemini SATA bridge support"
|
2017-07-10 10:51:02 +02:00
|
|
|
depends on ARCH_GEMINI || COMPILE_TEST
|
ata: Add driver for Faraday Technology FTIDE010
This adds a driver for the Faraday Technology FTIDE010
PATA IP block.
When used with the Storlink/Storm/Cortina Systems Gemini
SoC, the PATA interface is accompanied by a PATA<->SATA
bridge, so while the device appear as a PATA controller,
it attaches physically to SATA disks, and also has a
designated memory area with registers to set up the bridge.
The Gemini SATA bridge is separated into its own driver
file to make things modular and make it possible to reuse
the PATA driver as stand-alone on other systems than the
Gemini.
dmesg excerpt from the D-Link DIR-685 storage router:
gemini-sata-bridge 46000000.sata: SATA ID 00000e00, PHY ID: 01000100
gemini-sata-bridge 46000000.sata: set up the Gemini IDE/SATA nexus
ftide010 63000000.ata: set up Gemini PATA0
ftide010 63000000.ata: device ID 00000500, irq 26, io base 0x63000000
ftide010 63000000.ata: SATA0 (master) start
gemini-sata-bridge 46000000.sata: SATA0 PHY ready
scsi host0: pata-ftide010
ata1: PATA max UDMA/133 irq 26
ata1.00: ATA-8: INTEL SSDSA2CW120G3, 4PC10302, max UDMA/133
ata1.00: 234441648 sectors, multi 1: LBA48 NCQ (depth 0/32)
ata1.00: configured for UDMA/133
scsi 0:0:0:0: Direct-Access ATA INTEL SSDSA2CW12 0302 PQ: 0 ANSI: 5
ata1.00: Enabling discard_zeroes_data
sd 0:0:0:0: [sda] 234441648 512-byte logical blocks: (120 GB/112 GiB)
sd 0:0:0:0: [sda] Write Protect is off
sd 0:0:0:0: [sda] Write cache: enabled, read cache:
enabled, doesn't support DPO or FUA
ata1.00: Enabling discard_zeroes_data
ata1.00: Enabling discard_zeroes_data
sd 0:0:0:0: [sda] Attached SCSI disk
After this I can flawlessly mount and read/write copy etc files
from /dev/sda[n].
Cc: John Feng-Hsin Chiang <john453@faraday-tech.com>
Cc: Greentime Hu <green.hu@gmail.com>
Acked-by: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Acked-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
2017-06-04 10:50:08 +02:00
|
|
|
default ARCH_GEMINI
|
|
|
|
help
|
|
|
|
This enabled support for the FTIDE010 to SATA bridge
|
|
|
|
found in Cortina Systems Gemini platform.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2016-01-14 17:31:11 +01:00
|
|
|
config SATA_AHCI_SEATTLE
|
|
|
|
tristate "AMD Seattle 6.0Gbps AHCI SATA host controller support"
|
|
|
|
depends on ARCH_SEATTLE
|
|
|
|
help
|
|
|
|
This option enables support for AMD Seattle SATA host controller.
|
|
|
|
|
|
|
|
If unsure, say N
|
|
|
|
|
2010-05-10 21:41:26 +02:00
|
|
|
config SATA_INIC162X
|
2013-07-22 22:53:36 +02:00
|
|
|
tristate "Initio 162x SATA support (Very Experimental)"
|
2010-05-10 21:41:26 +02:00
|
|
|
depends on PCI
|
|
|
|
help
|
|
|
|
This option enables support for Initio 162x Serial ATA.
|
|
|
|
|
2010-11-12 22:38:21 +01:00
|
|
|
config SATA_ACARD_AHCI
|
|
|
|
tristate "ACard AHCI variant (ATP 8620)"
|
|
|
|
depends on PCI
|
|
|
|
help
|
|
|
|
This option enables support for Acard.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2010-05-19 22:10:24 +02:00
|
|
|
config SATA_SIL24
|
|
|
|
tristate "Silicon Image 3124/3132 SATA support"
|
|
|
|
depends on PCI
|
2008-04-07 15:47:21 +02:00
|
|
|
help
|
2010-05-19 22:10:24 +02:00
|
|
|
This option enables support for Silicon Image 3124/3132 Serial ATA.
|
2008-04-07 15:47:21 +02:00
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2017-01-03 19:09:47 +01:00
|
|
|
endif # HAS_DMA
|
|
|
|
|
2008-04-07 15:47:21 +02:00
|
|
|
config ATA_SFF
|
2012-08-12 23:43:42 +02:00
|
|
|
bool "ATA SFF support (for legacy IDE and PATA)"
|
2008-04-07 15:47:21 +02:00
|
|
|
default y
|
|
|
|
help
|
|
|
|
This option adds support for ATA controllers with SFF
|
|
|
|
compliant or similar programming interface.
|
|
|
|
|
2008-04-17 21:55:24 +02:00
|
|
|
SFF is the legacy IDE interface that has been around since
|
|
|
|
the dawn of time. Almost all PATA controllers have an
|
|
|
|
SFF interface. Many SATA controllers have an SFF interface
|
|
|
|
when configured into a legacy compatibility mode.
|
|
|
|
|
|
|
|
For users with exclusively modern controllers like AHCI,
|
|
|
|
Silicon Image 3124, or Marvell 6440, you may choose to
|
2009-01-26 11:12:25 +01:00
|
|
|
disable this unneeded SFF support.
|
2008-04-17 21:55:24 +02:00
|
|
|
|
|
|
|
If unsure, say Y.
|
|
|
|
|
2008-04-07 15:47:21 +02:00
|
|
|
if ATA_SFF
|
|
|
|
|
2010-05-19 22:10:24 +02:00
|
|
|
comment "SFF controllers with custom DMA interface"
|
|
|
|
|
|
|
|
config PDC_ADMA
|
|
|
|
tristate "Pacific Digital ADMA support"
|
2006-08-24 08:41:25 +02:00
|
|
|
depends on PCI
|
2006-08-10 13:31:37 +02:00
|
|
|
help
|
2010-05-19 22:10:24 +02:00
|
|
|
This option enables support for Pacific Digital ADMA controllers
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
|
|
|
config PATA_OCTEON_CF
|
|
|
|
tristate "OCTEON Boot Bus Compact Flash support"
|
2013-05-22 17:10:46 +02:00
|
|
|
depends on CAVIUM_OCTEON_SOC
|
2010-05-19 22:10:24 +02:00
|
|
|
help
|
|
|
|
This option enables a polled compact flash driver for use with
|
|
|
|
compact flash cards attached to the OCTEON boot bus.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
|
|
|
config SATA_QSTOR
|
|
|
|
tristate "Pacific Digital SATA QStor support"
|
|
|
|
depends on PCI
|
|
|
|
help
|
|
|
|
This option enables support for Pacific Digital Serial ATA QStor.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
|
|
|
config SATA_SX4
|
|
|
|
tristate "Promise SATA SX4 support (Experimental)"
|
2013-01-17 03:53:29 +01:00
|
|
|
depends on PCI
|
2010-05-19 22:10:24 +02:00
|
|
|
help
|
|
|
|
This option enables support for Promise Serial ATA SX4.
|
2006-08-10 13:31:37 +02:00
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2010-05-19 22:10:24 +02:00
|
|
|
config ATA_BMDMA
|
|
|
|
bool "ATA BMDMA support"
|
2017-01-03 19:09:46 +01:00
|
|
|
depends on HAS_DMA
|
2010-05-19 22:10:24 +02:00
|
|
|
default y
|
|
|
|
help
|
|
|
|
This option adds support for SFF ATA controllers with BMDMA
|
2010-05-29 12:47:45 +02:00
|
|
|
capability. BMDMA stands for bus-master DMA and is the
|
|
|
|
de facto DMA interface for SFF controllers.
|
2010-05-19 22:10:24 +02:00
|
|
|
|
2010-05-29 12:47:45 +02:00
|
|
|
If unsure, say Y.
|
2010-05-19 22:10:24 +02:00
|
|
|
|
|
|
|
if ATA_BMDMA
|
|
|
|
|
|
|
|
comment "SATA SFF controllers with BMDMA"
|
|
|
|
|
2006-08-14 20:10:07 +02:00
|
|
|
config ATA_PIIX
|
2007-02-05 17:04:10 +01:00
|
|
|
tristate "Intel ESB, ICH, PIIX3, PIIX4 PATA/SATA support"
|
2006-08-24 08:41:25 +02:00
|
|
|
depends on PCI
|
2006-08-10 13:31:37 +02:00
|
|
|
help
|
2006-12-16 13:54:29 +01:00
|
|
|
This option enables support for ICH5/6/7/8 Serial ATA
|
2007-02-05 17:04:10 +01:00
|
|
|
and support for PATA on the Intel ESB/ICH/PIIX3/PIIX4 series
|
|
|
|
host controllers.
|
2006-08-10 13:31:37 +02:00
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2010-07-06 13:06:03 +02:00
|
|
|
config SATA_DWC
|
|
|
|
tristate "DesignWare Cores SATA support"
|
2016-05-11 15:42:08 +02:00
|
|
|
depends on DMADEVICES
|
2016-04-26 11:03:11 +02:00
|
|
|
select GENERIC_PHY
|
2010-07-06 13:06:03 +02:00
|
|
|
help
|
|
|
|
This option enables support for the on-chip SATA controller of the
|
|
|
|
AppliedMicro processor 460EX.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2016-04-26 11:03:10 +02:00
|
|
|
config SATA_DWC_OLD_DMA
|
|
|
|
bool "Support old device trees"
|
|
|
|
depends on SATA_DWC
|
|
|
|
select DW_DMAC_CORE
|
|
|
|
default y if 460EX
|
|
|
|
help
|
|
|
|
This option enables support for old device trees without the
|
|
|
|
"dmas" property.
|
|
|
|
|
2011-01-28 20:02:09 +01:00
|
|
|
config SATA_DWC_DEBUG
|
|
|
|
bool "Debugging driver version"
|
|
|
|
depends on SATA_DWC
|
|
|
|
help
|
|
|
|
This option enables debugging output in the driver.
|
|
|
|
|
|
|
|
config SATA_DWC_VDEBUG
|
|
|
|
bool "Verbose debug output"
|
|
|
|
depends on SATA_DWC_DEBUG
|
|
|
|
help
|
|
|
|
This option enables the taskfile dumping and NCQ debugging.
|
|
|
|
|
2012-09-06 23:03:30 +02:00
|
|
|
config SATA_HIGHBANK
|
|
|
|
tristate "Calxeda Highbank SATA support"
|
2017-01-03 19:09:45 +01:00
|
|
|
depends on HAS_DMA
|
2014-03-26 16:39:50 +01:00
|
|
|
depends on ARCH_HIGHBANK || COMPILE_TEST
|
2012-09-06 23:03:30 +02:00
|
|
|
help
|
|
|
|
This option enables support for the Calxeda Highbank SoC's
|
|
|
|
onboard SATA.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2006-08-14 20:10:07 +02:00
|
|
|
config SATA_MV
|
2009-01-21 16:34:17 +01:00
|
|
|
tristate "Marvell SATA support"
|
2017-01-03 19:09:44 +01:00
|
|
|
depends on HAS_DMA
|
2014-08-30 18:46:07 +02:00
|
|
|
depends on PCI || ARCH_DOVE || ARCH_MV78XX0 || \
|
2014-03-27 14:24:39 +01:00
|
|
|
ARCH_MVEBU || ARCH_ORION5X || COMPILE_TEST
|
2014-01-22 20:56:33 +01:00
|
|
|
select GENERIC_PHY
|
2006-08-10 13:31:37 +02:00
|
|
|
help
|
|
|
|
This option enables support for the Marvell Serial ATA family.
|
2009-01-21 16:34:17 +01:00
|
|
|
Currently supports 88SX[56]0[48][01] PCI(-X) chips,
|
|
|
|
as well as the newer [67]042 PCI-X/PCIe and SOC devices.
|
2006-08-10 13:31:37 +02:00
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2006-08-14 20:10:07 +02:00
|
|
|
config SATA_NV
|
2006-08-10 13:31:37 +02:00
|
|
|
tristate "NVIDIA SATA support"
|
2006-08-24 08:41:25 +02:00
|
|
|
depends on PCI
|
2006-08-10 13:31:37 +02:00
|
|
|
help
|
|
|
|
This option enables support for NVIDIA Serial ATA.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2006-08-14 20:10:07 +02:00
|
|
|
config SATA_PROMISE
|
2006-08-10 13:31:37 +02:00
|
|
|
tristate "Promise SATA TX2/TX4 support"
|
2006-08-24 08:41:25 +02:00
|
|
|
depends on PCI
|
2006-08-10 13:31:37 +02:00
|
|
|
help
|
|
|
|
This option enables support for Promise Serial ATA TX2/TX4.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2013-02-20 21:10:29 +01:00
|
|
|
config SATA_RCAR
|
|
|
|
tristate "Renesas R-Car SATA support"
|
2016-03-03 02:28:50 +01:00
|
|
|
depends on ARCH_RENESAS || COMPILE_TEST
|
2013-02-20 21:10:29 +01:00
|
|
|
help
|
|
|
|
This option enables support for Renesas R-Car Serial ATA.
|
|
|
|
|
|
|
|
If unsure, say N.
|
2006-08-10 13:31:37 +02:00
|
|
|
|
2006-08-14 20:10:07 +02:00
|
|
|
config SATA_SIL
|
2006-08-10 13:31:37 +02:00
|
|
|
tristate "Silicon Image SATA support"
|
2006-08-24 08:41:25 +02:00
|
|
|
depends on PCI
|
2006-08-10 13:31:37 +02:00
|
|
|
help
|
|
|
|
This option enables support for Silicon Image Serial ATA.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2006-08-14 20:10:07 +02:00
|
|
|
config SATA_SIS
|
2007-01-08 17:11:07 +01:00
|
|
|
tristate "SiS 964/965/966/180 SATA support"
|
2006-08-24 08:41:25 +02:00
|
|
|
depends on PCI
|
2007-01-08 17:11:07 +01:00
|
|
|
select PATA_SIS
|
2006-08-10 13:31:37 +02:00
|
|
|
help
|
2007-05-22 02:14:23 +02:00
|
|
|
This option enables support for SiS Serial ATA on
|
2007-01-08 17:11:07 +01:00
|
|
|
SiS 964/965/966/180 and Parallel ATA on SiS 180.
|
|
|
|
The PATA support for SiS 180 requires additionally to
|
|
|
|
enable the PATA_SIS driver in the config.
|
2006-08-10 13:31:37 +02:00
|
|
|
If unsure, say N.
|
|
|
|
|
2010-05-19 22:10:24 +02:00
|
|
|
config SATA_SVW
|
|
|
|
tristate "ServerWorks Frodo / Apple K2 SATA support"
|
|
|
|
depends on PCI
|
|
|
|
help
|
|
|
|
This option enables support for Broadcom/Serverworks/Apple K2
|
|
|
|
SATA support.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2006-08-14 20:10:07 +02:00
|
|
|
config SATA_ULI
|
2006-08-10 13:31:37 +02:00
|
|
|
tristate "ULi Electronics SATA support"
|
2006-08-24 08:41:25 +02:00
|
|
|
depends on PCI
|
2006-08-10 13:31:37 +02:00
|
|
|
help
|
|
|
|
This option enables support for ULi Electronics SATA.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2006-08-14 20:10:07 +02:00
|
|
|
config SATA_VIA
|
2006-08-10 13:31:37 +02:00
|
|
|
tristate "VIA SATA support"
|
2006-08-24 08:41:25 +02:00
|
|
|
depends on PCI
|
2006-08-10 13:31:37 +02:00
|
|
|
help
|
|
|
|
This option enables support for VIA Serial ATA.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2006-08-14 20:10:07 +02:00
|
|
|
config SATA_VITESSE
|
2006-08-10 13:31:37 +02:00
|
|
|
tristate "VITESSE VSC-7174 / INTEL 31244 SATA support"
|
2006-08-24 08:41:25 +02:00
|
|
|
depends on PCI
|
2006-08-10 13:31:37 +02:00
|
|
|
help
|
|
|
|
This option enables support for Vitesse VSC7174 and Intel 31244 Serial ATA.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2010-05-19 22:10:24 +02:00
|
|
|
comment "PATA SFF controllers with BMDMA"
|
pata_acpi: ACPI driver support
On a cable there may be
eighty wires or perhaps forty
and we learn about its type
In the world of ACPI
So we call the GTM
And we find the the timing rate
And we look through it to see
If eighty wire it must be
Timing lives in ACPI routines
ACPI routines, ACPI routines
Timing lives in ACPI routines
ACPI routes ACPI routines
And the drivers last you see
Picking up unknown pci ids
and the code begins to work
Timing lives in ACPI routines
ACPI routines, ACPI routines
Timing lives in ACPI routines
ACPI routes ACPI routines
[Full speed ahead, Mr Hacker, full speed ahead]
Full speed over here sir!
Checking Cable, checking cable
Aye aye, 80 wire,
Heaven heaven]
If we use ACPI (ACPI)
Every box (every box) has all we need (has all we need)
Cable type (cable type) and mode timing (mode timing)
In our ATA (in our ATA) subroutines (subroutines, ha ha)
Timing lives in ACPI routines
ACPI routines, ACPI routines
Timing lives in ACPI routines
ACPI routes ACPI routines
Timing lives in ACPI routines
ACPI routines, ACPI routines
Timing lives in ACPI routines
ACPI routes ACPI routines
Signed-off-by: Alan Cox <alan@redhat.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
2007-10-04 22:32:58 +02:00
|
|
|
|
2006-08-30 00:12:40 +02:00
|
|
|
config PATA_ALI
|
2008-12-05 20:43:03 +01:00
|
|
|
tristate "ALi PATA support"
|
|
|
|
depends on PCI
|
2006-08-30 00:12:40 +02:00
|
|
|
help
|
|
|
|
This option enables support for the ALi ATA interfaces
|
|
|
|
found on the many ALi chipsets.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
|
|
|
config PATA_AMD
|
2007-03-09 00:24:49 +01:00
|
|
|
tristate "AMD/NVidia PATA support"
|
2006-08-30 00:12:40 +02:00
|
|
|
depends on PCI
|
|
|
|
help
|
|
|
|
This option enables support for the AMD and NVidia PATA
|
|
|
|
interfaces found on the chipsets for Athlon/Athlon64.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2011-02-22 11:16:07 +01:00
|
|
|
config PATA_ARASAN_CF
|
|
|
|
tristate "ARASAN CompactFlash PATA Controller Support"
|
2014-03-26 15:33:37 +01:00
|
|
|
depends on ARCH_SPEAR13XX || COMPILE_TEST
|
2011-05-23 02:32:27 +02:00
|
|
|
depends on DMADEVICES
|
2011-02-22 11:16:07 +01:00
|
|
|
select DMA_ENGINE
|
|
|
|
help
|
|
|
|
Say Y here to support the ARASAN CompactFlash PATA controller
|
|
|
|
|
2006-08-30 00:12:40 +02:00
|
|
|
config PATA_ARTOP
|
2007-09-20 15:58:48 +02:00
|
|
|
tristate "ARTOP 6210/6260 PATA support"
|
|
|
|
depends on PCI
|
2006-08-30 00:12:40 +02:00
|
|
|
help
|
|
|
|
This option enables support for ARTOP PATA controllers.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2010-05-19 22:10:24 +02:00
|
|
|
config PATA_ATIIXP
|
|
|
|
tristate "ATI PATA support"
|
2009-09-15 06:32:33 +02:00
|
|
|
depends on PCI
|
|
|
|
help
|
2010-05-19 22:10:24 +02:00
|
|
|
This option enables support for the ATI ATA interfaces
|
|
|
|
found on the many ATI chipsets.
|
2007-08-08 16:57:08 +02:00
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2010-05-19 22:10:24 +02:00
|
|
|
config PATA_ATP867X
|
|
|
|
tristate "ARTOP/Acard ATP867X PATA support"
|
2007-09-20 15:58:48 +02:00
|
|
|
depends on PCI
|
2006-08-30 00:12:40 +02:00
|
|
|
help
|
2010-05-19 22:10:24 +02:00
|
|
|
This option enables support for ARTOP/Acard ATP867X PATA
|
|
|
|
controllers.
|
2006-08-30 00:12:40 +02:00
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2010-05-19 22:10:24 +02:00
|
|
|
config PATA_BF54X
|
|
|
|
tristate "Blackfin 54x ATAPI support"
|
|
|
|
depends on BF542 || BF548 || BF549
|
2007-03-06 11:38:11 +01:00
|
|
|
help
|
2010-05-19 22:10:24 +02:00
|
|
|
This option enables support for the built-in ATAPI controller on
|
|
|
|
Blackfin 54x family chips.
|
2007-03-06 11:38:11 +01:00
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2017-03-22 19:20:58 +01:00
|
|
|
config PATA_BK3710
|
|
|
|
tristate "Palmchip BK3710 PATA support"
|
|
|
|
depends on ARCH_DAVINCI
|
|
|
|
help
|
|
|
|
This option enables support for the integrated IDE controller on
|
|
|
|
the TI DaVinci SoC.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2006-08-30 00:12:40 +02:00
|
|
|
config PATA_CMD64X
|
2007-09-20 15:58:48 +02:00
|
|
|
tristate "CMD64x PATA support"
|
|
|
|
depends on PCI
|
2006-08-30 00:12:40 +02:00
|
|
|
help
|
|
|
|
This option enables support for the CMD64x series chips
|
|
|
|
except for the CMD640.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
|
|
|
config PATA_CS5520
|
|
|
|
tristate "CS5510/5520 PATA support"
|
2014-03-11 12:55:24 +01:00
|
|
|
depends on PCI && (X86_32 || COMPILE_TEST)
|
2006-08-30 00:12:40 +02:00
|
|
|
help
|
|
|
|
This option enables support for the Cyrix 5510/5520
|
|
|
|
companion chip used with the MediaGX/Geode processor family.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
|
|
|
config PATA_CS5530
|
2008-12-05 20:43:03 +01:00
|
|
|
tristate "CS5530 PATA support"
|
2014-03-11 12:55:24 +01:00
|
|
|
depends on PCI && (X86_32 || COMPILE_TEST)
|
2006-08-30 00:12:40 +02:00
|
|
|
help
|
|
|
|
This option enables support for the Cyrix/NatSemi/AMD CS5530
|
|
|
|
companion chip used with the MediaGX/Geode processor family.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
|
|
|
config PATA_CS5535
|
|
|
|
tristate "CS5535 PATA support (Experimental)"
|
2014-03-11 12:55:24 +01:00
|
|
|
depends on PCI && X86_32
|
2006-08-30 00:12:40 +02:00
|
|
|
help
|
|
|
|
This option enables support for the NatSemi/AMD CS5535
|
|
|
|
companion chip used with the Geode processor family.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2007-10-11 09:38:19 +02:00
|
|
|
config PATA_CS5536
|
2008-12-05 20:43:03 +01:00
|
|
|
tristate "CS5536 PATA support"
|
2014-03-11 12:55:24 +01:00
|
|
|
depends on PCI && (X86_32 || MIPS || COMPILE_TEST)
|
2007-10-11 09:38:19 +02:00
|
|
|
help
|
|
|
|
This option enables support for the AMD CS5536
|
|
|
|
companion chip used with the Geode LX processor family.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2006-08-30 00:12:40 +02:00
|
|
|
config PATA_CYPRESS
|
|
|
|
tristate "Cypress CY82C693 PATA support (Very Experimental)"
|
2013-01-17 03:53:29 +01:00
|
|
|
depends on PCI
|
2006-08-30 00:12:40 +02:00
|
|
|
help
|
|
|
|
This option enables support for the Cypress/Contaq CY82C693
|
|
|
|
chipset found in some Alpha systems
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
|
|
|
config PATA_EFAR
|
|
|
|
tristate "EFAR SLC90E66 support"
|
|
|
|
depends on PCI
|
|
|
|
help
|
|
|
|
This option enables support for the EFAR SLC90E66
|
|
|
|
IDE controller found on some older machines.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2012-04-12 14:13:16 +02:00
|
|
|
config PATA_EP93XX
|
|
|
|
tristate "Cirrus Logic EP93xx PATA support"
|
|
|
|
depends on ARCH_EP93XX
|
|
|
|
help
|
|
|
|
This option enables support for the PATA controller in
|
|
|
|
the Cirrus Logic EP9312 and EP9315 ARM CPU.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
ata: Add driver for Faraday Technology FTIDE010
This adds a driver for the Faraday Technology FTIDE010
PATA IP block.
When used with the Storlink/Storm/Cortina Systems Gemini
SoC, the PATA interface is accompanied by a PATA<->SATA
bridge, so while the device appear as a PATA controller,
it attaches physically to SATA disks, and also has a
designated memory area with registers to set up the bridge.
The Gemini SATA bridge is separated into its own driver
file to make things modular and make it possible to reuse
the PATA driver as stand-alone on other systems than the
Gemini.
dmesg excerpt from the D-Link DIR-685 storage router:
gemini-sata-bridge 46000000.sata: SATA ID 00000e00, PHY ID: 01000100
gemini-sata-bridge 46000000.sata: set up the Gemini IDE/SATA nexus
ftide010 63000000.ata: set up Gemini PATA0
ftide010 63000000.ata: device ID 00000500, irq 26, io base 0x63000000
ftide010 63000000.ata: SATA0 (master) start
gemini-sata-bridge 46000000.sata: SATA0 PHY ready
scsi host0: pata-ftide010
ata1: PATA max UDMA/133 irq 26
ata1.00: ATA-8: INTEL SSDSA2CW120G3, 4PC10302, max UDMA/133
ata1.00: 234441648 sectors, multi 1: LBA48 NCQ (depth 0/32)
ata1.00: configured for UDMA/133
scsi 0:0:0:0: Direct-Access ATA INTEL SSDSA2CW12 0302 PQ: 0 ANSI: 5
ata1.00: Enabling discard_zeroes_data
sd 0:0:0:0: [sda] 234441648 512-byte logical blocks: (120 GB/112 GiB)
sd 0:0:0:0: [sda] Write Protect is off
sd 0:0:0:0: [sda] Write cache: enabled, read cache:
enabled, doesn't support DPO or FUA
ata1.00: Enabling discard_zeroes_data
ata1.00: Enabling discard_zeroes_data
sd 0:0:0:0: [sda] Attached SCSI disk
After this I can flawlessly mount and read/write copy etc files
from /dev/sda[n].
Cc: John Feng-Hsin Chiang <john453@faraday-tech.com>
Cc: Greentime Hu <green.hu@gmail.com>
Acked-by: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Acked-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
2017-06-04 10:50:08 +02:00
|
|
|
config PATA_FTIDE010
|
|
|
|
tristate "Faraday Technology FTIDE010 PATA support"
|
|
|
|
depends on OF
|
|
|
|
depends on ARM
|
2017-07-10 10:51:02 +02:00
|
|
|
depends on SATA_GEMINI
|
ata: Add driver for Faraday Technology FTIDE010
This adds a driver for the Faraday Technology FTIDE010
PATA IP block.
When used with the Storlink/Storm/Cortina Systems Gemini
SoC, the PATA interface is accompanied by a PATA<->SATA
bridge, so while the device appear as a PATA controller,
it attaches physically to SATA disks, and also has a
designated memory area with registers to set up the bridge.
The Gemini SATA bridge is separated into its own driver
file to make things modular and make it possible to reuse
the PATA driver as stand-alone on other systems than the
Gemini.
dmesg excerpt from the D-Link DIR-685 storage router:
gemini-sata-bridge 46000000.sata: SATA ID 00000e00, PHY ID: 01000100
gemini-sata-bridge 46000000.sata: set up the Gemini IDE/SATA nexus
ftide010 63000000.ata: set up Gemini PATA0
ftide010 63000000.ata: device ID 00000500, irq 26, io base 0x63000000
ftide010 63000000.ata: SATA0 (master) start
gemini-sata-bridge 46000000.sata: SATA0 PHY ready
scsi host0: pata-ftide010
ata1: PATA max UDMA/133 irq 26
ata1.00: ATA-8: INTEL SSDSA2CW120G3, 4PC10302, max UDMA/133
ata1.00: 234441648 sectors, multi 1: LBA48 NCQ (depth 0/32)
ata1.00: configured for UDMA/133
scsi 0:0:0:0: Direct-Access ATA INTEL SSDSA2CW12 0302 PQ: 0 ANSI: 5
ata1.00: Enabling discard_zeroes_data
sd 0:0:0:0: [sda] 234441648 512-byte logical blocks: (120 GB/112 GiB)
sd 0:0:0:0: [sda] Write Protect is off
sd 0:0:0:0: [sda] Write cache: enabled, read cache:
enabled, doesn't support DPO or FUA
ata1.00: Enabling discard_zeroes_data
ata1.00: Enabling discard_zeroes_data
sd 0:0:0:0: [sda] Attached SCSI disk
After this I can flawlessly mount and read/write copy etc files
from /dev/sda[n].
Cc: John Feng-Hsin Chiang <john453@faraday-tech.com>
Cc: Greentime Hu <green.hu@gmail.com>
Acked-by: Hans Ulli Kroll <ulli.kroll@googlemail.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Acked-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
2017-06-04 10:50:08 +02:00
|
|
|
help
|
|
|
|
This option enables support for the Faraday FTIDE010
|
|
|
|
PATA controller found in the Cortina Gemini SoCs.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2006-08-30 00:12:40 +02:00
|
|
|
config PATA_HPT366
|
2007-09-20 15:58:48 +02:00
|
|
|
tristate "HPT 366/368 PATA support"
|
|
|
|
depends on PCI
|
2006-08-30 00:12:40 +02:00
|
|
|
help
|
|
|
|
This option enables support for the HPT 366 and 368
|
|
|
|
PATA controllers via the new ATA layer.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
|
|
|
config PATA_HPT37X
|
2009-11-30 14:23:00 +01:00
|
|
|
tristate "HPT 370/370A/371/372/374/302 PATA support"
|
|
|
|
depends on PCI
|
2006-08-30 00:12:40 +02:00
|
|
|
help
|
|
|
|
This option enables support for the majority of the later HPT
|
|
|
|
PATA controllers via the new ATA layer.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
|
|
|
config PATA_HPT3X2N
|
2010-12-28 19:46:40 +01:00
|
|
|
tristate "HPT 371N/372N/302N PATA support"
|
2009-11-30 14:23:00 +01:00
|
|
|
depends on PCI
|
2006-08-30 00:12:40 +02:00
|
|
|
help
|
|
|
|
This option enables support for the N variant HPT PATA
|
2010-12-28 19:46:40 +01:00
|
|
|
controllers via the new ATA layer.
|
2006-08-30 00:12:40 +02:00
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
|
|
|
config PATA_HPT3X3
|
2007-07-09 20:46:22 +02:00
|
|
|
tristate "HPT 343/363 PATA support"
|
2006-08-30 00:12:40 +02:00
|
|
|
depends on PCI
|
|
|
|
help
|
|
|
|
This option enables support for the HPT 343/363
|
|
|
|
PATA controllers via the new ATA layer
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2007-07-09 20:46:22 +02:00
|
|
|
config PATA_HPT3X3_DMA
|
2009-11-30 14:23:00 +01:00
|
|
|
bool "HPT 343/363 DMA support"
|
2007-07-09 20:46:22 +02:00
|
|
|
depends on PATA_HPT3X3
|
|
|
|
help
|
|
|
|
This option enables DMA support for the HPT343/363
|
|
|
|
controllers. Enable with care as there are still some
|
|
|
|
problems with DMA on this chipset.
|
|
|
|
|
2010-05-19 22:10:24 +02:00
|
|
|
config PATA_ICSIDE
|
|
|
|
tristate "Acorn ICS PATA support"
|
|
|
|
depends on ARM && ARCH_ACORN
|
2006-08-30 00:12:40 +02:00
|
|
|
help
|
2010-05-19 22:10:24 +02:00
|
|
|
On Acorn systems, say Y here if you wish to use the ICS PATA
|
|
|
|
interface card. This is not required for ICS partition support.
|
|
|
|
If you are unsure, say N to this.
|
|
|
|
|
2011-07-26 16:58:19 +02:00
|
|
|
config PATA_IMX
|
|
|
|
tristate "PATA support for Freescale iMX"
|
|
|
|
depends on ARCH_MXC
|
|
|
|
help
|
|
|
|
This option enables support for the PATA host available on Freescale
|
|
|
|
iMX SoCs.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2010-05-19 22:10:24 +02:00
|
|
|
config PATA_IT8213
|
|
|
|
tristate "IT8213 PATA support (Experimental)"
|
2013-01-17 03:53:29 +01:00
|
|
|
depends on PCI
|
2010-05-19 22:10:24 +02:00
|
|
|
help
|
|
|
|
This option enables support for the ITE 821 PATA
|
|
|
|
controllers via the new ATA layer.
|
2006-08-30 00:12:40 +02:00
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
|
|
|
config PATA_IT821X
|
2007-03-09 00:24:49 +01:00
|
|
|
tristate "IT8211/2 PATA support"
|
|
|
|
depends on PCI
|
2006-08-30 00:12:40 +02:00
|
|
|
help
|
|
|
|
This option enables support for the ITE 8211 and 8212
|
|
|
|
PATA controllers via the new ATA layer, including RAID
|
|
|
|
mode.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2006-09-06 16:48:19 +02:00
|
|
|
config PATA_JMICRON
|
|
|
|
tristate "JMicron PATA support"
|
|
|
|
depends on PCI
|
|
|
|
help
|
|
|
|
Enable support for the JMicron IDE controller, via the new
|
|
|
|
ATA layer.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2010-05-19 22:10:24 +02:00
|
|
|
config PATA_MACIO
|
|
|
|
tristate "Apple PowerMac/PowerBook internal 'MacIO' IDE"
|
|
|
|
depends on PPC_PMAC
|
2006-08-30 00:12:40 +02:00
|
|
|
help
|
2010-05-19 22:10:24 +02:00
|
|
|
Most IDE capable PowerMacs have IDE busses driven by a variant
|
|
|
|
of this controller which is part of the Apple chipset used on
|
|
|
|
most PowerMac models. Some models have multiple busses using
|
|
|
|
different chipsets, though generally, MacIO is one of them.
|
2006-08-30 00:12:40 +02:00
|
|
|
|
2006-10-16 17:40:06 +02:00
|
|
|
config PATA_MARVELL
|
|
|
|
tristate "Marvell PATA support via legacy mode"
|
|
|
|
depends on PCI
|
|
|
|
help
|
2008-09-03 15:48:34 +02:00
|
|
|
This option enables limited support for the Marvell 88SE61xx ATA
|
|
|
|
controllers. If you wish to use only the SATA ports then select
|
|
|
|
the AHCI driver alone. If you wish to the use the PATA port or
|
|
|
|
both SATA and PATA include this driver.
|
2006-10-16 17:40:06 +02:00
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2010-12-22 16:50:10 +01:00
|
|
|
config PATA_MPC52xx
|
|
|
|
tristate "Freescale MPC52xx SoC internal IDE"
|
|
|
|
depends on PPC_MPC52xx && PPC_BESTCOMM
|
|
|
|
select PPC_BESTCOMM_ATA
|
|
|
|
help
|
|
|
|
This option enables support for integrated IDE controller
|
|
|
|
of the Freescale MPC52xx SoC.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2006-08-30 00:12:40 +02:00
|
|
|
config PATA_NETCELL
|
|
|
|
tristate "NETCELL Revolution RAID support"
|
|
|
|
depends on PCI
|
|
|
|
help
|
|
|
|
This option enables support for the Netcell Revolution RAID
|
|
|
|
PATA controller.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2007-11-19 15:45:53 +01:00
|
|
|
config PATA_NINJA32
|
2009-11-30 14:23:00 +01:00
|
|
|
tristate "Ninja32/Delkin Cardbus ATA support"
|
|
|
|
depends on PCI
|
2007-11-19 15:45:53 +01:00
|
|
|
help
|
|
|
|
This option enables support for the Ninja32, Delkin and
|
|
|
|
possibly other brands of Cardbus ATA adapter
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2007-09-29 08:35:10 +02:00
|
|
|
config PATA_NS87415
|
2008-12-05 20:43:03 +01:00
|
|
|
tristate "Nat Semi NS87415 PATA support"
|
|
|
|
depends on PCI
|
2007-09-29 08:35:10 +02:00
|
|
|
help
|
|
|
|
This option enables support for the National Semiconductor
|
|
|
|
NS87415 PCI-IDE controller.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2010-05-19 22:10:24 +02:00
|
|
|
config PATA_OLDPIIX
|
|
|
|
tristate "Intel PATA old PIIX support"
|
|
|
|
depends on PCI
|
2006-08-30 00:12:40 +02:00
|
|
|
help
|
2010-05-19 22:10:24 +02:00
|
|
|
This option enables support for early PIIX PATA support.
|
2006-08-30 00:12:40 +02:00
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
|
|
|
config PATA_OPTIDMA
|
2007-01-06 01:37:00 +01:00
|
|
|
tristate "OPTI FireStar PATA support (Very Experimental)"
|
2013-01-17 03:53:29 +01:00
|
|
|
depends on PCI
|
2006-08-30 00:12:40 +02:00
|
|
|
help
|
|
|
|
This option enables DMA/PIO support for the later OPTi
|
|
|
|
controllers found on some old motherboards and in some
|
2007-05-09 07:12:20 +02:00
|
|
|
laptops.
|
2006-08-30 00:12:40 +02:00
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2009-11-30 14:23:00 +01:00
|
|
|
config PATA_PDC2027X
|
|
|
|
tristate "Promise PATA 2027x support"
|
|
|
|
depends on PCI
|
|
|
|
help
|
|
|
|
This option enables support for Promise PATA pdc20268 to pdc20277 host adapters.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2006-08-30 00:12:40 +02:00
|
|
|
config PATA_PDC_OLD
|
2008-12-05 20:43:03 +01:00
|
|
|
tristate "Older Promise PATA controller support"
|
|
|
|
depends on PCI
|
2006-08-30 00:12:40 +02:00
|
|
|
help
|
|
|
|
This option enables support for the Promise 20246, 20262, 20263,
|
|
|
|
20265 and 20267 adapters.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
|
|
|
config PATA_RADISYS
|
2008-12-05 20:43:03 +01:00
|
|
|
tristate "RADISYS 82600 PATA support (Experimental)"
|
2013-01-17 03:53:29 +01:00
|
|
|
depends on PCI
|
2006-08-30 00:12:40 +02:00
|
|
|
help
|
|
|
|
This option enables support for the RADISYS 82600
|
|
|
|
PATA controllers via the new ATA layer
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2009-06-24 19:29:44 +02:00
|
|
|
config PATA_RDC
|
|
|
|
tristate "RDC PATA support"
|
|
|
|
depends on PCI
|
|
|
|
help
|
|
|
|
This option enables basic support for the later RDC PATA controllers
|
|
|
|
controllers via the new ATA layer. For the RDC 1010, you need to
|
|
|
|
enable the IT821X driver instead.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2010-05-19 22:10:24 +02:00
|
|
|
config PATA_SC1200
|
|
|
|
tristate "SC1200 PATA support"
|
2014-03-14 15:41:31 +01:00
|
|
|
depends on PCI && (X86_32 || COMPILE_TEST)
|
2006-08-30 00:12:40 +02:00
|
|
|
help
|
2010-05-19 22:10:24 +02:00
|
|
|
This option enables support for the NatSemi/AMD SC1200 SoC
|
|
|
|
companion chip used with the Geode processor family.
|
2006-08-30 00:12:40 +02:00
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2010-05-19 22:10:24 +02:00
|
|
|
config PATA_SCH
|
|
|
|
tristate "Intel SCH PATA support"
|
2008-12-05 20:43:03 +01:00
|
|
|
depends on PCI
|
2006-08-30 00:12:40 +02:00
|
|
|
help
|
2010-05-19 22:10:24 +02:00
|
|
|
This option enables support for Intel SCH PATA on the Intel
|
|
|
|
SCH (US15W, US15L, UL11L) series host controllers.
|
2006-08-30 00:12:40 +02:00
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
|
|
|
config PATA_SERVERWORKS
|
2007-03-09 00:24:49 +01:00
|
|
|
tristate "SERVERWORKS OSB4/CSB5/CSB6/HT1000 PATA support"
|
|
|
|
depends on PCI
|
2006-08-30 00:12:40 +02:00
|
|
|
help
|
|
|
|
This option enables support for the Serverworks OSB4/CSB5/CSB6 and
|
|
|
|
HT1000 PATA controllers, via the new ATA layer.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
|
|
|
config PATA_SIL680
|
|
|
|
tristate "CMD / Silicon Image 680 PATA support"
|
|
|
|
depends on PCI
|
|
|
|
help
|
|
|
|
This option enables support for CMD / Silicon Image 680 PATA.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
|
|
|
config PATA_SIS
|
2008-12-05 20:43:03 +01:00
|
|
|
tristate "SiS PATA support"
|
|
|
|
depends on PCI
|
2006-08-30 00:12:40 +02:00
|
|
|
help
|
|
|
|
This option enables support for SiS PATA controllers
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2009-11-30 14:23:11 +01:00
|
|
|
config PATA_TOSHIBA
|
|
|
|
tristate "Toshiba Piccolo support (Experimental)"
|
2013-01-17 03:53:29 +01:00
|
|
|
depends on PCI
|
2009-11-30 14:23:11 +01:00
|
|
|
help
|
|
|
|
Support for the Toshiba Piccolo controllers. Currently only the
|
|
|
|
primary channel is supported by this driver.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2010-05-19 22:10:24 +02:00
|
|
|
config PATA_TRIFLEX
|
|
|
|
tristate "Compaq Triflex PATA support"
|
|
|
|
depends on PCI
|
|
|
|
help
|
|
|
|
Enable support for the Compaq 'Triflex' IDE controller as found
|
|
|
|
on many Compaq Pentium-Pro systems, via the new ATA layer.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2006-08-30 00:12:40 +02:00
|
|
|
config PATA_VIA
|
|
|
|
tristate "VIA PATA support"
|
|
|
|
depends on PCI
|
|
|
|
help
|
|
|
|
This option enables support for the VIA PATA interfaces
|
|
|
|
found on the many VIA chipsets.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2010-05-21 03:12:44 +02:00
|
|
|
config PATA_PXA
|
|
|
|
tristate "PXA DMA-capable PATA support"
|
|
|
|
depends on ARCH_PXA
|
|
|
|
help
|
|
|
|
This option enables support for harddrive attached to PXA CPU's bus.
|
|
|
|
|
|
|
|
NOTE: This driver utilizes PXA DMA controller, in case your hardware
|
|
|
|
is not capable of doing MWDMA, use pata_platform instead.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2006-08-30 00:12:40 +02:00
|
|
|
config PATA_WINBOND
|
|
|
|
tristate "Winbond SL82C105 PATA support"
|
|
|
|
depends on PCI
|
|
|
|
help
|
|
|
|
This option enables support for SL82C105 PATA devices found in the
|
|
|
|
Netwinder and some other systems
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2010-05-19 22:10:24 +02:00
|
|
|
endif # ATA_BMDMA
|
|
|
|
|
|
|
|
comment "PIO-only SFF controllers"
|
|
|
|
|
|
|
|
config PATA_AT32
|
|
|
|
tristate "Atmel AVR32 PATA support (Experimental)"
|
2013-01-17 03:53:29 +01:00
|
|
|
depends on AVR32 && PLATFORM_AT32AP
|
2006-09-29 19:30:05 +02:00
|
|
|
help
|
2010-05-19 22:10:24 +02:00
|
|
|
This option enables support for the IDE devices on the
|
|
|
|
Atmel AT32AP platform.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
|
|
|
config PATA_CMD640_PCI
|
|
|
|
tristate "CMD640 PCI PATA support (Experimental)"
|
2013-01-17 03:53:29 +01:00
|
|
|
depends on PCI
|
2010-05-19 22:10:24 +02:00
|
|
|
help
|
|
|
|
This option enables support for the CMD640 PCI IDE
|
|
|
|
interface chip. Only the primary channel is currently
|
|
|
|
supported.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2016-12-30 15:01:18 +01:00
|
|
|
config PATA_FALCON
|
|
|
|
tristate "Atari Falcon PATA support"
|
|
|
|
depends on M68K && ATARI
|
|
|
|
help
|
|
|
|
This option enables support for the on-board IDE
|
|
|
|
interface on the Atari Falcon.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2010-05-19 22:10:24 +02:00
|
|
|
config PATA_ISAPNP
|
|
|
|
tristate "ISA Plug and Play PATA support"
|
|
|
|
depends on ISAPNP
|
|
|
|
help
|
|
|
|
This option enables support for ISA plug & play ATA
|
|
|
|
controllers such as those found on old soundcards.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
|
|
|
config PATA_IXP4XX_CF
|
|
|
|
tristate "IXP4XX Compact Flash support"
|
|
|
|
depends on ARCH_IXP4XX
|
|
|
|
help
|
|
|
|
This option enables support for a Compact Flash connected on
|
|
|
|
the ixp4xx expansion bus. This driver had been written for
|
|
|
|
Loft/Avila boards in mind but can work with others.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
|
|
|
config PATA_MPIIX
|
|
|
|
tristate "Intel PATA MPIIX support"
|
|
|
|
depends on PCI
|
|
|
|
help
|
|
|
|
This option enables support for MPIIX PATA support.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
|
|
|
config PATA_NS87410
|
|
|
|
tristate "Nat Semi NS87410 PATA support"
|
|
|
|
depends on PCI
|
|
|
|
help
|
|
|
|
This option enables support for the National Semiconductor
|
|
|
|
NS87410 PCI-IDE controller.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
|
|
|
config PATA_OPTI
|
|
|
|
tristate "OPTI621/6215 PATA support (Very Experimental)"
|
2013-01-17 03:53:29 +01:00
|
|
|
depends on PCI
|
2010-05-19 22:10:24 +02:00
|
|
|
help
|
|
|
|
This option enables full PIO support for the early Opti ATA
|
|
|
|
controllers found on some old motherboards.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
|
|
|
config PATA_PALMLD
|
|
|
|
tristate "Palm LifeDrive PATA support"
|
|
|
|
depends on MACH_PALMLD
|
|
|
|
help
|
|
|
|
This option enables support for Palm LifeDrive's internal ATA
|
|
|
|
port via the new ATA layer.
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
|
|
|
config PATA_PCMCIA
|
|
|
|
tristate "PCMCIA PATA support"
|
|
|
|
depends on PCMCIA
|
|
|
|
help
|
|
|
|
This option enables support for PCMCIA ATA interfaces, including
|
|
|
|
compact flash card adapters via the new ATA layer.
|
|
|
|
|
|
|
|
If unsure, say N.
|
2006-09-29 19:30:05 +02:00
|
|
|
|
2006-10-28 04:08:48 +02:00
|
|
|
config PATA_PLATFORM
|
|
|
|
tristate "Generic platform device PATA support"
|
2011-01-20 23:44:16 +01:00
|
|
|
depends on EXPERT || PPC || HAVE_PATA_PLATFORM
|
2006-10-28 04:08:48 +02:00
|
|
|
help
|
|
|
|
This option enables support for generic directly connected ATA
|
|
|
|
devices commonly found on embedded systems.
|
|
|
|
|
|
|
|
If unsure, say N.
|
2008-01-09 20:10:41 +01:00
|
|
|
|
|
|
|
config PATA_OF_PLATFORM
|
|
|
|
tristate "OpenFirmware platform device PATA support"
|
2011-12-22 21:07:00 +01:00
|
|
|
depends on PATA_PLATFORM && OF
|
2008-01-09 20:10:41 +01:00
|
|
|
help
|
|
|
|
This option enables support for generic directly connected ATA
|
|
|
|
devices commonly found on embedded systems with OpenFirmware
|
|
|
|
bindings.
|
|
|
|
|
|
|
|
If unsure, say N.
|
2006-10-28 04:08:48 +02:00
|
|
|
|
2010-05-19 22:10:24 +02:00
|
|
|
config PATA_QDI
|
|
|
|
tristate "QDI VLB PATA support"
|
|
|
|
depends on ISA
|
2011-10-13 15:11:39 +02:00
|
|
|
select PATA_LEGACY
|
2007-05-03 10:55:52 +02:00
|
|
|
help
|
2010-05-19 22:10:24 +02:00
|
|
|
Support for QDI 6500 and 6580 PATA controllers on VESA local bus.
|
2007-05-03 10:55:52 +02:00
|
|
|
|
2010-05-19 22:10:24 +02:00
|
|
|
config PATA_RB532
|
|
|
|
tristate "RouterBoard 532 PATA CompactFlash support"
|
|
|
|
depends on MIKROTIK_RB532
|
2006-11-14 19:43:21 +01:00
|
|
|
help
|
2010-05-19 22:10:24 +02:00
|
|
|
This option enables support for the RouterBoard 532
|
|
|
|
PATA CompactFlash controller.
|
2006-11-14 19:43:21 +01:00
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2010-05-19 22:10:24 +02:00
|
|
|
config PATA_RZ1000
|
|
|
|
tristate "PC Tech RZ1000 PATA support"
|
|
|
|
depends on PCI
|
2009-01-16 02:45:32 +01:00
|
|
|
help
|
2010-05-19 22:10:24 +02:00
|
|
|
This option enables basic support for the PC Tech RZ1000/1
|
|
|
|
PATA controllers via the new ATA layer
|
2009-01-16 02:45:32 +01:00
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2010-07-13 06:23:05 +02:00
|
|
|
config PATA_SAMSUNG_CF
|
|
|
|
tristate "Samsung SoC PATA support"
|
|
|
|
depends on SAMSUNG_DEV_IDE
|
|
|
|
help
|
|
|
|
This option enables basic support for Samsung's S3C/S5P board
|
|
|
|
PATA controllers via the new ATA layer
|
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2010-05-19 22:10:24 +02:00
|
|
|
config PATA_WINBOND_VLB
|
|
|
|
tristate "Winbond W83759A VLB PATA support (Experimental)"
|
2013-01-17 03:53:29 +01:00
|
|
|
depends on ISA
|
2009-11-25 08:08:33 +01:00
|
|
|
select PATA_LEGACY
|
2007-01-26 08:28:18 +01:00
|
|
|
help
|
2010-05-19 22:10:24 +02:00
|
|
|
Support for the Winbond W83759A controller on Vesa Local Bus
|
|
|
|
systems.
|
2007-01-26 08:28:18 +01:00
|
|
|
|
2010-05-19 22:10:24 +02:00
|
|
|
comment "Generic fallback / legacy drivers"
|
2007-01-26 08:28:18 +01:00
|
|
|
|
2010-05-19 22:10:24 +02:00
|
|
|
config PATA_ACPI
|
|
|
|
tristate "ACPI firmware driver for PATA"
|
|
|
|
depends on ATA_ACPI && ATA_BMDMA
|
2008-05-06 15:31:41 +02:00
|
|
|
help
|
2010-05-19 22:10:24 +02:00
|
|
|
This option enables an ACPI method driver which drives
|
|
|
|
motherboard PATA controller interfaces through the ACPI
|
|
|
|
firmware in the BIOS. This driver can sometimes handle
|
|
|
|
otherwise unsupported hardware.
|
2008-05-06 15:31:41 +02:00
|
|
|
|
2010-05-19 22:10:24 +02:00
|
|
|
config ATA_GENERIC
|
|
|
|
tristate "Generic ATA support"
|
|
|
|
depends on PCI && ATA_BMDMA
|
2007-08-21 07:12:31 +02:00
|
|
|
help
|
2010-05-19 22:10:24 +02:00
|
|
|
This option enables support for generic BIOS configured
|
|
|
|
ATA controllers via the new ATA layer
|
2007-08-21 07:12:31 +02:00
|
|
|
|
|
|
|
If unsure, say N.
|
|
|
|
|
2010-05-19 22:10:24 +02:00
|
|
|
config PATA_LEGACY
|
|
|
|
tristate "Legacy ISA PATA support (Experimental)"
|
2013-01-17 03:53:29 +01:00
|
|
|
depends on (ISA || PCI)
|
2009-12-01 15:36:29 +01:00
|
|
|
help
|
2010-05-19 22:10:24 +02:00
|
|
|
This option enables support for ISA/VLB/PCI bus legacy PATA
|
|
|
|
ports and allows them to be accessed via the new ATA layer.
|
2009-12-01 15:36:29 +01:00
|
|
|
|
2010-05-19 22:10:24 +02:00
|
|
|
If unsure, say N.
|
2009-12-01 15:36:29 +01:00
|
|
|
|
2008-04-07 15:47:21 +02:00
|
|
|
endif # ATA_SFF
|
2007-05-11 07:48:54 +02:00
|
|
|
endif # ATA
|