]> git.sur5r.net Git - u-boot/blob - arch/arm/include/asm/arch-omap3/i2c.h
SPDX: Convert all of our single license tags to Linux Kernel style
[u-boot] / arch / arm / include / asm / arch-omap3 / i2c.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * (C) Copyright 2004-2008
4  * Texas Instruments, <www.ti.com>
5  */
6 #ifndef _OMAP3_I2C_H_
7 #define _OMAP3_I2C_H_
8
9 #define I2C_DEFAULT_BASE        I2C_BASE1
10
11 struct i2c {
12         unsigned short rev;     /* 0x00 */
13         unsigned short res1;
14         unsigned short ie;      /* 0x04 */
15         unsigned short res2;
16         unsigned short stat;    /* 0x08 */
17         unsigned short res3;
18         unsigned short we;      /* 0x0C */
19         unsigned short res4;
20         unsigned short syss;    /* 0x10 */
21         unsigned short res4a;
22         unsigned short buf;     /* 0x14 */
23         unsigned short res5;
24         unsigned short cnt;     /* 0x18 */
25         unsigned short res6;
26         unsigned short data;    /* 0x1C */
27         unsigned short res7;
28         unsigned short sysc;    /* 0x20 */
29         unsigned short res8;
30         unsigned short con;     /* 0x24 */
31         unsigned short res9;
32         unsigned short oa;      /* 0x28 */
33         unsigned short res10;
34         unsigned short sa;      /* 0x2C */
35         unsigned short res11;
36         unsigned short psc;     /* 0x30 */
37         unsigned short res12;
38         unsigned short scll;    /* 0x34 */
39         unsigned short res13;
40         unsigned short sclh;    /* 0x38 */
41         unsigned short res14;
42         unsigned short systest; /* 0x3c */
43         unsigned short res15;
44         unsigned short bufstat; /* 0x40 */
45         unsigned short res16;
46         unsigned short oa1;     /* 0x44 */
47         unsigned short res17;
48         unsigned short oa2;     /* 0x48 */
49         unsigned short res18;
50         unsigned short oa3;     /* 0x4c */
51         unsigned short res19;
52         unsigned short actoa;   /* 0x50 */
53         unsigned short res20;
54         unsigned short sblock;  /* 0x54 */
55         unsigned short res21;
56 };
57
58 #endif /* _OMAP3_I2C_H_ */