1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2002 by Linus Nielsen Feltzing
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 ****************************************************************************/
26 /* cute little functions, atomic read-modify-write */
29 #define SDA_LO and_b(~0x80, &PBDRL)
30 #define SDA_HI or_b(0x80, &PBDRL)
31 #define SDA_INPUT and_b(~0x80, &PBIORL)
32 #define SDA_OUTPUT or_b(0x80, &PBIORL)
33 #define SDA (PBDRL & 0x80)
35 #if CONFIG_I2C == I2C_ONDIO
36 /* Ondio pinout, SCL moved to PB6 */
37 #define SCL_INPUT and_b(~0x40, &PBIORL)
38 #define SCL_OUTPUT or_b(0x40, &PBIORL)
39 #define SCL_LO and_b(~0x40, &PBDRL)
40 #define SCL_HI or_b(0x40, &PBDRL)
41 #define SCL (PBDRL & 0x40)
43 /* "classic" pinout, SCL is PB13 */
44 #define SCL_INPUT and_b(~0x20, &PBIORH)
45 #define SCL_OUTPUT or_b(0x20, &PBIORH)
46 #define SCL_LO and_b(~0x20, &PBDRH)
47 #define SCL_HI or_b(0x20, &PBDRH)
48 #define SCL (PBDRH & 0x20)
51 /* arbitrary delay loop */
52 #define DELAY do { int _x; for(_x=0;_x<20;_x++);} while (0)
54 static struct mutex i2c_mtx
;
63 mutex_unlock(&i2c_mtx
);
88 #if CONFIG_I2C == I2C_ONDIO
89 /* make PB6 & PB7 general I/O */
92 /* make PB7 & PB13 general I/O */
93 PBCR1
&= ~0x0c00; /* PB13 */
94 PBCR2
&= ~0xc000; /* PB7 */
105 void i2c_ack(int bit
)
107 /* Here's the deal. The MAS is slow, and sometimes needs to wait
108 before it can receive the acknowledge. Therefore it forces the clock
109 low until it is ready. We need to poll the clock line until it goes
110 high before we release the ack. */
112 SCL_LO
; /* Set the clock low */
122 SCL_INPUT
; /* Set the clock to input */
123 while(!SCL
) /* and wait for the MAS to release it */
135 /* Here's the deal. The MAS is slow, and sometimes needs to wait
136 before it can send the acknowledge. Therefore it forces the clock
137 low until it is ready. We need to poll the clock line until it goes
138 high before we read the ack. */
140 #ifdef HAVE_I2C_LOW_FIRST
141 SDA_LO
; /* First, discharge the data line */
143 SDA_INPUT
; /* And set to input */
144 SCL_INPUT
; /* Set the clock to input */
145 while(!SCL
) /* and wait for the MAS to release it */
159 void i2c_outb(unsigned char byte
)
163 /* clock out each bit, MSB first */
164 for ( i
=0x80; i
; i
>>=1 ) {
180 unsigned char i2c_inb(int ack
)
183 unsigned char byte
= 0;
185 /* clock in each bit, MSB first */
186 for ( i
=0x80; i
; i
>>=1 ) {
187 #ifdef HAVE_I2C_LOW_FIRST
188 /* Tricky business. Here we discharge the data line by driving it low
189 and then set it to input to see if it stays low or goes high */
190 SDA_LO
; /* First, discharge the data line */
192 SDA_INPUT
; /* And set to input */
205 int i2c_write(int address
, const unsigned char* buf
, int count
)
210 i2c_outb(address
& 0xfe);
213 for (i
=0; i
<count
; i
++)
225 debugf("i2c_write() - no ack\n");
232 int i2c_read(int address
, unsigned char* buf
, int count
)
237 i2c_outb(address
| 1);
239 for (i
=0; i
<count
; i
++) {