blob: 341126a0ab1651fc156fb7bce26cbbc170701e7f [file] [log] [blame]
wdenk43d96162003-03-06 00:02:04 +00001/*
2 * (C) Copyright 2000
3 * Paolo Scaffardi, AIRVENT SAM s.p.a - RIMINI(ITALY), arsenio@tin.it
4 *
5 * (C) Copyright 2000 Sysgo Real-Time Solutions, GmbH <www.elinos.com>
6 * Marius Groeger <mgroeger@sysgo.de>
7 *
8 * (C) Copyright 2003 Pengutronix e.K.
9 * Robert Schwebel <r.schwebel@pengutronix.de>
10 *
Lei Wen3df619e2011-04-13 23:48:31 +053011 * (C) Copyright 2011 Marvell Inc.
12 * Lei Wen <leiwen@marvell.com>
13 *
Wolfgang Denk1a459662013-07-08 09:37:19 +020014 * SPDX-License-Identifier: GPL-2.0+
wdenk43d96162003-03-06 00:02:04 +000015 *
16 * Back ported to the 8xx platform (from the 8260 platform) by
17 * Murray.Jensen@cmst.csiro.au, 27-Jan-01.
18 */
19
wdenk43d96162003-03-06 00:02:04 +000020#include <common.h>
Stefan Roese0c0f7192016-09-16 15:07:52 +020021#include <dm.h>
wdenk43d96162003-03-06 00:02:04 +000022#include <i2c.h>
Stefan Roese7b46ee52016-09-16 15:07:51 +020023#include <asm/io.h>
Lei Wen3df619e2011-04-13 23:48:31 +053024#include "mv_i2c.h"
wdenk43d96162003-03-06 00:02:04 +000025
wdenk43d96162003-03-06 00:02:04 +000026/* All transfers are described by this data structure */
Simon Glassfffff722015-02-05 21:41:33 -070027struct mv_i2c_msg {
wdenk43d96162003-03-06 00:02:04 +000028 u8 condition;
wdenk8bde7f72003-06-27 21:31:46 +000029 u8 acknack;
30 u8 direction;
wdenk43d96162003-03-06 00:02:04 +000031 u8 data;
32};
33
Stefan Roese0c0f7192016-09-16 15:07:52 +020034#ifdef CONFIG_ARMADA_3700
35/* Armada 3700 has no padding between the registers */
36struct mv_i2c {
37 u32 ibmr;
38 u32 idbr;
39 u32 icr;
40 u32 isr;
41 u32 isar;
42};
43#else
Lei Wen3df619e2011-04-13 23:48:31 +053044struct mv_i2c {
45 u32 ibmr;
46 u32 pad0;
47 u32 idbr;
48 u32 pad1;
49 u32 icr;
50 u32 pad2;
51 u32 isr;
52 u32 pad3;
53 u32 isar;
54};
Stefan Roese0c0f7192016-09-16 15:07:52 +020055#endif
56
57/*
58 * Dummy implementation that can be overwritten by a board
59 * specific function
60 */
61__weak void i2c_clk_enable(void)
62{
63}
Lei Wen3df619e2011-04-13 23:48:31 +053064
Lei Wen68432c22011-04-13 23:48:16 +053065/*
Lei Wen3df619e2011-04-13 23:48:31 +053066 * i2c_reset: - reset the host controller
wdenk43d96162003-03-06 00:02:04 +000067 *
68 */
Stefan Roese7b46ee52016-09-16 15:07:51 +020069static void i2c_reset(struct mv_i2c *base)
wdenk43d96162003-03-06 00:02:04 +000070{
Lei Wen3df619e2011-04-13 23:48:31 +053071 writel(readl(&base->icr) & ~ICR_IUE, &base->icr); /* disable unit */
72 writel(readl(&base->icr) | ICR_UR, &base->icr); /* reset the unit */
wdenk8bde7f72003-06-27 21:31:46 +000073 udelay(100);
Lei Wen3df619e2011-04-13 23:48:31 +053074 writel(readl(&base->icr) & ~ICR_IUE, &base->icr); /* disable unit */
75
76 i2c_clk_enable();
77
78 writel(CONFIG_SYS_I2C_SLAVE, &base->isar); /* set our slave address */
79 writel(I2C_ICR_INIT, &base->icr); /* set control reg values */
80 writel(I2C_ISR_INIT, &base->isr); /* set clear interrupt bits */
81 writel(readl(&base->icr) | ICR_IUE, &base->icr); /* enable unit */
wdenk8bde7f72003-06-27 21:31:46 +000082 udelay(100);
wdenk43d96162003-03-06 00:02:04 +000083}
84
Lei Wen68432c22011-04-13 23:48:16 +053085/*
wdenk8bde7f72003-06-27 21:31:46 +000086 * i2c_isr_set_cleared: - wait until certain bits of the I2C status register
wdenk43d96162003-03-06 00:02:04 +000087 * are set and cleared
88 *
Markus Klotzbuecherba70d6a2006-03-24 12:23:27 +010089 * @return: 1 in case of success, 0 means timeout (no match within 10 ms).
wdenk43d96162003-03-06 00:02:04 +000090 */
Stefan Roese7b46ee52016-09-16 15:07:51 +020091static int i2c_isr_set_cleared(struct mv_i2c *base, unsigned long set_mask,
Lei Wen68432c22011-04-13 23:48:16 +053092 unsigned long cleared_mask)
wdenk43d96162003-03-06 00:02:04 +000093{
Lei Wen3df619e2011-04-13 23:48:31 +053094 int timeout = 1000, isr;
wdenk43d96162003-03-06 00:02:04 +000095
Lei Wen3df619e2011-04-13 23:48:31 +053096 do {
97 isr = readl(&base->isr);
Lei Wen68432c22011-04-13 23:48:16 +053098 udelay(10);
99 if (timeout-- < 0)
100 return 0;
Lei Wen3df619e2011-04-13 23:48:31 +0530101 } while (((isr & set_mask) != set_mask)
102 || ((isr & cleared_mask) != 0));
wdenk43d96162003-03-06 00:02:04 +0000103
wdenk8bde7f72003-06-27 21:31:46 +0000104 return 1;
wdenk43d96162003-03-06 00:02:04 +0000105}
106
Lei Wen68432c22011-04-13 23:48:16 +0530107/*
wdenk43d96162003-03-06 00:02:04 +0000108 * i2c_transfer: - Transfer one byte over the i2c bus
109 *
wdenk8bde7f72003-06-27 21:31:46 +0000110 * This function can tranfer a byte over the i2c bus in both directions.
111 * It is used by the public API functions.
wdenk43d96162003-03-06 00:02:04 +0000112 *
113 * @return: 0: transfer successful
114 * -1: message is empty
115 * -2: transmit timeout
116 * -3: ACK missing
117 * -4: receive timeout
118 * -5: illegal parameters
119 * -6: bus is busy and couldn't be aquired
wdenk8bde7f72003-06-27 21:31:46 +0000120 */
Stefan Roese7b46ee52016-09-16 15:07:51 +0200121static int i2c_transfer(struct mv_i2c *base, struct mv_i2c_msg *msg)
wdenk43d96162003-03-06 00:02:04 +0000122{
123 int ret;
124
wdenk8bde7f72003-06-27 21:31:46 +0000125 if (!msg)
wdenk43d96162003-03-06 00:02:04 +0000126 goto transfer_error_msg_empty;
127
Lei Wen68432c22011-04-13 23:48:16 +0530128 switch (msg->direction) {
wdenk43d96162003-03-06 00:02:04 +0000129 case I2C_WRITE:
wdenk43d96162003-03-06 00:02:04 +0000130 /* check if bus is not busy */
Stefan Roese7b46ee52016-09-16 15:07:51 +0200131 if (!i2c_isr_set_cleared(base, 0, ISR_IBB))
wdenk43d96162003-03-06 00:02:04 +0000132 goto transfer_error_bus_busy;
133
134 /* start transmission */
Lei Wen3df619e2011-04-13 23:48:31 +0530135 writel(readl(&base->icr) & ~ICR_START, &base->icr);
136 writel(readl(&base->icr) & ~ICR_STOP, &base->icr);
137 writel(msg->data, &base->idbr);
Marek Vasut3ba8bf72010-09-09 09:50:39 +0200138 if (msg->condition == I2C_COND_START)
Lei Wen3df619e2011-04-13 23:48:31 +0530139 writel(readl(&base->icr) | ICR_START, &base->icr);
Marek Vasut3ba8bf72010-09-09 09:50:39 +0200140 if (msg->condition == I2C_COND_STOP)
Lei Wen3df619e2011-04-13 23:48:31 +0530141 writel(readl(&base->icr) | ICR_STOP, &base->icr);
Marek Vasut3ba8bf72010-09-09 09:50:39 +0200142 if (msg->acknack == I2C_ACKNAK_SENDNAK)
Lei Wen3df619e2011-04-13 23:48:31 +0530143 writel(readl(&base->icr) | ICR_ACKNAK, &base->icr);
Marek Vasut3ba8bf72010-09-09 09:50:39 +0200144 if (msg->acknack == I2C_ACKNAK_SENDACK)
Lei Wen3df619e2011-04-13 23:48:31 +0530145 writel(readl(&base->icr) & ~ICR_ACKNAK, &base->icr);
146 writel(readl(&base->icr) & ~ICR_ALDIE, &base->icr);
147 writel(readl(&base->icr) | ICR_TB, &base->icr);
wdenk43d96162003-03-06 00:02:04 +0000148
149 /* transmit register empty? */
Stefan Roese7b46ee52016-09-16 15:07:51 +0200150 if (!i2c_isr_set_cleared(base, ISR_ITE, 0))
wdenk43d96162003-03-06 00:02:04 +0000151 goto transfer_error_transmit_timeout;
152
153 /* clear 'transmit empty' state */
Lei Wen3df619e2011-04-13 23:48:31 +0530154 writel(readl(&base->isr) | ISR_ITE, &base->isr);
wdenk43d96162003-03-06 00:02:04 +0000155
156 /* wait for ACK from slave */
157 if (msg->acknack == I2C_ACKNAK_WAITACK)
Stefan Roese7b46ee52016-09-16 15:07:51 +0200158 if (!i2c_isr_set_cleared(base, 0, ISR_ACKNAK))
wdenk43d96162003-03-06 00:02:04 +0000159 goto transfer_error_ack_missing;
160 break;
161
162 case I2C_READ:
163
164 /* check if bus is not busy */
Stefan Roese7b46ee52016-09-16 15:07:51 +0200165 if (!i2c_isr_set_cleared(base, 0, ISR_IBB))
wdenk43d96162003-03-06 00:02:04 +0000166 goto transfer_error_bus_busy;
167
168 /* start receive */
Lei Wen3df619e2011-04-13 23:48:31 +0530169 writel(readl(&base->icr) & ~ICR_START, &base->icr);
170 writel(readl(&base->icr) & ~ICR_STOP, &base->icr);
Marek Vasut3ba8bf72010-09-09 09:50:39 +0200171 if (msg->condition == I2C_COND_START)
Lei Wen3df619e2011-04-13 23:48:31 +0530172 writel(readl(&base->icr) | ICR_START, &base->icr);
Marek Vasut3ba8bf72010-09-09 09:50:39 +0200173 if (msg->condition == I2C_COND_STOP)
Lei Wen3df619e2011-04-13 23:48:31 +0530174 writel(readl(&base->icr) | ICR_STOP, &base->icr);
Marek Vasut3ba8bf72010-09-09 09:50:39 +0200175 if (msg->acknack == I2C_ACKNAK_SENDNAK)
Lei Wen3df619e2011-04-13 23:48:31 +0530176 writel(readl(&base->icr) | ICR_ACKNAK, &base->icr);
Marek Vasut3ba8bf72010-09-09 09:50:39 +0200177 if (msg->acknack == I2C_ACKNAK_SENDACK)
Lei Wen3df619e2011-04-13 23:48:31 +0530178 writel(readl(&base->icr) & ~ICR_ACKNAK, &base->icr);
179 writel(readl(&base->icr) & ~ICR_ALDIE, &base->icr);
180 writel(readl(&base->icr) | ICR_TB, &base->icr);
wdenk43d96162003-03-06 00:02:04 +0000181
182 /* receive register full? */
Stefan Roese7b46ee52016-09-16 15:07:51 +0200183 if (!i2c_isr_set_cleared(base, ISR_IRF, 0))
wdenk8bde7f72003-06-27 21:31:46 +0000184 goto transfer_error_receive_timeout;
wdenk43d96162003-03-06 00:02:04 +0000185
Lei Wen3df619e2011-04-13 23:48:31 +0530186 msg->data = readl(&base->idbr);
wdenk43d96162003-03-06 00:02:04 +0000187
188 /* clear 'receive empty' state */
Lei Wen3df619e2011-04-13 23:48:31 +0530189 writel(readl(&base->isr) | ISR_IRF, &base->isr);
wdenk43d96162003-03-06 00:02:04 +0000190 break;
wdenk43d96162003-03-06 00:02:04 +0000191 default:
wdenk43d96162003-03-06 00:02:04 +0000192 goto transfer_error_illegal_param;
wdenk43d96162003-03-06 00:02:04 +0000193 }
194
wdenk8bde7f72003-06-27 21:31:46 +0000195 return 0;
wdenk43d96162003-03-06 00:02:04 +0000196
wdenk8bde7f72003-06-27 21:31:46 +0000197transfer_error_msg_empty:
Stefan Roese8eff9092016-09-16 15:07:49 +0200198 debug("i2c_transfer: error: 'msg' is empty\n");
199 ret = -1;
200 goto i2c_transfer_finish;
wdenk43d96162003-03-06 00:02:04 +0000201
202transfer_error_transmit_timeout:
Stefan Roese8eff9092016-09-16 15:07:49 +0200203 debug("i2c_transfer: error: transmit timeout\n");
204 ret = -2;
205 goto i2c_transfer_finish;
wdenk43d96162003-03-06 00:02:04 +0000206
207transfer_error_ack_missing:
Stefan Roese8eff9092016-09-16 15:07:49 +0200208 debug("i2c_transfer: error: ACK missing\n");
209 ret = -3;
210 goto i2c_transfer_finish;
wdenk43d96162003-03-06 00:02:04 +0000211
212transfer_error_receive_timeout:
Stefan Roese8eff9092016-09-16 15:07:49 +0200213 debug("i2c_transfer: error: receive timeout\n");
214 ret = -4;
215 goto i2c_transfer_finish;
wdenk43d96162003-03-06 00:02:04 +0000216
217transfer_error_illegal_param:
Stefan Roese8eff9092016-09-16 15:07:49 +0200218 debug("i2c_transfer: error: illegal parameters\n");
219 ret = -5;
220 goto i2c_transfer_finish;
wdenk43d96162003-03-06 00:02:04 +0000221
222transfer_error_bus_busy:
Stefan Roese8eff9092016-09-16 15:07:49 +0200223 debug("i2c_transfer: error: bus is busy\n");
224 ret = -6;
225 goto i2c_transfer_finish;
wdenk43d96162003-03-06 00:02:04 +0000226
227i2c_transfer_finish:
Stefan Roese8eff9092016-09-16 15:07:49 +0200228 debug("i2c_transfer: ISR: 0x%04x\n", readl(&base->isr));
Stefan Roese7b46ee52016-09-16 15:07:51 +0200229 i2c_reset(base);
Stefan Roese8eff9092016-09-16 15:07:49 +0200230 return ret;
wdenk43d96162003-03-06 00:02:04 +0000231}
232
Stefan Roese0c0f7192016-09-16 15:07:52 +0200233static int __i2c_read(struct mv_i2c *base, uchar chip, u8 *addr, int alen,
Stefan Roese7b46ee52016-09-16 15:07:51 +0200234 uchar *buffer, int len)
wdenk43d96162003-03-06 00:02:04 +0000235{
Simon Glassfffff722015-02-05 21:41:33 -0700236 struct mv_i2c_msg msg;
wdenk43d96162003-03-06 00:02:04 +0000237
Stefan Roese8eff9092016-09-16 15:07:49 +0200238 debug("i2c_read(chip=0x%02x, addr=0x%02x, alen=0x%02x, "
Stefan Roese0c0f7192016-09-16 15:07:52 +0200239 "len=0x%02x)\n", chip, *addr, alen, len);
wdenk43d96162003-03-06 00:02:04 +0000240
Stefan Roese7b46ee52016-09-16 15:07:51 +0200241 i2c_reset(base);
wdenk43d96162003-03-06 00:02:04 +0000242
243 /* dummy chip address write */
Stefan Roese8eff9092016-09-16 15:07:49 +0200244 debug("i2c_read: dummy chip address write\n");
wdenk43d96162003-03-06 00:02:04 +0000245 msg.condition = I2C_COND_START;
246 msg.acknack = I2C_ACKNAK_WAITACK;
247 msg.direction = I2C_WRITE;
Lei Wen68432c22011-04-13 23:48:16 +0530248 msg.data = (chip << 1);
249 msg.data &= 0xFE;
Stefan Roese7b46ee52016-09-16 15:07:51 +0200250 if (i2c_transfer(base, &msg))
Lei Wen68432c22011-04-13 23:48:16 +0530251 return -1;
wdenk8bde7f72003-06-27 21:31:46 +0000252
wdenk43d96162003-03-06 00:02:04 +0000253 /*
wdenk8bde7f72003-06-27 21:31:46 +0000254 * send memory address bytes;
255 * alen defines how much bytes we have to send.
wdenk43d96162003-03-06 00:02:04 +0000256 */
wdenk43d96162003-03-06 00:02:04 +0000257 while (--alen >= 0) {
Stefan Roese0c0f7192016-09-16 15:07:52 +0200258 debug("i2c_read: send address byte %02x (alen=%d)\n",
259 *addr, alen);
wdenk43d96162003-03-06 00:02:04 +0000260 msg.condition = I2C_COND_NORMAL;
261 msg.acknack = I2C_ACKNAK_WAITACK;
262 msg.direction = I2C_WRITE;
Stefan Roese0c0f7192016-09-16 15:07:52 +0200263 msg.data = *(addr++);
Stefan Roese7b46ee52016-09-16 15:07:51 +0200264 if (i2c_transfer(base, &msg))
Lei Wen68432c22011-04-13 23:48:16 +0530265 return -1;
wdenk43d96162003-03-06 00:02:04 +0000266 }
wdenk8bde7f72003-06-27 21:31:46 +0000267
wdenk43d96162003-03-06 00:02:04 +0000268 /* start read sequence */
Stefan Roese8eff9092016-09-16 15:07:49 +0200269 debug("i2c_read: start read sequence\n");
wdenk43d96162003-03-06 00:02:04 +0000270 msg.condition = I2C_COND_START;
271 msg.acknack = I2C_ACKNAK_WAITACK;
272 msg.direction = I2C_WRITE;
273 msg.data = (chip << 1);
274 msg.data |= 0x01;
Stefan Roese7b46ee52016-09-16 15:07:51 +0200275 if (i2c_transfer(base, &msg))
Lei Wen68432c22011-04-13 23:48:16 +0530276 return -1;
wdenk43d96162003-03-06 00:02:04 +0000277
278 /* read bytes; send NACK at last byte */
279 while (len--) {
Lei Wen68432c22011-04-13 23:48:16 +0530280 if (len == 0) {
wdenk43d96162003-03-06 00:02:04 +0000281 msg.condition = I2C_COND_STOP;
282 msg.acknack = I2C_ACKNAK_SENDNAK;
283 } else {
284 msg.condition = I2C_COND_NORMAL;
285 msg.acknack = I2C_ACKNAK_SENDACK;
286 }
287
288 msg.direction = I2C_READ;
289 msg.data = 0x00;
Stefan Roese7b46ee52016-09-16 15:07:51 +0200290 if (i2c_transfer(base, &msg))
Lei Wen68432c22011-04-13 23:48:16 +0530291 return -1;
wdenk43d96162003-03-06 00:02:04 +0000292
Markus Klotzbuecherba70d6a2006-03-24 12:23:27 +0100293 *buffer = msg.data;
Stefan Roese0c0f7192016-09-16 15:07:52 +0200294 debug("i2c_read: reading byte (%p)=0x%02x\n",
295 buffer, *buffer);
Markus Klotzbuecherba70d6a2006-03-24 12:23:27 +0100296 buffer++;
wdenk43d96162003-03-06 00:02:04 +0000297 }
298
Stefan Roese7b46ee52016-09-16 15:07:51 +0200299 i2c_reset(base);
wdenk43d96162003-03-06 00:02:04 +0000300
301 return 0;
302}
303
Stefan Roese0c0f7192016-09-16 15:07:52 +0200304static int __i2c_write(struct mv_i2c *base, uchar chip, u8 *addr, int alen,
Stefan Roese7b46ee52016-09-16 15:07:51 +0200305 uchar *buffer, int len)
wdenk43d96162003-03-06 00:02:04 +0000306{
Simon Glassfffff722015-02-05 21:41:33 -0700307 struct mv_i2c_msg msg;
wdenk43d96162003-03-06 00:02:04 +0000308
Stefan Roese8eff9092016-09-16 15:07:49 +0200309 debug("i2c_write(chip=0x%02x, addr=0x%02x, alen=0x%02x, "
Stefan Roese0c0f7192016-09-16 15:07:52 +0200310 "len=0x%02x)\n", chip, *addr, alen, len);
wdenk43d96162003-03-06 00:02:04 +0000311
Stefan Roese7b46ee52016-09-16 15:07:51 +0200312 i2c_reset(base);
wdenk43d96162003-03-06 00:02:04 +0000313
314 /* chip address write */
Stefan Roese8eff9092016-09-16 15:07:49 +0200315 debug("i2c_write: chip address write\n");
wdenk43d96162003-03-06 00:02:04 +0000316 msg.condition = I2C_COND_START;
317 msg.acknack = I2C_ACKNAK_WAITACK;
318 msg.direction = I2C_WRITE;
Lei Wen68432c22011-04-13 23:48:16 +0530319 msg.data = (chip << 1);
320 msg.data &= 0xFE;
Stefan Roese7b46ee52016-09-16 15:07:51 +0200321 if (i2c_transfer(base, &msg))
Lei Wen68432c22011-04-13 23:48:16 +0530322 return -1;
wdenk8bde7f72003-06-27 21:31:46 +0000323
wdenk43d96162003-03-06 00:02:04 +0000324 /*
wdenk8bde7f72003-06-27 21:31:46 +0000325 * send memory address bytes;
326 * alen defines how much bytes we have to send.
wdenk43d96162003-03-06 00:02:04 +0000327 */
wdenk43d96162003-03-06 00:02:04 +0000328 while (--alen >= 0) {
Stefan Roese0c0f7192016-09-16 15:07:52 +0200329 debug("i2c_read: send address byte %02x (alen=%d)\n",
330 *addr, alen);
wdenk43d96162003-03-06 00:02:04 +0000331 msg.condition = I2C_COND_NORMAL;
332 msg.acknack = I2C_ACKNAK_WAITACK;
333 msg.direction = I2C_WRITE;
Stefan Roese0c0f7192016-09-16 15:07:52 +0200334 msg.data = *(addr++);
Stefan Roese7b46ee52016-09-16 15:07:51 +0200335 if (i2c_transfer(base, &msg))
Lei Wen68432c22011-04-13 23:48:16 +0530336 return -1;
wdenk43d96162003-03-06 00:02:04 +0000337 }
wdenk8bde7f72003-06-27 21:31:46 +0000338
wdenk43d96162003-03-06 00:02:04 +0000339 /* write bytes; send NACK at last byte */
340 while (len--) {
Stefan Roese0c0f7192016-09-16 15:07:52 +0200341 debug("i2c_write: writing byte (%p)=0x%02x\n",
342 buffer, *buffer);
wdenk43d96162003-03-06 00:02:04 +0000343
Lei Wen68432c22011-04-13 23:48:16 +0530344 if (len == 0)
wdenk43d96162003-03-06 00:02:04 +0000345 msg.condition = I2C_COND_STOP;
346 else
347 msg.condition = I2C_COND_NORMAL;
348
349 msg.acknack = I2C_ACKNAK_WAITACK;
350 msg.direction = I2C_WRITE;
351 msg.data = *(buffer++);
wdenk8bde7f72003-06-27 21:31:46 +0000352
Stefan Roese7b46ee52016-09-16 15:07:51 +0200353 if (i2c_transfer(base, &msg))
Lei Wen68432c22011-04-13 23:48:16 +0530354 return -1;
wdenk43d96162003-03-06 00:02:04 +0000355 }
356
Stefan Roese7b46ee52016-09-16 15:07:51 +0200357 i2c_reset(base);
wdenk43d96162003-03-06 00:02:04 +0000358
359 return 0;
wdenk43d96162003-03-06 00:02:04 +0000360}
Stefan Roese7b46ee52016-09-16 15:07:51 +0200361
Stefan Roese0c0f7192016-09-16 15:07:52 +0200362#ifndef CONFIG_DM_I2C
363
Stefan Roese7b46ee52016-09-16 15:07:51 +0200364static struct mv_i2c *base_glob;
365
366static void i2c_board_init(struct mv_i2c *base)
367{
368#ifdef CONFIG_SYS_I2C_INIT_BOARD
369 u32 icr;
370 /*
371 * call board specific i2c bus reset routine before accessing the
372 * environment, which might be in a chip on that bus. For details
373 * about this problem see doc/I2C_Edge_Conditions.
374 *
375 * disable I2C controller first, otherwhise it thinks we want to
376 * talk to the slave port...
377 */
378 icr = readl(&base->icr);
379 writel(readl(&base->icr) & ~(ICR_SCLE | ICR_IUE), &base->icr);
380
381 i2c_init_board();
382
383 writel(icr, &base->icr);
384#endif
385}
386
387#ifdef CONFIG_I2C_MULTI_BUS
388static unsigned long i2c_regs[CONFIG_MV_I2C_NUM] = CONFIG_MV_I2C_REG;
389static unsigned int bus_initialized[CONFIG_MV_I2C_NUM];
390static unsigned int current_bus;
391
392int i2c_set_bus_num(unsigned int bus)
393{
394 if ((bus < 0) || (bus >= CONFIG_MV_I2C_NUM)) {
395 printf("Bad bus: %d\n", bus);
396 return -1;
397 }
398
399 base_glob = (struct mv_i2c *)i2c_regs[bus];
400 current_bus = bus;
401
402 if (!bus_initialized[current_bus]) {
403 i2c_board_init(base_glob);
404 bus_initialized[current_bus] = 1;
405 }
406
407 return 0;
408}
409
410unsigned int i2c_get_bus_num(void)
411{
412 return current_bus;
413}
414#endif
415
416/* API Functions */
417void i2c_init(int speed, int slaveaddr)
418{
419#ifdef CONFIG_I2C_MULTI_BUS
420 current_bus = 0;
421 base_glob = (struct mv_i2c *)i2c_regs[current_bus];
422#else
423 base_glob = (struct mv_i2c *)CONFIG_MV_I2C_REG;
424#endif
425
426 i2c_board_init(base_glob);
427}
428
Stefan Roese0c0f7192016-09-16 15:07:52 +0200429static int __i2c_probe_chip(struct mv_i2c *base, uchar chip)
430{
431 struct mv_i2c_msg msg;
432
433 i2c_reset(base);
434
435 msg.condition = I2C_COND_START;
436 msg.acknack = I2C_ACKNAK_WAITACK;
437 msg.direction = I2C_WRITE;
438 msg.data = (chip << 1) + 1;
439 if (i2c_transfer(base, &msg))
440 return -1;
441
442 msg.condition = I2C_COND_STOP;
443 msg.acknack = I2C_ACKNAK_SENDNAK;
444 msg.direction = I2C_READ;
445 msg.data = 0x00;
446 if (i2c_transfer(base, &msg))
447 return -1;
448
449 return 0;
450}
451
Stefan Roese7b46ee52016-09-16 15:07:51 +0200452/*
453 * i2c_probe: - Test if a chip answers for a given i2c address
454 *
455 * @chip: address of the chip which is searched for
456 * @return: 0 if a chip was found, -1 otherwhise
457 */
458int i2c_probe(uchar chip)
459{
460 return __i2c_probe_chip(base_glob, chip);
461}
462
463/*
464 * i2c_read: - Read multiple bytes from an i2c device
465 *
466 * The higher level routines take into account that this function is only
467 * called with len < page length of the device (see configuration file)
468 *
469 * @chip: address of the chip which is to be read
470 * @addr: i2c data address within the chip
471 * @alen: length of the i2c data address (1..2 bytes)
472 * @buffer: where to write the data
473 * @len: how much byte do we want to read
474 * @return: 0 in case of success
475 */
476int i2c_read(uchar chip, uint addr, int alen, uchar *buffer, int len)
477{
Stefan Roese0c0f7192016-09-16 15:07:52 +0200478 u8 addr_bytes[4];
479
480 addr_bytes[0] = (addr >> 0) & 0xFF;
481 addr_bytes[1] = (addr >> 8) & 0xFF;
482 addr_bytes[2] = (addr >> 16) & 0xFF;
483 addr_bytes[3] = (addr >> 24) & 0xFF;
484
485 return __i2c_read(base_glob, chip, addr_bytes, alen, buffer, len);
Stefan Roese7b46ee52016-09-16 15:07:51 +0200486}
487
488/*
489 * i2c_write: - Write multiple bytes to an i2c device
490 *
491 * The higher level routines take into account that this function is only
492 * called with len < page length of the device (see configuration file)
493 *
494 * @chip: address of the chip which is to be written
495 * @addr: i2c data address within the chip
496 * @alen: length of the i2c data address (1..2 bytes)
497 * @buffer: where to find the data to be written
498 * @len: how much byte do we want to read
499 * @return: 0 in case of success
500 */
501int i2c_write(uchar chip, uint addr, int alen, uchar *buffer, int len)
502{
Stefan Roese0c0f7192016-09-16 15:07:52 +0200503 u8 addr_bytes[4];
504
505 addr_bytes[0] = (addr >> 0) & 0xFF;
506 addr_bytes[1] = (addr >> 8) & 0xFF;
507 addr_bytes[2] = (addr >> 16) & 0xFF;
508 addr_bytes[3] = (addr >> 24) & 0xFF;
509
510 return __i2c_write(base_glob, chip, addr_bytes, alen, buffer, len);
Stefan Roese7b46ee52016-09-16 15:07:51 +0200511}
Stefan Roese0c0f7192016-09-16 15:07:52 +0200512
513#else /* CONFIG_DM_I2C */
514
515struct mv_i2c_priv {
516 struct mv_i2c *base;
517};
518
519static int mv_i2c_xfer(struct udevice *bus, struct i2c_msg *msg, int nmsgs)
520{
521 struct mv_i2c_priv *i2c = dev_get_priv(bus);
522 struct i2c_msg *dmsg, *omsg, dummy;
523
524 memset(&dummy, 0, sizeof(struct i2c_msg));
525
526 /*
527 * We expect either two messages (one with an offset and one with the
528 * actual data) or one message (just data or offset/data combined)
529 */
530 if (nmsgs > 2 || nmsgs == 0) {
531 debug("%s: Only one or two messages are supported.", __func__);
532 return -1;
533 }
534
535 omsg = nmsgs == 1 ? &dummy : msg;
536 dmsg = nmsgs == 1 ? msg : msg + 1;
537
538 if (dmsg->flags & I2C_M_RD)
539 return __i2c_read(i2c->base, dmsg->addr, omsg->buf,
540 omsg->len, dmsg->buf, dmsg->len);
541 else
542 return __i2c_write(i2c->base, dmsg->addr, omsg->buf,
543 omsg->len, dmsg->buf, dmsg->len);
544}
545
546static int mv_i2c_probe(struct udevice *bus)
547{
548 struct mv_i2c_priv *priv = dev_get_priv(bus);
549
550 priv->base = (void *)dev_get_addr_ptr(bus);
551
552 return 0;
553}
554
555static const struct dm_i2c_ops mv_i2c_ops = {
556 .xfer = mv_i2c_xfer,
557};
558
559static const struct udevice_id mv_i2c_ids[] = {
560 { .compatible = "marvell,armada-3700-i2c" },
561 { }
562};
563
564U_BOOT_DRIVER(i2c_mv) = {
565 .name = "i2c_mv",
566 .id = UCLASS_I2C,
567 .of_match = mv_i2c_ids,
568 .probe = mv_i2c_probe,
569 .priv_auto_alloc_size = sizeof(struct mv_i2c_priv),
570 .ops = &mv_i2c_ops,
571};
572#endif /* CONFIG_DM_I2C */