Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 2 | /* |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 3 | * i2c driver for Freescale i.MX series |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 4 | * |
| 5 | * (c) 2007 Pengutronix, Sascha Hauer <s.hauer@pengutronix.de> |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 6 | * (c) 2011 Marek Vasut <marek.vasut@gmail.com> |
| 7 | * |
| 8 | * Based on i2c-imx.c from linux kernel: |
| 9 | * Copyright (C) 2005 Torsten Koschorrek <koschorrek at synertronixx.de> |
| 10 | * Copyright (C) 2005 Matthias Blaschke <blaschke at synertronixx.de> |
| 11 | * Copyright (C) 2007 RightHand Technologies, Inc. |
| 12 | * Copyright (C) 2008 Darius Augulis <darius.augulis at teltonika.lt> |
| 13 | * |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 14 | */ |
| 15 | |
| 16 | #include <common.h> |
Liu Hui-R64343 | 447beb1 | 2011-01-03 22:27:39 +0000 | [diff] [blame] | 17 | #include <asm/arch/clock.h> |
Stefano Babic | 78129d9 | 2011-03-14 15:43:56 +0100 | [diff] [blame] | 18 | #include <asm/arch/imx-regs.h> |
Masahiro Yamada | 56a931c | 2016-09-21 11:28:55 +0900 | [diff] [blame] | 19 | #include <linux/errno.h> |
Stefano Babic | 33731bc | 2017-06-29 10:16:06 +0200 | [diff] [blame] | 20 | #include <asm/mach-imx/mxc_i2c.h> |
Troy Kisky | 2254b7f | 2012-07-19 08:18:03 +0000 | [diff] [blame] | 21 | #include <asm/io.h> |
Marek Vasut | 5f1291e | 2011-10-26 00:05:44 +0000 | [diff] [blame] | 22 | #include <i2c.h> |
Troy Kisky | f024a3b | 2012-07-19 08:18:09 +0000 | [diff] [blame] | 23 | #include <watchdog.h> |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 24 | #include <dm.h> |
Peng Fan | 4f1a581 | 2016-03-11 16:47:50 +0800 | [diff] [blame] | 25 | #include <dm/pinctrl.h> |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 26 | #include <fdtdec.h> |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 27 | |
York Sun | a4c0266 | 2014-02-10 14:02:52 -0800 | [diff] [blame] | 28 | DECLARE_GLOBAL_DATA_PTR; |
| 29 | |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 30 | #define I2C_QUIRK_FLAG (1 << 0) |
| 31 | |
| 32 | #define IMX_I2C_REGSHIFT 2 |
| 33 | #define VF610_I2C_REGSHIFT 0 |
Yuan Yao | d40c885 | 2016-06-08 18:24:51 +0800 | [diff] [blame] | 34 | |
| 35 | #define I2C_EARLY_INIT_INDEX 0 |
| 36 | #ifdef CONFIG_SYS_I2C_IFDR_DIV |
| 37 | #define I2C_IFDR_DIV_CONSERVATIVE CONFIG_SYS_I2C_IFDR_DIV |
| 38 | #else |
| 39 | #define I2C_IFDR_DIV_CONSERVATIVE 0x7e |
| 40 | #endif |
| 41 | |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 42 | /* Register index */ |
| 43 | #define IADR 0 |
| 44 | #define IFDR 1 |
| 45 | #define I2CR 2 |
| 46 | #define I2SR 3 |
| 47 | #define I2DR 4 |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 48 | |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 49 | #define I2CR_IIEN (1 << 6) |
| 50 | #define I2CR_MSTA (1 << 5) |
| 51 | #define I2CR_MTX (1 << 4) |
| 52 | #define I2CR_TX_NO_AK (1 << 3) |
| 53 | #define I2CR_RSTA (1 << 2) |
| 54 | |
| 55 | #define I2SR_ICF (1 << 7) |
| 56 | #define I2SR_IBB (1 << 5) |
Troy Kisky | 8ff683a | 2012-07-19 08:18:15 +0000 | [diff] [blame] | 57 | #define I2SR_IAL (1 << 4) |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 58 | #define I2SR_IIF (1 << 1) |
| 59 | #define I2SR_RX_NO_AK (1 << 0) |
| 60 | |
Alison Wang | cf50800 | 2013-06-17 15:30:39 +0800 | [diff] [blame] | 61 | #ifdef I2C_QUIRK_REG |
| 62 | #define I2CR_IEN (0 << 7) |
| 63 | #define I2CR_IDIS (1 << 7) |
| 64 | #define I2SR_IIF_CLEAR (1 << 1) |
| 65 | #else |
| 66 | #define I2CR_IEN (1 << 7) |
| 67 | #define I2CR_IDIS (0 << 7) |
| 68 | #define I2SR_IIF_CLEAR (0 << 1) |
| 69 | #endif |
| 70 | |
Alison Wang | cf50800 | 2013-06-17 15:30:39 +0800 | [diff] [blame] | 71 | #ifdef I2C_QUIRK_REG |
| 72 | static u16 i2c_clk_div[60][2] = { |
| 73 | { 20, 0x00 }, { 22, 0x01 }, { 24, 0x02 }, { 26, 0x03 }, |
| 74 | { 28, 0x04 }, { 30, 0x05 }, { 32, 0x09 }, { 34, 0x06 }, |
| 75 | { 36, 0x0A }, { 40, 0x07 }, { 44, 0x0C }, { 48, 0x0D }, |
| 76 | { 52, 0x43 }, { 56, 0x0E }, { 60, 0x45 }, { 64, 0x12 }, |
| 77 | { 68, 0x0F }, { 72, 0x13 }, { 80, 0x14 }, { 88, 0x15 }, |
| 78 | { 96, 0x19 }, { 104, 0x16 }, { 112, 0x1A }, { 128, 0x17 }, |
| 79 | { 136, 0x4F }, { 144, 0x1C }, { 160, 0x1D }, { 176, 0x55 }, |
| 80 | { 192, 0x1E }, { 208, 0x56 }, { 224, 0x22 }, { 228, 0x24 }, |
| 81 | { 240, 0x1F }, { 256, 0x23 }, { 288, 0x5C }, { 320, 0x25 }, |
| 82 | { 384, 0x26 }, { 448, 0x2A }, { 480, 0x27 }, { 512, 0x2B }, |
| 83 | { 576, 0x2C }, { 640, 0x2D }, { 768, 0x31 }, { 896, 0x32 }, |
| 84 | { 960, 0x2F }, { 1024, 0x33 }, { 1152, 0x34 }, { 1280, 0x35 }, |
| 85 | { 1536, 0x36 }, { 1792, 0x3A }, { 1920, 0x37 }, { 2048, 0x3B }, |
| 86 | { 2304, 0x3C }, { 2560, 0x3D }, { 3072, 0x3E }, { 3584, 0x7A }, |
| 87 | { 3840, 0x3F }, { 4096, 0x7B }, { 5120, 0x7D }, { 6144, 0x7E }, |
| 88 | }; |
| 89 | #else |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 90 | static u16 i2c_clk_div[50][2] = { |
| 91 | { 22, 0x20 }, { 24, 0x21 }, { 26, 0x22 }, { 28, 0x23 }, |
| 92 | { 30, 0x00 }, { 32, 0x24 }, { 36, 0x25 }, { 40, 0x26 }, |
| 93 | { 42, 0x03 }, { 44, 0x27 }, { 48, 0x28 }, { 52, 0x05 }, |
| 94 | { 56, 0x29 }, { 60, 0x06 }, { 64, 0x2A }, { 72, 0x2B }, |
| 95 | { 80, 0x2C }, { 88, 0x09 }, { 96, 0x2D }, { 104, 0x0A }, |
| 96 | { 112, 0x2E }, { 128, 0x2F }, { 144, 0x0C }, { 160, 0x30 }, |
| 97 | { 192, 0x31 }, { 224, 0x32 }, { 240, 0x0F }, { 256, 0x33 }, |
| 98 | { 288, 0x10 }, { 320, 0x34 }, { 384, 0x35 }, { 448, 0x36 }, |
| 99 | { 480, 0x13 }, { 512, 0x37 }, { 576, 0x14 }, { 640, 0x38 }, |
| 100 | { 768, 0x39 }, { 896, 0x3A }, { 960, 0x17 }, { 1024, 0x3B }, |
| 101 | { 1152, 0x18 }, { 1280, 0x3C }, { 1536, 0x3D }, { 1792, 0x3E }, |
| 102 | { 1920, 0x1B }, { 2048, 0x3F }, { 2304, 0x1C }, { 2560, 0x1D }, |
| 103 | { 3072, 0x1E }, { 3840, 0x1F } |
| 104 | }; |
Alison Wang | cf50800 | 2013-06-17 15:30:39 +0800 | [diff] [blame] | 105 | #endif |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 106 | |
trem | a49f40a | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 107 | #ifndef CONFIG_SYS_MXC_I2C1_SPEED |
| 108 | #define CONFIG_SYS_MXC_I2C1_SPEED 100000 |
| 109 | #endif |
| 110 | #ifndef CONFIG_SYS_MXC_I2C2_SPEED |
| 111 | #define CONFIG_SYS_MXC_I2C2_SPEED 100000 |
| 112 | #endif |
| 113 | #ifndef CONFIG_SYS_MXC_I2C3_SPEED |
| 114 | #define CONFIG_SYS_MXC_I2C3_SPEED 100000 |
| 115 | #endif |
York Sun | f1a5216 | 2015-03-20 10:20:40 -0700 | [diff] [blame] | 116 | #ifndef CONFIG_SYS_MXC_I2C4_SPEED |
| 117 | #define CONFIG_SYS_MXC_I2C4_SPEED 100000 |
| 118 | #endif |
trem | a49f40a | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 119 | |
| 120 | #ifndef CONFIG_SYS_MXC_I2C1_SLAVE |
| 121 | #define CONFIG_SYS_MXC_I2C1_SLAVE 0 |
| 122 | #endif |
| 123 | #ifndef CONFIG_SYS_MXC_I2C2_SLAVE |
| 124 | #define CONFIG_SYS_MXC_I2C2_SLAVE 0 |
| 125 | #endif |
| 126 | #ifndef CONFIG_SYS_MXC_I2C3_SLAVE |
| 127 | #define CONFIG_SYS_MXC_I2C3_SLAVE 0 |
| 128 | #endif |
York Sun | f1a5216 | 2015-03-20 10:20:40 -0700 | [diff] [blame] | 129 | #ifndef CONFIG_SYS_MXC_I2C4_SLAVE |
| 130 | #define CONFIG_SYS_MXC_I2C4_SLAVE 0 |
| 131 | #endif |
trem | a49f40a | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 132 | |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 133 | /* |
| 134 | * Calculate and set proper clock divider |
| 135 | */ |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 136 | static uint8_t i2c_imx_get_clk(struct mxc_i2c_bus *i2c_bus, unsigned int rate) |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 137 | { |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 138 | unsigned int i2c_clk_rate; |
| 139 | unsigned int div; |
Marek Vasut | 5f1291e | 2011-10-26 00:05:44 +0000 | [diff] [blame] | 140 | u8 clk_div; |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 141 | |
Liu Hui-R64343 | 447beb1 | 2011-01-03 22:27:39 +0000 | [diff] [blame] | 142 | #if defined(CONFIG_MX31) |
Stefano Babic | 2212172 | 2011-01-20 07:50:44 +0000 | [diff] [blame] | 143 | struct clock_control_regs *sc_regs = |
| 144 | (struct clock_control_regs *)CCM_BASE; |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 145 | |
Guennadi Liakhovetski | 3314fc6 | 2009-02-13 09:23:36 +0100 | [diff] [blame] | 146 | /* start the required I2C clock */ |
Troy Kisky | 8462c63 | 2012-04-24 17:33:25 +0000 | [diff] [blame] | 147 | writel(readl(&sc_regs->cgr0) | (3 << CONFIG_SYS_I2C_CLK_OFFSET), |
Stefano Babic | 2212172 | 2011-01-20 07:50:44 +0000 | [diff] [blame] | 148 | &sc_regs->cgr0); |
Liu Hui-R64343 | 447beb1 | 2011-01-03 22:27:39 +0000 | [diff] [blame] | 149 | #endif |
Guennadi Liakhovetski | 3314fc6 | 2009-02-13 09:23:36 +0100 | [diff] [blame] | 150 | |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 151 | /* Divider value calculation */ |
Matthias Weisser | 99ba342 | 2012-09-24 02:46:53 +0000 | [diff] [blame] | 152 | i2c_clk_rate = mxc_get_clock(MXC_I2C_CLK); |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 153 | div = (i2c_clk_rate + rate - 1) / rate; |
| 154 | if (div < i2c_clk_div[0][0]) |
Marek Vasut | 4f27444 | 2011-09-27 06:34:11 +0000 | [diff] [blame] | 155 | clk_div = 0; |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 156 | else if (div > i2c_clk_div[ARRAY_SIZE(i2c_clk_div) - 1][0]) |
Marek Vasut | 4f27444 | 2011-09-27 06:34:11 +0000 | [diff] [blame] | 157 | clk_div = ARRAY_SIZE(i2c_clk_div) - 1; |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 158 | else |
Marek Vasut | 4f27444 | 2011-09-27 06:34:11 +0000 | [diff] [blame] | 159 | for (clk_div = 0; i2c_clk_div[clk_div][0] < div; clk_div++) |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 160 | ; |
| 161 | |
| 162 | /* Store divider value */ |
Marek Vasut | 5f1291e | 2011-10-26 00:05:44 +0000 | [diff] [blame] | 163 | return clk_div; |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 164 | } |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 165 | |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 166 | /* |
Troy Kisky | ae44760 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 167 | * Set I2C Bus speed |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 168 | */ |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 169 | static int bus_i2c_set_bus_speed(struct mxc_i2c_bus *i2c_bus, int speed) |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 170 | { |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 171 | ulong base = i2c_bus->base; |
| 172 | bool quirk = i2c_bus->driver_data & I2C_QUIRK_FLAG ? true : false; |
| 173 | u8 clk_idx = i2c_imx_get_clk(i2c_bus, speed); |
Marek Vasut | 5f1291e | 2011-10-26 00:05:44 +0000 | [diff] [blame] | 174 | u8 idx = i2c_clk_div[clk_idx][1]; |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 175 | int reg_shift = quirk ? VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT; |
Marek Vasut | 5f1291e | 2011-10-26 00:05:44 +0000 | [diff] [blame] | 176 | |
Heiko Schocher | 24ebcf2 | 2015-05-18 10:58:12 +0200 | [diff] [blame] | 177 | if (!base) |
Simon Glass | f44b4bf | 2017-09-17 16:54:53 -0600 | [diff] [blame] | 178 | return -EINVAL; |
Heiko Schocher | 24ebcf2 | 2015-05-18 10:58:12 +0200 | [diff] [blame] | 179 | |
Marek Vasut | 5f1291e | 2011-10-26 00:05:44 +0000 | [diff] [blame] | 180 | /* Store divider value */ |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 181 | writeb(idx, base + (IFDR << reg_shift)); |
Marek Vasut | 5f1291e | 2011-10-26 00:05:44 +0000 | [diff] [blame] | 182 | |
Troy Kisky | e6fa4d7 | 2012-07-19 08:18:12 +0000 | [diff] [blame] | 183 | /* Reset module */ |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 184 | writeb(I2CR_IDIS, base + (I2CR << reg_shift)); |
| 185 | writeb(0, base + (I2SR << reg_shift)); |
Marek Vasut | 4f27444 | 2011-09-27 06:34:11 +0000 | [diff] [blame] | 186 | return 0; |
| 187 | } |
| 188 | |
Troy Kisky | f024a3b | 2012-07-19 08:18:09 +0000 | [diff] [blame] | 189 | #define ST_BUS_IDLE (0 | (I2SR_IBB << 8)) |
| 190 | #define ST_BUS_BUSY (I2SR_IBB | (I2SR_IBB << 8)) |
| 191 | #define ST_IIF (I2SR_IIF | (I2SR_IIF << 8)) |
Stefano Babic | 848bb99 | 2011-01-20 07:51:31 +0000 | [diff] [blame] | 192 | |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 193 | static int wait_for_sr_state(struct mxc_i2c_bus *i2c_bus, unsigned state) |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 194 | { |
Troy Kisky | f024a3b | 2012-07-19 08:18:09 +0000 | [diff] [blame] | 195 | unsigned sr; |
| 196 | ulong elapsed; |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 197 | bool quirk = i2c_bus->driver_data & I2C_QUIRK_FLAG ? true : false; |
| 198 | int reg_shift = quirk ? VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT; |
| 199 | ulong base = i2c_bus->base; |
Troy Kisky | f024a3b | 2012-07-19 08:18:09 +0000 | [diff] [blame] | 200 | ulong start_time = get_timer(0); |
| 201 | for (;;) { |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 202 | sr = readb(base + (I2SR << reg_shift)); |
Troy Kisky | 8ff683a | 2012-07-19 08:18:15 +0000 | [diff] [blame] | 203 | if (sr & I2SR_IAL) { |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 204 | if (quirk) |
| 205 | writeb(sr | I2SR_IAL, base + |
| 206 | (I2SR << reg_shift)); |
| 207 | else |
| 208 | writeb(sr & ~I2SR_IAL, base + |
| 209 | (I2SR << reg_shift)); |
Troy Kisky | 8ff683a | 2012-07-19 08:18:15 +0000 | [diff] [blame] | 210 | printf("%s: Arbitration lost sr=%x cr=%x state=%x\n", |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 211 | __func__, sr, readb(base + (I2CR << reg_shift)), |
| 212 | state); |
Troy Kisky | 8ff683a | 2012-07-19 08:18:15 +0000 | [diff] [blame] | 213 | return -ERESTART; |
| 214 | } |
Troy Kisky | f024a3b | 2012-07-19 08:18:09 +0000 | [diff] [blame] | 215 | if ((sr & (state >> 8)) == (unsigned char)state) |
| 216 | return sr; |
| 217 | WATCHDOG_RESET(); |
| 218 | elapsed = get_timer(start_time); |
| 219 | if (elapsed > (CONFIG_SYS_HZ / 10)) /* .1 seconds */ |
| 220 | break; |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 221 | } |
Troy Kisky | f024a3b | 2012-07-19 08:18:09 +0000 | [diff] [blame] | 222 | printf("%s: failed sr=%x cr=%x state=%x\n", __func__, |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 223 | sr, readb(base + (I2CR << reg_shift)), state); |
Troy Kisky | 752ac8f | 2012-07-19 08:18:04 +0000 | [diff] [blame] | 224 | return -ETIMEDOUT; |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 225 | } |
| 226 | |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 227 | static int tx_byte(struct mxc_i2c_bus *i2c_bus, u8 byte) |
Stefano Babic | 848bb99 | 2011-01-20 07:51:31 +0000 | [diff] [blame] | 228 | { |
Troy Kisky | 752ac8f | 2012-07-19 08:18:04 +0000 | [diff] [blame] | 229 | int ret; |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 230 | int reg_shift = i2c_bus->driver_data & I2C_QUIRK_FLAG ? |
| 231 | VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT; |
| 232 | ulong base = i2c_bus->base; |
Stefano Babic | 848bb99 | 2011-01-20 07:51:31 +0000 | [diff] [blame] | 233 | |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 234 | writeb(I2SR_IIF_CLEAR, base + (I2SR << reg_shift)); |
| 235 | writeb(byte, base + (I2DR << reg_shift)); |
| 236 | |
| 237 | ret = wait_for_sr_state(i2c_bus, ST_IIF); |
Troy Kisky | 752ac8f | 2012-07-19 08:18:04 +0000 | [diff] [blame] | 238 | if (ret < 0) |
| 239 | return ret; |
Troy Kisky | 752ac8f | 2012-07-19 08:18:04 +0000 | [diff] [blame] | 240 | if (ret & I2SR_RX_NO_AK) |
Simon Glass | f44b4bf | 2017-09-17 16:54:53 -0600 | [diff] [blame] | 241 | return -EREMOTEIO; |
Troy Kisky | 752ac8f | 2012-07-19 08:18:04 +0000 | [diff] [blame] | 242 | return 0; |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 243 | } |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 244 | |
| 245 | /* |
| 246 | * Stub implementations for outer i2c slave operations. |
| 247 | */ |
| 248 | void __i2c_force_reset_slave(void) |
| 249 | { |
| 250 | } |
| 251 | void i2c_force_reset_slave(void) |
| 252 | __attribute__((weak, alias("__i2c_force_reset_slave"))); |
Stefano Babic | 848bb99 | 2011-01-20 07:51:31 +0000 | [diff] [blame] | 253 | |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 254 | /* |
Troy Kisky | fef163f | 2012-07-19 08:18:13 +0000 | [diff] [blame] | 255 | * Stop I2C transaction |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 256 | */ |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 257 | static void i2c_imx_stop(struct mxc_i2c_bus *i2c_bus) |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 258 | { |
Troy Kisky | f024a3b | 2012-07-19 08:18:09 +0000 | [diff] [blame] | 259 | int ret; |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 260 | int reg_shift = i2c_bus->driver_data & I2C_QUIRK_FLAG ? |
| 261 | VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT; |
| 262 | ulong base = i2c_bus->base; |
| 263 | unsigned int temp = readb(base + (I2CR << reg_shift)); |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 264 | |
Troy Kisky | 1ac1e45 | 2012-07-19 08:18:02 +0000 | [diff] [blame] | 265 | temp &= ~(I2CR_MSTA | I2CR_MTX); |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 266 | writeb(temp, base + (I2CR << reg_shift)); |
| 267 | ret = wait_for_sr_state(i2c_bus, ST_BUS_IDLE); |
Troy Kisky | f024a3b | 2012-07-19 08:18:09 +0000 | [diff] [blame] | 268 | if (ret < 0) |
| 269 | printf("%s:trigger stop failed\n", __func__); |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 270 | } |
| 271 | |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 272 | /* |
Troy Kisky | 14db6f2 | 2012-07-19 08:18:06 +0000 | [diff] [blame] | 273 | * Send start signal, chip address and |
| 274 | * write register address |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 275 | */ |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 276 | static int i2c_init_transfer_(struct mxc_i2c_bus *i2c_bus, u8 chip, |
| 277 | u32 addr, int alen) |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 278 | { |
Troy Kisky | a974bcc | 2012-07-19 08:18:11 +0000 | [diff] [blame] | 279 | unsigned int temp; |
| 280 | int ret; |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 281 | bool quirk = i2c_bus->driver_data & I2C_QUIRK_FLAG ? true : false; |
| 282 | ulong base = i2c_bus->base; |
| 283 | int reg_shift = quirk ? VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT; |
| 284 | |
| 285 | /* Reset i2c slave */ |
| 286 | i2c_force_reset_slave(); |
Troy Kisky | a974bcc | 2012-07-19 08:18:11 +0000 | [diff] [blame] | 287 | |
| 288 | /* Enable I2C controller */ |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 289 | if (quirk) |
| 290 | ret = readb(base + (I2CR << reg_shift)) & I2CR_IDIS; |
| 291 | else |
| 292 | ret = !(readb(base + (I2CR << reg_shift)) & I2CR_IEN); |
| 293 | |
| 294 | if (ret) { |
| 295 | writeb(I2CR_IEN, base + (I2CR << reg_shift)); |
Troy Kisky | fef163f | 2012-07-19 08:18:13 +0000 | [diff] [blame] | 296 | /* Wait for controller to be stable */ |
| 297 | udelay(50); |
| 298 | } |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 299 | |
| 300 | if (readb(base + (IADR << reg_shift)) == (chip << 1)) |
| 301 | writeb((chip << 1) ^ 2, base + (IADR << reg_shift)); |
| 302 | writeb(I2SR_IIF_CLEAR, base + (I2SR << reg_shift)); |
| 303 | ret = wait_for_sr_state(i2c_bus, ST_BUS_IDLE); |
Troy Kisky | fef163f | 2012-07-19 08:18:13 +0000 | [diff] [blame] | 304 | if (ret < 0) |
Troy Kisky | eca037a | 2012-07-19 08:18:16 +0000 | [diff] [blame] | 305 | return ret; |
Troy Kisky | a974bcc | 2012-07-19 08:18:11 +0000 | [diff] [blame] | 306 | |
| 307 | /* Start I2C transaction */ |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 308 | temp = readb(base + (I2CR << reg_shift)); |
Troy Kisky | a974bcc | 2012-07-19 08:18:11 +0000 | [diff] [blame] | 309 | temp |= I2CR_MSTA; |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 310 | writeb(temp, base + (I2CR << reg_shift)); |
Troy Kisky | a974bcc | 2012-07-19 08:18:11 +0000 | [diff] [blame] | 311 | |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 312 | ret = wait_for_sr_state(i2c_bus, ST_BUS_BUSY); |
Troy Kisky | a974bcc | 2012-07-19 08:18:11 +0000 | [diff] [blame] | 313 | if (ret < 0) |
Troy Kisky | eca037a | 2012-07-19 08:18:16 +0000 | [diff] [blame] | 314 | return ret; |
Troy Kisky | 14db6f2 | 2012-07-19 08:18:06 +0000 | [diff] [blame] | 315 | |
Troy Kisky | a974bcc | 2012-07-19 08:18:11 +0000 | [diff] [blame] | 316 | temp |= I2CR_MTX | I2CR_TX_NO_AK; |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 317 | writeb(temp, base + (I2CR << reg_shift)); |
Troy Kisky | a974bcc | 2012-07-19 08:18:11 +0000 | [diff] [blame] | 318 | |
Nandor Han | a51f9da | 2017-11-08 15:35:09 +0000 | [diff] [blame] | 319 | if (alen >= 0) { |
| 320 | /* write slave address */ |
| 321 | ret = tx_byte(i2c_bus, chip << 1); |
Troy Kisky | 752ac8f | 2012-07-19 08:18:04 +0000 | [diff] [blame] | 322 | if (ret < 0) |
Troy Kisky | eca037a | 2012-07-19 08:18:16 +0000 | [diff] [blame] | 323 | return ret; |
Nandor Han | a51f9da | 2017-11-08 15:35:09 +0000 | [diff] [blame] | 324 | |
| 325 | while (alen--) { |
| 326 | ret = tx_byte(i2c_bus, (addr >> (alen * 8)) & 0xff); |
| 327 | if (ret < 0) |
| 328 | return ret; |
| 329 | } |
Stefano Babic | 848bb99 | 2011-01-20 07:51:31 +0000 | [diff] [blame] | 330 | } |
Nandor Han | a51f9da | 2017-11-08 15:35:09 +0000 | [diff] [blame] | 331 | |
Troy Kisky | 14db6f2 | 2012-07-19 08:18:06 +0000 | [diff] [blame] | 332 | return 0; |
Troy Kisky | eca037a | 2012-07-19 08:18:16 +0000 | [diff] [blame] | 333 | } |
| 334 | |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 335 | #ifndef CONFIG_DM_I2C |
| 336 | int i2c_idle_bus(struct mxc_i2c_bus *i2c_bus) |
| 337 | { |
| 338 | if (i2c_bus && i2c_bus->idle_bus_fn) |
| 339 | return i2c_bus->idle_bus_fn(i2c_bus->idle_bus_data); |
| 340 | return 0; |
| 341 | } |
| 342 | #else |
| 343 | /* |
Peng Fan | 4f1a581 | 2016-03-11 16:47:50 +0800 | [diff] [blame] | 344 | * See Linux Documentation/devicetree/bindings/i2c/i2c-imx.txt |
| 345 | * " |
| 346 | * scl-gpios: specify the gpio related to SCL pin |
| 347 | * sda-gpios: specify the gpio related to SDA pin |
| 348 | * add pinctrl to configure i2c pins to gpio function for i2c |
| 349 | * bus recovery, call it "gpio" state |
| 350 | * " |
| 351 | * |
| 352 | * The i2c_idle_bus is an implementation following Linux Kernel. |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 353 | */ |
Peng Fan | 4f1a581 | 2016-03-11 16:47:50 +0800 | [diff] [blame] | 354 | int i2c_idle_bus(struct mxc_i2c_bus *i2c_bus) |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 355 | { |
Peng Fan | 4f1a581 | 2016-03-11 16:47:50 +0800 | [diff] [blame] | 356 | struct udevice *bus = i2c_bus->bus; |
Lukasz Majewski | bc9aad6 | 2019-04-04 12:35:34 +0200 | [diff] [blame] | 357 | struct dm_i2c_bus *i2c = dev_get_uclass_priv(bus); |
Peng Fan | 4f1a581 | 2016-03-11 16:47:50 +0800 | [diff] [blame] | 358 | struct gpio_desc *scl_gpio = &i2c_bus->scl_gpio; |
| 359 | struct gpio_desc *sda_gpio = &i2c_bus->sda_gpio; |
Lukasz Majewski | bc9aad6 | 2019-04-04 12:35:34 +0200 | [diff] [blame] | 360 | int sda, scl, idle_sclks; |
Peng Fan | 4f1a581 | 2016-03-11 16:47:50 +0800 | [diff] [blame] | 361 | int i, ret = 0; |
| 362 | ulong elapsed, start_time; |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 363 | |
Peng Fan | 4f1a581 | 2016-03-11 16:47:50 +0800 | [diff] [blame] | 364 | if (pinctrl_select_state(bus, "gpio")) { |
| 365 | dev_dbg(bus, "Can not to switch to use gpio pinmux\n"); |
| 366 | /* |
| 367 | * GPIO pinctrl for i2c force idle is not a must, |
| 368 | * but it is strongly recommended to be used. |
| 369 | * Because it can help you to recover from bad |
| 370 | * i2c bus state. Do not return failure, because |
| 371 | * it is not a must. |
| 372 | */ |
| 373 | return 0; |
| 374 | } |
| 375 | |
| 376 | dm_gpio_set_dir_flags(scl_gpio, GPIOD_IS_IN); |
| 377 | dm_gpio_set_dir_flags(sda_gpio, GPIOD_IS_IN); |
| 378 | scl = dm_gpio_get_value(scl_gpio); |
| 379 | sda = dm_gpio_get_value(sda_gpio); |
| 380 | |
| 381 | if ((sda & scl) == 1) |
| 382 | goto exit; /* Bus is idle already */ |
| 383 | |
Lukasz Majewski | bc9aad6 | 2019-04-04 12:35:34 +0200 | [diff] [blame] | 384 | /* |
| 385 | * In most cases it is just enough to generate 8 + 1 SCLK |
| 386 | * clocks to recover I2C slave device from 'stuck' state |
| 387 | * (when for example SW reset was performed, in the middle of |
| 388 | * I2C transmission). |
| 389 | * |
| 390 | * However, there are devices which send data in packets of |
| 391 | * N bytes (N > 1). In such case we do need N * 8 + 1 SCLK |
| 392 | * clocks. |
| 393 | */ |
| 394 | idle_sclks = 8 + 1; |
| 395 | |
| 396 | if (i2c->max_transaction_bytes > 0) |
| 397 | idle_sclks = i2c->max_transaction_bytes * 8 + 1; |
Peng Fan | 4f1a581 | 2016-03-11 16:47:50 +0800 | [diff] [blame] | 398 | /* Send high and low on the SCL line */ |
Lukasz Majewski | bc9aad6 | 2019-04-04 12:35:34 +0200 | [diff] [blame] | 399 | for (i = 0; i < idle_sclks; i++) { |
Peng Fan | 4f1a581 | 2016-03-11 16:47:50 +0800 | [diff] [blame] | 400 | dm_gpio_set_dir_flags(scl_gpio, GPIOD_IS_OUT); |
| 401 | dm_gpio_set_value(scl_gpio, 0); |
| 402 | udelay(50); |
| 403 | dm_gpio_set_dir_flags(scl_gpio, GPIOD_IS_IN); |
| 404 | udelay(50); |
| 405 | } |
| 406 | start_time = get_timer(0); |
| 407 | for (;;) { |
| 408 | dm_gpio_set_dir_flags(scl_gpio, GPIOD_IS_IN); |
| 409 | dm_gpio_set_dir_flags(sda_gpio, GPIOD_IS_IN); |
| 410 | scl = dm_gpio_get_value(scl_gpio); |
| 411 | sda = dm_gpio_get_value(sda_gpio); |
| 412 | if ((sda & scl) == 1) |
| 413 | break; |
| 414 | WATCHDOG_RESET(); |
| 415 | elapsed = get_timer(start_time); |
| 416 | if (elapsed > (CONFIG_SYS_HZ / 5)) { /* .2 seconds */ |
| 417 | ret = -EBUSY; |
| 418 | printf("%s: failed to clear bus, sda=%d scl=%d\n", __func__, sda, scl); |
| 419 | break; |
| 420 | } |
| 421 | } |
| 422 | |
| 423 | exit: |
| 424 | pinctrl_select_state(bus, "default"); |
| 425 | return ret; |
| 426 | } |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 427 | #endif |
Troy Kisky | a23ab22 | 2012-07-19 08:18:19 +0000 | [diff] [blame] | 428 | |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 429 | static int i2c_init_transfer(struct mxc_i2c_bus *i2c_bus, u8 chip, |
| 430 | u32 addr, int alen) |
Troy Kisky | eca037a | 2012-07-19 08:18:16 +0000 | [diff] [blame] | 431 | { |
| 432 | int retry; |
| 433 | int ret; |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 434 | int reg_shift = i2c_bus->driver_data & I2C_QUIRK_FLAG ? |
| 435 | VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT; |
Heiko Schocher | 24ebcf2 | 2015-05-18 10:58:12 +0200 | [diff] [blame] | 436 | |
| 437 | if (!i2c_bus->base) |
Simon Glass | f44b4bf | 2017-09-17 16:54:53 -0600 | [diff] [blame] | 438 | return -EINVAL; |
Heiko Schocher | 24ebcf2 | 2015-05-18 10:58:12 +0200 | [diff] [blame] | 439 | |
Troy Kisky | eca037a | 2012-07-19 08:18:16 +0000 | [diff] [blame] | 440 | for (retry = 0; retry < 3; retry++) { |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 441 | ret = i2c_init_transfer_(i2c_bus, chip, addr, alen); |
Troy Kisky | eca037a | 2012-07-19 08:18:16 +0000 | [diff] [blame] | 442 | if (ret >= 0) |
| 443 | return 0; |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 444 | i2c_imx_stop(i2c_bus); |
Simon Glass | f44b4bf | 2017-09-17 16:54:53 -0600 | [diff] [blame] | 445 | if (ret == -EREMOTEIO) |
Troy Kisky | eca037a | 2012-07-19 08:18:16 +0000 | [diff] [blame] | 446 | return ret; |
| 447 | |
| 448 | printf("%s: failed for chip 0x%x retry=%d\n", __func__, chip, |
| 449 | retry); |
| 450 | if (ret != -ERESTART) |
Alison Wang | cf50800 | 2013-06-17 15:30:39 +0800 | [diff] [blame] | 451 | /* Disable controller */ |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 452 | writeb(I2CR_IDIS, i2c_bus->base + (I2CR << reg_shift)); |
Troy Kisky | eca037a | 2012-07-19 08:18:16 +0000 | [diff] [blame] | 453 | udelay(100); |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 454 | if (i2c_idle_bus(i2c_bus) < 0) |
Troy Kisky | a23ab22 | 2012-07-19 08:18:19 +0000 | [diff] [blame] | 455 | break; |
Troy Kisky | eca037a | 2012-07-19 08:18:16 +0000 | [diff] [blame] | 456 | } |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 457 | printf("%s: give up i2c_regs=0x%lx\n", __func__, i2c_bus->base); |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 458 | return ret; |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 459 | } |
| 460 | |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 461 | |
| 462 | static int i2c_write_data(struct mxc_i2c_bus *i2c_bus, u8 chip, const u8 *buf, |
| 463 | int len) |
| 464 | { |
| 465 | int i, ret = 0; |
| 466 | |
| 467 | debug("i2c_write_data: chip=0x%x, len=0x%x\n", chip, len); |
| 468 | debug("write_data: "); |
| 469 | /* use rc for counter */ |
| 470 | for (i = 0; i < len; ++i) |
| 471 | debug(" 0x%02x", buf[i]); |
| 472 | debug("\n"); |
| 473 | |
| 474 | for (i = 0; i < len; i++) { |
| 475 | ret = tx_byte(i2c_bus, buf[i]); |
| 476 | if (ret < 0) { |
| 477 | debug("i2c_write_data(): rc=%d\n", ret); |
| 478 | break; |
| 479 | } |
| 480 | } |
| 481 | |
| 482 | return ret; |
| 483 | } |
| 484 | |
Trent Piepho | 9c896a9 | 2019-04-30 16:08:19 +0000 | [diff] [blame] | 485 | /* Will generate a STOP after the last byte if "last" is true, i.e. this is the |
| 486 | * final message of a transaction. If not, it switches the bus back to TX mode |
| 487 | * and does not send a STOP, leaving the bus in a state where a repeated start |
| 488 | * and address can be sent for another message. |
| 489 | */ |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 490 | static int i2c_read_data(struct mxc_i2c_bus *i2c_bus, uchar chip, uchar *buf, |
Trent Piepho | 9c896a9 | 2019-04-30 16:08:19 +0000 | [diff] [blame] | 491 | int len, bool last) |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 492 | { |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 493 | int ret; |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 494 | unsigned int temp; |
| 495 | int i; |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 496 | int reg_shift = i2c_bus->driver_data & I2C_QUIRK_FLAG ? |
| 497 | VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT; |
| 498 | ulong base = i2c_bus->base; |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 499 | |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 500 | debug("i2c_read_data: chip=0x%x, len=0x%x\n", chip, len); |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 501 | |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 502 | /* setup bus to read data */ |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 503 | temp = readb(base + (I2CR << reg_shift)); |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 504 | temp &= ~(I2CR_MTX | I2CR_TX_NO_AK); |
| 505 | if (len == 1) |
| 506 | temp |= I2CR_TX_NO_AK; |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 507 | writeb(temp, base + (I2CR << reg_shift)); |
| 508 | writeb(I2SR_IIF_CLEAR, base + (I2SR << reg_shift)); |
| 509 | /* dummy read to clear ICF */ |
| 510 | readb(base + (I2DR << reg_shift)); |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 511 | |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 512 | /* read data */ |
| 513 | for (i = 0; i < len; i++) { |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 514 | ret = wait_for_sr_state(i2c_bus, ST_IIF); |
Troy Kisky | f024a3b | 2012-07-19 08:18:09 +0000 | [diff] [blame] | 515 | if (ret < 0) { |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 516 | debug("i2c_read_data(): ret=%d\n", ret); |
| 517 | i2c_imx_stop(i2c_bus); |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 518 | return ret; |
Troy Kisky | 0ce898d | 2012-07-19 08:18:07 +0000 | [diff] [blame] | 519 | } |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 520 | |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 521 | if (i == (len - 1)) { |
Trent Piepho | 9c896a9 | 2019-04-30 16:08:19 +0000 | [diff] [blame] | 522 | /* Final byte has already been received by master! When |
| 523 | * we read it from I2DR, the master will start another |
| 524 | * cycle. We must program it first to send a STOP or |
| 525 | * switch to TX to avoid this. |
| 526 | */ |
| 527 | if (last) { |
| 528 | i2c_imx_stop(i2c_bus); |
| 529 | } else { |
| 530 | /* Final read, no stop, switch back to tx */ |
| 531 | temp = readb(base + (I2CR << reg_shift)); |
| 532 | temp |= I2CR_MTX | I2CR_TX_NO_AK; |
| 533 | writeb(temp, base + (I2CR << reg_shift)); |
| 534 | } |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 535 | } else if (i == (len - 2)) { |
Trent Piepho | 9c896a9 | 2019-04-30 16:08:19 +0000 | [diff] [blame] | 536 | /* Master has already recevied penultimate byte. When |
| 537 | * we read it from I2DR, master will start RX of final |
| 538 | * byte. We must set TX_NO_AK now so it does not ACK |
| 539 | * that final byte. |
| 540 | */ |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 541 | temp = readb(base + (I2CR << reg_shift)); |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 542 | temp |= I2CR_TX_NO_AK; |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 543 | writeb(temp, base + (I2CR << reg_shift)); |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 544 | } |
Trent Piepho | 9c896a9 | 2019-04-30 16:08:19 +0000 | [diff] [blame] | 545 | |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 546 | writeb(I2SR_IIF_CLEAR, base + (I2SR << reg_shift)); |
| 547 | buf[i] = readb(base + (I2DR << reg_shift)); |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 548 | } |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 549 | |
| 550 | /* reuse ret for counter*/ |
| 551 | for (ret = 0; ret < len; ++ret) |
| 552 | debug(" 0x%02x", buf[ret]); |
| 553 | debug("\n"); |
| 554 | |
Trent Piepho | 9c896a9 | 2019-04-30 16:08:19 +0000 | [diff] [blame] | 555 | /* It is not clear to me that this is necessary */ |
| 556 | if (last) |
| 557 | i2c_imx_stop(i2c_bus); |
Troy Kisky | f024a3b | 2012-07-19 08:18:09 +0000 | [diff] [blame] | 558 | return 0; |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 559 | } |
| 560 | |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 561 | #ifndef CONFIG_DM_I2C |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 562 | /* |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 563 | * Read data from I2C device |
Trent Piepho | 15410ba | 2019-04-30 16:08:18 +0000 | [diff] [blame] | 564 | * |
| 565 | * The transactions use the syntax defined in the Linux kernel I2C docs. |
| 566 | * |
| 567 | * If alen is > 0, then this function will send a transaction of the form: |
| 568 | * S Chip Wr [A] Addr [A] S Chip Rd [A] [data] A ... NA P |
| 569 | * This is a normal I2C register read: writing the register address, then doing |
| 570 | * a repeated start and reading the data. |
| 571 | * |
| 572 | * If alen == 0, then we get this transaction: |
| 573 | * S Chip Wr [A] S Chip Rd [A] [data] A ... NA P |
| 574 | * This is somewhat unusual, though valid, transaction. It addresses the chip |
| 575 | * in write mode, but doesn't actually write any register address or data, then |
| 576 | * does a repeated start and reads data. |
| 577 | * |
| 578 | * If alen < 0, then we get this transaction: |
| 579 | * S Chip Rd [A] [data] A ... NA P |
| 580 | * The chip is addressed in read mode and then data is read. No register |
| 581 | * address is written first. This is perfectly valid on most devices and |
| 582 | * required on some (usually those that don't act like an array of registers). |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 583 | */ |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 584 | static int bus_i2c_read(struct mxc_i2c_bus *i2c_bus, u8 chip, u32 addr, |
| 585 | int alen, u8 *buf, int len) |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 586 | { |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 587 | int ret = 0; |
| 588 | u32 temp; |
| 589 | int reg_shift = i2c_bus->driver_data & I2C_QUIRK_FLAG ? |
| 590 | VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT; |
| 591 | ulong base = i2c_bus->base; |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 592 | |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 593 | ret = i2c_init_transfer(i2c_bus, chip, addr, alen); |
Troy Kisky | 752ac8f | 2012-07-19 08:18:04 +0000 | [diff] [blame] | 594 | if (ret < 0) |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 595 | return ret; |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 596 | |
Nandor Han | a51f9da | 2017-11-08 15:35:09 +0000 | [diff] [blame] | 597 | if (alen >= 0) { |
| 598 | temp = readb(base + (I2CR << reg_shift)); |
| 599 | temp |= I2CR_RSTA; |
| 600 | writeb(temp, base + (I2CR << reg_shift)); |
| 601 | } |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 602 | |
| 603 | ret = tx_byte(i2c_bus, (chip << 1) | 1); |
| 604 | if (ret < 0) { |
| 605 | i2c_imx_stop(i2c_bus); |
| 606 | return ret; |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 607 | } |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 608 | |
Trent Piepho | 9c896a9 | 2019-04-30 16:08:19 +0000 | [diff] [blame] | 609 | ret = i2c_read_data(i2c_bus, chip, buf, len, true); |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 610 | |
| 611 | i2c_imx_stop(i2c_bus); |
| 612 | return ret; |
| 613 | } |
| 614 | |
| 615 | /* |
| 616 | * Write data to I2C device |
Trent Piepho | 15410ba | 2019-04-30 16:08:18 +0000 | [diff] [blame] | 617 | * |
| 618 | * If alen > 0, we get this transaction: |
| 619 | * S Chip Wr [A] addr [A] data [A] ... [A] P |
| 620 | * An ordinary write register command. |
| 621 | * |
| 622 | * If alen == 0, then we get this: |
| 623 | * S Chip Wr [A] data [A] ... [A] P |
| 624 | * This is a simple I2C write. |
| 625 | * |
| 626 | * If alen < 0, then we get this: |
| 627 | * S data [A] ... [A] P |
| 628 | * This is most likely NOT something that should be used. It doesn't send the |
| 629 | * chip address first, so in effect, the first byte of data will be used as the |
| 630 | * address. |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 631 | */ |
| 632 | static int bus_i2c_write(struct mxc_i2c_bus *i2c_bus, u8 chip, u32 addr, |
| 633 | int alen, const u8 *buf, int len) |
| 634 | { |
| 635 | int ret = 0; |
| 636 | |
| 637 | ret = i2c_init_transfer(i2c_bus, chip, addr, alen); |
| 638 | if (ret < 0) |
| 639 | return ret; |
| 640 | |
| 641 | ret = i2c_write_data(i2c_bus, chip, buf, len); |
| 642 | |
| 643 | i2c_imx_stop(i2c_bus); |
| 644 | |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 645 | return ret; |
| 646 | } |
Troy Kisky | 321a42b | 2012-07-19 08:18:08 +0000 | [diff] [blame] | 647 | |
Heiko Schocher | 24ebcf2 | 2015-05-18 10:58:12 +0200 | [diff] [blame] | 648 | #if !defined(I2C2_BASE_ADDR) |
| 649 | #define I2C2_BASE_ADDR 0 |
Heiko Schocher | 5c4b1e9 | 2015-05-18 10:56:24 +0200 | [diff] [blame] | 650 | #endif |
Heiko Schocher | 24ebcf2 | 2015-05-18 10:58:12 +0200 | [diff] [blame] | 651 | |
| 652 | #if !defined(I2C3_BASE_ADDR) |
| 653 | #define I2C3_BASE_ADDR 0 |
| 654 | #endif |
| 655 | |
| 656 | #if !defined(I2C4_BASE_ADDR) |
| 657 | #define I2C4_BASE_ADDR 0 |
| 658 | #endif |
| 659 | |
Sriram Dash | a64aa19 | 2018-02-06 11:26:31 +0530 | [diff] [blame] | 660 | #if !defined(I2C5_BASE_ADDR) |
| 661 | #define I2C5_BASE_ADDR 0 |
| 662 | #endif |
| 663 | |
| 664 | #if !defined(I2C6_BASE_ADDR) |
| 665 | #define I2C6_BASE_ADDR 0 |
| 666 | #endif |
| 667 | |
| 668 | #if !defined(I2C7_BASE_ADDR) |
| 669 | #define I2C7_BASE_ADDR 0 |
| 670 | #endif |
| 671 | |
| 672 | #if !defined(I2C8_BASE_ADDR) |
| 673 | #define I2C8_BASE_ADDR 0 |
| 674 | #endif |
| 675 | |
Heiko Schocher | 24ebcf2 | 2015-05-18 10:58:12 +0200 | [diff] [blame] | 676 | static struct mxc_i2c_bus mxc_i2c_buses[] = { |
York Sun | c4f047c | 2017-03-27 11:41:03 -0700 | [diff] [blame] | 677 | #if defined(CONFIG_ARCH_LS1021A) || defined(CONFIG_VF610) || \ |
Mingkai Hu | 0e58b51 | 2015-10-26 19:47:50 +0800 | [diff] [blame] | 678 | defined(CONFIG_FSL_LAYERSCAPE) |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 679 | { 0, I2C1_BASE_ADDR, I2C_QUIRK_FLAG }, |
| 680 | { 1, I2C2_BASE_ADDR, I2C_QUIRK_FLAG }, |
| 681 | { 2, I2C3_BASE_ADDR, I2C_QUIRK_FLAG }, |
| 682 | { 3, I2C4_BASE_ADDR, I2C_QUIRK_FLAG }, |
Sriram Dash | a64aa19 | 2018-02-06 11:26:31 +0530 | [diff] [blame] | 683 | { 4, I2C5_BASE_ADDR, I2C_QUIRK_FLAG }, |
| 684 | { 5, I2C6_BASE_ADDR, I2C_QUIRK_FLAG }, |
| 685 | { 6, I2C7_BASE_ADDR, I2C_QUIRK_FLAG }, |
| 686 | { 7, I2C8_BASE_ADDR, I2C_QUIRK_FLAG }, |
Troy Kisky | ae44760 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 687 | #else |
Heiko Schocher | 24ebcf2 | 2015-05-18 10:58:12 +0200 | [diff] [blame] | 688 | { 0, I2C1_BASE_ADDR, 0 }, |
| 689 | { 1, I2C2_BASE_ADDR, 0 }, |
| 690 | { 2, I2C3_BASE_ADDR, 0 }, |
| 691 | { 3, I2C4_BASE_ADDR, 0 }, |
Sriram Dash | a64aa19 | 2018-02-06 11:26:31 +0530 | [diff] [blame] | 692 | { 4, I2C5_BASE_ADDR, 0 }, |
| 693 | { 5, I2C6_BASE_ADDR, 0 }, |
| 694 | { 6, I2C7_BASE_ADDR, 0 }, |
| 695 | { 7, I2C8_BASE_ADDR, 0 }, |
Troy Kisky | ae44760 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 696 | #endif |
trem | a49f40a | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 697 | }; |
| 698 | |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 699 | struct mxc_i2c_bus *i2c_get_base(struct i2c_adapter *adap) |
Troy Kisky | a23ab22 | 2012-07-19 08:18:19 +0000 | [diff] [blame] | 700 | { |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 701 | return &mxc_i2c_buses[adap->hwadapnr]; |
Troy Kisky | a23ab22 | 2012-07-19 08:18:19 +0000 | [diff] [blame] | 702 | } |
Troy Kisky | b6f9826 | 2012-07-19 08:18:20 +0000 | [diff] [blame] | 703 | |
trem | a49f40a | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 704 | static int mxc_i2c_read(struct i2c_adapter *adap, uint8_t chip, |
| 705 | uint addr, int alen, uint8_t *buffer, |
| 706 | int len) |
Troy Kisky | ae44760 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 707 | { |
trem | a49f40a | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 708 | return bus_i2c_read(i2c_get_base(adap), chip, addr, alen, buffer, len); |
Troy Kisky | ae44760 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 709 | } |
| 710 | |
trem | a49f40a | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 711 | static int mxc_i2c_write(struct i2c_adapter *adap, uint8_t chip, |
| 712 | uint addr, int alen, uint8_t *buffer, |
| 713 | int len) |
Troy Kisky | ae44760 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 714 | { |
trem | a49f40a | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 715 | return bus_i2c_write(i2c_get_base(adap), chip, addr, alen, buffer, len); |
Troy Kisky | ae44760 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 716 | } |
| 717 | |
| 718 | /* |
Troy Kisky | 321a42b | 2012-07-19 08:18:08 +0000 | [diff] [blame] | 719 | * Test if a chip at a given address responds (probe the chip) |
| 720 | */ |
trem | a49f40a | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 721 | static int mxc_i2c_probe(struct i2c_adapter *adap, uint8_t chip) |
Troy Kisky | 321a42b | 2012-07-19 08:18:08 +0000 | [diff] [blame] | 722 | { |
trem | a49f40a | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 723 | return bus_i2c_write(i2c_get_base(adap), chip, 0, 0, NULL, 0); |
Troy Kisky | ae44760 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 724 | } |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 725 | |
| 726 | int __enable_i2c_clk(unsigned char enable, unsigned i2c_num) |
| 727 | { |
| 728 | return 1; |
| 729 | } |
| 730 | int enable_i2c_clk(unsigned char enable, unsigned i2c_num) |
| 731 | __attribute__((weak, alias("__enable_i2c_clk"))); |
Troy Kisky | ae44760 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 732 | |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 733 | void bus_i2c_init(int index, int speed, int unused, |
| 734 | int (*idle_bus_fn)(void *p), void *idle_bus_data) |
Troy Kisky | ae44760 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 735 | { |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 736 | int ret; |
| 737 | |
| 738 | if (index >= ARRAY_SIZE(mxc_i2c_buses)) { |
| 739 | debug("Error i2c index\n"); |
Troy Kisky | ae44760 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 740 | return; |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 741 | } |
| 742 | |
Gong Qianyu | fd99908 | 2015-12-18 17:38:01 +0800 | [diff] [blame] | 743 | /* |
| 744 | * Warning: Be careful to allow the assignment to a static |
| 745 | * variable here. This function could be called while U-Boot is |
| 746 | * still running in flash memory. So such assignment is equal |
| 747 | * to write data to flash without erasing. |
| 748 | */ |
| 749 | if (idle_bus_fn) |
| 750 | mxc_i2c_buses[index].idle_bus_fn = idle_bus_fn; |
| 751 | if (idle_bus_data) |
| 752 | mxc_i2c_buses[index].idle_bus_data = idle_bus_data; |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 753 | |
| 754 | ret = enable_i2c_clk(1, index); |
| 755 | if (ret < 0) { |
| 756 | debug("I2C-%d clk fail to enable.\n", index); |
| 757 | return; |
Troy Kisky | ae44760 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 758 | } |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 759 | |
| 760 | bus_i2c_set_bus_speed(&mxc_i2c_buses[index], speed); |
Troy Kisky | ae44760 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 761 | } |
| 762 | |
| 763 | /* |
Yuan Yao | d40c885 | 2016-06-08 18:24:51 +0800 | [diff] [blame] | 764 | * Early init I2C for prepare read the clk through I2C. |
| 765 | */ |
| 766 | void i2c_early_init_f(void) |
| 767 | { |
| 768 | ulong base = mxc_i2c_buses[I2C_EARLY_INIT_INDEX].base; |
| 769 | bool quirk = mxc_i2c_buses[I2C_EARLY_INIT_INDEX].driver_data |
| 770 | & I2C_QUIRK_FLAG ? true : false; |
| 771 | int reg_shift = quirk ? VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT; |
| 772 | |
| 773 | /* Set I2C divider value */ |
| 774 | writeb(I2C_IFDR_DIV_CONSERVATIVE, base + (IFDR << reg_shift)); |
| 775 | /* Reset module */ |
| 776 | writeb(I2CR_IDIS, base + (I2CR << reg_shift)); |
| 777 | writeb(0, base + (I2SR << reg_shift)); |
| 778 | /* Enable I2C */ |
| 779 | writeb(I2CR_IEN, base + (I2CR << reg_shift)); |
| 780 | } |
| 781 | |
| 782 | /* |
Troy Kisky | ae44760 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 783 | * Init I2C Bus |
| 784 | */ |
trem | a49f40a | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 785 | static void mxc_i2c_init(struct i2c_adapter *adap, int speed, int slaveaddr) |
Troy Kisky | ae44760 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 786 | { |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 787 | bus_i2c_init(adap->hwadapnr, speed, slaveaddr, NULL, NULL); |
Troy Kisky | ae44760 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 788 | } |
| 789 | |
| 790 | /* |
| 791 | * Set I2C Speed |
| 792 | */ |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 793 | static u32 mxc_i2c_set_bus_speed(struct i2c_adapter *adap, uint speed) |
Troy Kisky | ae44760 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 794 | { |
trem | a49f40a | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 795 | return bus_i2c_set_bus_speed(i2c_get_base(adap), speed); |
Troy Kisky | ae44760 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 796 | } |
| 797 | |
| 798 | /* |
trem | a49f40a | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 799 | * Register mxc i2c adapters |
Troy Kisky | ae44760 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 800 | */ |
Albert ARIBAUD \\(3ADEV\\) | eb94387 | 2015-09-21 22:43:38 +0200 | [diff] [blame] | 801 | #ifdef CONFIG_SYS_I2C_MXC_I2C1 |
trem | a49f40a | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 802 | U_BOOT_I2C_ADAP_COMPLETE(mxc0, mxc_i2c_init, mxc_i2c_probe, |
| 803 | mxc_i2c_read, mxc_i2c_write, |
| 804 | mxc_i2c_set_bus_speed, |
| 805 | CONFIG_SYS_MXC_I2C1_SPEED, |
| 806 | CONFIG_SYS_MXC_I2C1_SLAVE, 0) |
Albert ARIBAUD \\(3ADEV\\) | eb94387 | 2015-09-21 22:43:38 +0200 | [diff] [blame] | 807 | #endif |
| 808 | |
| 809 | #ifdef CONFIG_SYS_I2C_MXC_I2C2 |
trem | a49f40a | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 810 | U_BOOT_I2C_ADAP_COMPLETE(mxc1, mxc_i2c_init, mxc_i2c_probe, |
| 811 | mxc_i2c_read, mxc_i2c_write, |
| 812 | mxc_i2c_set_bus_speed, |
| 813 | CONFIG_SYS_MXC_I2C2_SPEED, |
| 814 | CONFIG_SYS_MXC_I2C2_SLAVE, 1) |
Albert ARIBAUD \\(3ADEV\\) | eb94387 | 2015-09-21 22:43:38 +0200 | [diff] [blame] | 815 | #endif |
| 816 | |
York Sun | f1a5216 | 2015-03-20 10:20:40 -0700 | [diff] [blame] | 817 | #ifdef CONFIG_SYS_I2C_MXC_I2C3 |
trem | a49f40a | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 818 | U_BOOT_I2C_ADAP_COMPLETE(mxc2, mxc_i2c_init, mxc_i2c_probe, |
| 819 | mxc_i2c_read, mxc_i2c_write, |
| 820 | mxc_i2c_set_bus_speed, |
| 821 | CONFIG_SYS_MXC_I2C3_SPEED, |
| 822 | CONFIG_SYS_MXC_I2C3_SLAVE, 2) |
| 823 | #endif |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 824 | |
York Sun | f1a5216 | 2015-03-20 10:20:40 -0700 | [diff] [blame] | 825 | #ifdef CONFIG_SYS_I2C_MXC_I2C4 |
| 826 | U_BOOT_I2C_ADAP_COMPLETE(mxc3, mxc_i2c_init, mxc_i2c_probe, |
| 827 | mxc_i2c_read, mxc_i2c_write, |
| 828 | mxc_i2c_set_bus_speed, |
| 829 | CONFIG_SYS_MXC_I2C4_SPEED, |
| 830 | CONFIG_SYS_MXC_I2C4_SLAVE, 3) |
| 831 | #endif |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 832 | |
Sriram Dash | a64aa19 | 2018-02-06 11:26:31 +0530 | [diff] [blame] | 833 | #ifdef CONFIG_SYS_I2C_MXC_I2C5 |
| 834 | U_BOOT_I2C_ADAP_COMPLETE(mxc4, mxc_i2c_init, mxc_i2c_probe, |
| 835 | mxc_i2c_read, mxc_i2c_write, |
| 836 | mxc_i2c_set_bus_speed, |
| 837 | CONFIG_SYS_MXC_I2C5_SPEED, |
| 838 | CONFIG_SYS_MXC_I2C5_SLAVE, 4) |
| 839 | #endif |
| 840 | |
| 841 | #ifdef CONFIG_SYS_I2C_MXC_I2C6 |
| 842 | U_BOOT_I2C_ADAP_COMPLETE(mxc5, mxc_i2c_init, mxc_i2c_probe, |
| 843 | mxc_i2c_read, mxc_i2c_write, |
| 844 | mxc_i2c_set_bus_speed, |
| 845 | CONFIG_SYS_MXC_I2C6_SPEED, |
| 846 | CONFIG_SYS_MXC_I2C6_SLAVE, 5) |
| 847 | #endif |
| 848 | |
| 849 | #ifdef CONFIG_SYS_I2C_MXC_I2C7 |
| 850 | U_BOOT_I2C_ADAP_COMPLETE(mxc6, mxc_i2c_init, mxc_i2c_probe, |
| 851 | mxc_i2c_read, mxc_i2c_write, |
| 852 | mxc_i2c_set_bus_speed, |
| 853 | CONFIG_SYS_MXC_I2C7_SPEED, |
| 854 | CONFIG_SYS_MXC_I2C7_SLAVE, 6) |
| 855 | #endif |
| 856 | |
| 857 | #ifdef CONFIG_SYS_I2C_MXC_I2C8 |
| 858 | U_BOOT_I2C_ADAP_COMPLETE(mxc7, mxc_i2c_init, mxc_i2c_probe, |
| 859 | mxc_i2c_read, mxc_i2c_write, |
| 860 | mxc_i2c_set_bus_speed, |
| 861 | CONFIG_SYS_MXC_I2C8_SPEED, |
| 862 | CONFIG_SYS_MXC_I2C8_SLAVE, 7) |
| 863 | #endif |
| 864 | |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 865 | #else |
| 866 | |
| 867 | static int mxc_i2c_set_bus_speed(struct udevice *bus, unsigned int speed) |
| 868 | { |
| 869 | struct mxc_i2c_bus *i2c_bus = dev_get_priv(bus); |
| 870 | |
| 871 | return bus_i2c_set_bus_speed(i2c_bus, speed); |
| 872 | } |
| 873 | |
| 874 | static int mxc_i2c_probe(struct udevice *bus) |
| 875 | { |
| 876 | struct mxc_i2c_bus *i2c_bus = dev_get_priv(bus); |
Peng Fan | 4f1a581 | 2016-03-11 16:47:50 +0800 | [diff] [blame] | 877 | const void *fdt = gd->fdt_blob; |
Simon Glass | dd79d6e | 2017-01-17 16:52:55 -0700 | [diff] [blame] | 878 | int node = dev_of_offset(bus); |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 879 | fdt_addr_t addr; |
Peng Fan | 4f1a581 | 2016-03-11 16:47:50 +0800 | [diff] [blame] | 880 | int ret, ret2; |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 881 | |
| 882 | i2c_bus->driver_data = dev_get_driver_data(bus); |
| 883 | |
Simon Glass | ba1dea4 | 2017-05-17 17:18:05 -0600 | [diff] [blame] | 884 | addr = devfdt_get_addr(bus); |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 885 | if (addr == FDT_ADDR_T_NONE) |
Simon Glass | f44b4bf | 2017-09-17 16:54:53 -0600 | [diff] [blame] | 886 | return -EINVAL; |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 887 | |
| 888 | i2c_bus->base = addr; |
| 889 | i2c_bus->index = bus->seq; |
Peng Fan | 4f1a581 | 2016-03-11 16:47:50 +0800 | [diff] [blame] | 890 | i2c_bus->bus = bus; |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 891 | |
| 892 | /* Enable clk */ |
| 893 | ret = enable_i2c_clk(1, bus->seq); |
| 894 | if (ret < 0) |
| 895 | return ret; |
| 896 | |
Peng Fan | 4f1a581 | 2016-03-11 16:47:50 +0800 | [diff] [blame] | 897 | /* |
| 898 | * See Documentation/devicetree/bindings/i2c/i2c-imx.txt |
| 899 | * Use gpio to force bus idle when necessary. |
| 900 | */ |
Simon Glass | b0ea740 | 2016-10-02 17:59:28 -0600 | [diff] [blame] | 901 | ret = fdt_stringlist_search(fdt, node, "pinctrl-names", "gpio"); |
Peng Fan | 4f1a581 | 2016-03-11 16:47:50 +0800 | [diff] [blame] | 902 | if (ret < 0) { |
Jagan Teki | cac3006 | 2016-12-06 00:00:59 +0100 | [diff] [blame] | 903 | debug("i2c bus %d at 0x%2lx, no gpio pinctrl state.\n", bus->seq, i2c_bus->base); |
Peng Fan | 4f1a581 | 2016-03-11 16:47:50 +0800 | [diff] [blame] | 904 | } else { |
Simon Glass | 1d9af1f | 2017-05-30 21:47:09 -0600 | [diff] [blame] | 905 | ret = gpio_request_by_name_nodev(offset_to_ofnode(node), |
| 906 | "scl-gpios", 0, &i2c_bus->scl_gpio, |
| 907 | GPIOD_IS_OUT); |
| 908 | ret2 = gpio_request_by_name_nodev(offset_to_ofnode(node), |
| 909 | "sda-gpios", 0, &i2c_bus->sda_gpio, |
| 910 | GPIOD_IS_OUT); |
Peng Fan | 08eaa83 | 2017-12-29 15:06:08 +0800 | [diff] [blame] | 911 | if (!dm_gpio_is_valid(&i2c_bus->sda_gpio) || |
| 912 | !dm_gpio_is_valid(&i2c_bus->scl_gpio) || |
| 913 | ret || ret2) { |
Peng Fan | 4f1a581 | 2016-03-11 16:47:50 +0800 | [diff] [blame] | 914 | dev_err(dev, "i2c bus %d at %lu, fail to request scl/sda gpio\n", bus->seq, i2c_bus->base); |
Simon Glass | f44b4bf | 2017-09-17 16:54:53 -0600 | [diff] [blame] | 915 | return -EINVAL; |
Peng Fan | 4f1a581 | 2016-03-11 16:47:50 +0800 | [diff] [blame] | 916 | } |
| 917 | } |
| 918 | |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 919 | ret = i2c_idle_bus(i2c_bus); |
| 920 | if (ret < 0) { |
| 921 | /* Disable clk */ |
| 922 | enable_i2c_clk(0, bus->seq); |
| 923 | return ret; |
| 924 | } |
| 925 | |
| 926 | /* |
| 927 | * Pinmux settings are in board file now, until pinmux is supported, |
| 928 | * we can set pinmux here in probe function. |
| 929 | */ |
| 930 | |
| 931 | debug("i2c : controller bus %d at %lu , speed %d: ", |
| 932 | bus->seq, i2c_bus->base, |
| 933 | i2c_bus->speed); |
| 934 | |
| 935 | return 0; |
| 936 | } |
| 937 | |
Trent Piepho | 15410ba | 2019-04-30 16:08:18 +0000 | [diff] [blame] | 938 | /* Sends: S Addr Wr [A|NA] P */ |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 939 | static int mxc_i2c_probe_chip(struct udevice *bus, u32 chip_addr, |
| 940 | u32 chip_flags) |
| 941 | { |
| 942 | int ret; |
| 943 | struct mxc_i2c_bus *i2c_bus = dev_get_priv(bus); |
| 944 | |
| 945 | ret = i2c_init_transfer(i2c_bus, chip_addr, 0, 0); |
| 946 | if (ret < 0) { |
| 947 | debug("%s failed, ret = %d\n", __func__, ret); |
| 948 | return ret; |
| 949 | } |
| 950 | |
| 951 | i2c_imx_stop(i2c_bus); |
| 952 | |
| 953 | return 0; |
| 954 | } |
| 955 | |
| 956 | static int mxc_i2c_xfer(struct udevice *bus, struct i2c_msg *msg, int nmsgs) |
| 957 | { |
| 958 | struct mxc_i2c_bus *i2c_bus = dev_get_priv(bus); |
| 959 | int ret = 0; |
| 960 | ulong base = i2c_bus->base; |
| 961 | int reg_shift = i2c_bus->driver_data & I2C_QUIRK_FLAG ? |
| 962 | VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT; |
Trent Piepho | 9c896a9 | 2019-04-30 16:08:19 +0000 | [diff] [blame] | 963 | int read_mode; |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 964 | |
Trent Piepho | 9c896a9 | 2019-04-30 16:08:19 +0000 | [diff] [blame] | 965 | /* Here address len is set to -1 to not send any address at first. |
| 966 | * Otherwise i2c_init_transfer will send the chip address with write |
| 967 | * mode set. This is wrong if the 1st message is read. |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 968 | */ |
Trent Piepho | 9c896a9 | 2019-04-30 16:08:19 +0000 | [diff] [blame] | 969 | ret = i2c_init_transfer(i2c_bus, msg->addr, 0, -1); |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 970 | if (ret < 0) { |
| 971 | debug("i2c_init_transfer error: %d\n", ret); |
| 972 | return ret; |
| 973 | } |
| 974 | |
Trent Piepho | 9c896a9 | 2019-04-30 16:08:19 +0000 | [diff] [blame] | 975 | read_mode = -1; /* So it's always different on the first message */ |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 976 | for (; nmsgs > 0; nmsgs--, msg++) { |
Trent Piepho | 9c896a9 | 2019-04-30 16:08:19 +0000 | [diff] [blame] | 977 | const int msg_is_read = !!(msg->flags & I2C_M_RD); |
| 978 | |
| 979 | debug("i2c_xfer: chip=0x%x, len=0x%x, dir=%c\n", msg->addr, |
| 980 | msg->len, msg_is_read ? 'R' : 'W'); |
| 981 | |
| 982 | if (msg_is_read != read_mode) { |
| 983 | /* Send repeated start if not 1st message */ |
| 984 | if (read_mode != -1) { |
| 985 | debug("i2c_xfer: [RSTART]\n"); |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 986 | ret = readb(base + (I2CR << reg_shift)); |
| 987 | ret |= I2CR_RSTA; |
| 988 | writeb(ret, base + (I2CR << reg_shift)); |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 989 | } |
Trent Piepho | 9c896a9 | 2019-04-30 16:08:19 +0000 | [diff] [blame] | 990 | debug("i2c_xfer: [ADDR %02x | %c]\n", msg->addr, |
| 991 | msg_is_read ? 'R' : 'W'); |
| 992 | ret = tx_byte(i2c_bus, (msg->addr << 1) | msg_is_read); |
| 993 | if (ret < 0) { |
| 994 | debug("i2c_xfer: [STOP]\n"); |
| 995 | i2c_imx_stop(i2c_bus); |
| 996 | break; |
| 997 | } |
| 998 | read_mode = msg_is_read; |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 999 | } |
Trent Piepho | 9c896a9 | 2019-04-30 16:08:19 +0000 | [diff] [blame] | 1000 | |
| 1001 | if (msg->flags & I2C_M_RD) |
| 1002 | ret = i2c_read_data(i2c_bus, msg->addr, msg->buf, |
| 1003 | msg->len, nmsgs == 1 || |
| 1004 | (msg->flags & I2C_M_STOP)); |
| 1005 | else |
| 1006 | ret = i2c_write_data(i2c_bus, msg->addr, msg->buf, |
| 1007 | msg->len); |
| 1008 | |
| 1009 | if (ret < 0) |
| 1010 | break; |
Peng Fan | 8262cb1 | 2015-05-15 07:29:12 +0800 | [diff] [blame] | 1011 | } |
| 1012 | |
| 1013 | if (ret) |
| 1014 | debug("i2c_write: error sending\n"); |
| 1015 | |
| 1016 | i2c_imx_stop(i2c_bus); |
| 1017 | |
| 1018 | return ret; |
| 1019 | } |
| 1020 | |
| 1021 | static const struct dm_i2c_ops mxc_i2c_ops = { |
| 1022 | .xfer = mxc_i2c_xfer, |
| 1023 | .probe_chip = mxc_i2c_probe_chip, |
| 1024 | .set_bus_speed = mxc_i2c_set_bus_speed, |
| 1025 | }; |
| 1026 | |
| 1027 | static const struct udevice_id mxc_i2c_ids[] = { |
| 1028 | { .compatible = "fsl,imx21-i2c", }, |
| 1029 | { .compatible = "fsl,vf610-i2c", .data = I2C_QUIRK_FLAG, }, |
| 1030 | {} |
| 1031 | }; |
| 1032 | |
| 1033 | U_BOOT_DRIVER(i2c_mxc) = { |
| 1034 | .name = "i2c_mxc", |
| 1035 | .id = UCLASS_I2C, |
| 1036 | .of_match = mxc_i2c_ids, |
| 1037 | .probe = mxc_i2c_probe, |
| 1038 | .priv_auto_alloc_size = sizeof(struct mxc_i2c_bus), |
| 1039 | .ops = &mxc_i2c_ops, |
| 1040 | }; |
| 1041 | #endif |