diff options
author | Pete Popov <ppopov@embeddedalley.com> | 2005-09-15 04:03:12 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2005-10-29 14:32:20 -0400 |
commit | 26a940e21752e0de8f068f77dad606a7d1986937 (patch) | |
tree | 88e46225e19c4c72fa6914a21afb28c6ea52bfc6 /drivers/ide/Kconfig | |
parent | 64abf64d10b3a547becefeb26394dfbefac273fb (diff) |
Cleaned up AMD Au1200 IDE driver:
- converted to platform bus
- removed pci dependencies
- removed virt_to_phys/phys_to_virt calls
System now can root off of a disk.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
diff --git a/Documentation/mips/AU1xxx_IDE.README b/Documentation/mips/AU1xxx_IDE.README
new file mode 100644
Diffstat (limited to 'drivers/ide/Kconfig')
-rw-r--r-- | drivers/ide/Kconfig | 31 |
1 files changed, 30 insertions, 1 deletions
diff --git a/drivers/ide/Kconfig b/drivers/ide/Kconfig index 1cadd2c3cadd..a737886e39d1 100644 --- a/drivers/ide/Kconfig +++ b/drivers/ide/Kconfig | |||
@@ -778,6 +778,35 @@ config BLK_DEV_IDE_PMAC_BLINK | |||
778 | This option enables the use of the sleep LED as a hard drive | 778 | This option enables the use of the sleep LED as a hard drive |
779 | activity LED. | 779 | activity LED. |
780 | 780 | ||
781 | config BLK_DEV_IDE_AU1XXX | ||
782 | bool "IDE for AMD Alchemy Au1200" | ||
783 | depends on SOC_AU1200 | ||
784 | choice | ||
785 | prompt "IDE Mode for AMD Alchemy Au1200" | ||
786 | default CONFIG_BLK_DEV_IDE_AU1XXX_PIO_DBDMA | ||
787 | depends on SOC_AU1200 && BLK_DEV_IDE_AU1XXX | ||
788 | |||
789 | config BLK_DEV_IDE_AU1XXX_PIO_DBDMA | ||
790 | bool "PIO+DbDMA IDE for AMD Alchemy Au1200" | ||
791 | |||
792 | config BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA | ||
793 | bool "MDMA2+DbDMA IDE for AMD Alchemy Au1200" | ||
794 | depends on SOC_AU1200 && BLK_DEV_IDE_AU1XXX | ||
795 | endchoice | ||
796 | |||
797 | config BLK_DEV_IDE_AU1XXX_BURSTABLE_ON | ||
798 | bool "Enable burstable Mode on DbDMA" | ||
799 | default false | ||
800 | depends BLK_DEV_IDE_AU1XXX | ||
801 | help | ||
802 | This option enable the burstable Flag on DbDMA controller | ||
803 | (cf. "AMD Alchemy 'Au1200' Processor Data Book - PRELIMINARY"). | ||
804 | |||
805 | config BLK_DEV_IDE_AU1XXX_SEQTS_PER_RQ | ||
806 | int "Maximum transfer size (KB) per request (up to 128)" | ||
807 | default "128" | ||
808 | depends BLK_DEV_IDE_AU1XXX | ||
809 | |||
781 | config IDE_ARM | 810 | config IDE_ARM |
782 | def_bool ARM && (ARCH_A5K || ARCH_CLPS7500 || ARCH_RPC || ARCH_SHARK) | 811 | def_bool ARM && (ARCH_A5K || ARCH_CLPS7500 || ARCH_RPC || ARCH_SHARK) |
783 | 812 | ||
@@ -1013,7 +1042,7 @@ config BLK_DEV_UMC8672 | |||
1013 | endif | 1042 | endif |
1014 | 1043 | ||
1015 | config BLK_DEV_IDEDMA | 1044 | config BLK_DEV_IDEDMA |
1016 | def_bool BLK_DEV_IDEDMA_PCI || BLK_DEV_IDEDMA_PMAC || BLK_DEV_IDEDMA_ICS | 1045 | def_bool BLK_DEV_IDEDMA_PCI || BLK_DEV_IDEDMA_PMAC || BLK_DEV_IDEDMA_ICS || BLK_DEV_IDE_AU1XXX_MDMA2_DBDMA |
1017 | 1046 | ||
1018 | config IDEDMA_IVB | 1047 | config IDEDMA_IVB |
1019 | bool "IGNORE word93 Validation BITS" | 1048 | bool "IGNORE word93 Validation BITS" |