blob: b06cf85fd297512f4432de1ed120871bd58d5051 [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 Hilmanf28f03b2009-06-03 14:54:27 -070029 default ARCH_DAVINCI_DM644x
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 Hilmanf28f03b2009-06-03 14:54:27 -070044 default ARCH_DAVINCI_DM355
Kevin Hilman95a34772009-04-29 12:10:55 -070045 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
49
50config MACH_DM355_LEOPARD
51 bool "DM355 Leopard board"
Kevin Hilman95a34772009-04-29 12:10:55 -070052 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.
56
Kevin Hilmane38d92f2009-04-29 17:44:58 -070057config MACH_DAVINCI_DM6467_EVM
58 bool "TI DM6467 EVM"
Kevin Hilmanf28f03b2009-06-03 14:54:27 -070059 default ARCH_DAVINCI_DM646x
Kevin Hilmane38d92f2009-04-29 17:44:58 -070060 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
64
65
Kevin Hilman5526b3f2009-04-14 09:50:37 -050066config 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.
74
75config 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.
82
83config 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.
90
Kevin Hilmanc5b736d2009-03-20 17:29:01 -070091config 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.
102
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100103endmenu
104
105endif