blob: 812d30153b218b30d41643396207fa836b5efeb8 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001# SPDX-License-Identifier: GPL-2.0+
Nishanth Menon08b9dc22015-09-17 15:42:39 -05002#
3# (C) Copyright 2015
4# Texas Instruments Incorporated - http://www.ti.com/
Nishanth Menon08b9dc22015-09-17 15:42:39 -05005#
6
7menu "Remote Processor drivers"
8
9# REMOTEPROC gets selected by drivers as needed
10# All users should depend on DM
11config REMOTEPROC
12 bool
13 depends on DM
14
Nishanth Menon889ee972015-09-17 15:42:40 -050015# Please keep the configuration alphabetically sorted.
Lokesh Vutla7eb13572018-08-27 15:57:51 +053016config K3_SYSTEM_CONTROLLER
17 bool "Support for TI' K3 System Controller"
18 select REMOTEPROC
19 depends on DM
20 depends on ARCH_K3
21 depends on OF_CONTROL
22 help
23 Say 'y' here to add support for TI' K3 System Controller.
24
Nishanth Menon889ee972015-09-17 15:42:40 -050025config REMOTEPROC_SANDBOX
26 bool "Support for Test processor for Sandbox"
27 select REMOTEPROC
28 depends on DM
29 depends on SANDBOX
30 help
31 Say 'y' here to add support for test processor which does dummy
32 operations for sandbox platform.
Nishanth Menon129a1142016-02-25 12:53:45 -060033
34config REMOTEPROC_TI_POWER
35 bool "Support for TI Power processor"
36 select REMOTEPROC
37 depends on DM
38 depends on ARCH_KEYSTONE
39 depends on OF_CONTROL
40 help
41 Say 'y' here to add support for TI power processors such as those
42 found on certain TI keystone and OMAP generation SoCs.
Nishanth Menon08b9dc22015-09-17 15:42:39 -050043endmenu