2 * Driver for the Zynq-7000 PS I2C controller
3 * IP from Cadence (ID T-CS-PE-0007-100, Version R1p10f2)
5 * Author: Joe Hershberger <joe.hershberger@ni.com>
6 * Copyright (c) 2012 Joe Hershberger.
8 * Copyright (c) 2012-2013 Xilinx, Michal Simek
10 * SPDX-License-Identifier: GPL-2.0+
16 #include <asm/errno.h>
17 #include <asm/arch/hardware.h>
19 /* i2c register set */
20 struct zynq_i2c_registers {
31 u32 interrupt_disable;
34 /* Control register fields */
35 #define ZYNQ_I2C_CONTROL_RW 0x00000001
36 #define ZYNQ_I2C_CONTROL_MS 0x00000002
37 #define ZYNQ_I2C_CONTROL_NEA 0x00000004
38 #define ZYNQ_I2C_CONTROL_ACKEN 0x00000008
39 #define ZYNQ_I2C_CONTROL_HOLD 0x00000010
40 #define ZYNQ_I2C_CONTROL_SLVMON 0x00000020
41 #define ZYNQ_I2C_CONTROL_CLR_FIFO 0x00000040
42 #define ZYNQ_I2C_CONTROL_DIV_B_SHIFT 8
43 #define ZYNQ_I2C_CONTROL_DIV_B_MASK 0x00003F00
44 #define ZYNQ_I2C_CONTROL_DIV_A_SHIFT 14
45 #define ZYNQ_I2C_CONTROL_DIV_A_MASK 0x0000C000
47 /* Status register values */
48 #define ZYNQ_I2C_STATUS_RXDV 0x00000020
49 #define ZYNQ_I2C_STATUS_TXDV 0x00000040
50 #define ZYNQ_I2C_STATUS_RXOVF 0x00000080
51 #define ZYNQ_I2C_STATUS_BA 0x00000100
53 /* Interrupt register fields */
54 #define ZYNQ_I2C_INTERRUPT_COMP 0x00000001
55 #define ZYNQ_I2C_INTERRUPT_DATA 0x00000002
56 #define ZYNQ_I2C_INTERRUPT_NACK 0x00000004
57 #define ZYNQ_I2C_INTERRUPT_TO 0x00000008
58 #define ZYNQ_I2C_INTERRUPT_SLVRDY 0x00000010
59 #define ZYNQ_I2C_INTERRUPT_RXOVF 0x00000020
60 #define ZYNQ_I2C_INTERRUPT_TXOVF 0x00000040
61 #define ZYNQ_I2C_INTERRUPT_RXUNF 0x00000080
62 #define ZYNQ_I2C_INTERRUPT_ARBLOST 0x00000200
64 #define ZYNQ_I2C_FIFO_DEPTH 16
65 #define ZYNQ_I2C_TRANSFERT_SIZE_MAX 255 /* Controller transfer limit */
67 #if defined(CONFIG_ZYNQ_I2C0)
68 # define ZYNQ_I2C_BASE ZYNQ_I2C_BASEADDR0
70 # define ZYNQ_I2C_BASE ZYNQ_I2C_BASEADDR1
73 static struct zynq_i2c_registers *zynq_i2c =
74 (struct zynq_i2c_registers *)ZYNQ_I2C_BASE;
76 /* I2C init called by cmd_i2c when doing 'i2c reset'. */
77 void i2c_init(int requested_speed, int slaveadd)
79 /* 111MHz / ( (3 * 17) * 22 ) = ~100KHz */
80 writel((16 << ZYNQ_I2C_CONTROL_DIV_B_SHIFT) |
81 (2 << ZYNQ_I2C_CONTROL_DIV_A_SHIFT), &zynq_i2c->control);
83 /* Enable master mode, ack, and 7-bit addressing */
84 setbits_le32(&zynq_i2c->control, ZYNQ_I2C_CONTROL_MS |
85 ZYNQ_I2C_CONTROL_ACKEN | ZYNQ_I2C_CONTROL_NEA);
89 static void zynq_i2c_debug_status(void)
93 int_status = readl(&zynq_i2c->interrupt_status);
95 status = readl(&zynq_i2c->status);
96 if (int_status || status) {
98 if (int_status & ZYNQ_I2C_INTERRUPT_COMP)
100 if (int_status & ZYNQ_I2C_INTERRUPT_DATA)
102 if (int_status & ZYNQ_I2C_INTERRUPT_NACK)
104 if (int_status & ZYNQ_I2C_INTERRUPT_TO)
106 if (int_status & ZYNQ_I2C_INTERRUPT_SLVRDY)
108 if (int_status & ZYNQ_I2C_INTERRUPT_RXOVF)
110 if (int_status & ZYNQ_I2C_INTERRUPT_TXOVF)
112 if (int_status & ZYNQ_I2C_INTERRUPT_RXUNF)
114 if (int_status & ZYNQ_I2C_INTERRUPT_ARBLOST)
116 if (status & ZYNQ_I2C_STATUS_RXDV)
118 if (status & ZYNQ_I2C_STATUS_TXDV)
120 if (status & ZYNQ_I2C_STATUS_RXOVF)
122 if (status & ZYNQ_I2C_STATUS_BA)
124 debug("TS%d ", readl(&zynq_i2c->transfer_size));
130 /* Wait for an interrupt */
131 static u32 zynq_i2c_wait(u32 mask)
133 int timeout, int_status;
135 for (timeout = 0; timeout < 100; timeout++) {
137 int_status = readl(&zynq_i2c->interrupt_status);
138 if (int_status & mask)
142 zynq_i2c_debug_status();
144 /* Clear interrupt status flags */
145 writel(int_status & mask, &zynq_i2c->interrupt_status);
147 return int_status & mask;
151 * I2C probe called by cmd_i2c when doing 'i2c probe'.
152 * Begin read, nak data byte, end.
154 int i2c_probe(u8 dev)
156 /* Attempt to read a byte */
157 setbits_le32(&zynq_i2c->control, ZYNQ_I2C_CONTROL_CLR_FIFO |
158 ZYNQ_I2C_CONTROL_RW);
159 clrbits_le32(&zynq_i2c->control, ZYNQ_I2C_CONTROL_HOLD);
160 writel(0xFF, &zynq_i2c->interrupt_status);
161 writel(dev, &zynq_i2c->address);
162 writel(1, &zynq_i2c->transfer_size);
164 return (zynq_i2c_wait(ZYNQ_I2C_INTERRUPT_COMP |
165 ZYNQ_I2C_INTERRUPT_NACK) &
166 ZYNQ_I2C_INTERRUPT_COMP) ? 0 : -ETIMEDOUT;
170 * I2C read called by cmd_i2c when doing 'i2c read' and by cmd_eeprom.c
171 * Begin write, send address byte(s), begin read, receive data bytes, end.
173 int i2c_read(u8 dev, uint addr, int alen, u8 *data, int length)
179 /* Check the hardware can handle the requested bytes */
180 if ((length < 0) || (length > ZYNQ_I2C_TRANSFERT_SIZE_MAX))
183 /* Write the register address */
184 setbits_le32(&zynq_i2c->control, ZYNQ_I2C_CONTROL_CLR_FIFO |
185 ZYNQ_I2C_CONTROL_HOLD);
187 * Temporarily disable restart (by clearing hold)
188 * It doesn't seem to work.
190 clrbits_le32(&zynq_i2c->control, ZYNQ_I2C_CONTROL_RW |
191 ZYNQ_I2C_CONTROL_HOLD);
192 writel(0xFF, &zynq_i2c->interrupt_status);
194 writel(addr >> (8*alen), &zynq_i2c->data);
195 writel(dev, &zynq_i2c->address);
197 /* Wait for the address to be sent */
198 if (!zynq_i2c_wait(ZYNQ_I2C_INTERRUPT_COMP)) {
199 /* Release the bus */
200 clrbits_le32(&zynq_i2c->control, ZYNQ_I2C_CONTROL_HOLD);
203 debug("Device acked address\n");
205 setbits_le32(&zynq_i2c->control, ZYNQ_I2C_CONTROL_CLR_FIFO |
206 ZYNQ_I2C_CONTROL_RW);
207 /* Start reading data */
208 writel(dev, &zynq_i2c->address);
209 writel(length, &zynq_i2c->transfer_size);
213 status = zynq_i2c_wait(ZYNQ_I2C_INTERRUPT_COMP |
214 ZYNQ_I2C_INTERRUPT_DATA);
216 /* Release the bus */
217 clrbits_le32(&zynq_i2c->control, ZYNQ_I2C_CONTROL_HOLD);
220 debug("Read %d bytes\n",
221 length - readl(&zynq_i2c->transfer_size));
222 for (; i < length - readl(&zynq_i2c->transfer_size); i++)
223 *(cur_data++) = readl(&zynq_i2c->data);
224 } while (readl(&zynq_i2c->transfer_size) != 0);
225 /* All done... release the bus */
226 clrbits_le32(&zynq_i2c->control, ZYNQ_I2C_CONTROL_HOLD);
229 zynq_i2c_debug_status();
235 * I2C write called by cmd_i2c when doing 'i2c write' and by cmd_eeprom.c
236 * Begin write, send address byte(s), send data bytes, end.
238 int i2c_write(u8 dev, uint addr, int alen, u8 *data, int length)
242 /* Write the register address */
243 setbits_le32(&zynq_i2c->control, ZYNQ_I2C_CONTROL_CLR_FIFO |
244 ZYNQ_I2C_CONTROL_HOLD);
245 clrbits_le32(&zynq_i2c->control, ZYNQ_I2C_CONTROL_RW);
246 writel(0xFF, &zynq_i2c->interrupt_status);
248 writel(addr >> (8*alen), &zynq_i2c->data);
249 /* Start the tranfer */
250 writel(dev, &zynq_i2c->address);
251 if (!zynq_i2c_wait(ZYNQ_I2C_INTERRUPT_COMP)) {
252 /* Release the bus */
253 clrbits_le32(&zynq_i2c->control, ZYNQ_I2C_CONTROL_HOLD);
257 debug("Device acked address\n");
259 writel(*(cur_data++), &zynq_i2c->data);
260 if (readl(&zynq_i2c->transfer_size) == ZYNQ_I2C_FIFO_DEPTH) {
261 if (!zynq_i2c_wait(ZYNQ_I2C_INTERRUPT_COMP)) {
262 /* Release the bus */
263 clrbits_le32(&zynq_i2c->control,
264 ZYNQ_I2C_CONTROL_HOLD);
270 /* All done... release the bus */
271 clrbits_le32(&zynq_i2c->control, ZYNQ_I2C_CONTROL_HOLD);
272 /* Wait for the address and data to be sent */
273 if (!zynq_i2c_wait(ZYNQ_I2C_INTERRUPT_COMP))
278 int i2c_set_bus_num(unsigned int bus)
280 /* Only support bus 0 */
286 unsigned int i2c_get_bus_num(void)
288 /* Only support bus 0 */