Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 1 | /* |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 2 | * i2c driver for Freescale i.MX series |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 3 | * |
| 4 | * (c) 2007 Pengutronix, Sascha Hauer <s.hauer@pengutronix.de> |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 5 | * (c) 2011 Marek Vasut <marek.vasut@gmail.com> |
| 6 | * |
| 7 | * Based on i2c-imx.c from linux kernel: |
| 8 | * Copyright (C) 2005 Torsten Koschorrek <koschorrek at synertronixx.de> |
| 9 | * Copyright (C) 2005 Matthias Blaschke <blaschke at synertronixx.de> |
| 10 | * Copyright (C) 2007 RightHand Technologies, Inc. |
| 11 | * Copyright (C) 2008 Darius Augulis <darius.augulis at teltonika.lt> |
| 12 | * |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 13 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 14 | * SPDX-License-Identifier: GPL-2.0+ |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 15 | */ |
| 16 | |
| 17 | #include <common.h> |
Liu Hui-R64343 | 127cec1 | 2011-01-03 22:27:39 +0000 | [diff] [blame] | 18 | #include <asm/arch/clock.h> |
Stefano Babic | 8627111 | 2011-03-14 15:43:56 +0100 | [diff] [blame] | 19 | #include <asm/arch/imx-regs.h> |
Troy Kisky | cea60b0 | 2012-07-19 08:18:04 +0000 | [diff] [blame] | 20 | #include <asm/errno.h> |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 21 | #include <asm/imx-common/mxc_i2c.h> |
Troy Kisky | 24cd738 | 2012-07-19 08:18:03 +0000 | [diff] [blame] | 22 | #include <asm/io.h> |
Marek Vasut | bf0783d | 2011-10-26 00:05:44 +0000 | [diff] [blame] | 23 | #include <i2c.h> |
Troy Kisky | 7aa57a0 | 2012-07-19 08:18:09 +0000 | [diff] [blame] | 24 | #include <watchdog.h> |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 25 | #include <dm.h> |
| 26 | #include <fdtdec.h> |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 27 | |
York Sun | dec1861 | 2014-02-10 14:02:52 -0800 | [diff] [blame] | 28 | DECLARE_GLOBAL_DATA_PTR; |
| 29 | |
Peng Fan | 71204e9 | 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 |
| 34 | /* Register index */ |
| 35 | #define IADR 0 |
| 36 | #define IFDR 1 |
| 37 | #define I2CR 2 |
| 38 | #define I2SR 3 |
| 39 | #define I2DR 4 |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 40 | |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 41 | #define I2CR_IIEN (1 << 6) |
| 42 | #define I2CR_MSTA (1 << 5) |
| 43 | #define I2CR_MTX (1 << 4) |
| 44 | #define I2CR_TX_NO_AK (1 << 3) |
| 45 | #define I2CR_RSTA (1 << 2) |
| 46 | |
| 47 | #define I2SR_ICF (1 << 7) |
| 48 | #define I2SR_IBB (1 << 5) |
Troy Kisky | d5383a6 | 2012-07-19 08:18:15 +0000 | [diff] [blame] | 49 | #define I2SR_IAL (1 << 4) |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 50 | #define I2SR_IIF (1 << 1) |
| 51 | #define I2SR_RX_NO_AK (1 << 0) |
| 52 | |
Alison Wang | 30ea41a | 2013-06-17 15:30:39 +0800 | [diff] [blame] | 53 | #ifdef I2C_QUIRK_REG |
| 54 | #define I2CR_IEN (0 << 7) |
| 55 | #define I2CR_IDIS (1 << 7) |
| 56 | #define I2SR_IIF_CLEAR (1 << 1) |
| 57 | #else |
| 58 | #define I2CR_IEN (1 << 7) |
| 59 | #define I2CR_IDIS (0 << 7) |
| 60 | #define I2SR_IIF_CLEAR (0 << 1) |
| 61 | #endif |
| 62 | |
Troy Kisky | e4ff525 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 63 | #if defined(CONFIG_HARD_I2C) && !defined(CONFIG_SYS_I2C_BASE) |
Troy Kisky | de6f604 | 2012-04-24 17:33:25 +0000 | [diff] [blame] | 64 | #error "define CONFIG_SYS_I2C_BASE to use the mxc_i2c driver" |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 65 | #endif |
| 66 | |
Alison Wang | 30ea41a | 2013-06-17 15:30:39 +0800 | [diff] [blame] | 67 | #ifdef I2C_QUIRK_REG |
| 68 | static u16 i2c_clk_div[60][2] = { |
| 69 | { 20, 0x00 }, { 22, 0x01 }, { 24, 0x02 }, { 26, 0x03 }, |
| 70 | { 28, 0x04 }, { 30, 0x05 }, { 32, 0x09 }, { 34, 0x06 }, |
| 71 | { 36, 0x0A }, { 40, 0x07 }, { 44, 0x0C }, { 48, 0x0D }, |
| 72 | { 52, 0x43 }, { 56, 0x0E }, { 60, 0x45 }, { 64, 0x12 }, |
| 73 | { 68, 0x0F }, { 72, 0x13 }, { 80, 0x14 }, { 88, 0x15 }, |
| 74 | { 96, 0x19 }, { 104, 0x16 }, { 112, 0x1A }, { 128, 0x17 }, |
| 75 | { 136, 0x4F }, { 144, 0x1C }, { 160, 0x1D }, { 176, 0x55 }, |
| 76 | { 192, 0x1E }, { 208, 0x56 }, { 224, 0x22 }, { 228, 0x24 }, |
| 77 | { 240, 0x1F }, { 256, 0x23 }, { 288, 0x5C }, { 320, 0x25 }, |
| 78 | { 384, 0x26 }, { 448, 0x2A }, { 480, 0x27 }, { 512, 0x2B }, |
| 79 | { 576, 0x2C }, { 640, 0x2D }, { 768, 0x31 }, { 896, 0x32 }, |
| 80 | { 960, 0x2F }, { 1024, 0x33 }, { 1152, 0x34 }, { 1280, 0x35 }, |
| 81 | { 1536, 0x36 }, { 1792, 0x3A }, { 1920, 0x37 }, { 2048, 0x3B }, |
| 82 | { 2304, 0x3C }, { 2560, 0x3D }, { 3072, 0x3E }, { 3584, 0x7A }, |
| 83 | { 3840, 0x3F }, { 4096, 0x7B }, { 5120, 0x7D }, { 6144, 0x7E }, |
| 84 | }; |
| 85 | #else |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 86 | static u16 i2c_clk_div[50][2] = { |
| 87 | { 22, 0x20 }, { 24, 0x21 }, { 26, 0x22 }, { 28, 0x23 }, |
| 88 | { 30, 0x00 }, { 32, 0x24 }, { 36, 0x25 }, { 40, 0x26 }, |
| 89 | { 42, 0x03 }, { 44, 0x27 }, { 48, 0x28 }, { 52, 0x05 }, |
| 90 | { 56, 0x29 }, { 60, 0x06 }, { 64, 0x2A }, { 72, 0x2B }, |
| 91 | { 80, 0x2C }, { 88, 0x09 }, { 96, 0x2D }, { 104, 0x0A }, |
| 92 | { 112, 0x2E }, { 128, 0x2F }, { 144, 0x0C }, { 160, 0x30 }, |
| 93 | { 192, 0x31 }, { 224, 0x32 }, { 240, 0x0F }, { 256, 0x33 }, |
| 94 | { 288, 0x10 }, { 320, 0x34 }, { 384, 0x35 }, { 448, 0x36 }, |
| 95 | { 480, 0x13 }, { 512, 0x37 }, { 576, 0x14 }, { 640, 0x38 }, |
| 96 | { 768, 0x39 }, { 896, 0x3A }, { 960, 0x17 }, { 1024, 0x3B }, |
| 97 | { 1152, 0x18 }, { 1280, 0x3C }, { 1536, 0x3D }, { 1792, 0x3E }, |
| 98 | { 1920, 0x1B }, { 2048, 0x3F }, { 2304, 0x1C }, { 2560, 0x1D }, |
| 99 | { 3072, 0x1E }, { 3840, 0x1F } |
| 100 | }; |
Alison Wang | 30ea41a | 2013-06-17 15:30:39 +0800 | [diff] [blame] | 101 | #endif |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 102 | |
trem | fac9640 | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 103 | #ifndef CONFIG_SYS_MXC_I2C1_SPEED |
| 104 | #define CONFIG_SYS_MXC_I2C1_SPEED 100000 |
| 105 | #endif |
| 106 | #ifndef CONFIG_SYS_MXC_I2C2_SPEED |
| 107 | #define CONFIG_SYS_MXC_I2C2_SPEED 100000 |
| 108 | #endif |
| 109 | #ifndef CONFIG_SYS_MXC_I2C3_SPEED |
| 110 | #define CONFIG_SYS_MXC_I2C3_SPEED 100000 |
| 111 | #endif |
York Sun | f8cb101 | 2015-03-20 10:20:40 -0700 | [diff] [blame] | 112 | #ifndef CONFIG_SYS_MXC_I2C4_SPEED |
| 113 | #define CONFIG_SYS_MXC_I2C4_SPEED 100000 |
| 114 | #endif |
trem | fac9640 | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 115 | |
| 116 | #ifndef CONFIG_SYS_MXC_I2C1_SLAVE |
| 117 | #define CONFIG_SYS_MXC_I2C1_SLAVE 0 |
| 118 | #endif |
| 119 | #ifndef CONFIG_SYS_MXC_I2C2_SLAVE |
| 120 | #define CONFIG_SYS_MXC_I2C2_SLAVE 0 |
| 121 | #endif |
| 122 | #ifndef CONFIG_SYS_MXC_I2C3_SLAVE |
| 123 | #define CONFIG_SYS_MXC_I2C3_SLAVE 0 |
| 124 | #endif |
York Sun | f8cb101 | 2015-03-20 10:20:40 -0700 | [diff] [blame] | 125 | #ifndef CONFIG_SYS_MXC_I2C4_SLAVE |
| 126 | #define CONFIG_SYS_MXC_I2C4_SLAVE 0 |
| 127 | #endif |
trem | fac9640 | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 128 | |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 129 | /* |
| 130 | * Calculate and set proper clock divider |
| 131 | */ |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 132 | static uint8_t i2c_imx_get_clk(struct mxc_i2c_bus *i2c_bus, unsigned int rate) |
Stefano Babic | 1d549ad | 2011-01-20 07:50:44 +0000 | [diff] [blame] | 133 | { |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 134 | unsigned int i2c_clk_rate; |
| 135 | unsigned int div; |
Marek Vasut | bf0783d | 2011-10-26 00:05:44 +0000 | [diff] [blame] | 136 | u8 clk_div; |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 137 | |
Liu Hui-R64343 | 127cec1 | 2011-01-03 22:27:39 +0000 | [diff] [blame] | 138 | #if defined(CONFIG_MX31) |
Stefano Babic | 1d549ad | 2011-01-20 07:50:44 +0000 | [diff] [blame] | 139 | struct clock_control_regs *sc_regs = |
| 140 | (struct clock_control_regs *)CCM_BASE; |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 141 | |
Guennadi Liakhovetski | e7de18a | 2009-02-13 09:23:36 +0100 | [diff] [blame] | 142 | /* start the required I2C clock */ |
Troy Kisky | de6f604 | 2012-04-24 17:33:25 +0000 | [diff] [blame] | 143 | writel(readl(&sc_regs->cgr0) | (3 << CONFIG_SYS_I2C_CLK_OFFSET), |
Stefano Babic | 1d549ad | 2011-01-20 07:50:44 +0000 | [diff] [blame] | 144 | &sc_regs->cgr0); |
Liu Hui-R64343 | 127cec1 | 2011-01-03 22:27:39 +0000 | [diff] [blame] | 145 | #endif |
Guennadi Liakhovetski | e7de18a | 2009-02-13 09:23:36 +0100 | [diff] [blame] | 146 | |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 147 | /* Divider value calculation */ |
Matthias Weisser | e7bed5c | 2012-09-24 02:46:53 +0000 | [diff] [blame] | 148 | i2c_clk_rate = mxc_get_clock(MXC_I2C_CLK); |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 149 | div = (i2c_clk_rate + rate - 1) / rate; |
| 150 | if (div < i2c_clk_div[0][0]) |
Marek Vasut | b567b8f | 2011-09-27 06:34:11 +0000 | [diff] [blame] | 151 | clk_div = 0; |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 152 | else if (div > i2c_clk_div[ARRAY_SIZE(i2c_clk_div) - 1][0]) |
Marek Vasut | b567b8f | 2011-09-27 06:34:11 +0000 | [diff] [blame] | 153 | clk_div = ARRAY_SIZE(i2c_clk_div) - 1; |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 154 | else |
Marek Vasut | b567b8f | 2011-09-27 06:34:11 +0000 | [diff] [blame] | 155 | for (clk_div = 0; i2c_clk_div[clk_div][0] < div; clk_div++) |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 156 | ; |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 157 | |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 158 | /* Store divider value */ |
Marek Vasut | bf0783d | 2011-10-26 00:05:44 +0000 | [diff] [blame] | 159 | return clk_div; |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 160 | } |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 161 | |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 162 | /* |
Troy Kisky | e4ff525 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 163 | * Set I2C Bus speed |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 164 | */ |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 165 | static int bus_i2c_set_bus_speed(struct mxc_i2c_bus *i2c_bus, int speed) |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 166 | { |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 167 | ulong base = i2c_bus->base; |
| 168 | bool quirk = i2c_bus->driver_data & I2C_QUIRK_FLAG ? true : false; |
| 169 | u8 clk_idx = i2c_imx_get_clk(i2c_bus, speed); |
Marek Vasut | bf0783d | 2011-10-26 00:05:44 +0000 | [diff] [blame] | 170 | u8 idx = i2c_clk_div[clk_idx][1]; |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 171 | int reg_shift = quirk ? VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT; |
Marek Vasut | bf0783d | 2011-10-26 00:05:44 +0000 | [diff] [blame] | 172 | |
| 173 | /* Store divider value */ |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 174 | writeb(idx, base + (IFDR << reg_shift)); |
Marek Vasut | bf0783d | 2011-10-26 00:05:44 +0000 | [diff] [blame] | 175 | |
Troy Kisky | 83a1a19 | 2012-07-19 08:18:12 +0000 | [diff] [blame] | 176 | /* Reset module */ |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 177 | writeb(I2CR_IDIS, base + (I2CR << reg_shift)); |
| 178 | writeb(0, base + (I2SR << reg_shift)); |
Marek Vasut | b567b8f | 2011-09-27 06:34:11 +0000 | [diff] [blame] | 179 | return 0; |
| 180 | } |
| 181 | |
Troy Kisky | 7aa57a0 | 2012-07-19 08:18:09 +0000 | [diff] [blame] | 182 | #define ST_BUS_IDLE (0 | (I2SR_IBB << 8)) |
| 183 | #define ST_BUS_BUSY (I2SR_IBB | (I2SR_IBB << 8)) |
| 184 | #define ST_IIF (I2SR_IIF | (I2SR_IIF << 8)) |
| 185 | |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 186 | static int wait_for_sr_state(struct mxc_i2c_bus *i2c_bus, unsigned state) |
Stefano Babic | 8168721 | 2011-01-20 07:51:31 +0000 | [diff] [blame] | 187 | { |
Troy Kisky | 7aa57a0 | 2012-07-19 08:18:09 +0000 | [diff] [blame] | 188 | unsigned sr; |
| 189 | ulong elapsed; |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 190 | bool quirk = i2c_bus->driver_data & I2C_QUIRK_FLAG ? true : false; |
| 191 | int reg_shift = quirk ? VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT; |
| 192 | ulong base = i2c_bus->base; |
Troy Kisky | 7aa57a0 | 2012-07-19 08:18:09 +0000 | [diff] [blame] | 193 | ulong start_time = get_timer(0); |
| 194 | for (;;) { |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 195 | sr = readb(base + (I2SR << reg_shift)); |
Troy Kisky | d5383a6 | 2012-07-19 08:18:15 +0000 | [diff] [blame] | 196 | if (sr & I2SR_IAL) { |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 197 | if (quirk) |
| 198 | writeb(sr | I2SR_IAL, base + |
| 199 | (I2SR << reg_shift)); |
| 200 | else |
| 201 | writeb(sr & ~I2SR_IAL, base + |
| 202 | (I2SR << reg_shift)); |
Troy Kisky | d5383a6 | 2012-07-19 08:18:15 +0000 | [diff] [blame] | 203 | printf("%s: Arbitration lost sr=%x cr=%x state=%x\n", |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 204 | __func__, sr, readb(base + (I2CR << reg_shift)), |
| 205 | state); |
Troy Kisky | d5383a6 | 2012-07-19 08:18:15 +0000 | [diff] [blame] | 206 | return -ERESTART; |
| 207 | } |
Troy Kisky | 7aa57a0 | 2012-07-19 08:18:09 +0000 | [diff] [blame] | 208 | if ((sr & (state >> 8)) == (unsigned char)state) |
| 209 | return sr; |
| 210 | WATCHDOG_RESET(); |
| 211 | elapsed = get_timer(start_time); |
| 212 | if (elapsed > (CONFIG_SYS_HZ / 10)) /* .1 seconds */ |
| 213 | break; |
Stefano Babic | 8168721 | 2011-01-20 07:51:31 +0000 | [diff] [blame] | 214 | } |
Troy Kisky | 7aa57a0 | 2012-07-19 08:18:09 +0000 | [diff] [blame] | 215 | printf("%s: failed sr=%x cr=%x state=%x\n", __func__, |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 216 | sr, readb(base + (I2CR << reg_shift)), state); |
Troy Kisky | cea60b0 | 2012-07-19 08:18:04 +0000 | [diff] [blame] | 217 | return -ETIMEDOUT; |
Stefano Babic | 8168721 | 2011-01-20 07:51:31 +0000 | [diff] [blame] | 218 | } |
| 219 | |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 220 | static int tx_byte(struct mxc_i2c_bus *i2c_bus, u8 byte) |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 221 | { |
Troy Kisky | cea60b0 | 2012-07-19 08:18:04 +0000 | [diff] [blame] | 222 | int ret; |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 223 | int reg_shift = i2c_bus->driver_data & I2C_QUIRK_FLAG ? |
| 224 | VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT; |
| 225 | ulong base = i2c_bus->base; |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 226 | |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 227 | writeb(I2SR_IIF_CLEAR, base + (I2SR << reg_shift)); |
| 228 | writeb(byte, base + (I2DR << reg_shift)); |
| 229 | |
| 230 | ret = wait_for_sr_state(i2c_bus, ST_IIF); |
Troy Kisky | cea60b0 | 2012-07-19 08:18:04 +0000 | [diff] [blame] | 231 | if (ret < 0) |
| 232 | return ret; |
Troy Kisky | cea60b0 | 2012-07-19 08:18:04 +0000 | [diff] [blame] | 233 | if (ret & I2SR_RX_NO_AK) |
| 234 | return -ENODEV; |
| 235 | return 0; |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 236 | } |
| 237 | |
| 238 | /* |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 239 | * Stub implementations for outer i2c slave operations. |
| 240 | */ |
| 241 | void __i2c_force_reset_slave(void) |
| 242 | { |
| 243 | } |
| 244 | void i2c_force_reset_slave(void) |
| 245 | __attribute__((weak, alias("__i2c_force_reset_slave"))); |
| 246 | |
| 247 | /* |
Troy Kisky | 90a5b70 | 2012-07-19 08:18:13 +0000 | [diff] [blame] | 248 | * Stop I2C transaction |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 249 | */ |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 250 | static void i2c_imx_stop(struct mxc_i2c_bus *i2c_bus) |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 251 | { |
Troy Kisky | 7aa57a0 | 2012-07-19 08:18:09 +0000 | [diff] [blame] | 252 | int ret; |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 253 | int reg_shift = i2c_bus->driver_data & I2C_QUIRK_FLAG ? |
| 254 | VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT; |
| 255 | ulong base = i2c_bus->base; |
| 256 | unsigned int temp = readb(base + (I2CR << reg_shift)); |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 257 | |
Troy Kisky | 1c076db | 2012-07-19 08:18:02 +0000 | [diff] [blame] | 258 | temp &= ~(I2CR_MSTA | I2CR_MTX); |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 259 | writeb(temp, base + (I2CR << reg_shift)); |
| 260 | ret = wait_for_sr_state(i2c_bus, ST_BUS_IDLE); |
Troy Kisky | 7aa57a0 | 2012-07-19 08:18:09 +0000 | [diff] [blame] | 261 | if (ret < 0) |
| 262 | printf("%s:trigger stop failed\n", __func__); |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 263 | } |
| 264 | |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 265 | /* |
Troy Kisky | b230ddc | 2012-07-19 08:18:06 +0000 | [diff] [blame] | 266 | * Send start signal, chip address and |
| 267 | * write register address |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 268 | */ |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 269 | static int i2c_init_transfer_(struct mxc_i2c_bus *i2c_bus, u8 chip, |
| 270 | u32 addr, int alen) |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 271 | { |
Troy Kisky | 71e9f3c | 2012-07-19 08:18:11 +0000 | [diff] [blame] | 272 | unsigned int temp; |
| 273 | int ret; |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 274 | bool quirk = i2c_bus->driver_data & I2C_QUIRK_FLAG ? true : false; |
| 275 | ulong base = i2c_bus->base; |
| 276 | int reg_shift = quirk ? VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT; |
| 277 | |
| 278 | /* Reset i2c slave */ |
| 279 | i2c_force_reset_slave(); |
Troy Kisky | 71e9f3c | 2012-07-19 08:18:11 +0000 | [diff] [blame] | 280 | |
| 281 | /* Enable I2C controller */ |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 282 | if (quirk) |
| 283 | ret = readb(base + (I2CR << reg_shift)) & I2CR_IDIS; |
| 284 | else |
| 285 | ret = !(readb(base + (I2CR << reg_shift)) & I2CR_IEN); |
| 286 | |
| 287 | if (ret) { |
| 288 | writeb(I2CR_IEN, base + (I2CR << reg_shift)); |
Troy Kisky | 90a5b70 | 2012-07-19 08:18:13 +0000 | [diff] [blame] | 289 | /* Wait for controller to be stable */ |
| 290 | udelay(50); |
| 291 | } |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 292 | |
| 293 | if (readb(base + (IADR << reg_shift)) == (chip << 1)) |
| 294 | writeb((chip << 1) ^ 2, base + (IADR << reg_shift)); |
| 295 | writeb(I2SR_IIF_CLEAR, base + (I2SR << reg_shift)); |
| 296 | ret = wait_for_sr_state(i2c_bus, ST_BUS_IDLE); |
Troy Kisky | 90a5b70 | 2012-07-19 08:18:13 +0000 | [diff] [blame] | 297 | if (ret < 0) |
Troy Kisky | a7f1a00 | 2012-07-19 08:18:16 +0000 | [diff] [blame] | 298 | return ret; |
Troy Kisky | 71e9f3c | 2012-07-19 08:18:11 +0000 | [diff] [blame] | 299 | |
| 300 | /* Start I2C transaction */ |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 301 | temp = readb(base + (I2CR << reg_shift)); |
Troy Kisky | 71e9f3c | 2012-07-19 08:18:11 +0000 | [diff] [blame] | 302 | temp |= I2CR_MSTA; |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 303 | writeb(temp, base + (I2CR << reg_shift)); |
Troy Kisky | 71e9f3c | 2012-07-19 08:18:11 +0000 | [diff] [blame] | 304 | |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 305 | ret = wait_for_sr_state(i2c_bus, ST_BUS_BUSY); |
Troy Kisky | 71e9f3c | 2012-07-19 08:18:11 +0000 | [diff] [blame] | 306 | if (ret < 0) |
Troy Kisky | a7f1a00 | 2012-07-19 08:18:16 +0000 | [diff] [blame] | 307 | return ret; |
Troy Kisky | b230ddc | 2012-07-19 08:18:06 +0000 | [diff] [blame] | 308 | |
Troy Kisky | 71e9f3c | 2012-07-19 08:18:11 +0000 | [diff] [blame] | 309 | temp |= I2CR_MTX | I2CR_TX_NO_AK; |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 310 | writeb(temp, base + (I2CR << reg_shift)); |
Troy Kisky | 71e9f3c | 2012-07-19 08:18:11 +0000 | [diff] [blame] | 311 | |
Troy Kisky | b230ddc | 2012-07-19 08:18:06 +0000 | [diff] [blame] | 312 | /* write slave address */ |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 313 | ret = tx_byte(i2c_bus, chip << 1); |
Troy Kisky | b230ddc | 2012-07-19 08:18:06 +0000 | [diff] [blame] | 314 | if (ret < 0) |
Troy Kisky | a7f1a00 | 2012-07-19 08:18:16 +0000 | [diff] [blame] | 315 | return ret; |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 316 | |
Marek Vasut | bf0783d | 2011-10-26 00:05:44 +0000 | [diff] [blame] | 317 | while (alen--) { |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 318 | ret = tx_byte(i2c_bus, (addr >> (alen * 8)) & 0xff); |
Troy Kisky | cea60b0 | 2012-07-19 08:18:04 +0000 | [diff] [blame] | 319 | if (ret < 0) |
Troy Kisky | a7f1a00 | 2012-07-19 08:18:16 +0000 | [diff] [blame] | 320 | return ret; |
Stefano Babic | 8168721 | 2011-01-20 07:51:31 +0000 | [diff] [blame] | 321 | } |
Troy Kisky | b230ddc | 2012-07-19 08:18:06 +0000 | [diff] [blame] | 322 | return 0; |
Troy Kisky | a7f1a00 | 2012-07-19 08:18:16 +0000 | [diff] [blame] | 323 | } |
| 324 | |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 325 | #ifndef CONFIG_DM_I2C |
| 326 | int i2c_idle_bus(struct mxc_i2c_bus *i2c_bus) |
| 327 | { |
| 328 | if (i2c_bus && i2c_bus->idle_bus_fn) |
| 329 | return i2c_bus->idle_bus_fn(i2c_bus->idle_bus_data); |
| 330 | return 0; |
| 331 | } |
| 332 | #else |
| 333 | /* |
| 334 | * Since pinmux is not supported, implement a weak function here. |
| 335 | * You can implement your i2c_bus_idle in board file. When pinctrl |
| 336 | * is supported, this can be removed. |
| 337 | */ |
| 338 | int __i2c_idle_bus(struct mxc_i2c_bus *i2c_bus) |
| 339 | { |
| 340 | return 0; |
| 341 | } |
Troy Kisky | 96c19bd | 2012-07-19 08:18:19 +0000 | [diff] [blame] | 342 | |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 343 | int i2c_idle_bus(struct mxc_i2c_bus *i2c_bus) |
| 344 | __attribute__((weak, alias("__i2c_idle_bus"))); |
| 345 | #endif |
| 346 | |
| 347 | static int i2c_init_transfer(struct mxc_i2c_bus *i2c_bus, u8 chip, |
| 348 | u32 addr, int alen) |
Troy Kisky | a7f1a00 | 2012-07-19 08:18:16 +0000 | [diff] [blame] | 349 | { |
| 350 | int retry; |
| 351 | int ret; |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 352 | int reg_shift = i2c_bus->driver_data & I2C_QUIRK_FLAG ? |
| 353 | VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT; |
Troy Kisky | a7f1a00 | 2012-07-19 08:18:16 +0000 | [diff] [blame] | 354 | for (retry = 0; retry < 3; retry++) { |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 355 | ret = i2c_init_transfer_(i2c_bus, chip, addr, alen); |
Troy Kisky | a7f1a00 | 2012-07-19 08:18:16 +0000 | [diff] [blame] | 356 | if (ret >= 0) |
| 357 | return 0; |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 358 | i2c_imx_stop(i2c_bus); |
Troy Kisky | a7f1a00 | 2012-07-19 08:18:16 +0000 | [diff] [blame] | 359 | if (ret == -ENODEV) |
| 360 | return ret; |
| 361 | |
| 362 | printf("%s: failed for chip 0x%x retry=%d\n", __func__, chip, |
| 363 | retry); |
| 364 | if (ret != -ERESTART) |
Alison Wang | 30ea41a | 2013-06-17 15:30:39 +0800 | [diff] [blame] | 365 | /* Disable controller */ |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 366 | writeb(I2CR_IDIS, i2c_bus->base + (I2CR << reg_shift)); |
Troy Kisky | a7f1a00 | 2012-07-19 08:18:16 +0000 | [diff] [blame] | 367 | udelay(100); |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 368 | if (i2c_idle_bus(i2c_bus) < 0) |
Troy Kisky | 96c19bd | 2012-07-19 08:18:19 +0000 | [diff] [blame] | 369 | break; |
Troy Kisky | a7f1a00 | 2012-07-19 08:18:16 +0000 | [diff] [blame] | 370 | } |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 371 | printf("%s: give up i2c_regs=0x%lx\n", __func__, i2c_bus->base); |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 372 | return ret; |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 373 | } |
| 374 | |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 375 | |
| 376 | static int i2c_write_data(struct mxc_i2c_bus *i2c_bus, u8 chip, const u8 *buf, |
| 377 | int len) |
| 378 | { |
| 379 | int i, ret = 0; |
| 380 | |
| 381 | debug("i2c_write_data: chip=0x%x, len=0x%x\n", chip, len); |
| 382 | debug("write_data: "); |
| 383 | /* use rc for counter */ |
| 384 | for (i = 0; i < len; ++i) |
| 385 | debug(" 0x%02x", buf[i]); |
| 386 | debug("\n"); |
| 387 | |
| 388 | for (i = 0; i < len; i++) { |
| 389 | ret = tx_byte(i2c_bus, buf[i]); |
| 390 | if (ret < 0) { |
| 391 | debug("i2c_write_data(): rc=%d\n", ret); |
| 392 | break; |
| 393 | } |
| 394 | } |
| 395 | |
| 396 | return ret; |
| 397 | } |
| 398 | |
| 399 | static int i2c_read_data(struct mxc_i2c_bus *i2c_bus, uchar chip, uchar *buf, |
| 400 | int len) |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 401 | { |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 402 | int ret; |
| 403 | unsigned int temp; |
| 404 | int i; |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 405 | int reg_shift = i2c_bus->driver_data & I2C_QUIRK_FLAG ? |
| 406 | VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT; |
| 407 | ulong base = i2c_bus->base; |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 408 | |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 409 | debug("i2c_read_data: chip=0x%x, len=0x%x\n", chip, len); |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 410 | |
| 411 | /* setup bus to read data */ |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 412 | temp = readb(base + (I2CR << reg_shift)); |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 413 | temp &= ~(I2CR_MTX | I2CR_TX_NO_AK); |
| 414 | if (len == 1) |
| 415 | temp |= I2CR_TX_NO_AK; |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 416 | writeb(temp, base + (I2CR << reg_shift)); |
| 417 | writeb(I2SR_IIF_CLEAR, base + (I2SR << reg_shift)); |
| 418 | /* dummy read to clear ICF */ |
| 419 | readb(base + (I2DR << reg_shift)); |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 420 | |
| 421 | /* read data */ |
| 422 | for (i = 0; i < len; i++) { |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 423 | ret = wait_for_sr_state(i2c_bus, ST_IIF); |
Troy Kisky | 7aa57a0 | 2012-07-19 08:18:09 +0000 | [diff] [blame] | 424 | if (ret < 0) { |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 425 | debug("i2c_read_data(): ret=%d\n", ret); |
| 426 | i2c_imx_stop(i2c_bus); |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 427 | return ret; |
Troy Kisky | c4330d2 | 2012-07-19 08:18:07 +0000 | [diff] [blame] | 428 | } |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 429 | |
| 430 | /* |
| 431 | * It must generate STOP before read I2DR to prevent |
| 432 | * controller from generating another clock cycle |
| 433 | */ |
| 434 | if (i == (len - 1)) { |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 435 | i2c_imx_stop(i2c_bus); |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 436 | } else if (i == (len - 2)) { |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 437 | temp = readb(base + (I2CR << reg_shift)); |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 438 | temp |= I2CR_TX_NO_AK; |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 439 | writeb(temp, base + (I2CR << reg_shift)); |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 440 | } |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 441 | writeb(I2SR_IIF_CLEAR, base + (I2SR << reg_shift)); |
| 442 | buf[i] = readb(base + (I2DR << reg_shift)); |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 443 | } |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 444 | |
| 445 | /* reuse ret for counter*/ |
| 446 | for (ret = 0; ret < len; ++ret) |
| 447 | debug(" 0x%02x", buf[ret]); |
| 448 | debug("\n"); |
| 449 | |
| 450 | i2c_imx_stop(i2c_bus); |
Troy Kisky | 7aa57a0 | 2012-07-19 08:18:09 +0000 | [diff] [blame] | 451 | return 0; |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 452 | } |
| 453 | |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 454 | #ifndef CONFIG_DM_I2C |
| 455 | /* |
| 456 | * Read data from I2C device |
| 457 | */ |
| 458 | static int bus_i2c_read(struct mxc_i2c_bus *i2c_bus, u8 chip, u32 addr, |
| 459 | int alen, u8 *buf, int len) |
| 460 | { |
| 461 | int ret = 0; |
| 462 | u32 temp; |
| 463 | int reg_shift = i2c_bus->driver_data & I2C_QUIRK_FLAG ? |
| 464 | VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT; |
| 465 | ulong base = i2c_bus->base; |
| 466 | |
| 467 | ret = i2c_init_transfer(i2c_bus, chip, addr, alen); |
| 468 | if (ret < 0) |
| 469 | return ret; |
| 470 | |
| 471 | temp = readb(base + (I2CR << reg_shift)); |
| 472 | temp |= I2CR_RSTA; |
| 473 | writeb(temp, base + (I2CR << reg_shift)); |
| 474 | |
| 475 | ret = tx_byte(i2c_bus, (chip << 1) | 1); |
| 476 | if (ret < 0) { |
| 477 | i2c_imx_stop(i2c_bus); |
| 478 | return ret; |
| 479 | } |
| 480 | |
| 481 | ret = i2c_read_data(i2c_bus, chip, buf, len); |
| 482 | |
| 483 | i2c_imx_stop(i2c_bus); |
| 484 | return ret; |
| 485 | } |
| 486 | |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 487 | /* |
| 488 | * Write data to I2C device |
| 489 | */ |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 490 | static int bus_i2c_write(struct mxc_i2c_bus *i2c_bus, u8 chip, u32 addr, |
| 491 | int alen, const u8 *buf, int len) |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 492 | { |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 493 | int ret = 0; |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 494 | |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 495 | ret = i2c_init_transfer(i2c_bus, chip, addr, alen); |
Troy Kisky | cea60b0 | 2012-07-19 08:18:04 +0000 | [diff] [blame] | 496 | if (ret < 0) |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 497 | return ret; |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 498 | |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 499 | ret = i2c_write_data(i2c_bus, chip, buf, len); |
| 500 | |
| 501 | i2c_imx_stop(i2c_bus); |
| 502 | |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 503 | return ret; |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 504 | } |
Troy Kisky | cfbb88d | 2012-07-19 08:18:08 +0000 | [diff] [blame] | 505 | |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 506 | static struct mxc_i2c_bus mxc_i2c_buses[] = { |
trem | fac9640 | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 507 | #if defined(CONFIG_MX25) |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 508 | { 0, IMX_I2C_BASE }, |
| 509 | { 1, IMX_I2C2_BASE }, |
| 510 | { 2, IMX_I2C3_BASE }, |
trem | fac9640 | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 511 | #elif defined(CONFIG_MX27) |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 512 | { 0, IMX_I2C1_BASE }, |
| 513 | { 1, IMX_I2C2_BASE }, |
trem | fac9640 | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 514 | #elif defined(CONFIG_MX31) || defined(CONFIG_MX35) || \ |
| 515 | defined(CONFIG_MX51) || defined(CONFIG_MX53) || \ |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 516 | defined(CONFIG_MX6) |
| 517 | { 0, I2C1_BASE_ADDR }, |
| 518 | { 1, I2C2_BASE_ADDR }, |
| 519 | { 2, I2C3_BASE_ADDR }, |
| 520 | #elif defined(CONFIG_LS102XA) |
| 521 | { 0, I2C1_BASE_ADDR, I2C_QUIRK_FLAG }, |
| 522 | { 1, I2C2_BASE_ADDR, I2C_QUIRK_FLAG }, |
| 523 | { 2, I2C3_BASE_ADDR, I2C_QUIRK_FLAG }, |
trem | fac9640 | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 524 | #elif defined(CONFIG_VF610) |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 525 | { 0, I2C0_BASE_ADDR, I2C_QUIRK_FLAG }, |
York Sun | 2f78eae | 2014-06-23 15:15:54 -0700 | [diff] [blame] | 526 | #elif defined(CONFIG_FSL_LSCH3) |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 527 | { 0, I2C1_BASE_ADDR, I2C_QUIRK_FLAG }, |
| 528 | { 1, I2C2_BASE_ADDR, I2C_QUIRK_FLAG }, |
| 529 | { 2, I2C3_BASE_ADDR, I2C_QUIRK_FLAG }, |
| 530 | { 3, I2C4_BASE_ADDR, I2C_QUIRK_FLAG }, |
Troy Kisky | e4ff525 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 531 | #else |
trem | fac9640 | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 532 | #error "architecture not supported" |
Troy Kisky | e4ff525 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 533 | #endif |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 534 | { } |
trem | fac9640 | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 535 | }; |
| 536 | |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 537 | struct mxc_i2c_bus *i2c_get_base(struct i2c_adapter *adap) |
trem | fac9640 | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 538 | { |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 539 | return &mxc_i2c_buses[adap->hwadapnr]; |
Troy Kisky | 96c19bd | 2012-07-19 08:18:19 +0000 | [diff] [blame] | 540 | } |
| 541 | |
trem | fac9640 | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 542 | static int mxc_i2c_read(struct i2c_adapter *adap, uint8_t chip, |
| 543 | uint addr, int alen, uint8_t *buffer, |
| 544 | int len) |
Troy Kisky | 9815326 | 2012-07-19 08:18:20 +0000 | [diff] [blame] | 545 | { |
trem | fac9640 | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 546 | return bus_i2c_read(i2c_get_base(adap), chip, addr, alen, buffer, len); |
Troy Kisky | 9815326 | 2012-07-19 08:18:20 +0000 | [diff] [blame] | 547 | } |
| 548 | |
trem | fac9640 | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 549 | static int mxc_i2c_write(struct i2c_adapter *adap, uint8_t chip, |
| 550 | uint addr, int alen, uint8_t *buffer, |
| 551 | int len) |
Troy Kisky | 9815326 | 2012-07-19 08:18:20 +0000 | [diff] [blame] | 552 | { |
trem | fac9640 | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 553 | return bus_i2c_write(i2c_get_base(adap), chip, addr, alen, buffer, len); |
Troy Kisky | e4ff525 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 554 | } |
| 555 | |
Troy Kisky | cfbb88d | 2012-07-19 08:18:08 +0000 | [diff] [blame] | 556 | /* |
| 557 | * Test if a chip at a given address responds (probe the chip) |
| 558 | */ |
trem | fac9640 | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 559 | static int mxc_i2c_probe(struct i2c_adapter *adap, uint8_t chip) |
Troy Kisky | cfbb88d | 2012-07-19 08:18:08 +0000 | [diff] [blame] | 560 | { |
trem | fac9640 | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 561 | return bus_i2c_write(i2c_get_base(adap), chip, 0, 0, NULL, 0); |
Troy Kisky | e4ff525 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 562 | } |
| 563 | |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 564 | int __enable_i2c_clk(unsigned char enable, unsigned i2c_num) |
Troy Kisky | e4ff525 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 565 | { |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 566 | return 1; |
| 567 | } |
| 568 | int enable_i2c_clk(unsigned char enable, unsigned i2c_num) |
| 569 | __attribute__((weak, alias("__enable_i2c_clk"))); |
| 570 | |
| 571 | void bus_i2c_init(int index, int speed, int unused, |
| 572 | int (*idle_bus_fn)(void *p), void *idle_bus_data) |
| 573 | { |
| 574 | int ret; |
| 575 | |
| 576 | if (index >= ARRAY_SIZE(mxc_i2c_buses)) { |
| 577 | debug("Error i2c index\n"); |
Troy Kisky | e4ff525 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 578 | return; |
Troy Kisky | e4ff525 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 579 | } |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 580 | |
| 581 | mxc_i2c_buses[index].idle_bus_fn = idle_bus_fn; |
| 582 | mxc_i2c_buses[index].idle_bus_data = idle_bus_data; |
| 583 | |
| 584 | ret = enable_i2c_clk(1, index); |
| 585 | if (ret < 0) { |
| 586 | debug("I2C-%d clk fail to enable.\n", index); |
| 587 | return; |
| 588 | } |
| 589 | |
| 590 | bus_i2c_set_bus_speed(&mxc_i2c_buses[index], speed); |
Troy Kisky | e4ff525 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 591 | } |
| 592 | |
| 593 | /* |
| 594 | * Init I2C Bus |
| 595 | */ |
trem | fac9640 | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 596 | static void mxc_i2c_init(struct i2c_adapter *adap, int speed, int slaveaddr) |
Troy Kisky | e4ff525 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 597 | { |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 598 | bus_i2c_init(adap->hwadapnr, speed, slaveaddr, NULL, NULL); |
Troy Kisky | e4ff525 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 599 | } |
| 600 | |
| 601 | /* |
| 602 | * Set I2C Speed |
| 603 | */ |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 604 | static u32 mxc_i2c_set_bus_speed(struct i2c_adapter *adap, uint speed) |
Troy Kisky | e4ff525 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 605 | { |
trem | fac9640 | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 606 | return bus_i2c_set_bus_speed(i2c_get_base(adap), speed); |
Troy Kisky | e4ff525 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 607 | } |
| 608 | |
| 609 | /* |
trem | fac9640 | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 610 | * Register mxc i2c adapters |
Troy Kisky | e4ff525 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 611 | */ |
trem | fac9640 | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 612 | U_BOOT_I2C_ADAP_COMPLETE(mxc0, mxc_i2c_init, mxc_i2c_probe, |
| 613 | mxc_i2c_read, mxc_i2c_write, |
| 614 | mxc_i2c_set_bus_speed, |
| 615 | CONFIG_SYS_MXC_I2C1_SPEED, |
| 616 | CONFIG_SYS_MXC_I2C1_SLAVE, 0) |
| 617 | U_BOOT_I2C_ADAP_COMPLETE(mxc1, mxc_i2c_init, mxc_i2c_probe, |
| 618 | mxc_i2c_read, mxc_i2c_write, |
| 619 | mxc_i2c_set_bus_speed, |
| 620 | CONFIG_SYS_MXC_I2C2_SPEED, |
| 621 | CONFIG_SYS_MXC_I2C2_SLAVE, 1) |
York Sun | f8cb101 | 2015-03-20 10:20:40 -0700 | [diff] [blame] | 622 | #ifdef CONFIG_SYS_I2C_MXC_I2C3 |
trem | fac9640 | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 623 | U_BOOT_I2C_ADAP_COMPLETE(mxc2, mxc_i2c_init, mxc_i2c_probe, |
| 624 | mxc_i2c_read, mxc_i2c_write, |
| 625 | mxc_i2c_set_bus_speed, |
| 626 | CONFIG_SYS_MXC_I2C3_SPEED, |
| 627 | CONFIG_SYS_MXC_I2C3_SLAVE, 2) |
| 628 | #endif |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 629 | |
York Sun | f8cb101 | 2015-03-20 10:20:40 -0700 | [diff] [blame] | 630 | #ifdef CONFIG_SYS_I2C_MXC_I2C4 |
| 631 | U_BOOT_I2C_ADAP_COMPLETE(mxc3, mxc_i2c_init, mxc_i2c_probe, |
| 632 | mxc_i2c_read, mxc_i2c_write, |
| 633 | mxc_i2c_set_bus_speed, |
| 634 | CONFIG_SYS_MXC_I2C4_SPEED, |
| 635 | CONFIG_SYS_MXC_I2C4_SLAVE, 3) |
| 636 | #endif |
Peng Fan | 71204e9 | 2015-05-15 07:29:12 +0800 | [diff] [blame^] | 637 | |
| 638 | #else |
| 639 | |
| 640 | static int mxc_i2c_set_bus_speed(struct udevice *bus, unsigned int speed) |
| 641 | { |
| 642 | struct mxc_i2c_bus *i2c_bus = dev_get_priv(bus); |
| 643 | |
| 644 | return bus_i2c_set_bus_speed(i2c_bus, speed); |
| 645 | } |
| 646 | |
| 647 | static int mxc_i2c_probe(struct udevice *bus) |
| 648 | { |
| 649 | struct mxc_i2c_bus *i2c_bus = dev_get_priv(bus); |
| 650 | fdt_addr_t addr; |
| 651 | int ret; |
| 652 | |
| 653 | i2c_bus->driver_data = dev_get_driver_data(bus); |
| 654 | |
| 655 | addr = dev_get_addr(bus); |
| 656 | if (addr == FDT_ADDR_T_NONE) |
| 657 | return -ENODEV; |
| 658 | |
| 659 | i2c_bus->base = addr; |
| 660 | i2c_bus->index = bus->seq; |
| 661 | |
| 662 | /* Enable clk */ |
| 663 | ret = enable_i2c_clk(1, bus->seq); |
| 664 | if (ret < 0) |
| 665 | return ret; |
| 666 | |
| 667 | ret = i2c_idle_bus(i2c_bus); |
| 668 | if (ret < 0) { |
| 669 | /* Disable clk */ |
| 670 | enable_i2c_clk(0, bus->seq); |
| 671 | return ret; |
| 672 | } |
| 673 | |
| 674 | /* |
| 675 | * Pinmux settings are in board file now, until pinmux is supported, |
| 676 | * we can set pinmux here in probe function. |
| 677 | */ |
| 678 | |
| 679 | debug("i2c : controller bus %d at %lu , speed %d: ", |
| 680 | bus->seq, i2c_bus->base, |
| 681 | i2c_bus->speed); |
| 682 | |
| 683 | return 0; |
| 684 | } |
| 685 | |
| 686 | static int mxc_i2c_probe_chip(struct udevice *bus, u32 chip_addr, |
| 687 | u32 chip_flags) |
| 688 | { |
| 689 | int ret; |
| 690 | struct mxc_i2c_bus *i2c_bus = dev_get_priv(bus); |
| 691 | |
| 692 | ret = i2c_init_transfer(i2c_bus, chip_addr, 0, 0); |
| 693 | if (ret < 0) { |
| 694 | debug("%s failed, ret = %d\n", __func__, ret); |
| 695 | return ret; |
| 696 | } |
| 697 | |
| 698 | i2c_imx_stop(i2c_bus); |
| 699 | |
| 700 | return 0; |
| 701 | } |
| 702 | |
| 703 | static int mxc_i2c_xfer(struct udevice *bus, struct i2c_msg *msg, int nmsgs) |
| 704 | { |
| 705 | struct mxc_i2c_bus *i2c_bus = dev_get_priv(bus); |
| 706 | int ret = 0; |
| 707 | ulong base = i2c_bus->base; |
| 708 | int reg_shift = i2c_bus->driver_data & I2C_QUIRK_FLAG ? |
| 709 | VF610_I2C_REGSHIFT : IMX_I2C_REGSHIFT; |
| 710 | |
| 711 | /* |
| 712 | * Here the 3rd parameter addr and the 4th one alen are set to 0, |
| 713 | * because here we only want to send out chip address. The register |
| 714 | * address is wrapped in msg. |
| 715 | */ |
| 716 | ret = i2c_init_transfer(i2c_bus, msg->addr, 0, 0); |
| 717 | if (ret < 0) { |
| 718 | debug("i2c_init_transfer error: %d\n", ret); |
| 719 | return ret; |
| 720 | } |
| 721 | |
| 722 | for (; nmsgs > 0; nmsgs--, msg++) { |
| 723 | bool next_is_read = nmsgs > 1 && (msg[1].flags & I2C_M_RD); |
| 724 | debug("i2c_xfer: chip=0x%x, len=0x%x\n", msg->addr, msg->len); |
| 725 | if (msg->flags & I2C_M_RD) |
| 726 | ret = i2c_read_data(i2c_bus, msg->addr, msg->buf, |
| 727 | msg->len); |
| 728 | else { |
| 729 | ret = i2c_write_data(i2c_bus, msg->addr, msg->buf, |
| 730 | msg->len); |
| 731 | if (ret) |
| 732 | break; |
| 733 | if (next_is_read) { |
| 734 | /* Reuse ret */ |
| 735 | ret = readb(base + (I2CR << reg_shift)); |
| 736 | ret |= I2CR_RSTA; |
| 737 | writeb(ret, base + (I2CR << reg_shift)); |
| 738 | |
| 739 | ret = tx_byte(i2c_bus, (msg->addr << 1) | 1); |
| 740 | if (ret < 0) { |
| 741 | i2c_imx_stop(i2c_bus); |
| 742 | break; |
| 743 | } |
| 744 | } |
| 745 | } |
| 746 | } |
| 747 | |
| 748 | if (ret) |
| 749 | debug("i2c_write: error sending\n"); |
| 750 | |
| 751 | i2c_imx_stop(i2c_bus); |
| 752 | |
| 753 | return ret; |
| 754 | } |
| 755 | |
| 756 | static const struct dm_i2c_ops mxc_i2c_ops = { |
| 757 | .xfer = mxc_i2c_xfer, |
| 758 | .probe_chip = mxc_i2c_probe_chip, |
| 759 | .set_bus_speed = mxc_i2c_set_bus_speed, |
| 760 | }; |
| 761 | |
| 762 | static const struct udevice_id mxc_i2c_ids[] = { |
| 763 | { .compatible = "fsl,imx21-i2c", }, |
| 764 | { .compatible = "fsl,vf610-i2c", .data = I2C_QUIRK_FLAG, }, |
| 765 | {} |
| 766 | }; |
| 767 | |
| 768 | U_BOOT_DRIVER(i2c_mxc) = { |
| 769 | .name = "i2c_mxc", |
| 770 | .id = UCLASS_I2C, |
| 771 | .of_match = mxc_i2c_ids, |
| 772 | .probe = mxc_i2c_probe, |
| 773 | .priv_auto_alloc_size = sizeof(struct mxc_i2c_bus), |
| 774 | .ops = &mxc_i2c_ops, |
| 775 | }; |
| 776 | #endif |