1*4882a593Smuzhiyun# 2*4882a593Smuzhiyun# (C) Copyright 2000-2007 3*4882a593Smuzhiyun# Wolfgang Denk, DENX Software Engineering, wd@denx.de. 4*4882a593Smuzhiyun# 5*4882a593Smuzhiyun# SPDX-License-Identifier: GPL-2.0+ 6*4882a593Smuzhiyun# 7*4882a593Smuzhiyunobj-$(CONFIG_DM_I2C) += i2c-uclass.o 8*4882a593Smuzhiyunobj-$(CONFIG_DM_I2C_COMPAT) += i2c-uclass-compat.o 9*4882a593Smuzhiyunobj-$(CONFIG_DM_I2C_GPIO) += i2c-gpio.o 10*4882a593Smuzhiyunobj-$(CONFIG_$(SPL_)I2C_CROS_EC_TUNNEL) += cros_ec_tunnel.o 11*4882a593Smuzhiyunobj-$(CONFIG_$(SPL_)I2C_CROS_EC_LDO) += cros_ec_ldo.o 12*4882a593Smuzhiyun 13*4882a593Smuzhiyunobj-$(CONFIG_SYS_I2C_ADI) += adi_i2c.o 14*4882a593Smuzhiyunobj-$(CONFIG_I2C_MV) += mv_i2c.o 15*4882a593Smuzhiyunobj-$(CONFIG_TSI108_I2C) += tsi108_i2c.o 16*4882a593Smuzhiyunobj-$(CONFIG_SH_SH7734_I2C) += sh_sh7734_i2c.o 17*4882a593Smuzhiyunobj-$(CONFIG_SYS_I2C) += i2c_core.o 18*4882a593Smuzhiyunobj-$(CONFIG_SYS_I2C_ASPEED) += ast_i2c.o 19*4882a593Smuzhiyunobj-$(CONFIG_SYS_I2C_AT91) += at91_i2c.o 20*4882a593Smuzhiyunobj-$(CONFIG_SYS_I2C_CADENCE) += i2c-cdns.o 21*4882a593Smuzhiyunobj-$(CONFIG_SYS_I2C_DAVINCI) += davinci_i2c.o 22*4882a593Smuzhiyunobj-$(CONFIG_SYS_I2C_DW) += designware_i2c.o 23*4882a593Smuzhiyunobj-$(CONFIG_SYS_I2C_FSL) += fsl_i2c.o 24*4882a593Smuzhiyunobj-$(CONFIG_SYS_I2C_FTI2C010) += fti2c010.o 25*4882a593Smuzhiyunobj-$(CONFIG_SYS_I2C_IHS) += ihs_i2c.o 26*4882a593Smuzhiyunobj-$(CONFIG_SYS_I2C_INTEL) += intel_i2c.o 27*4882a593Smuzhiyunobj-$(CONFIG_SYS_I2C_IMX_LPI2C) += imx_lpi2c.o 28*4882a593Smuzhiyunobj-$(CONFIG_SYS_I2C_KONA) += kona_i2c.o 29*4882a593Smuzhiyunobj-$(CONFIG_SYS_I2C_LPC32XX) += lpc32xx_i2c.o 30*4882a593Smuzhiyunobj-$(CONFIG_SYS_I2C_MVTWSI) += mvtwsi.o 31*4882a593Smuzhiyunobj-$(CONFIG_SYS_I2C_MXC) += mxc_i2c.o 32*4882a593Smuzhiyunobj-$(CONFIG_SYS_I2C_MXS) += mxs_i2c.o 33*4882a593Smuzhiyunobj-$(CONFIG_SYS_I2C_OMAP24XX) += omap24xx_i2c.o 34*4882a593Smuzhiyunobj-$(CONFIG_SYS_I2C_RCAR) += rcar_i2c.o 35*4882a593Smuzhiyunobj-$(CONFIG_SYS_I2C_ROCKCHIP) += rk_i2c.o 36*4882a593Smuzhiyunobj-$(CONFIG_SYS_I2C_S3C24X0) += s3c24x0_i2c.o exynos_hs_i2c.o 37*4882a593Smuzhiyunobj-$(CONFIG_SYS_I2C_SANDBOX) += sandbox_i2c.o i2c-emul-uclass.o 38*4882a593Smuzhiyunobj-$(CONFIG_SYS_I2C_SH) += sh_i2c.o 39*4882a593Smuzhiyunobj-$(CONFIG_SYS_I2C_SOFT) += soft_i2c.o 40*4882a593Smuzhiyunobj-$(CONFIG_SYS_I2C_STM32F7) += stm32f7_i2c.o 41*4882a593Smuzhiyunobj-$(CONFIG_SYS_I2C_TEGRA) += tegra_i2c.o 42*4882a593Smuzhiyunobj-$(CONFIG_SYS_I2C_UNIPHIER) += i2c-uniphier.o 43*4882a593Smuzhiyunobj-$(CONFIG_SYS_I2C_UNIPHIER_F) += i2c-uniphier-f.o 44*4882a593Smuzhiyunobj-$(CONFIG_SYS_I2C_ZYNQ) += zynq_i2c.o 45*4882a593Smuzhiyunobj-$(CONFIG_TEGRA186_BPMP_I2C) += tegra186_bpmp_i2c.o 46*4882a593Smuzhiyun 47*4882a593Smuzhiyunobj-$(CONFIG_I2C_MUX) += muxes/ 48