blob: d7614a0ab2f4714f5047c9047ed9cb77379c5c1a [file] [log] [blame]
Kevin Hilman7c6337e2007-04-30 19:37:19 +01001if ARCH_DAVINCI
2
Sergei Shtylyov05214442009-03-11 19:49:05 +04003config CP_INTC
4 bool
5
Kevin Hilman7c6337e2007-04-30 19:37:19 +01006menu "TI DaVinci Implementations"
7
8comment "DaVinci Core Type"
9
Kevin Hilmand0e47fb2009-04-14 11:30:11 -050010config ARCH_DAVINCI_DM644x
Kevin Hilman7c6337e2007-04-30 19:37:19 +010011 bool "DaVinci 644x based system"
12
Kevin Hilman95a34772009-04-29 12:10:55 -070013config ARCH_DAVINCI_DM355
14 bool "DaVinci 355 based system"
15
Kevin Hilmane38d92f2009-04-29 17:44:58 -070016config ARCH_DAVINCI_DM646x
17 bool "DaVinci 646x based system"
18
Kevin Hilman7c6337e2007-04-30 19:37:19 +010019comment "DaVinci Board Type"
20
21config MACH_DAVINCI_EVM
Kevin Hilmand0e47fb2009-04-14 11:30:11 -050022 bool "TI DM644x EVM"
Kevin Hilman7c6337e2007-04-30 19:37:19 +010023 default y
Kevin Hilmand0e47fb2009-04-14 11:30:11 -050024 depends on ARCH_DAVINCI_DM644x
Kevin Hilman7c6337e2007-04-30 19:37:19 +010025 help
26 Configure this option to specify the whether the board used
Kevin Hilmand0e47fb2009-04-14 11:30:11 -050027 for development is a DM644x EVM
Kevin Hilman7c6337e2007-04-30 19:37:19 +010028
Hugo Villeneuvef5ce6a62009-04-29 16:46:57 -070029config MACH_SFFSDR
30 bool "Lyrtech SFFSDR"
31 default n
32 depends on ARCH_DAVINCI_DM644x
33 help
34 Say Y here to select the Lyrtech Small Form Factor
35 Software Defined Radio (SFFSDR) board.
Kevin Hilman5526b3f2009-04-14 09:50:37 -050036
Kevin Hilman95a34772009-04-29 12:10:55 -070037config MACH_DAVINCI_DM355_EVM
38 bool "TI DM355 EVM"
39 default n
40 depends on ARCH_DAVINCI_DM355
41 help
42 Configure this option to specify the whether the board used
43 for development is a DM355 EVM
44
45config MACH_DM355_LEOPARD
46 bool "DM355 Leopard board"
47 default n
48 depends on ARCH_DAVINCI_DM355
49 help
50 Configure this option to specify the whether the board used
51 for development is a DM355 Leopard board.
52
Kevin Hilmane38d92f2009-04-29 17:44:58 -070053config MACH_DAVINCI_DM6467_EVM
54 bool "TI DM6467 EVM"
55 default n
56 depends on ARCH_DAVINCI_DM646x
57 help
58 Configure this option to specify the whether the board used
59 for development is a DM6467 EVM
60
61
Kevin Hilman5526b3f2009-04-14 09:50:37 -050062config DAVINCI_MUX
63 bool "DAVINCI multiplexing support"
64 depends on ARCH_DAVINCI
65 default y
66 help
67 Pin multiplexing support for DAVINCI boards. If your bootloader
68 sets the multiplexing correctly, say N. Otherwise, or if unsure,
69 say Y.
70
71config DAVINCI_MUX_DEBUG
72 bool "Multiplexing debug output"
73 depends on DAVINCI_MUX
74 help
75 Makes the multiplexing functions print out a lot of debug info.
76 This is useful if you want to find out the correct values of the
77 multiplexing registers.
78
79config DAVINCI_MUX_WARNINGS
80 bool "Warn about pins the bootloader didn't set up"
81 depends on DAVINCI_MUX
82 help
83 Choose Y here to warn whenever driver initialization logic needs
84 to change the pin multiplexing setup. When there are no warnings
85 printed, it's safe to deselect DAVINCI_MUX for your product.
86
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070087config DAVINCI_RESET_CLOCKS
88 bool "Reset unused clocks during boot"
89 depends on ARCH_DAVINCI
90 help
91 Say Y if you want to reset unused clocks during boot.
92 This option saves power, but assumes all drivers are
93 using the clock framework. Broken drivers that do not
94 yet use clock framework may not work with this option.
95 If you are booting from another operating system, you
96 probably do not want this option enabled until your
97 device drivers work properly.
98
Kevin Hilman7c6337e2007-04-30 19:37:19 +010099endmenu
100
101endif