summaryrefslogtreecommitdiff
path: root/zephyr/subsys/emul/ap_pwrseq/Kconfig
diff options
context:
space:
mode:
Diffstat (limited to 'zephyr/subsys/emul/ap_pwrseq/Kconfig')
-rw-r--r--zephyr/subsys/emul/ap_pwrseq/Kconfig34
1 files changed, 0 insertions, 34 deletions
diff --git a/zephyr/subsys/emul/ap_pwrseq/Kconfig b/zephyr/subsys/emul/ap_pwrseq/Kconfig
deleted file mode 100644
index 309ee08eae..0000000000
--- a/zephyr/subsys/emul/ap_pwrseq/Kconfig
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 2022 The ChromiumOS Authors
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-if ZTEST
-
-config EMUL_POWER_SIGNALS
- bool "Enable Power Signals Emulator"
- help
- Power signals emulator imitates the behavior of power signals
- that interact with the EC within a given platform. It enables testing
- AP Power Sequence execution in a virtual environment.
-
-if EMUL_POWER_SIGNALS
-
-module = EMUL_POWER_SIGNALS
-module-str = Power Signals Emulator
-source "subsys/logging/Kconfig.template.log_config"
-
-config EMUL_POWER_SIGNALS_WORK_QUEUE_STACK_SIZE
- int "Power Signals Emulator internal work queue stack size"
- default 1024
- help
- Power Signal Emulator has its own dedicated work queue, this defines
- work queue thread stack size.
-
-config EMUL_POWER_SIGNALS_WORK_QUEUE_PRIO
- int "Power Signals Emulator internal work queue thread priority"
- default 0
- help
- Defines work queue thread thread priority.
-
-endif # EMUL_POWER_SIGNALS
-endif # ZTEST