wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Basic I2C functions |
| 3 | * |
| 4 | * Copyright (c) 2004 Texas Instruments |
| 5 | * |
| 6 | * This package is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the license found in the file |
| 8 | * named COPYING that should have accompanied this file. |
| 9 | * |
| 10 | * THIS PACKAGE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR |
| 11 | * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED |
| 12 | * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
| 13 | * |
| 14 | * Author: Jian Zhang jzhang@ti.com, Texas Instruments |
| 15 | * |
| 16 | * Copyright (c) 2003 Wolfgang Denk, wd@denx.de |
| 17 | * Rewritten to fit into the current U-Boot framework |
| 18 | * |
| 19 | * Adapted for OMAP2420 I2C, r-woodruff2@ti.com |
| 20 | * |
| 21 | */ |
| 22 | |
| 23 | #include <common.h> |
wdenk | 289f932 | 2005-01-12 00:15:14 +0000 | [diff] [blame] | 24 | |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 25 | #include <asm/arch/i2c.h> |
| 26 | #include <asm/io.h> |
| 27 | |
Steve Sakoman | 938717c | 2010-06-12 06:42:57 -0700 | [diff] [blame] | 28 | #include "omap24xx_i2c.h" |
| 29 | |
John Rigby | 2956532 | 2010-12-20 18:27:51 -0700 | [diff] [blame] | 30 | DECLARE_GLOBAL_DATA_PTR; |
| 31 | |
Steve Sakoman | 73e8747 | 2010-10-20 06:07:44 -0700 | [diff] [blame] | 32 | #define I2C_TIMEOUT 1000 |
Steve Sakoman | d708395 | 2010-07-19 20:31:55 -0700 | [diff] [blame] | 33 | |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 34 | static void wait_for_bb(void); |
| 35 | static u16 wait_for_pin(void); |
Wolfgang Denk | 49a7581 | 2005-09-25 18:41:04 +0200 | [diff] [blame] | 36 | static void flush_fifo(void); |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 37 | |
Dirk Behme | 1d2e96d | 2009-11-02 20:36:26 +0100 | [diff] [blame] | 38 | static struct i2c *i2c_base = (struct i2c *)I2C_DEFAULT_BASE; |
| 39 | |
| 40 | static unsigned int bus_initialized[I2C_BUS_MAX]; |
| 41 | static unsigned int current_bus; |
| 42 | |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 43 | void i2c_init(int speed, int slaveadd) |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 44 | { |
Tom Rix | 7f79dfb | 2009-06-28 12:52:27 -0500 | [diff] [blame] | 45 | int psc, fsscll, fssclh; |
| 46 | int hsscll = 0, hssclh = 0; |
| 47 | u32 scll, sclh; |
Steve Sakoman | d708395 | 2010-07-19 20:31:55 -0700 | [diff] [blame] | 48 | int timeout = I2C_TIMEOUT; |
Tom Rix | 7f79dfb | 2009-06-28 12:52:27 -0500 | [diff] [blame] | 49 | |
| 50 | /* Only handle standard, fast and high speeds */ |
| 51 | if ((speed != OMAP_I2C_STANDARD) && |
| 52 | (speed != OMAP_I2C_FAST_MODE) && |
| 53 | (speed != OMAP_I2C_HIGH_SPEED)) { |
| 54 | printf("Error : I2C unsupported speed %d\n", speed); |
| 55 | return; |
| 56 | } |
| 57 | |
| 58 | psc = I2C_IP_CLK / I2C_INTERNAL_SAMPLING_CLK; |
| 59 | psc -= 1; |
| 60 | if (psc < I2C_PSC_MIN) { |
| 61 | printf("Error : I2C unsupported prescalar %d\n", psc); |
| 62 | return; |
| 63 | } |
| 64 | |
| 65 | if (speed == OMAP_I2C_HIGH_SPEED) { |
| 66 | /* High speed */ |
| 67 | |
| 68 | /* For first phase of HS mode */ |
| 69 | fsscll = fssclh = I2C_INTERNAL_SAMPLING_CLK / |
| 70 | (2 * OMAP_I2C_FAST_MODE); |
| 71 | |
| 72 | fsscll -= I2C_HIGHSPEED_PHASE_ONE_SCLL_TRIM; |
| 73 | fssclh -= I2C_HIGHSPEED_PHASE_ONE_SCLH_TRIM; |
| 74 | if (((fsscll < 0) || (fssclh < 0)) || |
| 75 | ((fsscll > 255) || (fssclh > 255))) { |
| 76 | printf("Error : I2C initializing first phase clock\n"); |
| 77 | return; |
| 78 | } |
| 79 | |
| 80 | /* For second phase of HS mode */ |
| 81 | hsscll = hssclh = I2C_INTERNAL_SAMPLING_CLK / (2 * speed); |
| 82 | |
| 83 | hsscll -= I2C_HIGHSPEED_PHASE_TWO_SCLL_TRIM; |
| 84 | hssclh -= I2C_HIGHSPEED_PHASE_TWO_SCLH_TRIM; |
| 85 | if (((fsscll < 0) || (fssclh < 0)) || |
| 86 | ((fsscll > 255) || (fssclh > 255))) { |
| 87 | printf("Error : I2C initializing second phase clock\n"); |
| 88 | return; |
| 89 | } |
| 90 | |
| 91 | scll = (unsigned int)hsscll << 8 | (unsigned int)fsscll; |
| 92 | sclh = (unsigned int)hssclh << 8 | (unsigned int)fssclh; |
| 93 | |
| 94 | } else { |
| 95 | /* Standard and fast speed */ |
| 96 | fsscll = fssclh = I2C_INTERNAL_SAMPLING_CLK / (2 * speed); |
| 97 | |
| 98 | fsscll -= I2C_FASTSPEED_SCLL_TRIM; |
| 99 | fssclh -= I2C_FASTSPEED_SCLH_TRIM; |
| 100 | if (((fsscll < 0) || (fssclh < 0)) || |
| 101 | ((fsscll > 255) || (fssclh > 255))) { |
| 102 | printf("Error : I2C initializing clock\n"); |
| 103 | return; |
| 104 | } |
| 105 | |
| 106 | scll = (unsigned int)fsscll; |
| 107 | sclh = (unsigned int)fssclh; |
| 108 | } |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 109 | |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 110 | if (readw(&i2c_base->con) & I2C_CON_EN) { |
| 111 | writew(0, &i2c_base->con); |
| 112 | udelay(50000); |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 113 | } |
| 114 | |
Steve Sakoman | d708395 | 2010-07-19 20:31:55 -0700 | [diff] [blame] | 115 | writew(0x2, &i2c_base->sysc); /* for ES2 after soft reset */ |
| 116 | udelay(1000); |
| 117 | |
| 118 | writew(I2C_CON_EN, &i2c_base->con); |
| 119 | while (!(readw(&i2c_base->syss) & I2C_SYSS_RDONE) && timeout--) { |
| 120 | if (timeout <= 0) { |
| 121 | printf("ERROR: Timeout in soft-reset\n"); |
| 122 | return; |
| 123 | } |
| 124 | udelay(1000); |
| 125 | } |
| 126 | |
| 127 | writew(0, &i2c_base->con); |
Dirk Behme | 1d2e96d | 2009-11-02 20:36:26 +0100 | [diff] [blame] | 128 | writew(psc, &i2c_base->psc); |
| 129 | writew(scll, &i2c_base->scll); |
| 130 | writew(sclh, &i2c_base->sclh); |
Tom Rix | 7f79dfb | 2009-06-28 12:52:27 -0500 | [diff] [blame] | 131 | |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 132 | /* own address */ |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 133 | writew(slaveadd, &i2c_base->oa); |
| 134 | writew(I2C_CON_EN, &i2c_base->con); |
Wolfgang Denk | 49a7581 | 2005-09-25 18:41:04 +0200 | [diff] [blame] | 135 | |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 136 | /* have to enable intrrupts or OMAP i2c module doesn't work */ |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 137 | writew(I2C_IE_XRDY_IE | I2C_IE_RRDY_IE | I2C_IE_ARDY_IE | |
Dirk Behme | 1d2e96d | 2009-11-02 20:36:26 +0100 | [diff] [blame] | 138 | I2C_IE_NACK_IE | I2C_IE_AL_IE, &i2c_base->ie); |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 139 | udelay(1000); |
Wolfgang Denk | 49a7581 | 2005-09-25 18:41:04 +0200 | [diff] [blame] | 140 | flush_fifo(); |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 141 | writew(0xFFFF, &i2c_base->stat); |
| 142 | writew(0, &i2c_base->cnt); |
Dirk Behme | 1d2e96d | 2009-11-02 20:36:26 +0100 | [diff] [blame] | 143 | |
Heiko Schocher | 1724fe9 | 2010-09-17 13:10:37 +0200 | [diff] [blame] | 144 | if (gd->flags & GD_FLG_RELOC) |
| 145 | bus_initialized[current_bus] = 1; |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 146 | } |
| 147 | |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 148 | static int i2c_read_byte(u8 devaddr, u8 regoffset, u8 *value) |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 149 | { |
| 150 | int i2c_error = 0; |
| 151 | u16 status; |
| 152 | |
| 153 | /* wait until bus not busy */ |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 154 | wait_for_bb(); |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 155 | |
| 156 | /* one byte only */ |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 157 | writew(1, &i2c_base->cnt); |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 158 | /* set slave address */ |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 159 | writew(devaddr, &i2c_base->sa); |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 160 | /* no stop bit needed here */ |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 161 | writew(I2C_CON_EN | I2C_CON_MST | I2C_CON_STT | |
| 162 | I2C_CON_TRX, &i2c_base->con); |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 163 | |
Steve Sakoman | da0cc66 | 2010-10-20 06:07:45 -0700 | [diff] [blame] | 164 | /* send register offset */ |
| 165 | while (1) { |
| 166 | status = wait_for_pin(); |
| 167 | if (status == 0 || status & I2C_STAT_NACK) { |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 168 | i2c_error = 1; |
Steve Sakoman | da0cc66 | 2010-10-20 06:07:45 -0700 | [diff] [blame] | 169 | goto read_exit; |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 170 | } |
Steve Sakoman | da0cc66 | 2010-10-20 06:07:45 -0700 | [diff] [blame] | 171 | if (status & I2C_STAT_XRDY) { |
| 172 | /* Important: have to use byte access */ |
| 173 | writeb(regoffset, &i2c_base->data); |
| 174 | writew(I2C_STAT_XRDY, &i2c_base->stat); |
| 175 | } |
| 176 | if (status & I2C_STAT_ARDY) { |
| 177 | writew(I2C_STAT_ARDY, &i2c_base->stat); |
| 178 | break; |
| 179 | } |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 180 | } |
| 181 | |
Steve Sakoman | da0cc66 | 2010-10-20 06:07:45 -0700 | [diff] [blame] | 182 | /* set slave address */ |
| 183 | writew(devaddr, &i2c_base->sa); |
| 184 | /* read one byte from slave */ |
| 185 | writew(1, &i2c_base->cnt); |
| 186 | /* need stop bit here */ |
| 187 | writew(I2C_CON_EN | I2C_CON_MST | |
| 188 | I2C_CON_STT | I2C_CON_STP, |
| 189 | &i2c_base->con); |
| 190 | |
| 191 | /* receive data */ |
| 192 | while (1) { |
| 193 | status = wait_for_pin(); |
| 194 | if (status == 0 || status & I2C_STAT_NACK) { |
| 195 | i2c_error = 1; |
| 196 | goto read_exit; |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 197 | } |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 198 | if (status & I2C_STAT_RRDY) { |
Steve Sakoman | 938717c | 2010-06-12 06:42:57 -0700 | [diff] [blame] | 199 | #if defined(CONFIG_OMAP243X) || defined(CONFIG_OMAP34XX) || \ |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 200 | defined(CONFIG_OMAP44XX) |
Steve Sakoman | da0cc66 | 2010-10-20 06:07:45 -0700 | [diff] [blame] | 201 | *value = readb(&i2c_base->data); |
Dirk Behme | 7d264c1 | 2008-12-14 09:47:18 +0100 | [diff] [blame] | 202 | #else |
Steve Sakoman | da0cc66 | 2010-10-20 06:07:45 -0700 | [diff] [blame] | 203 | *value = readw(&i2c_base->data); |
Dirk Behme | 7d264c1 | 2008-12-14 09:47:18 +0100 | [diff] [blame] | 204 | #endif |
Steve Sakoman | da0cc66 | 2010-10-20 06:07:45 -0700 | [diff] [blame] | 205 | writew(I2C_STAT_RRDY, &i2c_base->stat); |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 206 | } |
Steve Sakoman | da0cc66 | 2010-10-20 06:07:45 -0700 | [diff] [blame] | 207 | if (status & I2C_STAT_ARDY) { |
| 208 | writew(I2C_STAT_ARDY, &i2c_base->stat); |
| 209 | break; |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 210 | } |
| 211 | } |
Steve Sakoman | da0cc66 | 2010-10-20 06:07:45 -0700 | [diff] [blame] | 212 | |
| 213 | read_exit: |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 214 | flush_fifo(); |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 215 | writew(0xFFFF, &i2c_base->stat); |
| 216 | writew(0, &i2c_base->cnt); |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 217 | return i2c_error; |
| 218 | } |
| 219 | |
Wolfgang Denk | 49a7581 | 2005-09-25 18:41:04 +0200 | [diff] [blame] | 220 | static void flush_fifo(void) |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 221 | { u16 stat; |
wdenk | 082acfd | 2005-01-10 00:01:04 +0000 | [diff] [blame] | 222 | |
| 223 | /* note: if you try and read data when its not there or ready |
| 224 | * you get a bus error |
| 225 | */ |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 226 | while (1) { |
Dirk Behme | 1d2e96d | 2009-11-02 20:36:26 +0100 | [diff] [blame] | 227 | stat = readw(&i2c_base->stat); |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 228 | if (stat == I2C_STAT_RRDY) { |
Steve Sakoman | 938717c | 2010-06-12 06:42:57 -0700 | [diff] [blame] | 229 | #if defined(CONFIG_OMAP243X) || defined(CONFIG_OMAP34XX) || \ |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 230 | defined(CONFIG_OMAP44XX) |
Dirk Behme | 1d2e96d | 2009-11-02 20:36:26 +0100 | [diff] [blame] | 231 | readb(&i2c_base->data); |
Dirk Behme | 7d264c1 | 2008-12-14 09:47:18 +0100 | [diff] [blame] | 232 | #else |
Dirk Behme | 1d2e96d | 2009-11-02 20:36:26 +0100 | [diff] [blame] | 233 | readw(&i2c_base->data); |
Dirk Behme | 7d264c1 | 2008-12-14 09:47:18 +0100 | [diff] [blame] | 234 | #endif |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 235 | writew(I2C_STAT_RRDY, &i2c_base->stat); |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 236 | udelay(1000); |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 237 | } else |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 238 | break; |
| 239 | } |
| 240 | } |
| 241 | |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 242 | int i2c_probe(uchar chip) |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 243 | { |
Steve Sakoman | fbad355 | 2010-10-20 06:07:47 -0700 | [diff] [blame] | 244 | u16 status; |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 245 | int res = 1; /* default = fail */ |
| 246 | |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 247 | if (chip == readw(&i2c_base->oa)) |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 248 | return res; |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 249 | |
| 250 | /* wait until bus not busy */ |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 251 | wait_for_bb(); |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 252 | |
Nick Thompson | 0e57968 | 2011-04-11 22:37:41 +0000 | [diff] [blame] | 253 | /* try to write one byte */ |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 254 | writew(1, &i2c_base->cnt); |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 255 | /* set slave address */ |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 256 | writew(chip, &i2c_base->sa); |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 257 | /* stop bit needed here */ |
Nick Thompson | 0e57968 | 2011-04-11 22:37:41 +0000 | [diff] [blame] | 258 | writew(I2C_CON_EN | I2C_CON_MST | I2C_CON_STT | I2C_CON_TRX | |
| 259 | I2C_CON_STP, &i2c_base->con); |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 260 | |
Nick Thompson | 0e57968 | 2011-04-11 22:37:41 +0000 | [diff] [blame] | 261 | status = wait_for_pin(); |
Steve Sakoman | fbad355 | 2010-10-20 06:07:47 -0700 | [diff] [blame] | 262 | |
Nick Thompson | 0e57968 | 2011-04-11 22:37:41 +0000 | [diff] [blame] | 263 | /* check for ACK (!NAK) */ |
| 264 | if (!(status & I2C_STAT_NACK)) |
| 265 | res = 0; |
| 266 | |
| 267 | /* abort transfer (force idle state) */ |
| 268 | writew(0, &i2c_base->con); |
| 269 | |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 270 | flush_fifo(); |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 271 | /* don't allow any more data in... we don't want it. */ |
| 272 | writew(0, &i2c_base->cnt); |
Dirk Behme | 1d2e96d | 2009-11-02 20:36:26 +0100 | [diff] [blame] | 273 | writew(0xFFFF, &i2c_base->stat); |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 274 | return res; |
| 275 | } |
| 276 | |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 277 | int i2c_read(uchar chip, uint addr, int alen, uchar *buffer, int len) |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 278 | { |
| 279 | int i; |
| 280 | |
| 281 | if (alen > 1) { |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 282 | printf("I2C read: addr len %d not supported\n", alen); |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 283 | return 1; |
| 284 | } |
| 285 | |
| 286 | if (addr + len > 256) { |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 287 | printf("I2C read: address out of range\n"); |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 288 | return 1; |
| 289 | } |
| 290 | |
| 291 | for (i = 0; i < len; i++) { |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 292 | if (i2c_read_byte(chip, addr + i, &buffer[i])) { |
| 293 | printf("I2C read: I/O error\n"); |
| 294 | i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE); |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 295 | return 1; |
| 296 | } |
| 297 | } |
| 298 | |
| 299 | return 0; |
| 300 | } |
| 301 | |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 302 | int i2c_write(uchar chip, uint addr, int alen, uchar *buffer, int len) |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 303 | { |
| 304 | int i; |
Michael Jones | 0607e2b | 2011-09-04 14:01:55 -0400 | [diff] [blame] | 305 | u16 status; |
| 306 | int i2c_error = 0; |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 307 | |
| 308 | if (alen > 1) { |
Michael Jones | 0607e2b | 2011-09-04 14:01:55 -0400 | [diff] [blame] | 309 | printf("I2C write: addr len %d not supported\n", alen); |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 310 | return 1; |
| 311 | } |
| 312 | |
| 313 | if (addr + len > 256) { |
Michael Jones | 0607e2b | 2011-09-04 14:01:55 -0400 | [diff] [blame] | 314 | printf("I2C write: address 0x%x + 0x%x out of range\n", |
| 315 | addr, len); |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 316 | return 1; |
| 317 | } |
| 318 | |
Michael Jones | 0607e2b | 2011-09-04 14:01:55 -0400 | [diff] [blame] | 319 | /* wait until bus not busy */ |
| 320 | wait_for_bb(); |
| 321 | |
| 322 | /* start address phase - will write regoffset + len bytes data */ |
| 323 | /* TODO consider case when !CONFIG_OMAP243X/34XX/44XX */ |
| 324 | writew(alen + len, &i2c_base->cnt); |
| 325 | /* set slave address */ |
| 326 | writew(chip, &i2c_base->sa); |
| 327 | /* stop bit needed here */ |
| 328 | writew(I2C_CON_EN | I2C_CON_MST | I2C_CON_STT | I2C_CON_TRX | |
| 329 | I2C_CON_STP, &i2c_base->con); |
| 330 | |
| 331 | /* Send address byte */ |
| 332 | status = wait_for_pin(); |
| 333 | |
| 334 | if (status == 0 || status & I2C_STAT_NACK) { |
| 335 | i2c_error = 1; |
| 336 | printf("error waiting for i2c address ACK (status=0x%x)\n", |
| 337 | status); |
| 338 | goto write_exit; |
| 339 | } |
| 340 | |
| 341 | if (status & I2C_STAT_XRDY) { |
| 342 | writeb(addr & 0xFF, &i2c_base->data); |
| 343 | writew(I2C_STAT_XRDY, &i2c_base->stat); |
| 344 | } else { |
| 345 | i2c_error = 1; |
| 346 | printf("i2c bus not ready for transmit (status=0x%x)\n", |
| 347 | status); |
| 348 | goto write_exit; |
| 349 | } |
| 350 | |
| 351 | /* address phase is over, now write data */ |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 352 | for (i = 0; i < len; i++) { |
Michael Jones | 0607e2b | 2011-09-04 14:01:55 -0400 | [diff] [blame] | 353 | status = wait_for_pin(); |
| 354 | |
| 355 | if (status == 0 || status & I2C_STAT_NACK) { |
| 356 | i2c_error = 1; |
| 357 | printf("i2c error waiting for data ACK (status=0x%x)\n", |
| 358 | status); |
| 359 | goto write_exit; |
| 360 | } |
| 361 | |
| 362 | if (status & I2C_STAT_XRDY) { |
| 363 | writeb(buffer[i], &i2c_base->data); |
| 364 | writew(I2C_STAT_XRDY, &i2c_base->stat); |
| 365 | } else { |
| 366 | i2c_error = 1; |
| 367 | printf("i2c bus not ready for Tx (i=%d)\n", i); |
| 368 | goto write_exit; |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 369 | } |
| 370 | } |
| 371 | |
Michael Jones | 0607e2b | 2011-09-04 14:01:55 -0400 | [diff] [blame] | 372 | write_exit: |
| 373 | flush_fifo(); |
| 374 | writew(0xFFFF, &i2c_base->stat); |
| 375 | return i2c_error; |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 376 | } |
| 377 | |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 378 | static void wait_for_bb(void) |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 379 | { |
Steve Sakoman | 73e8747 | 2010-10-20 06:07:44 -0700 | [diff] [blame] | 380 | int timeout = I2C_TIMEOUT; |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 381 | u16 stat; |
| 382 | |
Michael Jones | f9a78b8 | 2011-07-14 22:09:28 +0000 | [diff] [blame] | 383 | writew(0xFFFF, &i2c_base->stat); /* clear current interrupts...*/ |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 384 | while ((stat = readw(&i2c_base->stat) & I2C_STAT_BB) && timeout--) { |
| 385 | writew(stat, &i2c_base->stat); |
Steve Sakoman | 73e8747 | 2010-10-20 06:07:44 -0700 | [diff] [blame] | 386 | udelay(1000); |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 387 | } |
| 388 | |
| 389 | if (timeout <= 0) { |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 390 | printf("timed out in wait_for_bb: I2C_STAT=%x\n", |
| 391 | readw(&i2c_base->stat)); |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 392 | } |
Dirk Behme | 1d2e96d | 2009-11-02 20:36:26 +0100 | [diff] [blame] | 393 | writew(0xFFFF, &i2c_base->stat); /* clear delayed stuff*/ |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 394 | } |
| 395 | |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 396 | static u16 wait_for_pin(void) |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 397 | { |
| 398 | u16 status; |
Steve Sakoman | 73e8747 | 2010-10-20 06:07:44 -0700 | [diff] [blame] | 399 | int timeout = I2C_TIMEOUT; |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 400 | |
| 401 | do { |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 402 | udelay(1000); |
| 403 | status = readw(&i2c_base->stat); |
| 404 | } while (!(status & |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 405 | (I2C_STAT_ROVR | I2C_STAT_XUDF | I2C_STAT_XRDY | |
| 406 | I2C_STAT_RRDY | I2C_STAT_ARDY | I2C_STAT_NACK | |
| 407 | I2C_STAT_AL)) && timeout--); |
| 408 | |
| 409 | if (timeout <= 0) { |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 410 | printf("timed out in wait_for_pin: I2C_STAT=%x\n", |
| 411 | readw(&i2c_base->stat)); |
Steve Sakoman | 73e8747 | 2010-10-20 06:07:44 -0700 | [diff] [blame] | 412 | writew(0xFFFF, &i2c_base->stat); |
| 413 | status = 0; |
| 414 | } |
| 415 | |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 416 | return status; |
| 417 | } |
Dirk Behme | 1d2e96d | 2009-11-02 20:36:26 +0100 | [diff] [blame] | 418 | |
| 419 | int i2c_set_bus_num(unsigned int bus) |
| 420 | { |
| 421 | if ((bus < 0) || (bus >= I2C_BUS_MAX)) { |
| 422 | printf("Bad bus: %d\n", bus); |
| 423 | return -1; |
| 424 | } |
| 425 | |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 426 | #if I2C_BUS_MAX == 3 |
Dirk Behme | 1d2e96d | 2009-11-02 20:36:26 +0100 | [diff] [blame] | 427 | if (bus == 2) |
| 428 | i2c_base = (struct i2c *)I2C_BASE3; |
| 429 | else |
| 430 | #endif |
| 431 | if (bus == 1) |
| 432 | i2c_base = (struct i2c *)I2C_BASE2; |
| 433 | else |
| 434 | i2c_base = (struct i2c *)I2C_BASE1; |
| 435 | |
| 436 | current_bus = bus; |
| 437 | |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 438 | if (!bus_initialized[current_bus]) |
Dirk Behme | 1d2e96d | 2009-11-02 20:36:26 +0100 | [diff] [blame] | 439 | i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE); |
| 440 | |
| 441 | return 0; |
| 442 | } |
Steve Sakoman | 938717c | 2010-06-12 06:42:57 -0700 | [diff] [blame] | 443 | |
| 444 | int i2c_get_bus_num(void) |
| 445 | { |
| 446 | return (int) current_bus; |
| 447 | } |