davinci: Kconfig: enable EVMs by default when SoCs are enabled
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / arm / mach-davinci / Kconfig
blobb06cf85fd297512f4432de1ed120871bd58d5051
1 if ARCH_DAVINCI
3 config AINTC
4         bool
6 config CP_INTC
7         bool
9 menu "TI DaVinci Implementations"
11 comment "DaVinci Core Type"
13 config ARCH_DAVINCI_DM644x
14         bool "DaVinci 644x based system"
15         select AINTC
17 config ARCH_DAVINCI_DM355
18         bool "DaVinci 355 based system"
19         select AINTC
21 config ARCH_DAVINCI_DM646x
22         bool "DaVinci 646x based system"
23         select AINTC
25 comment "DaVinci Board Type"
27 config MACH_DAVINCI_EVM
28         bool "TI DM644x EVM"
29         default ARCH_DAVINCI_DM644x
30         depends on ARCH_DAVINCI_DM644x
31         help
32           Configure this option to specify the whether the board used
33           for development is a DM644x EVM
35 config MACH_SFFSDR
36         bool "Lyrtech SFFSDR"
37         depends on ARCH_DAVINCI_DM644x
38         help
39           Say Y here to select the Lyrtech Small Form Factor
40           Software Defined Radio (SFFSDR) board.
42 config MACH_DAVINCI_DM355_EVM
43         bool "TI DM355 EVM"
44         default ARCH_DAVINCI_DM355
45         depends on ARCH_DAVINCI_DM355
46         help
47           Configure this option to specify the whether the board used
48           for development is a DM355 EVM
50 config MACH_DM355_LEOPARD
51         bool "DM355 Leopard board"
52         depends on ARCH_DAVINCI_DM355
53         help
54           Configure this option to specify the whether the board used
55           for development is a DM355 Leopard board.
57 config MACH_DAVINCI_DM6467_EVM
58         bool "TI DM6467 EVM"
59         default ARCH_DAVINCI_DM646x
60         depends on ARCH_DAVINCI_DM646x
61         help
62           Configure this option to specify the whether the board used
63           for development is a DM6467 EVM
66 config DAVINCI_MUX
67         bool "DAVINCI multiplexing support"
68         depends on ARCH_DAVINCI
69         default y
70         help
71           Pin multiplexing support for DAVINCI boards. If your bootloader
72           sets the multiplexing correctly, say N. Otherwise, or if unsure,
73           say Y.
75 config DAVINCI_MUX_DEBUG
76         bool "Multiplexing debug output"
77         depends on DAVINCI_MUX
78         help
79           Makes the multiplexing functions print out a lot of debug info.
80           This is useful if you want to find out the correct values of the
81           multiplexing registers.
83 config DAVINCI_MUX_WARNINGS
84         bool "Warn about pins the bootloader didn't set up"
85         depends on DAVINCI_MUX
86         help
87           Choose Y here to warn whenever driver initialization logic needs
88           to change the pin multiplexing setup.  When there are no warnings
89           printed, it's safe to deselect DAVINCI_MUX for your product.
91 config DAVINCI_RESET_CLOCKS
92         bool "Reset unused clocks during boot"
93         depends on ARCH_DAVINCI
94         help
95           Say Y if you want to reset unused clocks during boot.
96           This option saves power, but assumes all drivers are
97           using the clock framework. Broken drivers that do not
98           yet use clock framework may not work with this option.
99           If you are booting from another operating system, you
100           probably do not want this option enabled until your
101           device drivers work properly.
103 endmenu
105 endif