blob: 9f0f272234394417261b16bb5bded79db3123bcd [file] [log] [blame]
Jean-Jacques Hiblot5f97ae62018-12-07 14:50:42 +01001/* SPDX-License-Identifier: GPL-2.0 */
2
3#ifndef _OMAP_I2C_H
4#define _OMAP_I2C_H
5
Igor Opaniuk2147a162021-02-09 13:52:45 +02006#if CONFIG_IS_ENABLED(DM_I2C)
Jean-Jacques Hiblot5f97ae62018-12-07 14:50:42 +01007
8/* Information about a GPIO bank */
Simon Glass8a8d24b2020-12-03 16:55:23 -07009struct omap_i2c_plat {
Jean-Jacques Hiblot5f97ae62018-12-07 14:50:42 +010010 ulong base; /* address of registers in physical memory */
11 int speed;
12 int ip_rev;
13};
14
15#endif
16
17enum {
18 OMAP_I2C_REV_V1 = 0,
19 OMAP_I2C_REV_V2 = 1,
20};
21
22#endif /* _OMAP_I2C_H */