Added TISCI driver for supported devices using the binding ti,k2g-sci. This is used to communicate via the secury proxy channel for clock, resource and power domain management. Refer: https://software-dl.ti.com/tisci/esd/latest/2_tisci_msgs/general/TISCI_header.html Signed-off-by: Dave Joseph <d-joseph@ti.com>
23 lines
472 B
Plaintext
23 lines
472 B
Plaintext
# Copyright (c) 2025, Texas Instruments
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config TISCI
|
|
bool "TISCI Firmware driver"
|
|
default y
|
|
depends on DT_HAS_TI_K2G_SCI_ENABLED
|
|
select MBOX
|
|
help
|
|
TISCI firmware driver is a frontend interface
|
|
to TI System Controller interface firmware through
|
|
secureproxy mailbox.
|
|
|
|
if TISCI
|
|
|
|
config TISCI_INIT_PRIORITY
|
|
int "TISCI init priority"
|
|
default KERNEL_INIT_PRIORITY_OBJECTS
|
|
help
|
|
Init priority for the TISCI driver.
|
|
|
|
endif
|