hc
2024-05-14 bedbef8ad3e75a304af6361af235302bcc61d06b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#
# (C) Copyright 2015
# Texas Instruments Incorporated - http://www.ti.com/
# SPDX-License-Identifier:    GPL-2.0+
#
 
menu "Remote Processor drivers"
 
# REMOTEPROC gets selected by drivers as needed
# All users should depend on DM
config REMOTEPROC
   bool
   depends on DM
 
# Please keep the configuration alphabetically sorted.
config REMOTEPROC_SANDBOX
   bool "Support for Test processor for Sandbox"
   select REMOTEPROC
   depends on DM
   depends on SANDBOX
   help
     Say 'y' here to add support for test processor which does dummy
     operations for sandbox platform.
 
config REMOTEPROC_TI_POWER
   bool "Support for TI Power processor"
   select REMOTEPROC
   depends on DM
   depends on ARCH_KEYSTONE
   depends on OF_CONTROL
   help
     Say 'y' here to add support for TI power processors such as those
     found on certain TI keystone and OMAP generation SoCs.
endmenu