1# Host Command Peripheral simulator config
2
3# Copyright (c) 2020 Google LLC
4# SPDX-License-Identifier: Apache-2.0
5
6menuconfig EC_HOST_CMD_PERIPH
7	bool "Embedded Controller Host Command peripheral support"
8	help
9	  Enable the embedded controller host command peripheral driver. This
10	  is needed by the EC host command framework to send and receive data
11	  on the appropriate EC host bus.
12
13if EC_HOST_CMD_PERIPH
14
15config EC_HOST_CMD_SIMULATOR
16	bool "Embedded Controller Host Command Peripheral Simulator"
17	help
18	  Enable the EC host command simulator.
19
20endif # EC_HOST_CMD_PERIPH
21