diff options
Diffstat (limited to 'arch/arm/mach-davinci/Kconfig')
-rw-r--r-- | arch/arm/mach-davinci/Kconfig | 47 |
1 files changed, 42 insertions, 5 deletions
diff --git a/arch/arm/mach-davinci/Kconfig b/arch/arm/mach-davinci/Kconfig index bac988e7a4c3..a9c78bc72b84 100644 --- a/arch/arm/mach-davinci/Kconfig +++ b/arch/arm/mach-davinci/Kconfig | |||
@@ -4,19 +4,56 @@ menu "TI DaVinci Implementations" | |||
4 | 4 | ||
5 | comment "DaVinci Core Type" | 5 | comment "DaVinci Core Type" |
6 | 6 | ||
7 | config ARCH_DAVINCI644x | 7 | config ARCH_DAVINCI_DM644x |
8 | default y | ||
9 | bool "DaVinci 644x based system" | 8 | bool "DaVinci 644x based system" |
10 | 9 | ||
11 | comment "DaVinci Board Type" | 10 | comment "DaVinci Board Type" |
12 | 11 | ||
13 | config MACH_DAVINCI_EVM | 12 | config MACH_DAVINCI_EVM |
14 | bool "TI DaVinci EVM" | 13 | bool "TI DM644x EVM" |
15 | default y | 14 | default y |
16 | depends on ARCH_DAVINCI644x | 15 | depends on ARCH_DAVINCI_DM644x |
17 | help | 16 | help |
18 | Configure this option to specify the whether the board used | 17 | Configure this option to specify the whether the board used |
19 | for development is a DaVinci EVM | 18 | for development is a DM644x EVM |
19 | |||
20 | |||
21 | config DAVINCI_MUX | ||
22 | bool "DAVINCI multiplexing support" | ||
23 | depends on ARCH_DAVINCI | ||
24 | default y | ||
25 | help | ||
26 | Pin multiplexing support for DAVINCI boards. If your bootloader | ||
27 | sets the multiplexing correctly, say N. Otherwise, or if unsure, | ||
28 | say Y. | ||
29 | |||
30 | config DAVINCI_MUX_DEBUG | ||
31 | bool "Multiplexing debug output" | ||
32 | depends on DAVINCI_MUX | ||
33 | help | ||
34 | Makes the multiplexing functions print out a lot of debug info. | ||
35 | This is useful if you want to find out the correct values of the | ||
36 | multiplexing registers. | ||
37 | |||
38 | config DAVINCI_MUX_WARNINGS | ||
39 | bool "Warn about pins the bootloader didn't set up" | ||
40 | depends on DAVINCI_MUX | ||
41 | help | ||
42 | Choose Y here to warn whenever driver initialization logic needs | ||
43 | to change the pin multiplexing setup. When there are no warnings | ||
44 | printed, it's safe to deselect DAVINCI_MUX for your product. | ||
45 | |||
46 | config DAVINCI_RESET_CLOCKS | ||
47 | bool "Reset unused clocks during boot" | ||
48 | depends on ARCH_DAVINCI | ||
49 | help | ||
50 | Say Y if you want to reset unused clocks during boot. | ||
51 | This option saves power, but assumes all drivers are | ||
52 | using the clock framework. Broken drivers that do not | ||
53 | yet use clock framework may not work with this option. | ||
54 | If you are booting from another operating system, you | ||
55 | probably do not want this option enabled until your | ||
56 | device drivers work properly. | ||
20 | 57 | ||
21 | endmenu | 58 | endmenu |
22 | 59 | ||