3 * Vipin Kumar, ST Micoelectronics, vipin.kumar@st.com.
5 * See file CREDITS for list of people who contributed to this
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
26 #include <asm/arch/hardware.h>
27 #include "designware_i2c.h"
29 static struct i2c_regs *const i2c_regs_p =
30 (struct i2c_regs *)CONFIG_SYS_I2C_BASE;
33 * set_speed - Set the i2c speed mode (standard, high, fast)
34 * @i2c_spd: required i2c speed mode
36 * Set the i2c speed mode (standard, high, fast)
38 static void set_speed(int i2c_spd)
41 unsigned int hcnt, lcnt;
42 unsigned int high, low;
45 /* to set speed cltr must be disabled */
46 enbl = readl(&i2c_regs_p->ic_enable);
47 enbl &= ~IC_ENABLE_0B;
48 writel(enbl, &i2c_regs_p->ic_enable);
51 cntl = (readl(&i2c_regs_p->ic_con) & (~IC_CON_SPD_MSK));
54 case IC_SPEED_MODE_MAX:
55 cntl |= IC_CON_SPD_HS;
56 high = MIN_HS_SCL_HIGHTIME;
57 low = MIN_HS_SCL_LOWTIME;
60 case IC_SPEED_MODE_STANDARD:
61 cntl |= IC_CON_SPD_SS;
62 high = MIN_SS_SCL_HIGHTIME;
63 low = MIN_SS_SCL_LOWTIME;
66 case IC_SPEED_MODE_FAST:
68 cntl |= IC_CON_SPD_FS;
69 high = MIN_FS_SCL_HIGHTIME;
70 low = MIN_FS_SCL_LOWTIME;
74 writel(cntl, &i2c_regs_p->ic_con);
76 hcnt = (IC_CLK * high) / NANO_TO_MICRO;
77 writel(hcnt, &i2c_regs_p->ic_fs_scl_hcnt);
79 lcnt = (IC_CLK * low) / NANO_TO_MICRO;
80 writel(lcnt, &i2c_regs_p->ic_fs_scl_lcnt);
82 /* re-enable i2c ctrl back now that speed is set */
84 writel(enbl, &i2c_regs_p->ic_enable);
88 * i2c_set_bus_speed - Set the i2c speed
89 * @speed: required i2c speed
93 int i2c_set_bus_speed(int speed)
95 if (speed >= I2C_MAX_SPEED)
96 set_speed(IC_SPEED_MODE_MAX);
97 else if (speed >= I2C_FAST_SPEED)
98 set_speed(IC_SPEED_MODE_FAST);
100 set_speed(IC_SPEED_MODE_STANDARD);
106 * i2c_get_bus_speed - Gets the i2c speed
108 * Gets the i2c speed.
110 int i2c_get_bus_speed(void)
114 cntl = (readl(&i2c_regs_p->ic_con) & IC_CON_SPD_MSK);
116 if (cntl == IC_CON_SPD_HS)
117 return I2C_MAX_SPEED;
118 else if (cntl == IC_CON_SPD_FS)
119 return I2C_FAST_SPEED;
120 else if (cntl == IC_CON_SPD_SS)
121 return I2C_STANDARD_SPEED;
127 * i2c_init - Init function
128 * @speed: required i2c speed
129 * @slaveadd: slave address for the device
131 * Initialization function.
133 void i2c_init(int speed, int slaveadd)
138 enbl = readl(&i2c_regs_p->ic_enable);
139 enbl &= ~IC_ENABLE_0B;
140 writel(enbl, &i2c_regs_p->ic_enable);
142 writel((IC_CON_SD | IC_CON_SPD_FS | IC_CON_MM), &i2c_regs_p->ic_con);
143 writel(IC_RX_TL, &i2c_regs_p->ic_rx_tl);
144 writel(IC_TX_TL, &i2c_regs_p->ic_tx_tl);
145 i2c_set_bus_speed(speed);
146 writel(IC_STOP_DET, &i2c_regs_p->ic_intr_mask);
147 writel(slaveadd, &i2c_regs_p->ic_sar);
150 enbl = readl(&i2c_regs_p->ic_enable);
151 enbl |= IC_ENABLE_0B;
152 writel(enbl, &i2c_regs_p->ic_enable);
156 * i2c_setaddress - Sets the target slave address
157 * @i2c_addr: target i2c address
159 * Sets the target slave address.
161 static void i2c_setaddress(unsigned int i2c_addr)
163 writel(i2c_addr, &i2c_regs_p->ic_tar);
167 * i2c_flush_rxfifo - Flushes the i2c RX FIFO
169 * Flushes the i2c RX FIFO
171 static void i2c_flush_rxfifo(void)
173 while (readl(&i2c_regs_p->ic_status) & IC_STATUS_RFNE)
174 readl(&i2c_regs_p->ic_cmd_data);
178 * i2c_wait_for_bb - Waits for bus busy
182 static int i2c_wait_for_bb(void)
184 unsigned long start_time_bb = get_timer(0);
186 while ((readl(&i2c_regs_p->ic_status) & IC_STATUS_MA) ||
187 !(readl(&i2c_regs_p->ic_status) & IC_STATUS_TFE)) {
189 /* Evaluate timeout */
190 if (get_timer(start_time_bb) > (unsigned long)(I2C_BYTE_TO_BB))
197 /* check parameters for i2c_read and i2c_write */
198 static int check_params(uint addr, int alen, uchar *buffer, int len)
200 if (buffer == NULL) {
201 printf("Buffer is invalid\n");
206 printf("addr len %d not supported\n", alen);
210 if (addr + len > 256) {
211 printf("address out of range\n");
218 static int i2c_xfer_init(uchar chip, uint addr)
220 if (i2c_wait_for_bb())
223 i2c_setaddress(chip);
224 writel(addr, &i2c_regs_p->ic_cmd_data);
229 static int i2c_xfer_finish(void)
231 ulong start_stop_det = get_timer(0);
234 if ((readl(&i2c_regs_p->ic_raw_intr_stat) & IC_STOP_DET)) {
235 readl(&i2c_regs_p->ic_clr_stop_det);
237 } else if (get_timer(start_stop_det) > I2C_STOPDET_TO) {
242 if (i2c_wait_for_bb()) {
243 printf("Timed out waiting for bus\n");
249 /* Wait for read/write operation to complete on actual memory */
256 * i2c_read - Read from i2c memory
257 * @chip: target i2c address
258 * @addr: address to read from
260 * @buffer: buffer for read data
261 * @len: no of bytes to be read
263 * Read from i2c memory.
265 int i2c_read(uchar chip, uint addr, int alen, uchar *buffer, int len)
267 unsigned long start_time_rx;
269 if (check_params(addr, alen, buffer, len))
272 if (i2c_xfer_init(chip, addr))
275 start_time_rx = get_timer(0);
277 writel(IC_CMD, &i2c_regs_p->ic_cmd_data);
279 if (readl(&i2c_regs_p->ic_status) & IC_STATUS_RFNE) {
280 *buffer++ = (uchar)readl(&i2c_regs_p->ic_cmd_data);
282 start_time_rx = get_timer(0);
284 } else if (get_timer(start_time_rx) > I2C_BYTE_TO) {
289 return i2c_xfer_finish();
293 * i2c_write - Write to i2c memory
294 * @chip: target i2c address
295 * @addr: address to read from
297 * @buffer: buffer for read data
298 * @len: no of bytes to be read
300 * Write to i2c memory.
302 int i2c_write(uchar chip, uint addr, int alen, uchar *buffer, int len)
305 unsigned long start_time_tx;
307 if (check_params(addr, alen, buffer, len))
310 if (i2c_xfer_init(chip, addr))
313 start_time_tx = get_timer(0);
315 if (readl(&i2c_regs_p->ic_status) & IC_STATUS_TFNF) {
316 writel(*buffer, &i2c_regs_p->ic_cmd_data);
319 start_time_tx = get_timer(0);
321 } else if (get_timer(start_time_tx) > (nb * I2C_BYTE_TO)) {
322 printf("Timed out. i2c write Failed\n");
327 return i2c_xfer_finish();
331 * i2c_probe - Probe the i2c chip
333 int i2c_probe(uchar chip)
339 * Try to read the first location of the chip.
341 ret = i2c_read(chip, 0, 1, (uchar *)&tmp, 1);
343 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);