From c325f185860094ff5b906a6be835c3259015139d Mon Sep 17 00:00:00 2001 From: Dmitry Yakovlev Date: Sun, 28 Apr 2024 07:42:42 +0300 Subject: [PATCH] hw/i2c: add I2C to ESP32-S3 The I2C for esp32s3 is the same as for esp32 --- hw/i2c/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/hw/i2c/meson.build b/hw/i2c/meson.build index 286b9c63f93d..e72dca07e58d 100644 --- a/hw/i2c/meson.build +++ b/hw/i2c/meson.build @@ -16,6 +16,7 @@ i2c_ss.add(when: 'CONFIG_ARM_SBCON_I2C', if_true: files('arm_sbcon_i2c.c')) i2c_ss.add(when: 'CONFIG_OMAP', if_true: files('omap_i2c.c')) i2c_ss.add(when: 'CONFIG_PPC4XX', if_true: files('ppc4xx_i2c.c')) i2c_ss.add(when: 'CONFIG_XTENSA_ESP32', if_true: files('esp32_i2c.c')) +i2c_ss.add(when: 'CONFIG_XTENSA_ESP32S3', if_true: files('esp32_i2c.c')) i2c_ss.add(when: 'CONFIG_PCA954X', if_true: files('i2c_mux_pca954x.c')) i2c_ss.add(when: 'CONFIG_PMBUS', if_true: files('pmbus_device.c')) i2c_ss.add(when: 'CONFIG_BCM2835_I2C', if_true: files('bcm2835_i2c.c'))