1 /* SPDX-License-Identifier: GPL-2.0 */ 2 3 #ifndef _OMAP_I2C_H 4 #define _OMAP_I2C_H 5 6 #if CONFIG_IS_ENABLED(DM_I2C) 7 8 /* Information about a GPIO bank */ 9 struct omap_i2c_plat { 10 ulong base; /* address of registers in physical memory */ 11 int speed; 12 int ip_rev; 13 }; 14 15 #endif 16 17 enum { 18 OMAP_I2C_REV_V1 = 0, 19 OMAP_I2C_REV_V2 = 1, 20 }; 21 22 #endif /* _OMAP_I2C_H */ 23