Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0+ |
Nishanth Menon | ddf56bc | 2015-09-17 15:42:39 -0500 | [diff] [blame] | 2 | # |
| 3 | # (C) Copyright 2015 |
| 4 | # Texas Instruments Incorporated - http://www.ti.com/ |
Nishanth Menon | ddf56bc | 2015-09-17 15:42:39 -0500 | [diff] [blame] | 5 | # |
| 6 | |
| 7 | menu "Remote Processor drivers" |
| 8 | |
| 9 | # REMOTEPROC gets selected by drivers as needed |
| 10 | # All users should depend on DM |
| 11 | config REMOTEPROC |
| 12 | bool |
| 13 | depends on DM |
| 14 | |
Nishanth Menon | 3df0b8b | 2015-09-17 15:42:40 -0500 | [diff] [blame] | 15 | # Please keep the configuration alphabetically sorted. |
Lokesh Vutla | 1ad190b | 2018-08-27 15:57:51 +0530 | [diff] [blame] | 16 | config 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 | |
Lokesh Vutla | c365ed7 | 2018-08-27 15:57:52 +0530 | [diff] [blame] | 25 | config REMOTEPROC_K3 |
| 26 | bool "Support for TI's K3 based remoteproc driver" |
| 27 | select REMOTEPROC |
| 28 | depends on DM |
| 29 | depends on ARCH_K3 |
| 30 | depends on OF_CONTROL |
| 31 | help |
| 32 | Say 'y' here to add support for TI' K3 remoteproc driver. |
| 33 | |
Nishanth Menon | 3df0b8b | 2015-09-17 15:42:40 -0500 | [diff] [blame] | 34 | config REMOTEPROC_SANDBOX |
| 35 | bool "Support for Test processor for Sandbox" |
| 36 | select REMOTEPROC |
| 37 | depends on DM |
| 38 | depends on SANDBOX |
| 39 | help |
| 40 | Say 'y' here to add support for test processor which does dummy |
| 41 | operations for sandbox platform. |
Nishanth Menon | 4239284 | 2016-02-25 12:53:45 -0600 | [diff] [blame] | 42 | |
| 43 | config REMOTEPROC_TI_POWER |
| 44 | bool "Support for TI Power processor" |
| 45 | select REMOTEPROC |
| 46 | depends on DM |
| 47 | depends on ARCH_KEYSTONE |
| 48 | depends on OF_CONTROL |
| 49 | help |
| 50 | Say 'y' here to add support for TI power processors such as those |
| 51 | found on certain TI keystone and OMAP generation SoCs. |
Nishanth Menon | ddf56bc | 2015-09-17 15:42:39 -0500 | [diff] [blame] | 52 | endmenu |