blob: 3febd1ff633f8558d19b483f5bb361d47558e8a8 [file] [log] [blame]
wdenkf8062712005-01-09 23:16:25 +00001/*
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>
wdenkcb99da52005-01-12 00:15:14 +000024
wdenkf8062712005-01-09 23:16:25 +000025#include <asm/arch/i2c.h>
26#include <asm/io.h>
27
Steve Sakoman10acc712010-06-12 06:42:57 -070028#include "omap24xx_i2c.h"
29
Steve Sakomane2bdc132010-07-19 20:31:55 -070030#define I2C_TIMEOUT 10
31
wdenkf8062712005-01-09 23:16:25 +000032static void wait_for_bb (void);
33static u16 wait_for_pin (void);
Wolfgang Denke1e46792005-09-25 18:41:04 +020034static void flush_fifo(void);
wdenkf8062712005-01-09 23:16:25 +000035
Dirk Behme7a8f6572009-11-02 20:36:26 +010036static struct i2c *i2c_base = (struct i2c *)I2C_DEFAULT_BASE;
37
38static unsigned int bus_initialized[I2C_BUS_MAX];
39static unsigned int current_bus;
40
wdenkf8062712005-01-09 23:16:25 +000041void i2c_init (int speed, int slaveadd)
42{
Heiko Schocher2afe3142010-09-17 13:10:37 +020043 DECLARE_GLOBAL_DATA_PTR;
Tom Rix03b2a742009-06-28 12:52:27 -050044 int psc, fsscll, fssclh;
45 int hsscll = 0, hssclh = 0;
46 u32 scll, sclh;
Steve Sakomane2bdc132010-07-19 20:31:55 -070047 int timeout = I2C_TIMEOUT;
Tom Rix03b2a742009-06-28 12:52:27 -050048
49 /* Only handle standard, fast and high speeds */
50 if ((speed != OMAP_I2C_STANDARD) &&
51 (speed != OMAP_I2C_FAST_MODE) &&
52 (speed != OMAP_I2C_HIGH_SPEED)) {
53 printf("Error : I2C unsupported speed %d\n", speed);
54 return;
55 }
56
57 psc = I2C_IP_CLK / I2C_INTERNAL_SAMPLING_CLK;
58 psc -= 1;
59 if (psc < I2C_PSC_MIN) {
60 printf("Error : I2C unsupported prescalar %d\n", psc);
61 return;
62 }
63
64 if (speed == OMAP_I2C_HIGH_SPEED) {
65 /* High speed */
66
67 /* For first phase of HS mode */
68 fsscll = fssclh = I2C_INTERNAL_SAMPLING_CLK /
69 (2 * OMAP_I2C_FAST_MODE);
70
71 fsscll -= I2C_HIGHSPEED_PHASE_ONE_SCLL_TRIM;
72 fssclh -= I2C_HIGHSPEED_PHASE_ONE_SCLH_TRIM;
73 if (((fsscll < 0) || (fssclh < 0)) ||
74 ((fsscll > 255) || (fssclh > 255))) {
75 printf("Error : I2C initializing first phase clock\n");
76 return;
77 }
78
79 /* For second phase of HS mode */
80 hsscll = hssclh = I2C_INTERNAL_SAMPLING_CLK / (2 * speed);
81
82 hsscll -= I2C_HIGHSPEED_PHASE_TWO_SCLL_TRIM;
83 hssclh -= I2C_HIGHSPEED_PHASE_TWO_SCLH_TRIM;
84 if (((fsscll < 0) || (fssclh < 0)) ||
85 ((fsscll > 255) || (fssclh > 255))) {
86 printf("Error : I2C initializing second phase clock\n");
87 return;
88 }
89
90 scll = (unsigned int)hsscll << 8 | (unsigned int)fsscll;
91 sclh = (unsigned int)hssclh << 8 | (unsigned int)fssclh;
92
93 } else {
94 /* Standard and fast speed */
95 fsscll = fssclh = I2C_INTERNAL_SAMPLING_CLK / (2 * speed);
96
97 fsscll -= I2C_FASTSPEED_SCLL_TRIM;
98 fssclh -= I2C_FASTSPEED_SCLH_TRIM;
99 if (((fsscll < 0) || (fssclh < 0)) ||
100 ((fsscll > 255) || (fssclh > 255))) {
101 printf("Error : I2C initializing clock\n");
102 return;
103 }
104
105 scll = (unsigned int)fsscll;
106 sclh = (unsigned int)fssclh;
107 }
wdenkf8062712005-01-09 23:16:25 +0000108
Dirk Behme7a8f6572009-11-02 20:36:26 +0100109 if (readw (&i2c_base->con) & I2C_CON_EN) {
110 writew (0, &i2c_base->con);
wdenkf8062712005-01-09 23:16:25 +0000111 udelay (50000);
112 }
113
Steve Sakomane2bdc132010-07-19 20:31:55 -0700114 writew(0x2, &i2c_base->sysc); /* for ES2 after soft reset */
115 udelay(1000);
116
117 writew(I2C_CON_EN, &i2c_base->con);
118 while (!(readw(&i2c_base->syss) & I2C_SYSS_RDONE) && timeout--) {
119 if (timeout <= 0) {
120 printf("ERROR: Timeout in soft-reset\n");
121 return;
122 }
123 udelay(1000);
124 }
125
126 writew(0, &i2c_base->con);
Dirk Behme7a8f6572009-11-02 20:36:26 +0100127 writew(psc, &i2c_base->psc);
128 writew(scll, &i2c_base->scll);
129 writew(sclh, &i2c_base->sclh);
Tom Rix03b2a742009-06-28 12:52:27 -0500130
wdenkf8062712005-01-09 23:16:25 +0000131 /* own address */
Dirk Behme7a8f6572009-11-02 20:36:26 +0100132 writew (slaveadd, &i2c_base->oa);
133 writew (I2C_CON_EN, &i2c_base->con);
Wolfgang Denke1e46792005-09-25 18:41:04 +0200134
wdenkf8062712005-01-09 23:16:25 +0000135 /* have to enable intrrupts or OMAP i2c module doesn't work */
Dirk Behme5a6dc872008-11-10 20:15:25 +0100136 writew (I2C_IE_XRDY_IE | I2C_IE_RRDY_IE | I2C_IE_ARDY_IE |
Dirk Behme7a8f6572009-11-02 20:36:26 +0100137 I2C_IE_NACK_IE | I2C_IE_AL_IE, &i2c_base->ie);
wdenkf8062712005-01-09 23:16:25 +0000138 udelay (1000);
Wolfgang Denke1e46792005-09-25 18:41:04 +0200139 flush_fifo();
Dirk Behme7a8f6572009-11-02 20:36:26 +0100140 writew (0xFFFF, &i2c_base->stat);
141 writew (0, &i2c_base->cnt);
142
Heiko Schocher2afe3142010-09-17 13:10:37 +0200143 if (gd->flags & GD_FLG_RELOC)
144 bus_initialized[current_bus] = 1;
wdenkf8062712005-01-09 23:16:25 +0000145}
146
147static int i2c_read_byte (u8 devaddr, u8 regoffset, u8 * value)
148{
149 int i2c_error = 0;
150 u16 status;
151
152 /* wait until bus not busy */
153 wait_for_bb ();
154
155 /* one byte only */
Dirk Behme7a8f6572009-11-02 20:36:26 +0100156 writew (1, &i2c_base->cnt);
wdenkf8062712005-01-09 23:16:25 +0000157 /* set slave address */
Dirk Behme7a8f6572009-11-02 20:36:26 +0100158 writew (devaddr, &i2c_base->sa);
wdenkf8062712005-01-09 23:16:25 +0000159 /* no stop bit needed here */
Dirk Behme7a8f6572009-11-02 20:36:26 +0100160 writew (I2C_CON_EN | I2C_CON_MST | I2C_CON_STT | I2C_CON_TRX, &i2c_base->con);
wdenkf8062712005-01-09 23:16:25 +0000161
162 status = wait_for_pin ();
163
164 if (status & I2C_STAT_XRDY) {
165 /* Important: have to use byte access */
Dirk Behme7a8f6572009-11-02 20:36:26 +0100166 writeb (regoffset, &i2c_base->data);
wdenkf8062712005-01-09 23:16:25 +0000167 udelay (20000);
Dirk Behme7a8f6572009-11-02 20:36:26 +0100168 if (readw (&i2c_base->stat) & I2C_STAT_NACK) {
wdenkf8062712005-01-09 23:16:25 +0000169 i2c_error = 1;
170 }
171 } else {
172 i2c_error = 1;
173 }
174
175 if (!i2c_error) {
Steve Sakomane2bdc132010-07-19 20:31:55 -0700176 writew (I2C_CON_EN, &i2c_base->con);
177 while (readw(&i2c_base->stat) &
178 (I2C_STAT_XRDY | I2C_STAT_ARDY)) {
wdenkf8062712005-01-09 23:16:25 +0000179 udelay (10000);
180 /* Have to clear pending interrupt to clear I2C_STAT */
Dirk Behme7a8f6572009-11-02 20:36:26 +0100181 writew (0xFFFF, &i2c_base->stat);
wdenkf8062712005-01-09 23:16:25 +0000182 }
183
wdenkf8062712005-01-09 23:16:25 +0000184 /* set slave address */
Dirk Behme7a8f6572009-11-02 20:36:26 +0100185 writew (devaddr, &i2c_base->sa);
wdenkf8062712005-01-09 23:16:25 +0000186 /* read one byte from slave */
Dirk Behme7a8f6572009-11-02 20:36:26 +0100187 writew (1, &i2c_base->cnt);
wdenkf8062712005-01-09 23:16:25 +0000188 /* need stop bit here */
Dirk Behme5a6dc872008-11-10 20:15:25 +0100189 writew (I2C_CON_EN | I2C_CON_MST | I2C_CON_STT | I2C_CON_STP,
Dirk Behme7a8f6572009-11-02 20:36:26 +0100190 &i2c_base->con);
wdenkf8062712005-01-09 23:16:25 +0000191
192 status = wait_for_pin ();
193 if (status & I2C_STAT_RRDY) {
Steve Sakoman10acc712010-06-12 06:42:57 -0700194#if defined(CONFIG_OMAP243X) || defined(CONFIG_OMAP34XX) || \
195 defined(CONFIG_OMAP44XX)
Dirk Behme7a8f6572009-11-02 20:36:26 +0100196 *value = readb (&i2c_base->data);
Dirk Behme5648e512008-12-14 09:47:18 +0100197#else
Dirk Behme7a8f6572009-11-02 20:36:26 +0100198 *value = readw (&i2c_base->data);
Dirk Behme5648e512008-12-14 09:47:18 +0100199#endif
wdenkf8062712005-01-09 23:16:25 +0000200 udelay (20000);
201 } else {
202 i2c_error = 1;
203 }
204
205 if (!i2c_error) {
Dirk Behme7a8f6572009-11-02 20:36:26 +0100206 writew (I2C_CON_EN, &i2c_base->con);
Steve Sakomane2bdc132010-07-19 20:31:55 -0700207 while (readw (&i2c_base->stat) &
208 (I2C_STAT_RRDY | I2C_STAT_ARDY)) {
wdenkf8062712005-01-09 23:16:25 +0000209 udelay (10000);
Dirk Behme7a8f6572009-11-02 20:36:26 +0100210 writew (0xFFFF, &i2c_base->stat);
wdenkf8062712005-01-09 23:16:25 +0000211 }
212 }
213 }
214 flush_fifo();
Dirk Behme7a8f6572009-11-02 20:36:26 +0100215 writew (0xFFFF, &i2c_base->stat);
216 writew (0, &i2c_base->cnt);
wdenkf8062712005-01-09 23:16:25 +0000217 return i2c_error;
218}
219
220static int i2c_write_byte (u8 devaddr, u8 regoffset, u8 value)
221{
222 int i2c_error = 0;
223 u16 status, stat;
224
225 /* wait until bus not busy */
226 wait_for_bb ();
227
228 /* two bytes */
Dirk Behme7a8f6572009-11-02 20:36:26 +0100229 writew (2, &i2c_base->cnt);
wdenkf8062712005-01-09 23:16:25 +0000230 /* set slave address */
Dirk Behme7a8f6572009-11-02 20:36:26 +0100231 writew (devaddr, &i2c_base->sa);
wdenkf8062712005-01-09 23:16:25 +0000232 /* stop bit needed here */
Dirk Behme5a6dc872008-11-10 20:15:25 +0100233 writew (I2C_CON_EN | I2C_CON_MST | I2C_CON_STT | I2C_CON_TRX |
Dirk Behme7a8f6572009-11-02 20:36:26 +0100234 I2C_CON_STP, &i2c_base->con);
wdenkf8062712005-01-09 23:16:25 +0000235
236 /* wait until state change */
237 status = wait_for_pin ();
238
239 if (status & I2C_STAT_XRDY) {
Steve Sakoman10acc712010-06-12 06:42:57 -0700240#if defined(CONFIG_OMAP243X) || defined(CONFIG_OMAP34XX) || \
241 defined(CONFIG_OMAP44XX)
Dirk Behme5648e512008-12-14 09:47:18 +0100242 /* send out 1 byte */
Dirk Behme7a8f6572009-11-02 20:36:26 +0100243 writeb (regoffset, &i2c_base->data);
244 writew (I2C_STAT_XRDY, &i2c_base->stat);
Dirk Behme5648e512008-12-14 09:47:18 +0100245
246 status = wait_for_pin ();
247 if ((status & I2C_STAT_XRDY)) {
248 /* send out next 1 byte */
Dirk Behme7a8f6572009-11-02 20:36:26 +0100249 writeb (value, &i2c_base->data);
250 writew (I2C_STAT_XRDY, &i2c_base->stat);
Dirk Behme5648e512008-12-14 09:47:18 +0100251 } else {
252 i2c_error = 1;
253 }
254#else
wdenkf8062712005-01-09 23:16:25 +0000255 /* send out two bytes */
Dirk Behme7a8f6572009-11-02 20:36:26 +0100256 writew ((value << 8) + regoffset, &i2c_base->data);
Dirk Behme5648e512008-12-14 09:47:18 +0100257#endif
wdenkf8062712005-01-09 23:16:25 +0000258 /* must have enough delay to allow BB bit to go low */
259 udelay (50000);
Dirk Behme7a8f6572009-11-02 20:36:26 +0100260 if (readw (&i2c_base->stat) & I2C_STAT_NACK) {
wdenkf8062712005-01-09 23:16:25 +0000261 i2c_error = 1;
262 }
263 } else {
264 i2c_error = 1;
265 }
266
267 if (!i2c_error) {
Wolfgang Denke1e46792005-09-25 18:41:04 +0200268 int eout = 200;
269
Dirk Behme7a8f6572009-11-02 20:36:26 +0100270 writew (I2C_CON_EN, &i2c_base->con);
271 while ((stat = readw (&i2c_base->stat)) || (readw (&i2c_base->con) & I2C_CON_MST)) {
wdenkf8062712005-01-09 23:16:25 +0000272 udelay (1000);
273 /* have to read to clear intrrupt */
Dirk Behme7a8f6572009-11-02 20:36:26 +0100274 writew (0xFFFF, &i2c_base->stat);
Wolfgang Denke1e46792005-09-25 18:41:04 +0200275 if(--eout == 0) /* better leave with error than hang */
276 break;
wdenkf8062712005-01-09 23:16:25 +0000277 }
278 }
279 flush_fifo();
Dirk Behme7a8f6572009-11-02 20:36:26 +0100280 writew (0xFFFF, &i2c_base->stat);
281 writew (0, &i2c_base->cnt);
wdenkf8062712005-01-09 23:16:25 +0000282 return i2c_error;
283}
284
Wolfgang Denke1e46792005-09-25 18:41:04 +0200285static void flush_fifo(void)
wdenkf8062712005-01-09 23:16:25 +0000286{ u16 stat;
wdenk2e405bf2005-01-10 00:01:04 +0000287
288 /* note: if you try and read data when its not there or ready
289 * you get a bus error
290 */
wdenkf8062712005-01-09 23:16:25 +0000291 while(1){
Dirk Behme7a8f6572009-11-02 20:36:26 +0100292 stat = readw(&i2c_base->stat);
wdenkf8062712005-01-09 23:16:25 +0000293 if(stat == I2C_STAT_RRDY){
Steve Sakoman10acc712010-06-12 06:42:57 -0700294#if defined(CONFIG_OMAP243X) || defined(CONFIG_OMAP34XX) || \
295 defined(CONFIG_OMAP44XX)
Dirk Behme7a8f6572009-11-02 20:36:26 +0100296 readb(&i2c_base->data);
Dirk Behme5648e512008-12-14 09:47:18 +0100297#else
Dirk Behme7a8f6572009-11-02 20:36:26 +0100298 readw(&i2c_base->data);
Dirk Behme5648e512008-12-14 09:47:18 +0100299#endif
Dirk Behme7a8f6572009-11-02 20:36:26 +0100300 writew(I2C_STAT_RRDY,&i2c_base->stat);
wdenkf8062712005-01-09 23:16:25 +0000301 udelay(1000);
302 }else
303 break;
304 }
305}
306
307int i2c_probe (uchar chip)
308{
309 int res = 1; /* default = fail */
310
Dirk Behme7a8f6572009-11-02 20:36:26 +0100311 if (chip == readw (&i2c_base->oa)) {
wdenkf8062712005-01-09 23:16:25 +0000312 return res;
313 }
314
315 /* wait until bus not busy */
316 wait_for_bb ();
317
318 /* try to read one byte */
Dirk Behme7a8f6572009-11-02 20:36:26 +0100319 writew (1, &i2c_base->cnt);
wdenkf8062712005-01-09 23:16:25 +0000320 /* set slave address */
Dirk Behme7a8f6572009-11-02 20:36:26 +0100321 writew (chip, &i2c_base->sa);
wdenkf8062712005-01-09 23:16:25 +0000322 /* stop bit needed here */
Dirk Behme7a8f6572009-11-02 20:36:26 +0100323 writew (I2C_CON_EN | I2C_CON_MST | I2C_CON_STT | I2C_CON_STP, &i2c_base->con);
wdenkf8062712005-01-09 23:16:25 +0000324 /* enough delay for the NACK bit set */
325 udelay (50000);
326
Dirk Behme7a8f6572009-11-02 20:36:26 +0100327 if (!(readw (&i2c_base->stat) & I2C_STAT_NACK)) {
wdenk2e405bf2005-01-10 00:01:04 +0000328 res = 0; /* success case */
wdenkf8062712005-01-09 23:16:25 +0000329 flush_fifo();
Dirk Behme7a8f6572009-11-02 20:36:26 +0100330 writew(0xFFFF, &i2c_base->stat);
wdenkf8062712005-01-09 23:16:25 +0000331 } else {
Dirk Behme7a8f6572009-11-02 20:36:26 +0100332 writew(0xFFFF, &i2c_base->stat); /* failue, clear sources*/
333 writew (readw (&i2c_base->con) | I2C_CON_STP, &i2c_base->con); /* finish up xfer */
wdenkf8062712005-01-09 23:16:25 +0000334 udelay(20000);
335 wait_for_bb ();
336 }
337 flush_fifo();
Dirk Behme7a8f6572009-11-02 20:36:26 +0100338 writew (0, &i2c_base->cnt); /* don't allow any more data in...we don't want it.*/
339 writew(0xFFFF, &i2c_base->stat);
wdenkf8062712005-01-09 23:16:25 +0000340 return res;
341}
342
343int i2c_read (uchar chip, uint addr, int alen, uchar * buffer, int len)
344{
345 int i;
346
347 if (alen > 1) {
348 printf ("I2C read: addr len %d not supported\n", alen);
349 return 1;
350 }
351
352 if (addr + len > 256) {
353 printf ("I2C read: address out of range\n");
354 return 1;
355 }
356
357 for (i = 0; i < len; i++) {
358 if (i2c_read_byte (chip, addr + i, &buffer[i])) {
359 printf ("I2C read: I/O error\n");
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200360 i2c_init (CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
wdenkf8062712005-01-09 23:16:25 +0000361 return 1;
362 }
363 }
364
365 return 0;
366}
367
368int i2c_write (uchar chip, uint addr, int alen, uchar * buffer, int len)
369{
370 int i;
371
372 if (alen > 1) {
373 printf ("I2C read: addr len %d not supported\n", alen);
374 return 1;
375 }
376
377 if (addr + len > 256) {
378 printf ("I2C read: address out of range\n");
379 return 1;
380 }
381
382 for (i = 0; i < len; i++) {
383 if (i2c_write_byte (chip, addr + i, buffer[i])) {
384 printf ("I2C read: I/O error\n");
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200385 i2c_init (CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
wdenkf8062712005-01-09 23:16:25 +0000386 return 1;
387 }
388 }
389
390 return 0;
391}
392
393static void wait_for_bb (void)
394{
395 int timeout = 10;
396 u16 stat;
397
Dirk Behme7a8f6572009-11-02 20:36:26 +0100398 writew(0xFFFF, &i2c_base->stat); /* clear current interruts...*/
399 while ((stat = readw (&i2c_base->stat) & I2C_STAT_BB) && timeout--) {
400 writew (stat, &i2c_base->stat);
wdenkf8062712005-01-09 23:16:25 +0000401 udelay (50000);
402 }
403
404 if (timeout <= 0) {
405 printf ("timed out in wait_for_bb: I2C_STAT=%x\n",
Dirk Behme7a8f6572009-11-02 20:36:26 +0100406 readw (&i2c_base->stat));
wdenkf8062712005-01-09 23:16:25 +0000407 }
Dirk Behme7a8f6572009-11-02 20:36:26 +0100408 writew(0xFFFF, &i2c_base->stat); /* clear delayed stuff*/
wdenkf8062712005-01-09 23:16:25 +0000409}
410
411static u16 wait_for_pin (void)
412{
413 u16 status;
414 int timeout = 10;
415
416 do {
417 udelay (1000);
Dirk Behme7a8f6572009-11-02 20:36:26 +0100418 status = readw (&i2c_base->stat);
wdenkf8062712005-01-09 23:16:25 +0000419 } while ( !(status &
420 (I2C_STAT_ROVR | I2C_STAT_XUDF | I2C_STAT_XRDY |
421 I2C_STAT_RRDY | I2C_STAT_ARDY | I2C_STAT_NACK |
422 I2C_STAT_AL)) && timeout--);
423
424 if (timeout <= 0) {
425 printf ("timed out in wait_for_pin: I2C_STAT=%x\n",
Dirk Behme7a8f6572009-11-02 20:36:26 +0100426 readw (&i2c_base->stat));
427 writew(0xFFFF, &i2c_base->stat);
wdenkf8062712005-01-09 23:16:25 +0000428}
429 return status;
430}
Dirk Behme7a8f6572009-11-02 20:36:26 +0100431
432int i2c_set_bus_num(unsigned int bus)
433{
434 if ((bus < 0) || (bus >= I2C_BUS_MAX)) {
435 printf("Bad bus: %d\n", bus);
436 return -1;
437 }
438
439#if I2C_BUS_MAX==3
440 if (bus == 2)
441 i2c_base = (struct i2c *)I2C_BASE3;
442 else
443#endif
444 if (bus == 1)
445 i2c_base = (struct i2c *)I2C_BASE2;
446 else
447 i2c_base = (struct i2c *)I2C_BASE1;
448
449 current_bus = bus;
450
451 if(!bus_initialized[current_bus])
452 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
453
454 return 0;
455}
Steve Sakoman10acc712010-06-12 06:42:57 -0700456
457int i2c_get_bus_num(void)
458{
459 return (int) current_bus;
460}