]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/include/asm/arch-omap3/i2c.h
Add GPL-2.0+ SPDX-License-Identifier to source files
[karo-tx-uboot.git] / arch / arm / include / asm / arch-omap3 / i2c.h
1 /*
2  * (C) Copyright 2004-2008
3  * Texas Instruments, <www.ti.com>
4  *
5  * SPDX-License-Identifier:     GPL-2.0+
6  */
7 #ifndef _OMAP3_I2C_H_
8 #define _OMAP3_I2C_H_
9
10 #define I2C_BUS_MAX     3
11 #define I2C_DEFAULT_BASE        I2C_BASE1
12
13 struct i2c {
14         unsigned short rev;     /* 0x00 */
15         unsigned short res1;
16         unsigned short ie;      /* 0x04 */
17         unsigned short res2;
18         unsigned short stat;    /* 0x08 */
19         unsigned short res3;
20         unsigned short iv;      /* 0x0C */
21         unsigned short res4;
22         unsigned short syss;    /* 0x10 */
23         unsigned short res4a;
24         unsigned short buf;     /* 0x14 */
25         unsigned short res5;
26         unsigned short cnt;     /* 0x18 */
27         unsigned short res6;
28         unsigned short data;    /* 0x1C */
29         unsigned short res7;
30         unsigned short sysc;    /* 0x20 */
31         unsigned short res8;
32         unsigned short con;     /* 0x24 */
33         unsigned short res9;
34         unsigned short oa;      /* 0x28 */
35         unsigned short res10;
36         unsigned short sa;      /* 0x2C */
37         unsigned short res11;
38         unsigned short psc;     /* 0x30 */
39         unsigned short res12;
40         unsigned short scll;    /* 0x34 */
41         unsigned short res13;
42         unsigned short sclh;    /* 0x38 */
43         unsigned short res14;
44         unsigned short systest; /* 0x3c */
45         unsigned short res15;
46 };
47
48 #endif /* _OMAP3_I2C_H_ */