wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2004 |
| 3 | * Texas Instruments, <www.ti.com> |
| 4 | * |
| 5 | * See file CREDITS for list of people who contributed to this |
| 6 | * project. |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or |
| 9 | * modify it under the terms of the GNU General Public License as |
| 10 | * published by the Free Software Foundation; either version 2 of |
| 11 | * the License, or (at your option) any later version. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | * GNU General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License |
| 19 | * along with this program; if not, write to the Free Software |
| 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 21 | * MA 02111-1307 USA |
| 22 | */ |
| 23 | #ifndef _OMAP24XX_I2C_H_ |
| 24 | #define _OMAP24XX_I2C_H_ |
| 25 | |
Dirk Behme | 1d2e96d | 2009-11-02 20:36:26 +0100 | [diff] [blame] | 26 | #define I2C_BASE1 0x48070000 |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 27 | #define I2C_BASE2 0x48072000 /* nothing hooked up on h4 */ |
| 28 | |
Dirk Behme | 1d2e96d | 2009-11-02 20:36:26 +0100 | [diff] [blame] | 29 | #define I2C_DEFAULT_BASE I2C_BASE1 |
| 30 | |
| 31 | struct i2c { |
| 32 | unsigned short rev; /* 0x00 */ |
| 33 | unsigned short res1; |
| 34 | unsigned short ie; /* 0x04 */ |
| 35 | unsigned short res2; |
| 36 | unsigned short stat; /* 0x08 */ |
| 37 | unsigned short res3; |
| 38 | unsigned short iv; /* 0x0C */ |
Nishanth Menon | 46d8ece | 2010-08-18 19:39:08 -0500 | [diff] [blame] | 39 | unsigned short res4; |
| 40 | unsigned short syss; /* 0x10 */ |
| 41 | unsigned short res4p1; |
Dirk Behme | 1d2e96d | 2009-11-02 20:36:26 +0100 | [diff] [blame] | 42 | unsigned short buf; /* 0x14 */ |
| 43 | unsigned short res5; |
| 44 | unsigned short cnt; /* 0x18 */ |
| 45 | unsigned short res6; |
| 46 | unsigned short data; /* 0x1C */ |
| 47 | unsigned short res7; |
| 48 | unsigned short sysc; /* 0x20 */ |
| 49 | unsigned short res8; |
| 50 | unsigned short con; /* 0x24 */ |
| 51 | unsigned short res9; |
| 52 | unsigned short oa; /* 0x28 */ |
| 53 | unsigned short res10; |
| 54 | unsigned short sa; /* 0x2C */ |
| 55 | unsigned short res11; |
| 56 | unsigned short psc; /* 0x30 */ |
| 57 | unsigned short res12; |
| 58 | unsigned short scll; /* 0x34 */ |
| 59 | unsigned short res13; |
| 60 | unsigned short sclh; /* 0x38 */ |
| 61 | unsigned short res14; |
| 62 | unsigned short systest; /* 0x3c */ |
| 63 | unsigned short res15; |
| 64 | }; |
| 65 | |
| 66 | #define I2C_BUS_MAX 2 |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 67 | |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 68 | #endif |