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