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 select UART_USE_RUNTIME_CONFIGURE 9 help 10 Enables NXP SC18IM704 I2C controller driver 11 12if I2C_SC18IM704 13 14config I2C_SC18IM704_INIT_PRIORITY 15 int "SC18IM704 I2C init priority" 16 default 51 17 help 18 SC18IM704 I2C controller initialization priority. 19 20 Note: Has to be greater than the UART bus initialization priority. 21 22config I2C_SC18IM704_VERIFY 23 bool "Verify SC18IM704 I2C transfers" 24 default y 25 help 26 Verify the I2C state register after I2C transfers to detect errors. 27 28endif 29