blob: be747f5c6cd8a86db5b265d8f4f9af3eebd9f93b [file] [log] [blame]
Kevin Hilman7c6337e2007-04-30 19:37:19 +01001if ARCH_DAVINCI
2
Mark A. Greer0b0c4c22009-04-15 12:41:40 -07003config AINTC
4 bool
5
Sergei Shtylyov05214442009-03-11 19:49:05 +04006config CP_INTC
7 bool
8
Kevin Hilman7c6337e2007-04-30 19:37:19 +01009menu "TI DaVinci Implementations"
10
11comment "DaVinci Core Type"
12
Kevin Hilmand0e47fb2009-04-14 11:30:11 -050013config ARCH_DAVINCI_DM644x
Kevin Hilman7c6337e2007-04-30 19:37:19 +010014 bool "DaVinci 644x based system"
Mark A. Greer0b0c4c22009-04-15 12:41:40 -070015 select AINTC
Kevin Hilman7c6337e2007-04-30 19:37:19 +010016
Kevin Hilman95a34772009-04-29 12:10:55 -070017config ARCH_DAVINCI_DM355
18 bool "DaVinci 355 based system"
Mark A. Greer0b0c4c22009-04-15 12:41:40 -070019 select AINTC
Kevin Hilman95a34772009-04-29 12:10:55 -070020
Kevin Hilmane38d92f2009-04-29 17:44:58 -070021config ARCH_DAVINCI_DM646x
22 bool "DaVinci 646x based system"
Mark A. Greer0b0c4c22009-04-15 12:41:40 -070023 select AINTC
Kevin Hilmane38d92f2009-04-29 17:44:58 -070024
Kevin Hilman7c6337e2007-04-30 19:37:19 +010025comment "DaVinci Board Type"
26
27config MACH_DAVINCI_EVM
Kevin Hilmand0e47fb2009-04-14 11:30:11 -050028 bool "TI DM644x EVM"
Kevin Hilman7c6337e2007-04-30 19:37:19 +010029 default y
Kevin Hilmand0e47fb2009-04-14 11:30:11 -050030 depends on ARCH_DAVINCI_DM644x
Kevin Hilman7c6337e2007-04-30 19:37:19 +010031 help
32 Configure this option to specify the whether the board used
Kevin Hilmand0e47fb2009-04-14 11:30:11 -050033 for development is a DM644x EVM
Kevin Hilman7c6337e2007-04-30 19:37:19 +010034
Hugo Villeneuvef5ce6a62009-04-29 16:46:57 -070035config MACH_SFFSDR
36 bool "Lyrtech SFFSDR"
Hugo Villeneuvef5ce6a62009-04-29 16:46:57 -070037 depends on ARCH_DAVINCI_DM644x
38 help
39 Say Y here to select the Lyrtech Small Form Factor
40 Software Defined Radio (SFFSDR) board.
Kevin Hilman5526b3f2009-04-14 09:50:37 -050041
Kevin Hilman95a34772009-04-29 12:10:55 -070042config MACH_DAVINCI_DM355_EVM
43 bool "TI DM355 EVM"
Kevin Hilman95a34772009-04-29 12:10:55 -070044 depends on ARCH_DAVINCI_DM355
45 help
46 Configure this option to specify the whether the board used
47 for development is a DM355 EVM
48
49config MACH_DM355_LEOPARD
50 bool "DM355 Leopard board"
Kevin Hilman95a34772009-04-29 12:10:55 -070051 depends on ARCH_DAVINCI_DM355
52 help
53 Configure this option to specify the whether the board used
54 for development is a DM355 Leopard board.
55
Kevin Hilmane38d92f2009-04-29 17:44:58 -070056config MACH_DAVINCI_DM6467_EVM
57 bool "TI DM6467 EVM"
Kevin Hilmane38d92f2009-04-29 17:44:58 -070058 depends on ARCH_DAVINCI_DM646x
59 help
60 Configure this option to specify the whether the board used
61 for development is a DM6467 EVM
62
63
Kevin Hilman5526b3f2009-04-14 09:50:37 -050064config DAVINCI_MUX
65 bool "DAVINCI multiplexing support"
66 depends on ARCH_DAVINCI
67 default y
68 help
69 Pin multiplexing support for DAVINCI boards. If your bootloader
70 sets the multiplexing correctly, say N. Otherwise, or if unsure,
71 say Y.
72
73config DAVINCI_MUX_DEBUG
74 bool "Multiplexing debug output"
75 depends on DAVINCI_MUX
76 help
77 Makes the multiplexing functions print out a lot of debug info.
78 This is useful if you want to find out the correct values of the
79 multiplexing registers.
80
81config DAVINCI_MUX_WARNINGS
82 bool "Warn about pins the bootloader didn't set up"
83 depends on DAVINCI_MUX
84 help
85 Choose Y here to warn whenever driver initialization logic needs
86 to change the pin multiplexing setup. When there are no warnings
87 printed, it's safe to deselect DAVINCI_MUX for your product.
88
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070089config DAVINCI_RESET_CLOCKS
90 bool "Reset unused clocks during boot"
91 depends on ARCH_DAVINCI
92 help
93 Say Y if you want to reset unused clocks during boot.
94 This option saves power, but assumes all drivers are
95 using the clock framework. Broken drivers that do not
96 yet use clock framework may not work with this option.
97 If you are booting from another operating system, you
98 probably do not want this option enabled until your
99 device drivers work properly.
100
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100101endmenu
102
103endif