aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sh/Kconfig
diff options
context:
space:
mode:
authorPaul Mundt <lethal@linux-sh.org>2007-06-20 05:01:52 -0400
committerPaul Mundt <lethal@linux-sh.org>2007-06-20 05:01:52 -0400
commit824e55f95f871d492cd095d7694df3cfcad1f8f5 (patch)
tree652add6016c00e994c67c1c1190de76bb6f991fe /arch/sh/Kconfig
parent0630e45c887b3d3d8d6ad27af03ec4054926d635 (diff)
sh: Fix up cf-enabler dependency for SE boards.
This was using CONFIG_SH_SOLUTION_ENGINE, where we really wanted CONFIG_SOLUTION_ENGINE. While we're at it, move the whole CF enabler mess somewhere better suited. Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/Kconfig')
-rw-r--r--arch/sh/Kconfig87
1 files changed, 43 insertions, 44 deletions
diff --git a/arch/sh/Kconfig b/arch/sh/Kconfig
index b16407c9f2c4..924efe5b8c29 100644
--- a/arch/sh/Kconfig
+++ b/arch/sh/Kconfig
@@ -404,50 +404,6 @@ source "arch/sh/boards/renesas/hs7751rvoip/Kconfig"
404source "arch/sh/boards/renesas/rts7751r2d/Kconfig" 404source "arch/sh/boards/renesas/rts7751r2d/Kconfig"
405source "arch/sh/boards/renesas/r7780rp/Kconfig" 405source "arch/sh/boards/renesas/r7780rp/Kconfig"
406 406
407config CF_ENABLER
408 bool "Compact Flash Enabler support"
409 depends on SH_SOLUTION_ENGINE || SH_SH03
410 ---help---
411 Compact Flash is a small, removable mass storage device introduced
412 in 1994 originally as a PCMCIA device. If you say `Y' here, you
413 compile in support for Compact Flash devices directly connected to
414 a SuperH processor. A Compact Flash FAQ is available at
415 <http://www.compactflash.org/faqs/faq.htm>.
416
417 If your board has "Directly Connected" CompactFlash at area 5 or 6,
418 you may want to enable this option. Then, you can use CF as
419 primary IDE drive (only tested for SanDisk).
420
421 If in doubt, select 'N'.
422
423choice
424 prompt "Compact Flash Connection Area"
425 depends on CF_ENABLER
426 default CF_AREA6
427
428config CF_AREA5
429 bool "Area5"
430 help
431 If your board has "Directly Connected" CompactFlash, You should
432 select the area where your CF is connected to.
433
434 - "Area5" if CompactFlash is connected to Area 5 (0x14000000)
435 - "Area6" if it is connected to Area 6 (0x18000000)
436
437 "Area6" will work for most boards.
438
439config CF_AREA6
440 bool "Area6"
441
442endchoice
443
444config CF_BASE_ADDR
445 hex
446 depends on CF_ENABLER
447 default "0xb8000000" if CF_AREA6
448 default "0xb4000000" if CF_AREA5
449
450
451menu "Timer and clock configuration" 407menu "Timer and clock configuration"
452 408
453config SH_TMU 409config SH_TMU
@@ -705,6 +661,49 @@ config SUPERHYWAY
705 tristate "SuperHyway Bus support" 661 tristate "SuperHyway Bus support"
706 depends on CPU_SUBTYPE_SH4_202 662 depends on CPU_SUBTYPE_SH4_202
707 663
664config CF_ENABLER
665 bool "Compact Flash Enabler support"
666 depends on SOLUTION_ENGINE || SH_SH03
667 ---help---
668 Compact Flash is a small, removable mass storage device introduced
669 in 1994 originally as a PCMCIA device. If you say `Y' here, you
670 compile in support for Compact Flash devices directly connected to
671 a SuperH processor. A Compact Flash FAQ is available at
672 <http://www.compactflash.org/faqs/faq.htm>.
673
674 If your board has "Directly Connected" CompactFlash at area 5 or 6,
675 you may want to enable this option. Then, you can use CF as
676 primary IDE drive (only tested for SanDisk).
677
678 If in doubt, select 'N'.
679
680choice
681 prompt "Compact Flash Connection Area"
682 depends on CF_ENABLER
683 default CF_AREA6
684
685config CF_AREA5
686 bool "Area5"
687 help
688 If your board has "Directly Connected" CompactFlash, You should
689 select the area where your CF is connected to.
690
691 - "Area5" if CompactFlash is connected to Area 5 (0x14000000)
692 - "Area6" if it is connected to Area 6 (0x18000000)
693
694 "Area6" will work for most boards.
695
696config CF_AREA6
697 bool "Area6"
698
699endchoice
700
701config CF_BASE_ADDR
702 hex
703 depends on CF_ENABLER
704 default "0xb8000000" if CF_AREA6
705 default "0xb4000000" if CF_AREA5
706
708source "arch/sh/drivers/pci/Kconfig" 707source "arch/sh/drivers/pci/Kconfig"
709 708
710source "drivers/pci/Kconfig" 709source "drivers/pci/Kconfig"