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 | * |
Lubomir Popov | 960187f | 2013-06-01 06:44:38 +0000 | [diff] [blame] | 21 | * Copyright (c) 2013 Lubomir Popov <lpopov@mm-sol.com>, MM Solutions |
| 22 | * New i2c_read, i2c_write and i2c_probe functions, tested on OMAP4 |
| 23 | * (4430/60/70), OMAP5 (5430) and AM335X (3359); should work on older |
| 24 | * OMAPs and derivatives as well. The only anticipated exception would |
| 25 | * be the OMAP2420, which shall require driver modification. |
| 26 | * - Rewritten i2c_read to operate correctly with all types of chips |
| 27 | * (old function could not read consistent data from some I2C slaves). |
| 28 | * - Optimized i2c_write. |
| 29 | * - New i2c_probe, performs write access vs read. The old probe could |
| 30 | * hang the system under certain conditions (e.g. unconfigured pads). |
| 31 | * - The read/write/probe functions try to identify unconfigured bus. |
| 32 | * - Status functions now read irqstatus_raw as per TRM guidelines |
| 33 | * (except for OMAP243X and OMAP34XX). |
| 34 | * - Driver now supports up to I2C5 (OMAP5). |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 35 | */ |
| 36 | |
| 37 | #include <common.h> |
wdenk | 289f932 | 2005-01-12 00:15:14 +0000 | [diff] [blame] | 38 | |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 39 | #include <asm/arch/i2c.h> |
| 40 | #include <asm/io.h> |
| 41 | |
Steve Sakoman | 938717c | 2010-06-12 06:42:57 -0700 | [diff] [blame] | 42 | #include "omap24xx_i2c.h" |
| 43 | |
John Rigby | 2956532 | 2010-12-20 18:27:51 -0700 | [diff] [blame] | 44 | DECLARE_GLOBAL_DATA_PTR; |
| 45 | |
Tom Rini | cec487a | 2012-02-20 18:49:16 +0000 | [diff] [blame] | 46 | #define I2C_TIMEOUT 1000 |
Steve Sakoman | d708395 | 2010-07-19 20:31:55 -0700 | [diff] [blame] | 47 | |
Lubomir Popov | 960187f | 2013-06-01 06:44:38 +0000 | [diff] [blame] | 48 | /* Absolutely safe for status update at 100 kHz I2C: */ |
| 49 | #define I2C_WAIT 200 |
| 50 | |
Vincent Stehlé | febc4cd | 2012-12-03 05:23:16 +0000 | [diff] [blame] | 51 | static int wait_for_bb(void); |
Lubomir Popov | 960187f | 2013-06-01 06:44:38 +0000 | [diff] [blame] | 52 | static u16 wait_for_event(void); |
Wolfgang Denk | 49a7581 | 2005-09-25 18:41:04 +0200 | [diff] [blame] | 53 | static void flush_fifo(void); |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 54 | |
Andreas Müller | 0b620ec | 2012-01-04 15:26:22 +0000 | [diff] [blame] | 55 | /* |
| 56 | * For SPL boot some boards need i2c before SDRAM is initialised so force |
| 57 | * variables to live in SRAM |
| 58 | */ |
| 59 | static struct i2c __attribute__((section (".data"))) *i2c_base = |
| 60 | (struct i2c *)I2C_DEFAULT_BASE; |
| 61 | static unsigned int __attribute__((section (".data"))) bus_initialized[I2C_BUS_MAX] = |
| 62 | { [0 ... (I2C_BUS_MAX-1)] = 0 }; |
| 63 | static unsigned int __attribute__((section (".data"))) current_bus = 0; |
Dirk Behme | 1d2e96d | 2009-11-02 20:36:26 +0100 | [diff] [blame] | 64 | |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 65 | void i2c_init(int speed, int slaveadd) |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 66 | { |
Tom Rix | 7f79dfb | 2009-06-28 12:52:27 -0500 | [diff] [blame] | 67 | int psc, fsscll, fssclh; |
| 68 | int hsscll = 0, hssclh = 0; |
| 69 | u32 scll, sclh; |
Tom Rini | cec487a | 2012-02-20 18:49:16 +0000 | [diff] [blame] | 70 | int timeout = I2C_TIMEOUT; |
Tom Rix | 7f79dfb | 2009-06-28 12:52:27 -0500 | [diff] [blame] | 71 | |
| 72 | /* Only handle standard, fast and high speeds */ |
| 73 | if ((speed != OMAP_I2C_STANDARD) && |
| 74 | (speed != OMAP_I2C_FAST_MODE) && |
| 75 | (speed != OMAP_I2C_HIGH_SPEED)) { |
| 76 | printf("Error : I2C unsupported speed %d\n", speed); |
| 77 | return; |
| 78 | } |
| 79 | |
| 80 | psc = I2C_IP_CLK / I2C_INTERNAL_SAMPLING_CLK; |
| 81 | psc -= 1; |
| 82 | if (psc < I2C_PSC_MIN) { |
| 83 | printf("Error : I2C unsupported prescalar %d\n", psc); |
| 84 | return; |
| 85 | } |
| 86 | |
| 87 | if (speed == OMAP_I2C_HIGH_SPEED) { |
| 88 | /* High speed */ |
| 89 | |
| 90 | /* For first phase of HS mode */ |
| 91 | fsscll = fssclh = I2C_INTERNAL_SAMPLING_CLK / |
| 92 | (2 * OMAP_I2C_FAST_MODE); |
| 93 | |
| 94 | fsscll -= I2C_HIGHSPEED_PHASE_ONE_SCLL_TRIM; |
| 95 | fssclh -= I2C_HIGHSPEED_PHASE_ONE_SCLH_TRIM; |
| 96 | if (((fsscll < 0) || (fssclh < 0)) || |
| 97 | ((fsscll > 255) || (fssclh > 255))) { |
Andreas Müller | 49e9b4b | 2012-01-04 15:26:19 +0000 | [diff] [blame] | 98 | puts("Error : I2C initializing first phase clock\n"); |
Tom Rix | 7f79dfb | 2009-06-28 12:52:27 -0500 | [diff] [blame] | 99 | return; |
| 100 | } |
| 101 | |
| 102 | /* For second phase of HS mode */ |
| 103 | hsscll = hssclh = I2C_INTERNAL_SAMPLING_CLK / (2 * speed); |
| 104 | |
| 105 | hsscll -= I2C_HIGHSPEED_PHASE_TWO_SCLL_TRIM; |
| 106 | hssclh -= I2C_HIGHSPEED_PHASE_TWO_SCLH_TRIM; |
| 107 | if (((fsscll < 0) || (fssclh < 0)) || |
| 108 | ((fsscll > 255) || (fssclh > 255))) { |
Andreas Müller | 49e9b4b | 2012-01-04 15:26:19 +0000 | [diff] [blame] | 109 | puts("Error : I2C initializing second phase clock\n"); |
Tom Rix | 7f79dfb | 2009-06-28 12:52:27 -0500 | [diff] [blame] | 110 | return; |
| 111 | } |
| 112 | |
| 113 | scll = (unsigned int)hsscll << 8 | (unsigned int)fsscll; |
| 114 | sclh = (unsigned int)hssclh << 8 | (unsigned int)fssclh; |
| 115 | |
| 116 | } else { |
| 117 | /* Standard and fast speed */ |
| 118 | fsscll = fssclh = I2C_INTERNAL_SAMPLING_CLK / (2 * speed); |
| 119 | |
| 120 | fsscll -= I2C_FASTSPEED_SCLL_TRIM; |
| 121 | fssclh -= I2C_FASTSPEED_SCLH_TRIM; |
| 122 | if (((fsscll < 0) || (fssclh < 0)) || |
| 123 | ((fsscll > 255) || (fssclh > 255))) { |
Andreas Müller | 49e9b4b | 2012-01-04 15:26:19 +0000 | [diff] [blame] | 124 | puts("Error : I2C initializing clock\n"); |
Tom Rix | 7f79dfb | 2009-06-28 12:52:27 -0500 | [diff] [blame] | 125 | return; |
| 126 | } |
| 127 | |
| 128 | scll = (unsigned int)fsscll; |
| 129 | sclh = (unsigned int)fssclh; |
| 130 | } |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 131 | |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 132 | if (readw(&i2c_base->con) & I2C_CON_EN) { |
| 133 | writew(0, &i2c_base->con); |
| 134 | udelay(50000); |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 135 | } |
| 136 | |
Tom Rini | cec487a | 2012-02-20 18:49:16 +0000 | [diff] [blame] | 137 | writew(0x2, &i2c_base->sysc); /* for ES2 after soft reset */ |
| 138 | udelay(1000); |
| 139 | |
| 140 | writew(I2C_CON_EN, &i2c_base->con); |
| 141 | while (!(readw(&i2c_base->syss) & I2C_SYSS_RDONE) && timeout--) { |
| 142 | if (timeout <= 0) { |
| 143 | puts("ERROR: Timeout in soft-reset\n"); |
| 144 | return; |
| 145 | } |
| 146 | udelay(1000); |
| 147 | } |
| 148 | |
| 149 | writew(0, &i2c_base->con); |
Dirk Behme | 1d2e96d | 2009-11-02 20:36:26 +0100 | [diff] [blame] | 150 | writew(psc, &i2c_base->psc); |
| 151 | writew(scll, &i2c_base->scll); |
| 152 | writew(sclh, &i2c_base->sclh); |
Tom Rix | 7f79dfb | 2009-06-28 12:52:27 -0500 | [diff] [blame] | 153 | |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 154 | /* own address */ |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 155 | writew(slaveadd, &i2c_base->oa); |
| 156 | writew(I2C_CON_EN, &i2c_base->con); |
Lubomir Popov | 960187f | 2013-06-01 06:44:38 +0000 | [diff] [blame] | 157 | #if defined(CONFIG_OMAP243X) || defined(CONFIG_OMAP34XX) |
| 158 | /* |
| 159 | * Have to enable interrupts for OMAP2/3, these IPs don't have |
| 160 | * an 'irqstatus_raw' register and we shall have to poll 'stat' |
| 161 | */ |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 162 | writew(I2C_IE_XRDY_IE | I2C_IE_RRDY_IE | I2C_IE_ARDY_IE | |
Lubomir Popov | 960187f | 2013-06-01 06:44:38 +0000 | [diff] [blame] | 163 | I2C_IE_NACK_IE | I2C_IE_AL_IE, &i2c_base->ie); |
| 164 | #endif |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 165 | udelay(1000); |
Wolfgang Denk | 49a7581 | 2005-09-25 18:41:04 +0200 | [diff] [blame] | 166 | flush_fifo(); |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 167 | writew(0xFFFF, &i2c_base->stat); |
| 168 | writew(0, &i2c_base->cnt); |
Tom Rini | cec487a | 2012-02-20 18:49:16 +0000 | [diff] [blame] | 169 | |
| 170 | if (gd->flags & GD_FLG_RELOC) |
| 171 | bus_initialized[current_bus] = 1; |
| 172 | } |
| 173 | |
Wolfgang Denk | 49a7581 | 2005-09-25 18:41:04 +0200 | [diff] [blame] | 174 | static void flush_fifo(void) |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 175 | { u16 stat; |
wdenk | 082acfd | 2005-01-10 00:01:04 +0000 | [diff] [blame] | 176 | |
| 177 | /* note: if you try and read data when its not there or ready |
| 178 | * you get a bus error |
| 179 | */ |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 180 | while (1) { |
Dirk Behme | 1d2e96d | 2009-11-02 20:36:26 +0100 | [diff] [blame] | 181 | stat = readw(&i2c_base->stat); |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 182 | if (stat == I2C_STAT_RRDY) { |
Dirk Behme | 1d2e96d | 2009-11-02 20:36:26 +0100 | [diff] [blame] | 183 | readb(&i2c_base->data); |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 184 | writew(I2C_STAT_RRDY, &i2c_base->stat); |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 185 | udelay(1000); |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 186 | } else |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 187 | break; |
| 188 | } |
| 189 | } |
| 190 | |
Lubomir Popov | 960187f | 2013-06-01 06:44:38 +0000 | [diff] [blame] | 191 | /* |
| 192 | * i2c_probe: Use write access. Allows to identify addresses that are |
| 193 | * write-only (like the config register of dual-port EEPROMs) |
| 194 | */ |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 195 | int i2c_probe(uchar chip) |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 196 | { |
Tom Rini | cec487a | 2012-02-20 18:49:16 +0000 | [diff] [blame] | 197 | u16 status; |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 198 | int res = 1; /* default = fail */ |
| 199 | |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 200 | if (chip == readw(&i2c_base->oa)) |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 201 | return res; |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 202 | |
Lubomir Popov | 960187f | 2013-06-01 06:44:38 +0000 | [diff] [blame] | 203 | /* Wait until bus is free */ |
Vincent Stehlé | febc4cd | 2012-12-03 05:23:16 +0000 | [diff] [blame] | 204 | if (wait_for_bb()) |
| 205 | return res; |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 206 | |
Lubomir Popov | 960187f | 2013-06-01 06:44:38 +0000 | [diff] [blame] | 207 | /* No data transfer, slave addr only */ |
| 208 | writew(0, &i2c_base->cnt); |
| 209 | /* Set slave address */ |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 210 | writew(chip, &i2c_base->sa); |
Lubomir Popov | 960187f | 2013-06-01 06:44:38 +0000 | [diff] [blame] | 211 | /* Stop bit needed here */ |
| 212 | writew(I2C_CON_EN | I2C_CON_MST | I2C_CON_STT | I2C_CON_TRX | |
| 213 | I2C_CON_STP, &i2c_base->con); |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 214 | |
Lubomir Popov | 960187f | 2013-06-01 06:44:38 +0000 | [diff] [blame] | 215 | status = wait_for_event(); |
Vincent Stehlé | febc4cd | 2012-12-03 05:23:16 +0000 | [diff] [blame] | 216 | |
Lubomir Popov | 960187f | 2013-06-01 06:44:38 +0000 | [diff] [blame] | 217 | if ((status & ~I2C_STAT_XRDY) == 0 || (status & I2C_STAT_AL)) { |
| 218 | /* |
| 219 | * With current high-level command implementation, notifying |
| 220 | * the user shall flood the console with 127 messages. If |
| 221 | * silent exit is desired upon unconfigured bus, remove the |
| 222 | * following 'if' section: |
| 223 | */ |
| 224 | if (status == I2C_STAT_XRDY) |
| 225 | printf("i2c_probe: pads on bus %d probably not configured (status=0x%x)\n", |
| 226 | current_bus, status); |
Vincent Stehlé | febc4cd | 2012-12-03 05:23:16 +0000 | [diff] [blame] | 227 | |
Lubomir Popov | 960187f | 2013-06-01 06:44:38 +0000 | [diff] [blame] | 228 | goto pr_exit; |
Tom Rini | 168a5ac | 2012-05-21 06:46:29 +0000 | [diff] [blame] | 229 | } |
Tom Rini | cec487a | 2012-02-20 18:49:16 +0000 | [diff] [blame] | 230 | |
Lubomir Popov | 960187f | 2013-06-01 06:44:38 +0000 | [diff] [blame] | 231 | /* Check for ACK (!NAK) */ |
| 232 | if (!(status & I2C_STAT_NACK)) { |
| 233 | res = 0; /* Device found */ |
| 234 | udelay(I2C_WAIT); /* Required by AM335X in SPL */ |
| 235 | /* Abort transfer (force idle state) */ |
| 236 | writew(I2C_CON_MST | I2C_CON_TRX, &i2c_base->con); /* Reset */ |
| 237 | udelay(1000); |
| 238 | writew(I2C_CON_EN | I2C_CON_MST | I2C_CON_TRX | |
| 239 | I2C_CON_STP, &i2c_base->con); /* STP */ |
| 240 | } |
| 241 | pr_exit: |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 242 | flush_fifo(); |
Dirk Behme | 1d2e96d | 2009-11-02 20:36:26 +0100 | [diff] [blame] | 243 | writew(0xFFFF, &i2c_base->stat); |
Lubomir Popov | 960187f | 2013-06-01 06:44:38 +0000 | [diff] [blame] | 244 | writew(0, &i2c_base->cnt); |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 245 | return res; |
| 246 | } |
| 247 | |
Lubomir Popov | 960187f | 2013-06-01 06:44:38 +0000 | [diff] [blame] | 248 | /* |
| 249 | * i2c_read: Function now uses a single I2C read transaction with bulk transfer |
| 250 | * of the requested number of bytes (note that the 'i2c md' command |
| 251 | * limits this to 16 bytes anyway). If CONFIG_I2C_REPEATED_START is |
| 252 | * defined in the board config header, this transaction shall be with |
| 253 | * Repeated Start (Sr) between the address and data phases; otherwise |
| 254 | * Stop-Start (P-S) shall be used (some I2C chips do require a P-S). |
| 255 | * The address (reg offset) may be 0, 1 or 2 bytes long. |
| 256 | * Function now reads correctly from chips that return more than one |
| 257 | * byte of data per addressed register (like TI temperature sensors), |
| 258 | * or that do not need a register address at all (such as some clock |
| 259 | * distributors). |
| 260 | */ |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 261 | int i2c_read(uchar chip, uint addr, int alen, uchar *buffer, int len) |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 262 | { |
Lubomir Popov | 960187f | 2013-06-01 06:44:38 +0000 | [diff] [blame] | 263 | int i2c_error = 0; |
| 264 | u16 status; |
| 265 | |
| 266 | if (alen < 0) { |
| 267 | puts("I2C read: addr len < 0\n"); |
| 268 | return 1; |
| 269 | } |
| 270 | if (len < 0) { |
| 271 | puts("I2C read: data len < 0\n"); |
| 272 | return 1; |
| 273 | } |
| 274 | if (buffer == NULL) { |
| 275 | puts("I2C read: NULL pointer passed\n"); |
| 276 | return 1; |
| 277 | } |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 278 | |
Ilya Yanok | 55faa58 | 2012-06-08 03:12:09 +0000 | [diff] [blame] | 279 | if (alen > 2) { |
Tom Rini | cec487a | 2012-02-20 18:49:16 +0000 | [diff] [blame] | 280 | printf("I2C read: addr len %d not supported\n", alen); |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 281 | return 1; |
Tom Rini | cec487a | 2012-02-20 18:49:16 +0000 | [diff] [blame] | 282 | } |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 283 | |
Ilya Yanok | 55faa58 | 2012-06-08 03:12:09 +0000 | [diff] [blame] | 284 | if (addr + len > (1 << 16)) { |
Tom Rini | cec487a | 2012-02-20 18:49:16 +0000 | [diff] [blame] | 285 | puts("I2C read: address out of range\n"); |
| 286 | return 1; |
| 287 | } |
| 288 | |
Lubomir Popov | 960187f | 2013-06-01 06:44:38 +0000 | [diff] [blame] | 289 | /* Wait until bus not busy */ |
| 290 | if (wait_for_bb()) |
| 291 | return 1; |
| 292 | |
| 293 | /* Zero, one or two bytes reg address (offset) */ |
| 294 | writew(alen, &i2c_base->cnt); |
| 295 | /* Set slave address */ |
| 296 | writew(chip, &i2c_base->sa); |
| 297 | |
| 298 | if (alen) { |
| 299 | /* Must write reg offset first */ |
| 300 | #ifdef CONFIG_I2C_REPEATED_START |
| 301 | /* No stop bit, use Repeated Start (Sr) */ |
| 302 | writew(I2C_CON_EN | I2C_CON_MST | I2C_CON_STT | |
| 303 | I2C_CON_TRX, &i2c_base->con); |
| 304 | #else |
| 305 | /* Stop - Start (P-S) */ |
| 306 | writew(I2C_CON_EN | I2C_CON_MST | I2C_CON_STT | I2C_CON_STP | |
| 307 | I2C_CON_TRX, &i2c_base->con); |
| 308 | #endif |
| 309 | /* Send register offset */ |
| 310 | while (1) { |
| 311 | status = wait_for_event(); |
| 312 | /* Try to identify bus that is not padconf'd for I2C */ |
| 313 | if (status == I2C_STAT_XRDY) { |
| 314 | i2c_error = 2; |
| 315 | printf("i2c_read (addr phase): pads on bus %d probably not configured (status=0x%x)\n", |
| 316 | current_bus, status); |
| 317 | goto rd_exit; |
| 318 | } |
| 319 | if (status == 0 || status & I2C_STAT_NACK) { |
| 320 | i2c_error = 1; |
| 321 | printf("i2c_read: error waiting for addr ACK (status=0x%x)\n", |
| 322 | status); |
| 323 | goto rd_exit; |
| 324 | } |
| 325 | if (alen) { |
| 326 | if (status & I2C_STAT_XRDY) { |
| 327 | alen--; |
| 328 | /* Do we have to use byte access? */ |
| 329 | writeb((addr >> (8 * alen)) & 0xff, |
| 330 | &i2c_base->data); |
| 331 | writew(I2C_STAT_XRDY, &i2c_base->stat); |
| 332 | } |
| 333 | } |
| 334 | if (status & I2C_STAT_ARDY) { |
| 335 | writew(I2C_STAT_ARDY, &i2c_base->stat); |
| 336 | break; |
| 337 | } |
| 338 | } |
| 339 | } |
| 340 | /* Set slave address */ |
| 341 | writew(chip, &i2c_base->sa); |
| 342 | /* Read len bytes from slave */ |
| 343 | writew(len, &i2c_base->cnt); |
| 344 | /* Need stop bit here */ |
| 345 | writew(I2C_CON_EN | I2C_CON_MST | |
| 346 | I2C_CON_STT | I2C_CON_STP, |
| 347 | &i2c_base->con); |
| 348 | |
| 349 | /* Receive data */ |
| 350 | while (1) { |
| 351 | status = wait_for_event(); |
| 352 | /* |
| 353 | * Try to identify bus that is not padconf'd for I2C. This |
| 354 | * state could be left over from previous transactions if |
| 355 | * the address phase is skipped due to alen=0. |
| 356 | */ |
| 357 | if (status == I2C_STAT_XRDY) { |
| 358 | i2c_error = 2; |
| 359 | printf("i2c_read (data phase): pads on bus %d probably not configured (status=0x%x)\n", |
| 360 | current_bus, status); |
| 361 | goto rd_exit; |
| 362 | } |
| 363 | if (status == 0 || status & I2C_STAT_NACK) { |
| 364 | i2c_error = 1; |
| 365 | goto rd_exit; |
| 366 | } |
| 367 | if (status & I2C_STAT_RRDY) { |
| 368 | *buffer++ = readb(&i2c_base->data); |
| 369 | writew(I2C_STAT_RRDY, &i2c_base->stat); |
| 370 | } |
| 371 | if (status & I2C_STAT_ARDY) { |
| 372 | writew(I2C_STAT_ARDY, &i2c_base->stat); |
| 373 | break; |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 374 | } |
| 375 | } |
| 376 | |
Lubomir Popov | 960187f | 2013-06-01 06:44:38 +0000 | [diff] [blame] | 377 | rd_exit: |
| 378 | flush_fifo(); |
| 379 | writew(0xFFFF, &i2c_base->stat); |
| 380 | writew(0, &i2c_base->cnt); |
| 381 | return i2c_error; |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 382 | } |
| 383 | |
Lubomir Popov | 960187f | 2013-06-01 06:44:38 +0000 | [diff] [blame] | 384 | /* i2c_write: Address (reg offset) may be 0, 1 or 2 bytes long. */ |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 385 | int i2c_write(uchar chip, uint addr, int alen, uchar *buffer, int len) |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 386 | { |
Tom Rini | cec487a | 2012-02-20 18:49:16 +0000 | [diff] [blame] | 387 | int i; |
| 388 | u16 status; |
| 389 | int i2c_error = 0; |
Lubomir Popov | 960187f | 2013-06-01 06:44:38 +0000 | [diff] [blame] | 390 | |
| 391 | if (alen < 0) { |
| 392 | puts("I2C write: addr len < 0\n"); |
| 393 | return 1; |
| 394 | } |
| 395 | |
| 396 | if (len < 0) { |
| 397 | puts("I2C write: data len < 0\n"); |
| 398 | return 1; |
| 399 | } |
| 400 | |
| 401 | if (buffer == NULL) { |
| 402 | puts("I2C write: NULL pointer passed\n"); |
| 403 | return 1; |
| 404 | } |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 405 | |
Ilya Yanok | 55faa58 | 2012-06-08 03:12:09 +0000 | [diff] [blame] | 406 | if (alen > 2) { |
Tom Rini | cec487a | 2012-02-20 18:49:16 +0000 | [diff] [blame] | 407 | printf("I2C write: addr len %d not supported\n", alen); |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 408 | return 1; |
Tom Rini | cec487a | 2012-02-20 18:49:16 +0000 | [diff] [blame] | 409 | } |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 410 | |
Ilya Yanok | 55faa58 | 2012-06-08 03:12:09 +0000 | [diff] [blame] | 411 | if (addr + len > (1 << 16)) { |
Tom Rini | cec487a | 2012-02-20 18:49:16 +0000 | [diff] [blame] | 412 | printf("I2C write: address 0x%x + 0x%x out of range\n", |
Lubomir Popov | 960187f | 2013-06-01 06:44:38 +0000 | [diff] [blame] | 413 | addr, len); |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 414 | return 1; |
| 415 | } |
| 416 | |
Lubomir Popov | 960187f | 2013-06-01 06:44:38 +0000 | [diff] [blame] | 417 | /* Wait until bus not busy */ |
Vincent Stehlé | febc4cd | 2012-12-03 05:23:16 +0000 | [diff] [blame] | 418 | if (wait_for_bb()) |
| 419 | return 1; |
Michael Jones | 0607e2b | 2011-09-04 14:01:55 -0400 | [diff] [blame] | 420 | |
Lubomir Popov | 960187f | 2013-06-01 06:44:38 +0000 | [diff] [blame] | 421 | /* Start address phase - will write regoffset + len bytes data */ |
Tom Rini | cec487a | 2012-02-20 18:49:16 +0000 | [diff] [blame] | 422 | writew(alen + len, &i2c_base->cnt); |
Lubomir Popov | 960187f | 2013-06-01 06:44:38 +0000 | [diff] [blame] | 423 | /* Set slave address */ |
Michael Jones | 0607e2b | 2011-09-04 14:01:55 -0400 | [diff] [blame] | 424 | writew(chip, &i2c_base->sa); |
Lubomir Popov | 960187f | 2013-06-01 06:44:38 +0000 | [diff] [blame] | 425 | /* Stop bit needed here */ |
Michael Jones | 0607e2b | 2011-09-04 14:01:55 -0400 | [diff] [blame] | 426 | writew(I2C_CON_EN | I2C_CON_MST | I2C_CON_STT | I2C_CON_TRX | |
Lubomir Popov | 960187f | 2013-06-01 06:44:38 +0000 | [diff] [blame] | 427 | I2C_CON_STP, &i2c_base->con); |
Michael Jones | 0607e2b | 2011-09-04 14:01:55 -0400 | [diff] [blame] | 428 | |
Lubomir Popov | 960187f | 2013-06-01 06:44:38 +0000 | [diff] [blame] | 429 | while (alen) { |
| 430 | /* Must write reg offset (one or two bytes) */ |
| 431 | status = wait_for_event(); |
| 432 | /* Try to identify bus that is not padconf'd for I2C */ |
| 433 | if (status == I2C_STAT_XRDY) { |
| 434 | i2c_error = 2; |
| 435 | printf("i2c_write: pads on bus %d probably not configured (status=0x%x)\n", |
| 436 | current_bus, status); |
| 437 | goto wr_exit; |
| 438 | } |
Tom Rini | cec487a | 2012-02-20 18:49:16 +0000 | [diff] [blame] | 439 | if (status == 0 || status & I2C_STAT_NACK) { |
Michael Jones | 0607e2b | 2011-09-04 14:01:55 -0400 | [diff] [blame] | 440 | i2c_error = 1; |
Lubomir Popov | 960187f | 2013-06-01 06:44:38 +0000 | [diff] [blame] | 441 | printf("i2c_write: error waiting for addr ACK (status=0x%x)\n", |
| 442 | status); |
| 443 | goto wr_exit; |
Tom Rini | cec487a | 2012-02-20 18:49:16 +0000 | [diff] [blame] | 444 | } |
Tom Rini | cec487a | 2012-02-20 18:49:16 +0000 | [diff] [blame] | 445 | if (status & I2C_STAT_XRDY) { |
Lubomir Popov | 960187f | 2013-06-01 06:44:38 +0000 | [diff] [blame] | 446 | alen--; |
| 447 | writeb((addr >> (8 * alen)) & 0xff, &i2c_base->data); |
Tom Rini | cec487a | 2012-02-20 18:49:16 +0000 | [diff] [blame] | 448 | writew(I2C_STAT_XRDY, &i2c_base->stat); |
| 449 | } else { |
| 450 | i2c_error = 1; |
Lubomir Popov | 960187f | 2013-06-01 06:44:38 +0000 | [diff] [blame] | 451 | printf("i2c_write: bus not ready for addr Tx (status=0x%x)\n", |
| 452 | status); |
| 453 | goto wr_exit; |
| 454 | } |
| 455 | } |
| 456 | /* Address phase is over, now write data */ |
| 457 | for (i = 0; i < len; i++) { |
| 458 | status = wait_for_event(); |
| 459 | if (status == 0 || status & I2C_STAT_NACK) { |
| 460 | i2c_error = 1; |
| 461 | printf("i2c_write: error waiting for data ACK (status=0x%x)\n", |
| 462 | status); |
| 463 | goto wr_exit; |
| 464 | } |
| 465 | if (status & I2C_STAT_XRDY) { |
| 466 | writeb(buffer[i], &i2c_base->data); |
| 467 | writew(I2C_STAT_XRDY, &i2c_base->stat); |
| 468 | } else { |
| 469 | i2c_error = 1; |
| 470 | printf("i2c_write: bus not ready for data Tx (i=%d)\n", |
| 471 | i); |
| 472 | goto wr_exit; |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 473 | } |
| 474 | } |
| 475 | |
Lubomir Popov | 960187f | 2013-06-01 06:44:38 +0000 | [diff] [blame] | 476 | wr_exit: |
Michael Jones | 0607e2b | 2011-09-04 14:01:55 -0400 | [diff] [blame] | 477 | flush_fifo(); |
| 478 | writew(0xFFFF, &i2c_base->stat); |
Lubomir Popov | 960187f | 2013-06-01 06:44:38 +0000 | [diff] [blame] | 479 | writew(0, &i2c_base->cnt); |
Tom Rini | cec487a | 2012-02-20 18:49:16 +0000 | [diff] [blame] | 480 | return i2c_error; |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 481 | } |
| 482 | |
Lubomir Popov | 960187f | 2013-06-01 06:44:38 +0000 | [diff] [blame] | 483 | /* |
| 484 | * Wait for the bus to be free by checking the Bus Busy (BB) |
| 485 | * bit to become clear |
| 486 | */ |
Vincent Stehlé | febc4cd | 2012-12-03 05:23:16 +0000 | [diff] [blame] | 487 | static int wait_for_bb(void) |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 488 | { |
Steve Sakoman | 73e8747 | 2010-10-20 06:07:44 -0700 | [diff] [blame] | 489 | int timeout = I2C_TIMEOUT; |
Tom Rini | cec487a | 2012-02-20 18:49:16 +0000 | [diff] [blame] | 490 | u16 stat; |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 491 | |
Tom Rini | cec487a | 2012-02-20 18:49:16 +0000 | [diff] [blame] | 492 | writew(0xFFFF, &i2c_base->stat); /* clear current interrupts...*/ |
Lubomir Popov | 960187f | 2013-06-01 06:44:38 +0000 | [diff] [blame] | 493 | #if defined(CONFIG_OMAP243X) || defined(CONFIG_OMAP34XX) |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 494 | while ((stat = readw(&i2c_base->stat) & I2C_STAT_BB) && timeout--) { |
Lubomir Popov | 960187f | 2013-06-01 06:44:38 +0000 | [diff] [blame] | 495 | #else |
| 496 | /* Read RAW status */ |
| 497 | while ((stat = readw(&i2c_base->irqstatus_raw) & |
| 498 | I2C_STAT_BB) && timeout--) { |
| 499 | #endif |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 500 | writew(stat, &i2c_base->stat); |
Lubomir Popov | 960187f | 2013-06-01 06:44:38 +0000 | [diff] [blame] | 501 | udelay(I2C_WAIT); |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 502 | } |
| 503 | |
| 504 | if (timeout <= 0) { |
Lubomir Popov | 960187f | 2013-06-01 06:44:38 +0000 | [diff] [blame] | 505 | printf("Timed out in wait_for_bb: status=%04x\n", |
| 506 | stat); |
Vincent Stehlé | febc4cd | 2012-12-03 05:23:16 +0000 | [diff] [blame] | 507 | return 1; |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 508 | } |
Dirk Behme | 1d2e96d | 2009-11-02 20:36:26 +0100 | [diff] [blame] | 509 | writew(0xFFFF, &i2c_base->stat); /* clear delayed stuff*/ |
Vincent Stehlé | febc4cd | 2012-12-03 05:23:16 +0000 | [diff] [blame] | 510 | return 0; |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 511 | } |
| 512 | |
Lubomir Popov | 960187f | 2013-06-01 06:44:38 +0000 | [diff] [blame] | 513 | /* |
| 514 | * Wait for the I2C controller to complete current action |
| 515 | * and update status |
| 516 | */ |
| 517 | static u16 wait_for_event(void) |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 518 | { |
Tom Rini | cec487a | 2012-02-20 18:49:16 +0000 | [diff] [blame] | 519 | u16 status; |
Steve Sakoman | 73e8747 | 2010-10-20 06:07:44 -0700 | [diff] [blame] | 520 | int timeout = I2C_TIMEOUT; |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 521 | |
| 522 | do { |
Lubomir Popov | 960187f | 2013-06-01 06:44:38 +0000 | [diff] [blame] | 523 | udelay(I2C_WAIT); |
| 524 | #if defined(CONFIG_OMAP243X) || defined(CONFIG_OMAP34XX) |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 525 | status = readw(&i2c_base->stat); |
Lubomir Popov | 960187f | 2013-06-01 06:44:38 +0000 | [diff] [blame] | 526 | #else |
| 527 | /* Read RAW status */ |
| 528 | status = readw(&i2c_base->irqstatus_raw); |
| 529 | #endif |
Tom Rini | cec487a | 2012-02-20 18:49:16 +0000 | [diff] [blame] | 530 | } while (!(status & |
| 531 | (I2C_STAT_ROVR | I2C_STAT_XUDF | I2C_STAT_XRDY | |
| 532 | I2C_STAT_RRDY | I2C_STAT_ARDY | I2C_STAT_NACK | |
| 533 | I2C_STAT_AL)) && timeout--); |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 534 | |
| 535 | if (timeout <= 0) { |
Lubomir Popov | 960187f | 2013-06-01 06:44:38 +0000 | [diff] [blame] | 536 | printf("Timed out in wait_for_event: status=%04x\n", |
| 537 | status); |
| 538 | /* |
| 539 | * If status is still 0 here, probably the bus pads have |
| 540 | * not been configured for I2C, and/or pull-ups are missing. |
| 541 | */ |
| 542 | printf("Check if pads/pull-ups of bus %d are properly configured\n", |
| 543 | current_bus); |
Steve Sakoman | 73e8747 | 2010-10-20 06:07:44 -0700 | [diff] [blame] | 544 | writew(0xFFFF, &i2c_base->stat); |
Tom Rini | cec487a | 2012-02-20 18:49:16 +0000 | [diff] [blame] | 545 | status = 0; |
Steve Sakoman | 73e8747 | 2010-10-20 06:07:44 -0700 | [diff] [blame] | 546 | } |
Tom Rini | cec487a | 2012-02-20 18:49:16 +0000 | [diff] [blame] | 547 | |
wdenk | 8ed9604 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 548 | return status; |
| 549 | } |
Dirk Behme | 1d2e96d | 2009-11-02 20:36:26 +0100 | [diff] [blame] | 550 | |
| 551 | int i2c_set_bus_num(unsigned int bus) |
| 552 | { |
Lubomir Popov | 960187f | 2013-06-01 06:44:38 +0000 | [diff] [blame] | 553 | if (bus >= I2C_BUS_MAX) { |
| 554 | printf("Bad bus: %x\n", bus); |
Dirk Behme | 1d2e96d | 2009-11-02 20:36:26 +0100 | [diff] [blame] | 555 | return -1; |
| 556 | } |
| 557 | |
Lubomir Popov | 960187f | 2013-06-01 06:44:38 +0000 | [diff] [blame] | 558 | switch (bus) { |
| 559 | default: |
| 560 | bus = 0; /* Fall through */ |
| 561 | case 0: |
Dirk Behme | 1d2e96d | 2009-11-02 20:36:26 +0100 | [diff] [blame] | 562 | i2c_base = (struct i2c *)I2C_BASE1; |
Lubomir Popov | 960187f | 2013-06-01 06:44:38 +0000 | [diff] [blame] | 563 | break; |
| 564 | case 1: |
| 565 | i2c_base = (struct i2c *)I2C_BASE2; |
| 566 | break; |
| 567 | #if (I2C_BUS_MAX > 2) |
| 568 | case 2: |
| 569 | i2c_base = (struct i2c *)I2C_BASE3; |
| 570 | break; |
| 571 | #if (I2C_BUS_MAX > 3) |
| 572 | case 3: |
| 573 | i2c_base = (struct i2c *)I2C_BASE4; |
| 574 | break; |
| 575 | #if (I2C_BUS_MAX > 4) |
| 576 | case 4: |
| 577 | i2c_base = (struct i2c *)I2C_BASE5; |
| 578 | break; |
| 579 | #endif |
| 580 | #endif |
| 581 | #endif |
| 582 | } |
Dirk Behme | 1d2e96d | 2009-11-02 20:36:26 +0100 | [diff] [blame] | 583 | |
| 584 | current_bus = bus; |
| 585 | |
Michael Jones | 89677b2 | 2011-07-27 14:01:55 -0400 | [diff] [blame] | 586 | if (!bus_initialized[current_bus]) |
Dirk Behme | 1d2e96d | 2009-11-02 20:36:26 +0100 | [diff] [blame] | 587 | i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE); |
| 588 | |
| 589 | return 0; |
| 590 | } |
Steve Sakoman | 938717c | 2010-06-12 06:42:57 -0700 | [diff] [blame] | 591 | |
| 592 | int i2c_get_bus_num(void) |
| 593 | { |
| 594 | return (int) current_bus; |
| 595 | } |