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> |
Troy Kisky | 24cd738 | 2012-07-19 08:18:03 +0000 | [diff] [blame] | 21 | #include <asm/io.h> |
Marek Vasut | bf0783d | 2011-10-26 00:05:44 +0000 | [diff] [blame] | 22 | #include <i2c.h> |
Troy Kisky | 7aa57a0 | 2012-07-19 08:18:09 +0000 | [diff] [blame] | 23 | #include <watchdog.h> |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 24 | |
York Sun | dec1861 | 2014-02-10 14:02:52 -0800 | [diff] [blame] | 25 | DECLARE_GLOBAL_DATA_PTR; |
| 26 | |
Alison Wang | 30ea41a | 2013-06-17 15:30:39 +0800 | [diff] [blame] | 27 | #ifdef I2C_QUIRK_REG |
| 28 | struct mxc_i2c_regs { |
| 29 | uint8_t iadr; |
| 30 | uint8_t ifdr; |
| 31 | uint8_t i2cr; |
| 32 | uint8_t i2sr; |
| 33 | uint8_t i2dr; |
| 34 | }; |
| 35 | #else |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 36 | struct mxc_i2c_regs { |
| 37 | uint32_t iadr; |
| 38 | uint32_t ifdr; |
| 39 | uint32_t i2cr; |
| 40 | uint32_t i2sr; |
| 41 | uint32_t i2dr; |
| 42 | }; |
Alison Wang | 30ea41a | 2013-06-17 15:30:39 +0800 | [diff] [blame] | 43 | #endif |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 44 | |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 45 | #define I2CR_IIEN (1 << 6) |
| 46 | #define I2CR_MSTA (1 << 5) |
| 47 | #define I2CR_MTX (1 << 4) |
| 48 | #define I2CR_TX_NO_AK (1 << 3) |
| 49 | #define I2CR_RSTA (1 << 2) |
| 50 | |
| 51 | #define I2SR_ICF (1 << 7) |
| 52 | #define I2SR_IBB (1 << 5) |
Troy Kisky | d5383a6 | 2012-07-19 08:18:15 +0000 | [diff] [blame] | 53 | #define I2SR_IAL (1 << 4) |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 54 | #define I2SR_IIF (1 << 1) |
| 55 | #define I2SR_RX_NO_AK (1 << 0) |
| 56 | |
Alison Wang | 30ea41a | 2013-06-17 15:30:39 +0800 | [diff] [blame] | 57 | #ifdef I2C_QUIRK_REG |
| 58 | #define I2CR_IEN (0 << 7) |
| 59 | #define I2CR_IDIS (1 << 7) |
| 60 | #define I2SR_IIF_CLEAR (1 << 1) |
| 61 | #else |
| 62 | #define I2CR_IEN (1 << 7) |
| 63 | #define I2CR_IDIS (0 << 7) |
| 64 | #define I2SR_IIF_CLEAR (0 << 1) |
| 65 | #endif |
| 66 | |
Troy Kisky | e4ff525 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 67 | #if defined(CONFIG_HARD_I2C) && !defined(CONFIG_SYS_I2C_BASE) |
Troy Kisky | de6f604 | 2012-04-24 17:33:25 +0000 | [diff] [blame] | 68 | #error "define CONFIG_SYS_I2C_BASE to use the mxc_i2c driver" |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 69 | #endif |
| 70 | |
Alison Wang | 30ea41a | 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 | db84140 | 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 | 30ea41a | 2013-06-17 15:30:39 +0800 | [diff] [blame] | 105 | #endif |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 106 | |
trem | fac9640 | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 107 | |
| 108 | #ifndef CONFIG_SYS_MXC_I2C1_SPEED |
| 109 | #define CONFIG_SYS_MXC_I2C1_SPEED 100000 |
| 110 | #endif |
| 111 | #ifndef CONFIG_SYS_MXC_I2C2_SPEED |
| 112 | #define CONFIG_SYS_MXC_I2C2_SPEED 100000 |
| 113 | #endif |
| 114 | #ifndef CONFIG_SYS_MXC_I2C3_SPEED |
| 115 | #define CONFIG_SYS_MXC_I2C3_SPEED 100000 |
| 116 | #endif |
| 117 | |
| 118 | #ifndef CONFIG_SYS_MXC_I2C1_SLAVE |
| 119 | #define CONFIG_SYS_MXC_I2C1_SLAVE 0 |
| 120 | #endif |
| 121 | #ifndef CONFIG_SYS_MXC_I2C2_SLAVE |
| 122 | #define CONFIG_SYS_MXC_I2C2_SLAVE 0 |
| 123 | #endif |
| 124 | #ifndef CONFIG_SYS_MXC_I2C3_SLAVE |
| 125 | #define CONFIG_SYS_MXC_I2C3_SLAVE 0 |
| 126 | #endif |
| 127 | |
| 128 | |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 129 | /* |
| 130 | * Calculate and set proper clock divider |
| 131 | */ |
Marek Vasut | bf0783d | 2011-10-26 00:05:44 +0000 | [diff] [blame] | 132 | static uint8_t i2c_imx_get_clk(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 | */ |
Marek Vasut | 7f86bd5 | 2012-11-12 14:34:26 +0000 | [diff] [blame] | 165 | static int bus_i2c_set_bus_speed(void *base, int speed) |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 166 | { |
Troy Kisky | e4ff525 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 167 | struct mxc_i2c_regs *i2c_regs = (struct mxc_i2c_regs *)base; |
Marek Vasut | bf0783d | 2011-10-26 00:05:44 +0000 | [diff] [blame] | 168 | u8 clk_idx = i2c_imx_get_clk(speed); |
| 169 | u8 idx = i2c_clk_div[clk_idx][1]; |
| 170 | |
| 171 | /* Store divider value */ |
| 172 | writeb(idx, &i2c_regs->ifdr); |
| 173 | |
Troy Kisky | 83a1a19 | 2012-07-19 08:18:12 +0000 | [diff] [blame] | 174 | /* Reset module */ |
Alison Wang | 30ea41a | 2013-06-17 15:30:39 +0800 | [diff] [blame] | 175 | writeb(I2CR_IDIS, &i2c_regs->i2cr); |
Troy Kisky | 83a1a19 | 2012-07-19 08:18:12 +0000 | [diff] [blame] | 176 | writeb(0, &i2c_regs->i2sr); |
Marek Vasut | b567b8f | 2011-09-27 06:34:11 +0000 | [diff] [blame] | 177 | return 0; |
| 178 | } |
| 179 | |
Troy Kisky | 7aa57a0 | 2012-07-19 08:18:09 +0000 | [diff] [blame] | 180 | #define ST_BUS_IDLE (0 | (I2SR_IBB << 8)) |
| 181 | #define ST_BUS_BUSY (I2SR_IBB | (I2SR_IBB << 8)) |
| 182 | #define ST_IIF (I2SR_IIF | (I2SR_IIF << 8)) |
| 183 | |
| 184 | static int wait_for_sr_state(struct mxc_i2c_regs *i2c_regs, unsigned state) |
Stefano Babic | 8168721 | 2011-01-20 07:51:31 +0000 | [diff] [blame] | 185 | { |
Troy Kisky | 7aa57a0 | 2012-07-19 08:18:09 +0000 | [diff] [blame] | 186 | unsigned sr; |
| 187 | ulong elapsed; |
| 188 | ulong start_time = get_timer(0); |
| 189 | for (;;) { |
| 190 | sr = readb(&i2c_regs->i2sr); |
Troy Kisky | d5383a6 | 2012-07-19 08:18:15 +0000 | [diff] [blame] | 191 | if (sr & I2SR_IAL) { |
Alison Wang | 30ea41a | 2013-06-17 15:30:39 +0800 | [diff] [blame] | 192 | #ifdef I2C_QUIRK_REG |
| 193 | writeb(sr | I2SR_IAL, &i2c_regs->i2sr); |
| 194 | #else |
Troy Kisky | d5383a6 | 2012-07-19 08:18:15 +0000 | [diff] [blame] | 195 | writeb(sr & ~I2SR_IAL, &i2c_regs->i2sr); |
Alison Wang | 30ea41a | 2013-06-17 15:30:39 +0800 | [diff] [blame] | 196 | #endif |
Troy Kisky | d5383a6 | 2012-07-19 08:18:15 +0000 | [diff] [blame] | 197 | printf("%s: Arbitration lost sr=%x cr=%x state=%x\n", |
| 198 | __func__, sr, readb(&i2c_regs->i2cr), state); |
| 199 | return -ERESTART; |
| 200 | } |
Troy Kisky | 7aa57a0 | 2012-07-19 08:18:09 +0000 | [diff] [blame] | 201 | if ((sr & (state >> 8)) == (unsigned char)state) |
| 202 | return sr; |
| 203 | WATCHDOG_RESET(); |
| 204 | elapsed = get_timer(start_time); |
| 205 | if (elapsed > (CONFIG_SYS_HZ / 10)) /* .1 seconds */ |
| 206 | break; |
Stefano Babic | 8168721 | 2011-01-20 07:51:31 +0000 | [diff] [blame] | 207 | } |
Troy Kisky | 7aa57a0 | 2012-07-19 08:18:09 +0000 | [diff] [blame] | 208 | printf("%s: failed sr=%x cr=%x state=%x\n", __func__, |
| 209 | sr, readb(&i2c_regs->i2cr), state); |
Troy Kisky | cea60b0 | 2012-07-19 08:18:04 +0000 | [diff] [blame] | 210 | return -ETIMEDOUT; |
Stefano Babic | 8168721 | 2011-01-20 07:51:31 +0000 | [diff] [blame] | 211 | } |
| 212 | |
Troy Kisky | cea60b0 | 2012-07-19 08:18:04 +0000 | [diff] [blame] | 213 | static int tx_byte(struct mxc_i2c_regs *i2c_regs, u8 byte) |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 214 | { |
Troy Kisky | cea60b0 | 2012-07-19 08:18:04 +0000 | [diff] [blame] | 215 | int ret; |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 216 | |
Alison Wang | 30ea41a | 2013-06-17 15:30:39 +0800 | [diff] [blame] | 217 | writeb(I2SR_IIF_CLEAR, &i2c_regs->i2sr); |
Troy Kisky | cea60b0 | 2012-07-19 08:18:04 +0000 | [diff] [blame] | 218 | writeb(byte, &i2c_regs->i2dr); |
Troy Kisky | 7aa57a0 | 2012-07-19 08:18:09 +0000 | [diff] [blame] | 219 | ret = wait_for_sr_state(i2c_regs, ST_IIF); |
Troy Kisky | cea60b0 | 2012-07-19 08:18:04 +0000 | [diff] [blame] | 220 | if (ret < 0) |
| 221 | return ret; |
Troy Kisky | cea60b0 | 2012-07-19 08:18:04 +0000 | [diff] [blame] | 222 | if (ret & I2SR_RX_NO_AK) |
| 223 | return -ENODEV; |
| 224 | return 0; |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 225 | } |
| 226 | |
| 227 | /* |
Troy Kisky | 90a5b70 | 2012-07-19 08:18:13 +0000 | [diff] [blame] | 228 | * Stop I2C transaction |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 229 | */ |
Troy Kisky | 27a5da0 | 2012-07-19 08:18:17 +0000 | [diff] [blame] | 230 | static void i2c_imx_stop(struct mxc_i2c_regs *i2c_regs) |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 231 | { |
Troy Kisky | 7aa57a0 | 2012-07-19 08:18:09 +0000 | [diff] [blame] | 232 | int ret; |
Troy Kisky | 90a5b70 | 2012-07-19 08:18:13 +0000 | [diff] [blame] | 233 | unsigned int temp = readb(&i2c_regs->i2cr); |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 234 | |
Troy Kisky | 1c076db | 2012-07-19 08:18:02 +0000 | [diff] [blame] | 235 | temp &= ~(I2CR_MSTA | I2CR_MTX); |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 236 | writeb(temp, &i2c_regs->i2cr); |
Troy Kisky | 7aa57a0 | 2012-07-19 08:18:09 +0000 | [diff] [blame] | 237 | ret = wait_for_sr_state(i2c_regs, ST_BUS_IDLE); |
| 238 | if (ret < 0) |
| 239 | printf("%s:trigger stop failed\n", __func__); |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 240 | } |
| 241 | |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 242 | /* |
Troy Kisky | b230ddc | 2012-07-19 08:18:06 +0000 | [diff] [blame] | 243 | * Send start signal, chip address and |
| 244 | * write register address |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 245 | */ |
Troy Kisky | a7f1a00 | 2012-07-19 08:18:16 +0000 | [diff] [blame] | 246 | static int i2c_init_transfer_(struct mxc_i2c_regs *i2c_regs, |
Troy Kisky | b230ddc | 2012-07-19 08:18:06 +0000 | [diff] [blame] | 247 | uchar chip, uint addr, int alen) |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 248 | { |
Troy Kisky | 71e9f3c | 2012-07-19 08:18:11 +0000 | [diff] [blame] | 249 | unsigned int temp; |
| 250 | int ret; |
| 251 | |
| 252 | /* Enable I2C controller */ |
Alison Wang | 30ea41a | 2013-06-17 15:30:39 +0800 | [diff] [blame] | 253 | #ifdef I2C_QUIRK_REG |
| 254 | if (readb(&i2c_regs->i2cr) & I2CR_IDIS) { |
| 255 | #else |
Troy Kisky | 90a5b70 | 2012-07-19 08:18:13 +0000 | [diff] [blame] | 256 | if (!(readb(&i2c_regs->i2cr) & I2CR_IEN)) { |
Alison Wang | 30ea41a | 2013-06-17 15:30:39 +0800 | [diff] [blame] | 257 | #endif |
Troy Kisky | 90a5b70 | 2012-07-19 08:18:13 +0000 | [diff] [blame] | 258 | writeb(I2CR_IEN, &i2c_regs->i2cr); |
| 259 | /* Wait for controller to be stable */ |
| 260 | udelay(50); |
| 261 | } |
Troy Kisky | ca741da | 2012-07-19 08:18:14 +0000 | [diff] [blame] | 262 | if (readb(&i2c_regs->iadr) == (chip << 1)) |
| 263 | writeb((chip << 1) ^ 2, &i2c_regs->iadr); |
Alison Wang | 30ea41a | 2013-06-17 15:30:39 +0800 | [diff] [blame] | 264 | writeb(I2SR_IIF_CLEAR, &i2c_regs->i2sr); |
Troy Kisky | 90a5b70 | 2012-07-19 08:18:13 +0000 | [diff] [blame] | 265 | ret = wait_for_sr_state(i2c_regs, ST_BUS_IDLE); |
| 266 | if (ret < 0) |
Troy Kisky | a7f1a00 | 2012-07-19 08:18:16 +0000 | [diff] [blame] | 267 | return ret; |
Troy Kisky | 71e9f3c | 2012-07-19 08:18:11 +0000 | [diff] [blame] | 268 | |
| 269 | /* Start I2C transaction */ |
| 270 | temp = readb(&i2c_regs->i2cr); |
| 271 | temp |= I2CR_MSTA; |
| 272 | writeb(temp, &i2c_regs->i2cr); |
| 273 | |
| 274 | ret = wait_for_sr_state(i2c_regs, ST_BUS_BUSY); |
| 275 | if (ret < 0) |
Troy Kisky | a7f1a00 | 2012-07-19 08:18:16 +0000 | [diff] [blame] | 276 | return ret; |
Troy Kisky | b230ddc | 2012-07-19 08:18:06 +0000 | [diff] [blame] | 277 | |
Troy Kisky | 71e9f3c | 2012-07-19 08:18:11 +0000 | [diff] [blame] | 278 | temp |= I2CR_MTX | I2CR_TX_NO_AK; |
| 279 | writeb(temp, &i2c_regs->i2cr); |
| 280 | |
Troy Kisky | b230ddc | 2012-07-19 08:18:06 +0000 | [diff] [blame] | 281 | /* write slave address */ |
| 282 | ret = tx_byte(i2c_regs, chip << 1); |
| 283 | if (ret < 0) |
Troy Kisky | a7f1a00 | 2012-07-19 08:18:16 +0000 | [diff] [blame] | 284 | return ret; |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 285 | |
Marek Vasut | bf0783d | 2011-10-26 00:05:44 +0000 | [diff] [blame] | 286 | while (alen--) { |
Troy Kisky | cea60b0 | 2012-07-19 08:18:04 +0000 | [diff] [blame] | 287 | ret = tx_byte(i2c_regs, (addr >> (alen * 8)) & 0xff); |
| 288 | if (ret < 0) |
Troy Kisky | a7f1a00 | 2012-07-19 08:18:16 +0000 | [diff] [blame] | 289 | return ret; |
Stefano Babic | 8168721 | 2011-01-20 07:51:31 +0000 | [diff] [blame] | 290 | } |
Troy Kisky | b230ddc | 2012-07-19 08:18:06 +0000 | [diff] [blame] | 291 | return 0; |
Troy Kisky | a7f1a00 | 2012-07-19 08:18:16 +0000 | [diff] [blame] | 292 | } |
| 293 | |
Troy Kisky | 96c19bd | 2012-07-19 08:18:19 +0000 | [diff] [blame] | 294 | static int i2c_idle_bus(void *base); |
| 295 | |
Troy Kisky | a7f1a00 | 2012-07-19 08:18:16 +0000 | [diff] [blame] | 296 | static int i2c_init_transfer(struct mxc_i2c_regs *i2c_regs, |
| 297 | uchar chip, uint addr, int alen) |
| 298 | { |
| 299 | int retry; |
| 300 | int ret; |
| 301 | for (retry = 0; retry < 3; retry++) { |
| 302 | ret = i2c_init_transfer_(i2c_regs, chip, addr, alen); |
| 303 | if (ret >= 0) |
| 304 | return 0; |
Troy Kisky | 27a5da0 | 2012-07-19 08:18:17 +0000 | [diff] [blame] | 305 | i2c_imx_stop(i2c_regs); |
Troy Kisky | a7f1a00 | 2012-07-19 08:18:16 +0000 | [diff] [blame] | 306 | if (ret == -ENODEV) |
| 307 | return ret; |
| 308 | |
| 309 | printf("%s: failed for chip 0x%x retry=%d\n", __func__, chip, |
| 310 | retry); |
| 311 | if (ret != -ERESTART) |
Alison Wang | 30ea41a | 2013-06-17 15:30:39 +0800 | [diff] [blame] | 312 | /* Disable controller */ |
| 313 | writeb(I2CR_IDIS, &i2c_regs->i2cr); |
Troy Kisky | a7f1a00 | 2012-07-19 08:18:16 +0000 | [diff] [blame] | 314 | udelay(100); |
Troy Kisky | 96c19bd | 2012-07-19 08:18:19 +0000 | [diff] [blame] | 315 | if (i2c_idle_bus(i2c_regs) < 0) |
| 316 | break; |
Troy Kisky | a7f1a00 | 2012-07-19 08:18:16 +0000 | [diff] [blame] | 317 | } |
| 318 | printf("%s: give up i2c_regs=%p\n", __func__, i2c_regs); |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 319 | return ret; |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 320 | } |
| 321 | |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 322 | /* |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 323 | * Read data from I2C device |
| 324 | */ |
Troy Kisky | e4ff525 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 325 | int bus_i2c_read(void *base, uchar chip, uint addr, int alen, uchar *buf, |
| 326 | int len) |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 327 | { |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 328 | int ret; |
| 329 | unsigned int temp; |
| 330 | int i; |
Troy Kisky | e4ff525 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 331 | struct mxc_i2c_regs *i2c_regs = (struct mxc_i2c_regs *)base; |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 332 | |
Troy Kisky | b230ddc | 2012-07-19 08:18:06 +0000 | [diff] [blame] | 333 | ret = i2c_init_transfer(i2c_regs, chip, addr, alen); |
Troy Kisky | cea60b0 | 2012-07-19 08:18:04 +0000 | [diff] [blame] | 334 | if (ret < 0) |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 335 | return ret; |
| 336 | |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 337 | temp = readb(&i2c_regs->i2cr); |
| 338 | temp |= I2CR_RSTA; |
| 339 | writeb(temp, &i2c_regs->i2cr); |
| 340 | |
Troy Kisky | cea60b0 | 2012-07-19 08:18:04 +0000 | [diff] [blame] | 341 | ret = tx_byte(i2c_regs, (chip << 1) | 1); |
Troy Kisky | c4330d2 | 2012-07-19 08:18:07 +0000 | [diff] [blame] | 342 | if (ret < 0) { |
Troy Kisky | 27a5da0 | 2012-07-19 08:18:17 +0000 | [diff] [blame] | 343 | i2c_imx_stop(i2c_regs); |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 344 | return ret; |
Troy Kisky | c4330d2 | 2012-07-19 08:18:07 +0000 | [diff] [blame] | 345 | } |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 346 | |
| 347 | /* setup bus to read data */ |
| 348 | temp = readb(&i2c_regs->i2cr); |
| 349 | temp &= ~(I2CR_MTX | I2CR_TX_NO_AK); |
| 350 | if (len == 1) |
| 351 | temp |= I2CR_TX_NO_AK; |
| 352 | writeb(temp, &i2c_regs->i2cr); |
Alison Wang | 30ea41a | 2013-06-17 15:30:39 +0800 | [diff] [blame] | 353 | writeb(I2SR_IIF_CLEAR, &i2c_regs->i2sr); |
Troy Kisky | ea572d8 | 2012-07-19 08:18:05 +0000 | [diff] [blame] | 354 | readb(&i2c_regs->i2dr); /* dummy read to clear ICF */ |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 355 | |
| 356 | /* read data */ |
| 357 | for (i = 0; i < len; i++) { |
Troy Kisky | 7aa57a0 | 2012-07-19 08:18:09 +0000 | [diff] [blame] | 358 | ret = wait_for_sr_state(i2c_regs, ST_IIF); |
| 359 | if (ret < 0) { |
Troy Kisky | 27a5da0 | 2012-07-19 08:18:17 +0000 | [diff] [blame] | 360 | i2c_imx_stop(i2c_regs); |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 361 | return ret; |
Troy Kisky | c4330d2 | 2012-07-19 08:18:07 +0000 | [diff] [blame] | 362 | } |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 363 | |
| 364 | /* |
| 365 | * It must generate STOP before read I2DR to prevent |
| 366 | * controller from generating another clock cycle |
| 367 | */ |
| 368 | if (i == (len - 1)) { |
Troy Kisky | 27a5da0 | 2012-07-19 08:18:17 +0000 | [diff] [blame] | 369 | i2c_imx_stop(i2c_regs); |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 370 | } else if (i == (len - 2)) { |
| 371 | temp = readb(&i2c_regs->i2cr); |
| 372 | temp |= I2CR_TX_NO_AK; |
| 373 | writeb(temp, &i2c_regs->i2cr); |
| 374 | } |
Alison Wang | 30ea41a | 2013-06-17 15:30:39 +0800 | [diff] [blame] | 375 | writeb(I2SR_IIF_CLEAR, &i2c_regs->i2sr); |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 376 | buf[i] = readb(&i2c_regs->i2dr); |
| 377 | } |
Troy Kisky | 27a5da0 | 2012-07-19 08:18:17 +0000 | [diff] [blame] | 378 | i2c_imx_stop(i2c_regs); |
Troy Kisky | 7aa57a0 | 2012-07-19 08:18:09 +0000 | [diff] [blame] | 379 | return 0; |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 380 | } |
| 381 | |
| 382 | /* |
| 383 | * Write data to I2C device |
| 384 | */ |
Troy Kisky | e4ff525 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 385 | int bus_i2c_write(void *base, uchar chip, uint addr, int alen, |
| 386 | const uchar *buf, int len) |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 387 | { |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 388 | int ret; |
| 389 | int i; |
Troy Kisky | e4ff525 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 390 | struct mxc_i2c_regs *i2c_regs = (struct mxc_i2c_regs *)base; |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 391 | |
Troy Kisky | b230ddc | 2012-07-19 08:18:06 +0000 | [diff] [blame] | 392 | ret = i2c_init_transfer(i2c_regs, chip, addr, alen); |
Troy Kisky | cea60b0 | 2012-07-19 08:18:04 +0000 | [diff] [blame] | 393 | if (ret < 0) |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 394 | return ret; |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 395 | |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 396 | for (i = 0; i < len; i++) { |
Troy Kisky | cea60b0 | 2012-07-19 08:18:04 +0000 | [diff] [blame] | 397 | ret = tx_byte(i2c_regs, buf[i]); |
| 398 | if (ret < 0) |
Troy Kisky | c4330d2 | 2012-07-19 08:18:07 +0000 | [diff] [blame] | 399 | break; |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 400 | } |
Troy Kisky | 27a5da0 | 2012-07-19 08:18:17 +0000 | [diff] [blame] | 401 | i2c_imx_stop(i2c_regs); |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 402 | return ret; |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 403 | } |
Troy Kisky | cfbb88d | 2012-07-19 08:18:08 +0000 | [diff] [blame] | 404 | |
trem | fac9640 | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 405 | static void * const i2c_bases[] = { |
| 406 | #if defined(CONFIG_MX25) |
| 407 | (void *)IMX_I2C_BASE, |
| 408 | (void *)IMX_I2C2_BASE, |
| 409 | (void *)IMX_I2C3_BASE |
| 410 | #elif defined(CONFIG_MX27) |
| 411 | (void *)IMX_I2C1_BASE, |
| 412 | (void *)IMX_I2C2_BASE |
| 413 | #elif defined(CONFIG_MX31) || defined(CONFIG_MX35) || \ |
| 414 | defined(CONFIG_MX51) || defined(CONFIG_MX53) || \ |
Wang Huan | df0a5b8 | 2014-09-05 13:52:35 +0800 | [diff] [blame] | 415 | defined(CONFIG_MX6) || defined(CONFIG_LS102XA) |
trem | fac9640 | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 416 | (void *)I2C1_BASE_ADDR, |
| 417 | (void *)I2C2_BASE_ADDR, |
| 418 | (void *)I2C3_BASE_ADDR |
| 419 | #elif defined(CONFIG_VF610) |
| 420 | (void *)I2C0_BASE_ADDR |
York Sun | 2f78eae | 2014-06-23 15:15:54 -0700 | [diff] [blame] | 421 | #elif defined(CONFIG_FSL_LSCH3) |
| 422 | (void *)I2C1_BASE_ADDR, |
| 423 | (void *)I2C2_BASE_ADDR, |
| 424 | (void *)I2C3_BASE_ADDR, |
| 425 | (void *)I2C4_BASE_ADDR |
Troy Kisky | e4ff525 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 426 | #else |
trem | fac9640 | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 427 | #error "architecture not supported" |
Troy Kisky | e4ff525 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 428 | #endif |
trem | fac9640 | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 429 | }; |
| 430 | |
Peng Fan | c36ecf3 | 2015-01-06 14:12:51 +0800 | [diff] [blame^] | 431 | struct i2c_parms { |
| 432 | void *base; |
| 433 | void *idle_bus_data; |
| 434 | int (*idle_bus_fn)(void *p); |
| 435 | }; |
| 436 | |
| 437 | struct sram_data { |
| 438 | unsigned curr_i2c_bus; |
| 439 | struct i2c_parms i2c_data[ARRAY_SIZE(i2c_bases)]; |
| 440 | }; |
| 441 | |
trem | fac9640 | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 442 | void *i2c_get_base(struct i2c_adapter *adap) |
| 443 | { |
| 444 | return i2c_bases[adap->hwadapnr]; |
Troy Kisky | e4ff525 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 445 | } |
| 446 | |
Troy Kisky | 96c19bd | 2012-07-19 08:18:19 +0000 | [diff] [blame] | 447 | static struct i2c_parms *i2c_get_parms(void *base) |
| 448 | { |
York Sun | dec1861 | 2014-02-10 14:02:52 -0800 | [diff] [blame] | 449 | struct sram_data *srdata = (void *)gd->srdata; |
Troy Kisky | 96c19bd | 2012-07-19 08:18:19 +0000 | [diff] [blame] | 450 | int i = 0; |
York Sun | dec1861 | 2014-02-10 14:02:52 -0800 | [diff] [blame] | 451 | struct i2c_parms *p = srdata->i2c_data; |
| 452 | while (i < ARRAY_SIZE(srdata->i2c_data)) { |
Troy Kisky | 96c19bd | 2012-07-19 08:18:19 +0000 | [diff] [blame] | 453 | if (p->base == base) |
| 454 | return p; |
| 455 | p++; |
| 456 | i++; |
| 457 | } |
| 458 | printf("Invalid I2C base: %p\n", base); |
| 459 | return NULL; |
| 460 | } |
| 461 | |
| 462 | static int i2c_idle_bus(void *base) |
| 463 | { |
| 464 | struct i2c_parms *p = i2c_get_parms(base); |
| 465 | if (p && p->idle_bus_fn) |
| 466 | return p->idle_bus_fn(p->idle_bus_data); |
| 467 | return 0; |
| 468 | } |
| 469 | |
trem | fac9640 | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 470 | static int mxc_i2c_read(struct i2c_adapter *adap, uint8_t chip, |
| 471 | uint addr, int alen, uint8_t *buffer, |
| 472 | int len) |
Troy Kisky | 9815326 | 2012-07-19 08:18:20 +0000 | [diff] [blame] | 473 | { |
trem | fac9640 | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 474 | 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] | 475 | } |
| 476 | |
trem | fac9640 | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 477 | static int mxc_i2c_write(struct i2c_adapter *adap, uint8_t chip, |
| 478 | uint addr, int alen, uint8_t *buffer, |
| 479 | int len) |
Troy Kisky | 9815326 | 2012-07-19 08:18:20 +0000 | [diff] [blame] | 480 | { |
trem | fac9640 | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 481 | 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] | 482 | } |
| 483 | |
Troy Kisky | cfbb88d | 2012-07-19 08:18:08 +0000 | [diff] [blame] | 484 | /* |
| 485 | * Test if a chip at a given address responds (probe the chip) |
| 486 | */ |
trem | fac9640 | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 487 | static int mxc_i2c_probe(struct i2c_adapter *adap, uint8_t chip) |
Troy Kisky | cfbb88d | 2012-07-19 08:18:08 +0000 | [diff] [blame] | 488 | { |
trem | fac9640 | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 489 | 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] | 490 | } |
| 491 | |
| 492 | void bus_i2c_init(void *base, int speed, int unused, |
| 493 | int (*idle_bus_fn)(void *p), void *idle_bus_data) |
| 494 | { |
York Sun | dec1861 | 2014-02-10 14:02:52 -0800 | [diff] [blame] | 495 | struct sram_data *srdata = (void *)gd->srdata; |
Troy Kisky | e4ff525 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 496 | int i = 0; |
York Sun | dec1861 | 2014-02-10 14:02:52 -0800 | [diff] [blame] | 497 | struct i2c_parms *p = srdata->i2c_data; |
Troy Kisky | e4ff525 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 498 | if (!base) |
| 499 | return; |
| 500 | for (;;) { |
| 501 | if (!p->base || (p->base == base)) { |
| 502 | p->base = base; |
| 503 | if (idle_bus_fn) { |
| 504 | p->idle_bus_fn = idle_bus_fn; |
| 505 | p->idle_bus_data = idle_bus_data; |
| 506 | } |
| 507 | break; |
| 508 | } |
| 509 | p++; |
| 510 | i++; |
York Sun | dec1861 | 2014-02-10 14:02:52 -0800 | [diff] [blame] | 511 | if (i >= ARRAY_SIZE(srdata->i2c_data)) |
Troy Kisky | e4ff525 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 512 | return; |
| 513 | } |
| 514 | bus_i2c_set_bus_speed(base, speed); |
| 515 | } |
| 516 | |
| 517 | /* |
| 518 | * Init I2C Bus |
| 519 | */ |
trem | fac9640 | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 520 | 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] | 521 | { |
trem | fac9640 | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 522 | bus_i2c_init(i2c_get_base(adap), speed, slaveaddr, NULL, NULL); |
Troy Kisky | e4ff525 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 523 | } |
| 524 | |
| 525 | /* |
| 526 | * Set I2C Speed |
| 527 | */ |
trem | fac9640 | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 528 | static uint mxc_i2c_set_bus_speed(struct i2c_adapter *adap, uint speed) |
Troy Kisky | e4ff525 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 529 | { |
trem | fac9640 | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 530 | return bus_i2c_set_bus_speed(i2c_get_base(adap), speed); |
Troy Kisky | e4ff525 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 531 | } |
| 532 | |
| 533 | /* |
trem | fac9640 | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 534 | * Register mxc i2c adapters |
Troy Kisky | e4ff525 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 535 | */ |
trem | fac9640 | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 536 | U_BOOT_I2C_ADAP_COMPLETE(mxc0, mxc_i2c_init, mxc_i2c_probe, |
| 537 | mxc_i2c_read, mxc_i2c_write, |
| 538 | mxc_i2c_set_bus_speed, |
| 539 | CONFIG_SYS_MXC_I2C1_SPEED, |
| 540 | CONFIG_SYS_MXC_I2C1_SLAVE, 0) |
| 541 | U_BOOT_I2C_ADAP_COMPLETE(mxc1, mxc_i2c_init, mxc_i2c_probe, |
| 542 | mxc_i2c_read, mxc_i2c_write, |
| 543 | mxc_i2c_set_bus_speed, |
| 544 | CONFIG_SYS_MXC_I2C2_SPEED, |
| 545 | CONFIG_SYS_MXC_I2C2_SLAVE, 1) |
| 546 | #if defined(CONFIG_MX31) || defined(CONFIG_MX35) ||\ |
| 547 | defined(CONFIG_MX51) || defined(CONFIG_MX53) ||\ |
Wang Huan | df0a5b8 | 2014-09-05 13:52:35 +0800 | [diff] [blame] | 548 | defined(CONFIG_MX6) || defined(CONFIG_LS102XA) |
trem | fac9640 | 2013-09-21 18:13:35 +0200 | [diff] [blame] | 549 | U_BOOT_I2C_ADAP_COMPLETE(mxc2, mxc_i2c_init, mxc_i2c_probe, |
| 550 | mxc_i2c_read, mxc_i2c_write, |
| 551 | mxc_i2c_set_bus_speed, |
| 552 | CONFIG_SYS_MXC_I2C3_SPEED, |
| 553 | CONFIG_SYS_MXC_I2C3_SLAVE, 2) |
| 554 | #endif |