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