zephyr/drivers/i2c/Kconfig.sbcon
Jon Medhurst 1c1507d4cd i2c: i2c_sbcon: Driver for ARM's SBCon 2-wire serial interface
SBCon is a simple device which allows directly setting and getting the
hardware state of two-bit serial interfaces like I2C. Therefore to be
useable we need to drive the lines with the appropriate protocol under
software control.

Change-Id: If9000bb75f7b0ad7bbb256b1cb38cc70fa6ca8ea
Signed-off-by: Jon Medhurst <tixy@linaro.org>
2017-05-03 13:51:37 -04:00

52 lines
896 B
Plaintext

#
# Copyright (c) 2016 Linaro Ltd.
#
# SPDX-License-Identifier: Apache-2.0
#
menuconfig I2C_SBCON
bool "I2C driver for ARM's SBCon two-wire serial bus interface"
depends on I2C
select I2C_BITBANG
default n
if I2C_SBCON
config I2C_SBCON_0
bool "Enable SBCon device 0"
default n
config I2C_SBCON_0_NAME
depends on I2C_SBCON_0
string "SBCon device 0 Device Name"
default "SBCON_0"
config I2C_SBCON_1
bool "Enable SBCon device 1"
default n
config I2C_SBCON_1_NAME
depends on I2C_SBCON_1
string "SBCon device 1 Device Name"
default "SBCON_1"
config I2C_SBCON_2
bool "Enable SBCon device 2"
default n
config I2C_SBCON_2_NAME
depends on I2C_SBCON_2
string "SBCon device 2 Device Name"
default "SBCON_2"
config I2C_SBCON_3
bool "Enable SBCon device 3"
default n
config I2C_SBCON_3_NAME
depends on I2C_SBCON_3
string "SBCon device 0 Device Name"
default "SBCON_3"
endif