blob: c0779079ab7eaa45cef16674064f84c8ab08870b [file] [log] [blame]
roy zangb825f152006-11-02 19:12:31 +08001/*
2 * (C) Copyright 2004 Tundra Semiconductor Corp.
3 * Author: Alex Bounine
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
roy zangb825f152006-11-02 19:12:31 +08006 */
7
8#include <config.h>
roy zangee311212006-12-01 11:47:36 +08009#include <common.h>
roy zangb825f152006-11-02 19:12:31 +080010
roy zangb825f152006-11-02 19:12:31 +080011#include <tsi108.h>
12
Jon Loeligercb51c0b2007-07-09 17:39:42 -050013#if defined(CONFIG_CMD_I2C)
roy zangb825f152006-11-02 19:12:31 +080014
roy zangee311212006-12-01 11:47:36 +080015#define I2C_DELAY 100000
roy zangb825f152006-11-02 19:12:31 +080016#undef DEBUG_I2C
17
18#ifdef DEBUG_I2C
roy zangee311212006-12-01 11:47:36 +080019#define DPRINT(x) printf (x)
roy zangb825f152006-11-02 19:12:31 +080020#else
21#define DPRINT(x)
22#endif
23
24/* All functions assume that Tsi108 I2C block is the only master on the bus */
25/* I2C read helper function */
26
Peter Tyserf0722ee2009-04-24 15:34:09 -050027void i2c_init(int speed, int slaveaddr)
28{
29 /*
30 * The TSI108 has a fixed I2C clock rate and doesn't support slave
31 * operation. This function only exists as a stub to fit into the
32 * U-Boot I2C API.
33 */
34}
35
roy zangee311212006-12-01 11:47:36 +080036static int i2c_read_byte (
roy zangb825f152006-11-02 19:12:31 +080037 uint i2c_chan, /* I2C channel number: 0 - main, 1 - SDC SPD */
38 uchar chip_addr,/* I2C device address on the bus */
39 uint byte_addr, /* Byte address within I2C device */
40 uchar * buffer /* pointer to data buffer */
41 )
42{
43 u32 temp;
44 u32 to_count = I2C_DELAY;
45 u32 op_status = TSI108_I2C_TIMEOUT_ERR;
46 u32 chan_offset = TSI108_I2C_OFFSET;
47
roy zangee311212006-12-01 11:47:36 +080048 DPRINT (("I2C read_byte() %d 0x%02x 0x%02x\n",
roy zangb825f152006-11-02 19:12:31 +080049 i2c_chan, chip_addr, byte_addr));
50
roy zangee311212006-12-01 11:47:36 +080051 if (0 != i2c_chan)
roy zangb825f152006-11-02 19:12:31 +080052 chan_offset = TSI108_I2C_SDRAM_OFFSET;
roy zangb825f152006-11-02 19:12:31 +080053
54 /* Check if I2C operation is in progress */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020055 temp = *(u32 *) (CONFIG_SYS_TSI108_CSR_BASE + chan_offset + I2C_CNTRL2);
roy zangb825f152006-11-02 19:12:31 +080056
57 if (0 == (temp & (I2C_CNTRL2_RD_STATUS | I2C_CNTRL2_WR_STATUS |
roy zangee311212006-12-01 11:47:36 +080058 I2C_CNTRL2_START))) {
roy zangb825f152006-11-02 19:12:31 +080059 /* Set device address and operation (read = 0) */
60 temp = (byte_addr << 16) | ((chip_addr & 0x07) << 8) |
61 ((chip_addr >> 3) & 0x0F);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020062 *(u32 *) (CONFIG_SYS_TSI108_CSR_BASE + chan_offset + I2C_CNTRL1) =
roy zangb825f152006-11-02 19:12:31 +080063 temp;
64
65 /* Issue the read command
roy zangee311212006-12-01 11:47:36 +080066 * (at this moment all other parameters are 0
roy zangb825f152006-11-02 19:12:31 +080067 * (size = 1 byte, lane = 0)
68 */
69
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020070 *(u32 *) (CONFIG_SYS_TSI108_CSR_BASE + chan_offset + I2C_CNTRL2) =
roy zangb825f152006-11-02 19:12:31 +080071 (I2C_CNTRL2_START);
72
73 /* Wait until operation completed */
74 do {
75 /* Read I2C operation status */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020076 temp = *(u32 *) (CONFIG_SYS_TSI108_CSR_BASE + chan_offset + I2C_CNTRL2);
roy zangb825f152006-11-02 19:12:31 +080077
Wolfgang Denk647d3c32007-03-04 01:36:05 +010078 if (0 == (temp & (I2C_CNTRL2_RD_STATUS | I2C_CNTRL2_START))) {
79 if (0 == (temp &
roy zangb825f152006-11-02 19:12:31 +080080 (I2C_CNTRL2_I2C_CFGERR |
81 I2C_CNTRL2_I2C_TO_ERR))
82 ) {
83 op_status = TSI108_I2C_SUCCESS;
84
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020085 temp = *(u32 *) (CONFIG_SYS_TSI108_CSR_BASE +
roy zangb825f152006-11-02 19:12:31 +080086 chan_offset +
87 I2C_RD_DATA);
88
89 *buffer = (u8) (temp & 0xFF);
90 } else {
91 /* report HW error */
92 op_status = TSI108_I2C_IF_ERROR;
93
roy zangee311212006-12-01 11:47:36 +080094 DPRINT (("I2C HW error reported: 0x%02x\n", temp));
roy zangb825f152006-11-02 19:12:31 +080095 }
96
97 break;
98 }
99 } while (to_count--);
100 } else {
101 op_status = TSI108_I2C_IF_BUSY;
102
roy zangee311212006-12-01 11:47:36 +0800103 DPRINT (("I2C Transaction start failed: 0x%02x\n", temp));
roy zangb825f152006-11-02 19:12:31 +0800104 }
105
roy zangee311212006-12-01 11:47:36 +0800106 DPRINT (("I2C read_byte() status: 0x%02x\n", op_status));
roy zangb825f152006-11-02 19:12:31 +0800107 return op_status;
108}
109
roy zangee311212006-12-01 11:47:36 +0800110/*
roy zangb825f152006-11-02 19:12:31 +0800111 * I2C Read interface as defined in "include/i2c.h" :
112 * chip_addr: I2C chip address, range 0..127
113 * (to read from SPD channel EEPROM use (0xD0 ... 0xD7)
114 * NOTE: The bit 7 in the chip_addr serves as a channel select.
Peter Tyser0f89c542009-04-18 22:34:03 -0500115 * This hack is for enabling "i2c sdram" command on Tsi108 boards
roy zangee311212006-12-01 11:47:36 +0800116 * without changes to common code. Used for I2C reads only.
roy zangb825f152006-11-02 19:12:31 +0800117 * byte_addr: Memory or register address within the chip
118 * alen: Number of bytes to use for addr (typically 1, 2 for larger
119 * memories, 0 for register type devices with only one
120 * register)
121 * buffer: Pointer to destination buffer for data to be read
122 * len: How many bytes to read
123 *
124 * Returns: 0 on success, not 0 on failure
125 */
126
roy zangee311212006-12-01 11:47:36 +0800127int i2c_read (uchar chip_addr, uint byte_addr, int alen,
128 uchar * buffer, int len)
roy zangb825f152006-11-02 19:12:31 +0800129{
130 u32 op_status = TSI108_I2C_PARAM_ERR;
131 u32 i2c_if = 0;
132
133 /* Hack to support second (SPD) I2C controller (SPD EEPROM read only).*/
134 if (0xD0 == (chip_addr & ~0x07)) {
135 i2c_if = 1;
136 chip_addr &= 0x7F;
137 }
138 /* Check for valid I2C address */
139 if (chip_addr <= 0x7F && (byte_addr + len) <= (0x01 << (alen * 8))) {
140 while (len--) {
Wolfgang Denk647d3c32007-03-04 01:36:05 +0100141 op_status = i2c_read_byte(i2c_if, chip_addr, byte_addr++, buffer++);
roy zangb825f152006-11-02 19:12:31 +0800142
143 if (TSI108_I2C_SUCCESS != op_status) {
roy zangee311212006-12-01 11:47:36 +0800144 DPRINT (("I2C read_byte() failed: 0x%02x (%d left)\n", op_status, len));
roy zangb825f152006-11-02 19:12:31 +0800145
146 break;
147 }
148 }
149 }
150
roy zangee311212006-12-01 11:47:36 +0800151 DPRINT (("I2C read() status: 0x%02x\n", op_status));
roy zangb825f152006-11-02 19:12:31 +0800152 return op_status;
153}
154
155/* I2C write helper function */
156
roy zangee311212006-12-01 11:47:36 +0800157static int i2c_write_byte (uchar chip_addr,/* I2C device address on the bus */
roy zangb825f152006-11-02 19:12:31 +0800158 uint byte_addr, /* Byte address within I2C device */
159 uchar * buffer /* pointer to data buffer */
160 )
161{
162 u32 temp;
163 u32 to_count = I2C_DELAY;
164 u32 op_status = TSI108_I2C_TIMEOUT_ERR;
165
166 /* Check if I2C operation is in progress */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200167 temp = *(u32 *) (CONFIG_SYS_TSI108_CSR_BASE + TSI108_I2C_OFFSET + I2C_CNTRL2);
roy zangb825f152006-11-02 19:12:31 +0800168
Wolfgang Denk647d3c32007-03-04 01:36:05 +0100169 if (0 == (temp & (I2C_CNTRL2_RD_STATUS | I2C_CNTRL2_WR_STATUS | I2C_CNTRL2_START))) {
roy zangb825f152006-11-02 19:12:31 +0800170 /* Place data into the I2C Tx Register */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200171 *(u32 *) (CONFIG_SYS_TSI108_CSR_BASE + TSI108_I2C_OFFSET +
roy zangb825f152006-11-02 19:12:31 +0800172 I2C_TX_DATA) = (u32) * buffer;
173
174 /* Set device address and operation */
175 temp =
176 I2C_CNTRL1_I2CWRITE | (byte_addr << 16) |
177 ((chip_addr & 0x07) << 8) | ((chip_addr >> 3) & 0x0F);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200178 *(u32 *) (CONFIG_SYS_TSI108_CSR_BASE + TSI108_I2C_OFFSET +
roy zangb825f152006-11-02 19:12:31 +0800179 I2C_CNTRL1) = temp;
180
181 /* Issue the write command (at this moment all other parameters
182 * are 0 (size = 1 byte, lane = 0)
183 */
Wolfgang Denk647d3c32007-03-04 01:36:05 +0100184
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200185 *(u32 *) (CONFIG_SYS_TSI108_CSR_BASE + TSI108_I2C_OFFSET +
roy zangb825f152006-11-02 19:12:31 +0800186 I2C_CNTRL2) = (I2C_CNTRL2_START);
187
188 op_status = TSI108_I2C_TIMEOUT_ERR;
189
190 /* Wait until operation completed */
191 do {
roy zangee311212006-12-01 11:47:36 +0800192 /* Read I2C operation status */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200193 temp = *(u32 *) (CONFIG_SYS_TSI108_CSR_BASE + TSI108_I2C_OFFSET + I2C_CNTRL2);
roy zangb825f152006-11-02 19:12:31 +0800194
Wolfgang Denk647d3c32007-03-04 01:36:05 +0100195 if (0 == (temp & (I2C_CNTRL2_WR_STATUS | I2C_CNTRL2_START))) {
196 if (0 == (temp &
roy zangb825f152006-11-02 19:12:31 +0800197 (I2C_CNTRL2_I2C_CFGERR |
198 I2C_CNTRL2_I2C_TO_ERR))) {
199 op_status = TSI108_I2C_SUCCESS;
200 } else {
201 /* report detected HW error */
202 op_status = TSI108_I2C_IF_ERROR;
203
roy zangee311212006-12-01 11:47:36 +0800204 DPRINT (("I2C HW error reported: 0x%02x\n", temp));
roy zangb825f152006-11-02 19:12:31 +0800205 }
206
207 break;
208 }
209
210 } while (to_count--);
211 } else {
212 op_status = TSI108_I2C_IF_BUSY;
213
roy zangee311212006-12-01 11:47:36 +0800214 DPRINT (("I2C Transaction start failed: 0x%02x\n", temp));
roy zangb825f152006-11-02 19:12:31 +0800215 }
216
217 return op_status;
218}
219
roy zangee311212006-12-01 11:47:36 +0800220/*
roy zangb825f152006-11-02 19:12:31 +0800221 * I2C Write interface as defined in "include/i2c.h" :
222 * chip_addr: I2C chip address, range 0..127
223 * byte_addr: Memory or register address within the chip
224 * alen: Number of bytes to use for addr (typically 1, 2 for larger
225 * memories, 0 for register type devices with only one
226 * register)
227 * buffer: Pointer to data to be written
228 * len: How many bytes to write
229 *
230 * Returns: 0 on success, not 0 on failure
231 */
232
roy zangee311212006-12-01 11:47:36 +0800233int i2c_write (uchar chip_addr, uint byte_addr, int alen, uchar * buffer,
roy zangb825f152006-11-02 19:12:31 +0800234 int len)
235{
236 u32 op_status = TSI108_I2C_PARAM_ERR;
237
238 /* Check for valid I2C address */
239 if (chip_addr <= 0x7F && (byte_addr + len) <= (0x01 << (alen * 8))) {
240 while (len--) {
241 op_status =
roy zangee311212006-12-01 11:47:36 +0800242 i2c_write_byte (chip_addr, byte_addr++, buffer++);
roy zangb825f152006-11-02 19:12:31 +0800243
244 if (TSI108_I2C_SUCCESS != op_status) {
roy zangee311212006-12-01 11:47:36 +0800245 DPRINT (("I2C write_byte() failed: 0x%02x (%d left)\n", op_status, len));
roy zangb825f152006-11-02 19:12:31 +0800246
247 break;
248 }
249 }
250 }
251
252 return op_status;
253}
254
roy zangee311212006-12-01 11:47:36 +0800255/*
roy zangb825f152006-11-02 19:12:31 +0800256 * I2C interface function as defined in "include/i2c.h".
257 * Probe the given I2C chip address by reading single byte from offset 0.
258 * Returns 0 if a chip responded, not 0 on failure.
259 */
260
roy zangee311212006-12-01 11:47:36 +0800261int i2c_probe (uchar chip)
roy zangb825f152006-11-02 19:12:31 +0800262{
263 u32 tmp;
264
265 /*
266 * Try to read the first location of the chip.
267 * The Tsi108 HW doesn't support sending just the chip address
268 * and checkong for an <ACK> back.
269 */
Wolfgang Denk409ecdc2007-11-18 16:36:27 +0100270 return i2c_read (chip, 0, 1, (uchar *)&tmp, 1);
roy zangb825f152006-11-02 19:12:31 +0800271}
272
Jon Loeligercb51c0b2007-07-09 17:39:42 -0500273#endif