zephyr/drivers/i2c/Kconfig.gpio
Ulf Magnusson 133a299b50 drivers: i2c: Kconfig: Remove redundant 'default n' properties
Bool symbols implicitly default to 'n'.

A 'default n' can make sense e.g. in a Kconfig.defconfig file, if you
want to override a 'default y' on the base definition of the symbol. It
isn't used like that on any of these symbols though, and is
inconsistent.

This will make the auto-generated Kconfig documentation have "No
defaults. Implicitly defaults to n." as well, which is clearer than
'default n if ...'

Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
2018-07-03 17:11:31 -04:00

154 lines
3.9 KiB
Plaintext

#
# Copyright (c) 2017 Linaro Ltd.
#
# SPDX-License-Identifier: Apache-2.0
#
config I2C_GPIO
bool "GPIO bit banging I2C support"
depends on I2C
select I2C_BITBANG
help
Enable software driven (bit banging) I2C support using GPIO pins
# ---------- Port 0 ----------
config I2C_GPIO_0
bool "Enable GPIO Bit Bang I2C device 0"
depends on I2C_GPIO
help
This tells the driver to configure the I2C device at boot, depending
on the additional configuration options below.
config I2C_GPIO_0_NAME
string "GPIO Bit Bang I2C device 0 device name"
default "I2C_0"
depends on I2C_GPIO_0
help
This is the device name for the I2C device, and is included in the
device struct.
config I2C_GPIO_0_GPIO
string "Bit Bang I2C device 0 GPIO name"
depends on I2C_GPIO_0
help
This is the name of the GPIO device that controls the I2C lines.
config I2C_GPIO_0_SCL_PIN
int "Bit Bang I2C device 0 GPIO pin number for SCL"
depends on I2C_GPIO_0
help
This is the GPIO pin number for the I2S SCL line
config I2C_GPIO_0_SDA_PIN
int "Bit Bang I2C device 0 GPIO pin number for SDA"
depends on I2C_GPIO_0
help
This is the GPIO pin number for the I2S SDA line
# ---------- Port 1 ----------
config I2C_GPIO_1
bool "Enable GPIO Bit Bang I2C device 1"
depends on I2C_GPIO
help
This tells the driver to configure the I2C device at boot, depending
on the additional configuration options below.
config I2C_GPIO_1_NAME
string "Bit Bang I2C device 1 device name"
default "I2C_1"
depends on I2C_GPIO_1
help
This is the device name for the I2C device, and is included in the
device struct.
config I2C_GPIO_1_GPIO
string "Bit Bang I2C device 1 GPIO name"
depends on I2C_GPIO_1
help
This is the name of the GPIO device that controls the I2C lines.
config I2C_GPIO_1_SCL_PIN
int "Bit Bang I2C device 1 GPIO pin number for SCL"
depends on I2C_GPIO_1
help
This is the GPIO pin number for the I2S SCL line
config I2C_GPIO_1_SDA_PIN
int "Bit Bang I2C device 1 GPIO pin number for SDA"
depends on I2C_GPIO_1
help
This is the GPIO pin number for the I2S SDA line
# ---------- Port 2 ----------
config I2C_GPIO_2
bool "Enable GPIO Bit Bang I2C device 2"
depends on I2C_GPIO
help
This tells the driver to configure the I2C device at boot, depending
on the additional configuration options below.
config I2C_GPIO_2_NAME
string "Bit Bang I2C device 2 device name"
default "I2C_2"
depends on I2C_GPIO_2
help
This is the device name for the I2C device, and is included in the
device struct.
config I2C_GPIO_2_GPIO
string "Bit Bang I2C device 2 GPIO name"
depends on I2C_GPIO_2
help
This is the name of the GPIO device that controls the I2C lines.
config I2C_GPIO_2_SCL_PIN
int "Bit Bang I2C device 2 GPIO pin number for SCL"
depends on I2C_GPIO_2
help
This is the GPIO pin number for the I2S SCL line
config I2C_GPIO_2_SDA_PIN
int "Bit Bang I2C device 2 GPIO pin number for SDA"
depends on I2C_GPIO_2
help
This is the GPIO pin number for the I2S SDA line
# ---------- Port 3 ----------
config I2C_GPIO_3
bool "Enable GPIO Bit Bang I2C device 3"
depends on I2C_GPIO
help
This tells the driver to configure the I2C device at boot, depending
on the additional configuration options below.
config I2C_GPIO_3_NAME
string "Bit Bang I2C device 3 device name"
default "I2C_3"
depends on I2C_GPIO_3
help
This is the device name for the I2C device, and is included in the
device struct.
config I2C_GPIO_3_GPIO
string "Bit Bang I2C device 3 GPIO name"
depends on I2C_GPIO_3
help
This is the name of the GPIO device that controls the I2C lines.
config I2C_GPIO_3_SCL_PIN
int "Bit Bang I2C device 3 GPIO pin number for SCL"
depends on I2C_GPIO_3
help
This is the GPIO pin number for the I2C SCL line
config I2C_GPIO_3_SDA_PIN
int "Bit Bang I2C device 3 GPIO pin number for SDA"
depends on I2C_GPIO_3
help
This is the GPIO pin number for the I2C SDA line