SFFSDR: Update to board code to support FPGA and lyrvpss drivers
[linux-davinci-sffsdr.git] / arch / arm / mach-davinci / Kconfig
blob769cd6c23eac57864e0461e7bf20434d9abd458c
1 if ARCH_DAVINCI
3 menu "TI DaVinci Implementations"
5 comment "DaVinci Core Type"
7 config ARCH_DAVINCI_DM644x
8         bool "DaVinci 644x based system"
9         select CPU_V5
11 config ARCH_DAVINCI_DM646x
12         bool "DaVinci 646x based system"
13         select CPU_V5
15 config ARCH_DAVINCI_DM355
16         bool "DaVinci 355 based system"
17         select CPU_V5
19 comment "DaVinci Board Type"
21 config MACH_DAVINCI_EVM
22         bool "TI DM644x EVM"
23         default y
24         depends on ARCH_DAVINCI_DM644x
25         help
26           Configure this option to specify the whether the board used
27           for development is a DM644x EVM
29 config MACH_DAVINCI_DM646X_EVM
30         bool "TI DM646x EVM"
31         default n
32         depends on ARCH_DAVINCI_DM646x
33         help
34           Configure this option to specify the whether the board used
35           for development is a DM646x EVM
37 config 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
45 config MACH_SFFSDR
46         bool "Lyrtech SFFSDR"
47         default n
48         depends on ARCH_DAVINCI_DM644x
49         help
50           Say Y here to select the Lyrtech Small Form Factor
51           Software Defined Radio (SFFSDR) board.
53 config SFFSDR_FPGA
54         tristate "SFFSDR SX-35 FPGA support"
55         default n
56         depends on MACH_SFFSDR
57         select FPGADL
58         select FW_LOADER
59         help
60           This driver supports the SX-35 FPGA on the Lyrtech SFFSDR board.
61           The FPGA is mainly used to generate the clocks for the audio
62           codec and for transferring data to/from the other stacked boards
63           (using the EMIF or VPSS ports).
65           To compile this driver as a module, choose M here: the
66           module will be called sffsdr-fpga.
68 config DAVINCI_MUX
69         bool "DAVINCI multiplexing support"
70         depends on ARCH_DAVINCI
71         default y
72         help
73           Pin multiplexing support for DAVINCI boards. If your bootloader
74           sets the multiplexing correctly, say N. Otherwise, or if unsure,
75           say Y.
77 config DAVINCI_MUX_DEBUG
78         bool "Multiplexing debug output"
79         depends on DAVINCI_MUX
80         help
81           Makes the multiplexing functions print out a lot of debug info.
82           This is useful if you want to find out the correct values of the
83           multiplexing registers.
85 config DAVINCI_MUX_WARNINGS
86         bool "Warn about pins the bootloader didn't set up"
87         depends on DAVINCI_MUX
88         help
89           Choose Y here to warn whenever driver initialization logic needs
90           to change the pin multiplexing setup.  When there are no warnings
91           printed, it's safe to deselect DAVINCI_MUX for your product.
93 config DAVINCI_RESET_CLOCKS
94         bool "Reset unused clocks during boot"
95         depends on ARCH_DAVINCI
96         help
97           Say Y if you want to reset unused clocks during boot.
98           This option saves power, but assumes all drivers are
99           using the clock framework. Broken drivers that do not
100           yet use clock framework may not work with this option.
101           If you are booting from another operating system, you
102           probably do not want this option enabled until your
103           device drivers work properly.
105 endmenu
107 endif