]>
Commit | Line | Data |
---|---|---|
5f97ae68 JJH |
1 | /* SPDX-License-Identifier: GPL-2.0 */ |
2 | ||
3 | #ifndef _OMAP_I2C_H | |
4 | #define _OMAP_I2C_H | |
5 | ||
5f97ae68 JJH |
6 | #ifdef CONFIG_DM_I2C |
7 | ||
8 | /* Information about a GPIO bank */ | |
8a8d24bd | 9 | struct omap_i2c_plat { |
5f97ae68 JJH |
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 */ |