1# Copyright (c) 2023 Basalte bv 2# SPDX-License-Identifier: Apache-2.0 3 4config I2C_SC18IM704 5 bool "NXP SC18IM704 I2C controller driver" 6 default y 7 depends on DT_HAS_NXP_SC18IM704_I2C_ENABLED 8 help 9 Enables NXP SC18IM704 I2C controller driver 10 11if I2C_SC18IM704 12 13config I2C_SC18IM704_INIT_PRIORITY 14 int "SC18IM704 I2C init priority" 15 default 51 16 help 17 SC18IM704 I2C controller initialization priority. 18 19 Note: Has to be greater than the UART bus initialization priority. 20 21config I2C_SC18IM704_VERIFY 22 bool "Verify SC18IM704 I2C transfers" 23 default y 24 help 25 Verify the I2C state register after I2C transfers to detect errors. 26 27endif 28