wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2001, 2002 |
| 3 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | * |
| 5 | * See file CREDITS for list of people who contributed to this |
| 6 | * project. |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or |
| 9 | * modify it under the terms of the GNU General Public License as |
| 10 | * published by the Free Software Foundation; either version 2 of |
| 11 | * the License, or (at your option) any later version. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | * GNU General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License |
| 19 | * along with this program; if not, write to the Free Software |
| 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 21 | * MA 02111-1307 USA |
| 22 | * |
| 23 | * This has been changed substantially by Gerald Van Baren, Custom IDEAS, |
| 24 | * vanbaren@cideas.com. It was heavily influenced by LiMon, written by |
| 25 | * Neil Russell. |
| 26 | */ |
| 27 | |
| 28 | #include <common.h> |
| 29 | #ifdef CONFIG_MPC8260 /* only valid for MPC8260 */ |
| 30 | #include <ioports.h> |
Heiko Schocher | a21ca95 | 2008-10-17 13:52:51 +0200 | [diff] [blame] | 31 | #include <asm/io.h> |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 32 | #endif |
Jens Scharsig | 0cf0b93 | 2010-02-03 22:46:58 +0100 | [diff] [blame^] | 33 | #if defined(CONFIG_AT91RM9200) || \ |
| 34 | defined(CONFIG_AT91SAM9260) || defined(CONFIG_AT91SAM9261) || \ |
| 35 | defined(CONFIG_AT91SAM9263) |
wdenk | 9d5028c | 2004-11-21 00:06:33 +0000 | [diff] [blame] | 36 | #include <asm/io.h> |
| 37 | #include <asm/arch/hardware.h> |
Jens Scharsig | 0cf0b93 | 2010-02-03 22:46:58 +0100 | [diff] [blame^] | 38 | #include <asm/arch/at91_pio.h> |
| 39 | #ifdef CONFIG_AT91_LEGACY |
Daniel Gorsulowski | 4e574c4 | 2009-05-18 13:20:54 +0200 | [diff] [blame] | 40 | #include <asm/arch/gpio.h> |
Jens Scharsig | 0cf0b93 | 2010-02-03 22:46:58 +0100 | [diff] [blame^] | 41 | #endif |
Daniel Gorsulowski | 4e574c4 | 2009-05-18 13:20:54 +0200 | [diff] [blame] | 42 | #endif |
Wolfgang Denk | ba94a1b | 2006-05-30 15:56:48 +0200 | [diff] [blame] | 43 | #ifdef CONFIG_IXP425 /* only valid for IXP425 */ |
| 44 | #include <asm/arch/ixp425.h> |
| 45 | #endif |
Peter Pearse | b0d8f5b | 2007-05-09 11:37:56 +0100 | [diff] [blame] | 46 | #ifdef CONFIG_LPC2292 |
| 47 | #include <asm/arch/hardware.h> |
| 48 | #endif |
Heiko Schocher | 1b6275d | 2009-03-12 07:37:34 +0100 | [diff] [blame] | 49 | #if defined(CONFIG_MPC852T) || defined(CONFIG_MPC866) |
Heiko Schocher | a21ca95 | 2008-10-17 13:52:51 +0200 | [diff] [blame] | 50 | #include <asm/io.h> |
| 51 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 52 | #include <i2c.h> |
| 53 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 54 | /* #define DEBUG_I2C */ |
| 55 | |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 56 | #ifdef DEBUG_I2C |
| 57 | DECLARE_GLOBAL_DATA_PTR; |
| 58 | #endif |
| 59 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 60 | /*----------------------------------------------------------------------- |
| 61 | * Definitions |
| 62 | */ |
| 63 | |
| 64 | #define RETRIES 0 |
| 65 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 66 | #define I2C_ACK 0 /* PD_SDA level to ack a byte */ |
| 67 | #define I2C_NOACK 1 /* PD_SDA level to noack a byte */ |
| 68 | |
| 69 | |
| 70 | #ifdef DEBUG_I2C |
| 71 | #define PRINTD(fmt,args...) do { \ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 72 | if (gd->have_console) \ |
| 73 | printf (fmt ,##args); \ |
| 74 | } while (0) |
| 75 | #else |
| 76 | #define PRINTD(fmt,args...) |
| 77 | #endif |
| 78 | |
Heiko Schocher | 799b784 | 2008-10-15 09:34:45 +0200 | [diff] [blame] | 79 | #if defined(CONFIG_I2C_MULTI_BUS) |
Trent Piepho | 5e3ab68 | 2008-11-12 17:29:48 -0800 | [diff] [blame] | 80 | static unsigned int i2c_bus_num __attribute__ ((section (".data"))) = 0; |
Heiko Schocher | 799b784 | 2008-10-15 09:34:45 +0200 | [diff] [blame] | 81 | #endif /* CONFIG_I2C_MULTI_BUS */ |
| 82 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 83 | /*----------------------------------------------------------------------- |
| 84 | * Local functions |
| 85 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 86 | #if !defined(CONFIG_SYS_I2C_INIT_BOARD) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 87 | static void send_reset (void); |
Heiko Schocher | 4ca107e | 2008-10-15 09:38:38 +0200 | [diff] [blame] | 88 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 89 | static void send_start (void); |
| 90 | static void send_stop (void); |
| 91 | static void send_ack (int); |
| 92 | static int write_byte (uchar byte); |
| 93 | static uchar read_byte (int); |
| 94 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 95 | #if !defined(CONFIG_SYS_I2C_INIT_BOARD) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 96 | /*----------------------------------------------------------------------- |
| 97 | * Send a reset sequence consisting of 9 clocks with the data signal high |
| 98 | * to clock any confused device back into an idle state. Also send a |
| 99 | * <stop> at the end of the sequence for belts & suspenders. |
| 100 | */ |
| 101 | static void send_reset(void) |
| 102 | { |
Heiko Schocher | 98aed37 | 2008-10-15 09:35:26 +0200 | [diff] [blame] | 103 | I2C_SOFT_DECLARATIONS /* intentional without ';' */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 104 | int j; |
| 105 | |
wdenk | 60fbe25 | 2003-04-08 23:25:21 +0000 | [diff] [blame] | 106 | I2C_SCL(1); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 107 | I2C_SDA(1); |
wdenk | 60fbe25 | 2003-04-08 23:25:21 +0000 | [diff] [blame] | 108 | #ifdef I2C_INIT |
| 109 | I2C_INIT; |
| 110 | #endif |
| 111 | I2C_TRISTATE; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 112 | for(j = 0; j < 9; j++) { |
| 113 | I2C_SCL(0); |
| 114 | I2C_DELAY; |
| 115 | I2C_DELAY; |
| 116 | I2C_SCL(1); |
| 117 | I2C_DELAY; |
| 118 | I2C_DELAY; |
| 119 | } |
| 120 | send_stop(); |
| 121 | I2C_TRISTATE; |
| 122 | } |
Heiko Schocher | 4ca107e | 2008-10-15 09:38:38 +0200 | [diff] [blame] | 123 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 124 | |
| 125 | /*----------------------------------------------------------------------- |
| 126 | * START: High -> Low on SDA while SCL is High |
| 127 | */ |
| 128 | static void send_start(void) |
| 129 | { |
Heiko Schocher | 98aed37 | 2008-10-15 09:35:26 +0200 | [diff] [blame] | 130 | I2C_SOFT_DECLARATIONS /* intentional without ';' */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 131 | |
| 132 | I2C_DELAY; |
| 133 | I2C_SDA(1); |
| 134 | I2C_ACTIVE; |
| 135 | I2C_DELAY; |
| 136 | I2C_SCL(1); |
| 137 | I2C_DELAY; |
| 138 | I2C_SDA(0); |
| 139 | I2C_DELAY; |
| 140 | } |
| 141 | |
| 142 | /*----------------------------------------------------------------------- |
| 143 | * STOP: Low -> High on SDA while SCL is High |
| 144 | */ |
| 145 | static void send_stop(void) |
| 146 | { |
Heiko Schocher | 98aed37 | 2008-10-15 09:35:26 +0200 | [diff] [blame] | 147 | I2C_SOFT_DECLARATIONS /* intentional without ';' */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 148 | |
| 149 | I2C_SCL(0); |
| 150 | I2C_DELAY; |
| 151 | I2C_SDA(0); |
| 152 | I2C_ACTIVE; |
| 153 | I2C_DELAY; |
| 154 | I2C_SCL(1); |
| 155 | I2C_DELAY; |
| 156 | I2C_SDA(1); |
| 157 | I2C_DELAY; |
| 158 | I2C_TRISTATE; |
| 159 | } |
| 160 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 161 | /*----------------------------------------------------------------------- |
| 162 | * ack should be I2C_ACK or I2C_NOACK |
| 163 | */ |
| 164 | static void send_ack(int ack) |
| 165 | { |
Heiko Schocher | 98aed37 | 2008-10-15 09:35:26 +0200 | [diff] [blame] | 166 | I2C_SOFT_DECLARATIONS /* intentional without ';' */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 167 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 168 | I2C_SCL(0); |
| 169 | I2C_DELAY; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 170 | I2C_ACTIVE; |
Wolfgang Denk | c15f80e | 2006-03-13 00:50:48 +0100 | [diff] [blame] | 171 | I2C_SDA(ack); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 172 | I2C_DELAY; |
| 173 | I2C_SCL(1); |
| 174 | I2C_DELAY; |
| 175 | I2C_DELAY; |
| 176 | I2C_SCL(0); |
| 177 | I2C_DELAY; |
| 178 | } |
| 179 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 180 | /*----------------------------------------------------------------------- |
| 181 | * Send 8 bits and look for an acknowledgement. |
| 182 | */ |
| 183 | static int write_byte(uchar data) |
| 184 | { |
Heiko Schocher | 98aed37 | 2008-10-15 09:35:26 +0200 | [diff] [blame] | 185 | I2C_SOFT_DECLARATIONS /* intentional without ';' */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 186 | int j; |
| 187 | int nack; |
| 188 | |
| 189 | I2C_ACTIVE; |
| 190 | for(j = 0; j < 8; j++) { |
| 191 | I2C_SCL(0); |
| 192 | I2C_DELAY; |
| 193 | I2C_SDA(data & 0x80); |
| 194 | I2C_DELAY; |
| 195 | I2C_SCL(1); |
| 196 | I2C_DELAY; |
| 197 | I2C_DELAY; |
| 198 | |
| 199 | data <<= 1; |
| 200 | } |
| 201 | |
| 202 | /* |
| 203 | * Look for an <ACK>(negative logic) and return it. |
| 204 | */ |
| 205 | I2C_SCL(0); |
| 206 | I2C_DELAY; |
| 207 | I2C_SDA(1); |
| 208 | I2C_TRISTATE; |
| 209 | I2C_DELAY; |
| 210 | I2C_SCL(1); |
| 211 | I2C_DELAY; |
| 212 | I2C_DELAY; |
| 213 | nack = I2C_READ; |
| 214 | I2C_SCL(0); |
| 215 | I2C_DELAY; |
| 216 | I2C_ACTIVE; |
| 217 | |
| 218 | return(nack); /* not a nack is an ack */ |
| 219 | } |
| 220 | |
Heiko Schocher | 799b784 | 2008-10-15 09:34:45 +0200 | [diff] [blame] | 221 | #if defined(CONFIG_I2C_MULTI_BUS) |
| 222 | /* |
| 223 | * Functions for multiple I2C bus handling |
| 224 | */ |
| 225 | unsigned int i2c_get_bus_num(void) |
| 226 | { |
| 227 | return i2c_bus_num; |
| 228 | } |
| 229 | |
| 230 | int i2c_set_bus_num(unsigned int bus) |
| 231 | { |
Heiko Schocher | 67b23a3 | 2008-10-15 09:39:47 +0200 | [diff] [blame] | 232 | #if defined(CONFIG_I2C_MUX) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 233 | if (bus < CONFIG_SYS_MAX_I2C_BUS) { |
Heiko Schocher | 67b23a3 | 2008-10-15 09:39:47 +0200 | [diff] [blame] | 234 | i2c_bus_num = bus; |
| 235 | } else { |
| 236 | int ret; |
| 237 | |
| 238 | ret = i2x_mux_select_mux(bus); |
| 239 | if (ret == 0) |
| 240 | i2c_bus_num = bus; |
| 241 | else |
| 242 | return ret; |
| 243 | } |
| 244 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 245 | if (bus >= CONFIG_SYS_MAX_I2C_BUS) |
Heiko Schocher | 799b784 | 2008-10-15 09:34:45 +0200 | [diff] [blame] | 246 | return -1; |
| 247 | i2c_bus_num = bus; |
Heiko Schocher | 67b23a3 | 2008-10-15 09:39:47 +0200 | [diff] [blame] | 248 | #endif |
Heiko Schocher | 799b784 | 2008-10-15 09:34:45 +0200 | [diff] [blame] | 249 | return 0; |
| 250 | } |
Jens Scharsig | d144f94 | 2009-03-31 08:18:29 +0200 | [diff] [blame] | 251 | #endif |
Heiko Schocher | 799b784 | 2008-10-15 09:34:45 +0200 | [diff] [blame] | 252 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 253 | /*----------------------------------------------------------------------- |
| 254 | * if ack == I2C_ACK, ACK the byte so can continue reading, else |
| 255 | * send I2C_NOACK to end the read. |
| 256 | */ |
| 257 | static uchar read_byte(int ack) |
| 258 | { |
Heiko Schocher | 98aed37 | 2008-10-15 09:35:26 +0200 | [diff] [blame] | 259 | I2C_SOFT_DECLARATIONS /* intentional without ';' */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 260 | int data; |
| 261 | int j; |
| 262 | |
| 263 | /* |
| 264 | * Read 8 bits, MSB first. |
| 265 | */ |
| 266 | I2C_TRISTATE; |
Haavard Skinnemoen | 110e006 | 2008-05-16 11:08:11 +0200 | [diff] [blame] | 267 | I2C_SDA(1); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 268 | data = 0; |
| 269 | for(j = 0; j < 8; j++) { |
| 270 | I2C_SCL(0); |
| 271 | I2C_DELAY; |
| 272 | I2C_SCL(1); |
| 273 | I2C_DELAY; |
| 274 | data <<= 1; |
| 275 | data |= I2C_READ; |
| 276 | I2C_DELAY; |
| 277 | } |
| 278 | send_ack(ack); |
| 279 | |
| 280 | return(data); |
| 281 | } |
| 282 | |
| 283 | /*=====================================================================*/ |
| 284 | /* Public Functions */ |
| 285 | /*=====================================================================*/ |
| 286 | |
| 287 | /*----------------------------------------------------------------------- |
| 288 | * Initialization |
| 289 | */ |
| 290 | void i2c_init (int speed, int slaveaddr) |
| 291 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 292 | #if defined(CONFIG_SYS_I2C_INIT_BOARD) |
Heiko Schocher | 4ca107e | 2008-10-15 09:38:38 +0200 | [diff] [blame] | 293 | /* call board specific i2c bus reset routine before accessing the */ |
| 294 | /* environment, which might be in a chip on that bus. For details */ |
| 295 | /* about this problem see doc/I2C_Edge_Conditions. */ |
| 296 | i2c_init_board(); |
| 297 | #else |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 298 | /* |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 299 | * WARNING: Do NOT save speed in a static variable: if the |
| 300 | * I2C routines are called before RAM is initialized (to read |
| 301 | * the DIMM SPD, for instance), RAM won't be usable and your |
| 302 | * system will crash. |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 303 | */ |
| 304 | send_reset (); |
Heiko Schocher | 4ca107e | 2008-10-15 09:38:38 +0200 | [diff] [blame] | 305 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 306 | } |
| 307 | |
| 308 | /*----------------------------------------------------------------------- |
| 309 | * Probe to see if a chip is present. Also good for checking for the |
| 310 | * completion of EEPROM writes since the chip stops responding until |
| 311 | * the write completes (typically 10mSec). |
| 312 | */ |
| 313 | int i2c_probe(uchar addr) |
| 314 | { |
| 315 | int rc; |
| 316 | |
Wolfgang Denk | 82d716f | 2006-03-12 01:30:45 +0100 | [diff] [blame] | 317 | /* |
Wolfgang Denk | 8e7b703 | 2006-03-12 02:55:22 +0100 | [diff] [blame] | 318 | * perform 1 byte write transaction with just address byte |
Wolfgang Denk | 82d716f | 2006-03-12 01:30:45 +0100 | [diff] [blame] | 319 | * (fake write) |
| 320 | */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 321 | send_start(); |
wdenk | 6aff311 | 2002-12-17 01:51:00 +0000 | [diff] [blame] | 322 | rc = write_byte ((addr << 1) | 0); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 323 | send_stop(); |
| 324 | |
| 325 | return (rc ? 1 : 0); |
| 326 | } |
| 327 | |
| 328 | /*----------------------------------------------------------------------- |
| 329 | * Read bytes |
| 330 | */ |
| 331 | int i2c_read(uchar chip, uint addr, int alen, uchar *buffer, int len) |
| 332 | { |
| 333 | int shift; |
| 334 | PRINTD("i2c_read: chip %02X addr %02X alen %d buffer %p len %d\n", |
| 335 | chip, addr, alen, buffer, len); |
| 336 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 337 | #ifdef CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 338 | /* |
| 339 | * EEPROM chips that implement "address overflow" are ones |
| 340 | * like Catalyst 24WC04/08/16 which has 9/10/11 bits of |
| 341 | * address and the extra bits end up in the "chip address" |
| 342 | * bit slots. This makes a 24WC08 (1Kbyte) chip look like |
| 343 | * four 256 byte chips. |
| 344 | * |
| 345 | * Note that we consider the length of the address field to |
| 346 | * still be one byte because the extra address bits are |
| 347 | * hidden in the chip address. |
| 348 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 349 | chip |= ((addr >> (alen * 8)) & CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 350 | |
| 351 | PRINTD("i2c_read: fix addr_overflow: chip %02X addr %02X\n", |
| 352 | chip, addr); |
| 353 | #endif |
| 354 | |
| 355 | /* |
| 356 | * Do the addressing portion of a write cycle to set the |
| 357 | * chip's address pointer. If the address length is zero, |
| 358 | * don't do the normal write cycle to set the address pointer, |
| 359 | * there is no address pointer in this chip. |
| 360 | */ |
| 361 | send_start(); |
| 362 | if(alen > 0) { |
| 363 | if(write_byte(chip << 1)) { /* write cycle */ |
| 364 | send_stop(); |
| 365 | PRINTD("i2c_read, no chip responded %02X\n", chip); |
| 366 | return(1); |
| 367 | } |
| 368 | shift = (alen-1) * 8; |
| 369 | while(alen-- > 0) { |
| 370 | if(write_byte(addr >> shift)) { |
| 371 | PRINTD("i2c_read, address not <ACK>ed\n"); |
| 372 | return(1); |
| 373 | } |
| 374 | shift -= 8; |
| 375 | } |
Andrew Dyer | 2ac6985 | 2008-12-29 17:36:01 -0600 | [diff] [blame] | 376 | |
| 377 | /* Some I2C chips need a stop/start sequence here, |
| 378 | * other chips don't work with a full stop and need |
| 379 | * only a start. Default behaviour is to send the |
| 380 | * stop/start sequence. |
| 381 | */ |
| 382 | #ifdef CONFIG_SOFT_I2C_READ_REPEATED_START |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 383 | send_start(); |
Andrew Dyer | 2ac6985 | 2008-12-29 17:36:01 -0600 | [diff] [blame] | 384 | #else |
| 385 | send_stop(); |
| 386 | send_start(); |
| 387 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 388 | } |
| 389 | /* |
| 390 | * Send the chip address again, this time for a read cycle. |
| 391 | * Then read the data. On the last byte, we do a NACK instead |
| 392 | * of an ACK(len == 0) to terminate the read. |
| 393 | */ |
| 394 | write_byte((chip << 1) | 1); /* read cycle */ |
| 395 | while(len-- > 0) { |
| 396 | *buffer++ = read_byte(len == 0); |
| 397 | } |
| 398 | send_stop(); |
| 399 | return(0); |
| 400 | } |
| 401 | |
| 402 | /*----------------------------------------------------------------------- |
| 403 | * Write bytes |
| 404 | */ |
| 405 | int i2c_write(uchar chip, uint addr, int alen, uchar *buffer, int len) |
| 406 | { |
| 407 | int shift, failures = 0; |
| 408 | |
| 409 | PRINTD("i2c_write: chip %02X addr %02X alen %d buffer %p len %d\n", |
| 410 | chip, addr, alen, buffer, len); |
| 411 | |
| 412 | send_start(); |
| 413 | if(write_byte(chip << 1)) { /* write cycle */ |
| 414 | send_stop(); |
| 415 | PRINTD("i2c_write, no chip responded %02X\n", chip); |
| 416 | return(1); |
| 417 | } |
| 418 | shift = (alen-1) * 8; |
| 419 | while(alen-- > 0) { |
| 420 | if(write_byte(addr >> shift)) { |
| 421 | PRINTD("i2c_write, address not <ACK>ed\n"); |
| 422 | return(1); |
| 423 | } |
| 424 | shift -= 8; |
| 425 | } |
| 426 | |
| 427 | while(len-- > 0) { |
| 428 | if(write_byte(*buffer++)) { |
| 429 | failures++; |
| 430 | } |
| 431 | } |
| 432 | send_stop(); |
| 433 | return(failures); |
| 434 | } |