1# Silicon vendor Provided Supervisory call driver for sip_svc subsystem
2
3# Copyright (c) 2023 Intel Corporation
4# SPDX-License-Identifier: Apache-2.0
5
6menuconfig ARM_SIP_SVC_DRIVER
7	bool "ARM SIP SVC driver"
8	depends on ARM64
9	help
10	  ARM supervisory call driver for communicating with EL2 or EL3 firmware
11
12if ARM_SIP_SVC_DRIVER
13
14module = ARM_SIP_SVC_DRIVER
15module-str = arm_sip_svc_driver
16source "subsys/logging/Kconfig.template.log_config"
17
18config ARM_SIP_SVC_DRIVER_INIT_PRIORITY
19	int "Initialization priority"
20	default 50
21
22config ARM_SIP_SVC_HAS_DRIVER
23	bool
24	help
25	   This is an option to be enabled by individual sip svc driver
26	   to signal that there is a sip svc driver. This is used by other
27	   modules which depends on sip svc driver.
28
29source "drivers/sip_svc/Kconfig.sip_smc_agilex"
30
31endif # ARM_SIP_SVC_DRIVER
32