blob: 814d834b164822cb954bd775253e6af4dca28fe3 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Troy Kiskycc54a0f2012-07-19 08:18:25 +00002/*
3 * Copyright (C) 2012 Boundary Devices Inc.
Troy Kiskycc54a0f2012-07-19 08:18:25 +00004 */
5#include <common.h>
Simon Glassc6f3f322014-10-02 17:17:23 +03006#include <malloc.h>
Troy Kiskycc54a0f2012-07-19 08:18:25 +00007#include <asm/arch/clock.h>
8#include <asm/arch/imx-regs.h>
Masahiro Yamada1221ce42016-09-21 11:28:55 +09009#include <linux/errno.h>
Troy Kiskycc54a0f2012-07-19 08:18:25 +000010#include <asm/gpio.h>
Stefano Babic552a8482017-06-29 10:16:06 +020011#include <asm/mach-imx/mxc_i2c.h>
Troy Kiskycc54a0f2012-07-19 08:18:25 +000012#include <watchdog.h>
13
Peng Fan71204e92015-05-15 07:29:12 +080014int force_idle_bus(void *priv)
Troy Kiskycc54a0f2012-07-19 08:18:25 +000015{
16 int i;
17 int sda, scl;
18 ulong elapsed, start_time;
19 struct i2c_pads_info *p = (struct i2c_pads_info *)priv;
20 int ret = 0;
21
22 gpio_direction_input(p->sda.gp);
23 gpio_direction_input(p->scl.gp);
24
25 imx_iomux_v3_setup_pad(p->sda.gpio_mode);
26 imx_iomux_v3_setup_pad(p->scl.gpio_mode);
27
28 sda = gpio_get_value(p->sda.gp);
29 scl = gpio_get_value(p->scl.gp);
30 if ((sda & scl) == 1)
31 goto exit; /* Bus is idle already */
32
33 printf("%s: sda=%d scl=%d sda.gp=0x%x scl.gp=0x%x\n", __func__,
34 sda, scl, p->sda.gp, p->scl.gp);
35 /* Send high and low on the SCL line */
36 for (i = 0; i < 9; i++) {
37 gpio_direction_output(p->scl.gp, 0);
38 udelay(50);
39 gpio_direction_input(p->scl.gp);
40 udelay(50);
41 }
42 start_time = get_timer(0);
43 for (;;) {
44 sda = gpio_get_value(p->sda.gp);
45 scl = gpio_get_value(p->scl.gp);
46 if ((sda & scl) == 1)
47 break;
48 WATCHDOG_RESET();
49 elapsed = get_timer(start_time);
50 if (elapsed > (CONFIG_SYS_HZ / 5)) { /* .2 seconds */
51 ret = -EBUSY;
52 printf("%s: failed to clear bus, sda=%d scl=%d\n",
53 __func__, sda, scl);
54 break;
55 }
56 }
57exit:
58 imx_iomux_v3_setup_pad(p->sda.i2c_mode);
59 imx_iomux_v3_setup_pad(p->scl.i2c_mode);
60 return ret;
61}
62
63static void * const i2c_bases[] = {
64 (void *)I2C1_BASE_ADDR,
65 (void *)I2C2_BASE_ADDR,
66#ifdef I2C3_BASE_ADDR
67 (void *)I2C3_BASE_ADDR,
68#endif
Heiko Schocher21a26942015-05-18 10:56:24 +020069#ifdef I2C4_BASE_ADDR
70 (void *)I2C4_BASE_ADDR,
71#endif
Troy Kiskycc54a0f2012-07-19 08:18:25 +000072};
73
Heiko Schocher21a26942015-05-18 10:56:24 +020074/* i2c_index can be from 0 - 3 */
Simon Glassedbf8b42014-10-01 19:57:24 -060075int setup_i2c(unsigned i2c_index, int speed, int slave_addr,
76 struct i2c_pads_info *p)
Troy Kiskycc54a0f2012-07-19 08:18:25 +000077{
Marek Vasutcd3c5892014-12-16 14:09:16 +010078 char name[9];
Simon Glassedbf8b42014-10-01 19:57:24 -060079 int ret;
80
Troy Kiskycc54a0f2012-07-19 08:18:25 +000081 if (i2c_index >= ARRAY_SIZE(i2c_bases))
Simon Glassedbf8b42014-10-01 19:57:24 -060082 return -EINVAL;
Simon Glassc6f3f322014-10-02 17:17:23 +030083
Marek Vasutcd3c5892014-12-16 14:09:16 +010084 snprintf(name, sizeof(name), "i2c_sda%01d", i2c_index);
85 ret = gpio_request(p->sda.gp, name);
Simon Glassc6f3f322014-10-02 17:17:23 +030086 if (ret)
Marek Vasutcd3c5892014-12-16 14:09:16 +010087 return ret;
Simon Glassc6f3f322014-10-02 17:17:23 +030088
Marek Vasutcd3c5892014-12-16 14:09:16 +010089 snprintf(name, sizeof(name), "i2c_scl%01d", i2c_index);
90 ret = gpio_request(p->scl.gp, name);
Simon Glassc6f3f322014-10-02 17:17:23 +030091 if (ret)
Marek Vasutcd3c5892014-12-16 14:09:16 +010092 goto err_req;
Simon Glassc6f3f322014-10-02 17:17:23 +030093
Troy Kiskycc54a0f2012-07-19 08:18:25 +000094 /* Enable i2c clock */
Simon Glassedbf8b42014-10-01 19:57:24 -060095 ret = enable_i2c_clk(1, i2c_index);
96 if (ret)
97 goto err_clk;
98
Troy Kiskycc54a0f2012-07-19 08:18:25 +000099 /* Make sure bus is idle */
Simon Glassedbf8b42014-10-01 19:57:24 -0600100 ret = force_idle_bus(p);
101 if (ret)
102 goto err_idle;
103
Peng Fan71204e92015-05-15 07:29:12 +0800104#ifndef CONFIG_DM_I2C
105 bus_i2c_init(i2c_index, speed, slave_addr, force_idle_bus, p);
106#endif
Simon Glassedbf8b42014-10-01 19:57:24 -0600107
108 return 0;
109
110err_idle:
111err_clk:
Simon Glassc6f3f322014-10-02 17:17:23 +0300112 gpio_free(p->scl.gp);
Marek Vasutcd3c5892014-12-16 14:09:16 +0100113err_req:
Simon Glassc6f3f322014-10-02 17:17:23 +0300114 gpio_free(p->sda.gp);
Simon Glassc6f3f322014-10-02 17:17:23 +0300115
Simon Glassedbf8b42014-10-01 19:57:24 -0600116 return ret;
Troy Kiskycc54a0f2012-07-19 08:18:25 +0000117}