Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 1 | /* |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 2 | * i2c driver for Freescale i.MX series |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 3 | * |
| 4 | * (c) 2007 Pengutronix, Sascha Hauer <s.hauer@pengutronix.de> |
Marek Vasut | 94cb842 | 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 | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 13 | * |
| 14 | * See file CREDITS for list of people who contributed to this |
| 15 | * project. |
| 16 | * |
| 17 | * This program is free software; you can redistribute it and/or |
| 18 | * modify it under the terms of the GNU General Public License as |
| 19 | * published by the Free Software Foundation; either version 2 of |
| 20 | * the License, or (at your option) any later version. |
| 21 | * |
| 22 | * This program is distributed in the hope that it will be useful, |
| 23 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 24 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 25 | * GNU General Public License for more details. |
| 26 | * |
| 27 | * You should have received a copy of the GNU General Public License |
| 28 | * along with this program; if not, write to the Free Software |
| 29 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 30 | * MA 02111-1307 USA |
| 31 | */ |
| 32 | |
| 33 | #include <common.h> |
Liu Hui-R64343 | 447beb1 | 2011-01-03 22:27:39 +0000 | [diff] [blame] | 34 | #include <asm/arch/clock.h> |
Stefano Babic | 78129d9 | 2011-03-14 15:43:56 +0100 | [diff] [blame] | 35 | #include <asm/arch/imx-regs.h> |
Troy Kisky | 752ac8f | 2012-07-19 08:18:04 +0000 | [diff] [blame] | 36 | #include <asm/errno.h> |
Troy Kisky | 2254b7f | 2012-07-19 08:18:03 +0000 | [diff] [blame] | 37 | #include <asm/io.h> |
Marek Vasut | 5f1291e | 2011-10-26 00:05:44 +0000 | [diff] [blame] | 38 | #include <i2c.h> |
Troy Kisky | f024a3b | 2012-07-19 08:18:09 +0000 | [diff] [blame] | 39 | #include <watchdog.h> |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 40 | |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 41 | struct mxc_i2c_regs { |
| 42 | uint32_t iadr; |
| 43 | uint32_t ifdr; |
| 44 | uint32_t i2cr; |
| 45 | uint32_t i2sr; |
| 46 | uint32_t i2dr; |
| 47 | }; |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 48 | |
| 49 | #define I2CR_IEN (1 << 7) |
| 50 | #define I2CR_IIEN (1 << 6) |
| 51 | #define I2CR_MSTA (1 << 5) |
| 52 | #define I2CR_MTX (1 << 4) |
| 53 | #define I2CR_TX_NO_AK (1 << 3) |
| 54 | #define I2CR_RSTA (1 << 2) |
| 55 | |
| 56 | #define I2SR_ICF (1 << 7) |
| 57 | #define I2SR_IBB (1 << 5) |
| 58 | #define I2SR_IIF (1 << 1) |
| 59 | #define I2SR_RX_NO_AK (1 << 0) |
| 60 | |
Troy Kisky | 8462c63 | 2012-04-24 17:33:25 +0000 | [diff] [blame] | 61 | #ifdef CONFIG_SYS_I2C_BASE |
| 62 | #define I2C_BASE CONFIG_SYS_I2C_BASE |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 63 | #else |
Troy Kisky | 8462c63 | 2012-04-24 17:33:25 +0000 | [diff] [blame] | 64 | #error "define CONFIG_SYS_I2C_BASE to use the mxc_i2c driver" |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 65 | #endif |
| 66 | |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 67 | static u16 i2c_clk_div[50][2] = { |
| 68 | { 22, 0x20 }, { 24, 0x21 }, { 26, 0x22 }, { 28, 0x23 }, |
| 69 | { 30, 0x00 }, { 32, 0x24 }, { 36, 0x25 }, { 40, 0x26 }, |
| 70 | { 42, 0x03 }, { 44, 0x27 }, { 48, 0x28 }, { 52, 0x05 }, |
| 71 | { 56, 0x29 }, { 60, 0x06 }, { 64, 0x2A }, { 72, 0x2B }, |
| 72 | { 80, 0x2C }, { 88, 0x09 }, { 96, 0x2D }, { 104, 0x0A }, |
| 73 | { 112, 0x2E }, { 128, 0x2F }, { 144, 0x0C }, { 160, 0x30 }, |
| 74 | { 192, 0x31 }, { 224, 0x32 }, { 240, 0x0F }, { 256, 0x33 }, |
| 75 | { 288, 0x10 }, { 320, 0x34 }, { 384, 0x35 }, { 448, 0x36 }, |
| 76 | { 480, 0x13 }, { 512, 0x37 }, { 576, 0x14 }, { 640, 0x38 }, |
| 77 | { 768, 0x39 }, { 896, 0x3A }, { 960, 0x17 }, { 1024, 0x3B }, |
| 78 | { 1152, 0x18 }, { 1280, 0x3C }, { 1536, 0x3D }, { 1792, 0x3E }, |
| 79 | { 1920, 0x1B }, { 2048, 0x3F }, { 2304, 0x1C }, { 2560, 0x1D }, |
| 80 | { 3072, 0x1E }, { 3840, 0x1F } |
| 81 | }; |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 82 | |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 83 | /* |
| 84 | * Calculate and set proper clock divider |
| 85 | */ |
Marek Vasut | 5f1291e | 2011-10-26 00:05:44 +0000 | [diff] [blame] | 86 | static uint8_t i2c_imx_get_clk(unsigned int rate) |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 87 | { |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 88 | unsigned int i2c_clk_rate; |
| 89 | unsigned int div; |
Marek Vasut | 5f1291e | 2011-10-26 00:05:44 +0000 | [diff] [blame] | 90 | u8 clk_div; |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 91 | |
Liu Hui-R64343 | 447beb1 | 2011-01-03 22:27:39 +0000 | [diff] [blame] | 92 | #if defined(CONFIG_MX31) |
Stefano Babic | 2212172 | 2011-01-20 07:50:44 +0000 | [diff] [blame] | 93 | struct clock_control_regs *sc_regs = |
| 94 | (struct clock_control_regs *)CCM_BASE; |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 95 | |
Guennadi Liakhovetski | 3314fc6 | 2009-02-13 09:23:36 +0100 | [diff] [blame] | 96 | /* start the required I2C clock */ |
Troy Kisky | 8462c63 | 2012-04-24 17:33:25 +0000 | [diff] [blame] | 97 | writel(readl(&sc_regs->cgr0) | (3 << CONFIG_SYS_I2C_CLK_OFFSET), |
Stefano Babic | 2212172 | 2011-01-20 07:50:44 +0000 | [diff] [blame] | 98 | &sc_regs->cgr0); |
Liu Hui-R64343 | 447beb1 | 2011-01-03 22:27:39 +0000 | [diff] [blame] | 99 | #endif |
Guennadi Liakhovetski | 3314fc6 | 2009-02-13 09:23:36 +0100 | [diff] [blame] | 100 | |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 101 | /* Divider value calculation */ |
| 102 | i2c_clk_rate = mxc_get_clock(MXC_IPG_PERCLK); |
| 103 | div = (i2c_clk_rate + rate - 1) / rate; |
| 104 | if (div < i2c_clk_div[0][0]) |
Marek Vasut | 4f27444 | 2011-09-27 06:34:11 +0000 | [diff] [blame] | 105 | clk_div = 0; |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 106 | 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] | 107 | clk_div = ARRAY_SIZE(i2c_clk_div) - 1; |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 108 | else |
Marek Vasut | 4f27444 | 2011-09-27 06:34:11 +0000 | [diff] [blame] | 109 | 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] | 110 | ; |
| 111 | |
| 112 | /* Store divider value */ |
Marek Vasut | 5f1291e | 2011-10-26 00:05:44 +0000 | [diff] [blame] | 113 | return clk_div; |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 114 | } |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 115 | |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 116 | /* |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 117 | * Init I2C Bus |
| 118 | */ |
| 119 | void i2c_init(int speed, int unused) |
| 120 | { |
Marek Vasut | 5f1291e | 2011-10-26 00:05:44 +0000 | [diff] [blame] | 121 | struct mxc_i2c_regs *i2c_regs = (struct mxc_i2c_regs *)I2C_BASE; |
| 122 | u8 clk_idx = i2c_imx_get_clk(speed); |
| 123 | u8 idx = i2c_clk_div[clk_idx][1]; |
| 124 | |
| 125 | /* Store divider value */ |
| 126 | writeb(idx, &i2c_regs->ifdr); |
| 127 | |
Troy Kisky | e6fa4d7 | 2012-07-19 08:18:12 +0000 | [diff] [blame] | 128 | /* Reset module */ |
| 129 | writeb(0, &i2c_regs->i2cr); |
| 130 | writeb(0, &i2c_regs->i2sr); |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 131 | } |
| 132 | |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 133 | /* |
Marek Vasut | 4f27444 | 2011-09-27 06:34:11 +0000 | [diff] [blame] | 134 | * Set I2C Speed |
| 135 | */ |
| 136 | int i2c_set_bus_speed(unsigned int speed) |
| 137 | { |
| 138 | i2c_init(speed, 0); |
| 139 | return 0; |
| 140 | } |
| 141 | |
| 142 | /* |
| 143 | * Get I2C Speed |
| 144 | */ |
| 145 | unsigned int i2c_get_bus_speed(void) |
| 146 | { |
Marek Vasut | 5f1291e | 2011-10-26 00:05:44 +0000 | [diff] [blame] | 147 | struct mxc_i2c_regs *i2c_regs = (struct mxc_i2c_regs *)I2C_BASE; |
| 148 | u8 clk_idx = readb(&i2c_regs->ifdr); |
| 149 | u8 clk_div; |
| 150 | |
| 151 | for (clk_div = 0; i2c_clk_div[clk_div][1] != clk_idx; clk_div++) |
| 152 | ; |
| 153 | |
Marek Vasut | 4f27444 | 2011-09-27 06:34:11 +0000 | [diff] [blame] | 154 | return mxc_get_clock(MXC_IPG_PERCLK) / i2c_clk_div[clk_div][0]; |
| 155 | } |
| 156 | |
Troy Kisky | f024a3b | 2012-07-19 08:18:09 +0000 | [diff] [blame] | 157 | #define ST_BUS_IDLE (0 | (I2SR_IBB << 8)) |
| 158 | #define ST_BUS_BUSY (I2SR_IBB | (I2SR_IBB << 8)) |
| 159 | #define ST_IIF (I2SR_IIF | (I2SR_IIF << 8)) |
Stefano Babic | 848bb99 | 2011-01-20 07:51:31 +0000 | [diff] [blame] | 160 | |
Troy Kisky | f024a3b | 2012-07-19 08:18:09 +0000 | [diff] [blame] | 161 | static int wait_for_sr_state(struct mxc_i2c_regs *i2c_regs, unsigned state) |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 162 | { |
Troy Kisky | f024a3b | 2012-07-19 08:18:09 +0000 | [diff] [blame] | 163 | unsigned sr; |
| 164 | ulong elapsed; |
| 165 | ulong start_time = get_timer(0); |
| 166 | for (;;) { |
| 167 | sr = readb(&i2c_regs->i2sr); |
| 168 | if ((sr & (state >> 8)) == (unsigned char)state) |
| 169 | return sr; |
| 170 | WATCHDOG_RESET(); |
| 171 | elapsed = get_timer(start_time); |
| 172 | if (elapsed > (CONFIG_SYS_HZ / 10)) /* .1 seconds */ |
| 173 | break; |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 174 | } |
Troy Kisky | f024a3b | 2012-07-19 08:18:09 +0000 | [diff] [blame] | 175 | printf("%s: failed sr=%x cr=%x state=%x\n", __func__, |
| 176 | sr, readb(&i2c_regs->i2cr), state); |
Troy Kisky | 752ac8f | 2012-07-19 08:18:04 +0000 | [diff] [blame] | 177 | return -ETIMEDOUT; |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 178 | } |
| 179 | |
Troy Kisky | 752ac8f | 2012-07-19 08:18:04 +0000 | [diff] [blame] | 180 | static int tx_byte(struct mxc_i2c_regs *i2c_regs, u8 byte) |
Stefano Babic | 848bb99 | 2011-01-20 07:51:31 +0000 | [diff] [blame] | 181 | { |
Troy Kisky | 752ac8f | 2012-07-19 08:18:04 +0000 | [diff] [blame] | 182 | int ret; |
Stefano Babic | 848bb99 | 2011-01-20 07:51:31 +0000 | [diff] [blame] | 183 | |
Troy Kisky | 30fa77c | 2012-07-19 08:18:05 +0000 | [diff] [blame] | 184 | writeb(0, &i2c_regs->i2sr); |
Troy Kisky | 752ac8f | 2012-07-19 08:18:04 +0000 | [diff] [blame] | 185 | writeb(byte, &i2c_regs->i2dr); |
Troy Kisky | f024a3b | 2012-07-19 08:18:09 +0000 | [diff] [blame] | 186 | ret = wait_for_sr_state(i2c_regs, ST_IIF); |
Troy Kisky | 752ac8f | 2012-07-19 08:18:04 +0000 | [diff] [blame] | 187 | if (ret < 0) |
| 188 | return ret; |
Troy Kisky | 752ac8f | 2012-07-19 08:18:04 +0000 | [diff] [blame] | 189 | if (ret & I2SR_RX_NO_AK) |
| 190 | return -ENODEV; |
| 191 | return 0; |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 192 | } |
Stefano Babic | 848bb99 | 2011-01-20 07:51:31 +0000 | [diff] [blame] | 193 | |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 194 | /* |
Troy Kisky | fef163f | 2012-07-19 08:18:13 +0000 | [diff] [blame^] | 195 | * Stop I2C transaction |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 196 | */ |
| 197 | void i2c_imx_stop(void) |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 198 | { |
Troy Kisky | f024a3b | 2012-07-19 08:18:09 +0000 | [diff] [blame] | 199 | int ret; |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 200 | struct mxc_i2c_regs *i2c_regs = (struct mxc_i2c_regs *)I2C_BASE; |
Troy Kisky | fef163f | 2012-07-19 08:18:13 +0000 | [diff] [blame^] | 201 | unsigned int temp = readb(&i2c_regs->i2cr); |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 202 | |
Troy Kisky | 1ac1e45 | 2012-07-19 08:18:02 +0000 | [diff] [blame] | 203 | temp &= ~(I2CR_MSTA | I2CR_MTX); |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 204 | writeb(temp, &i2c_regs->i2cr); |
Troy Kisky | f024a3b | 2012-07-19 08:18:09 +0000 | [diff] [blame] | 205 | ret = wait_for_sr_state(i2c_regs, ST_BUS_IDLE); |
| 206 | if (ret < 0) |
| 207 | printf("%s:trigger stop failed\n", __func__); |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 208 | } |
| 209 | |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 210 | /* |
Troy Kisky | 14db6f2 | 2012-07-19 08:18:06 +0000 | [diff] [blame] | 211 | * Send start signal, chip address and |
| 212 | * write register address |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 213 | */ |
Troy Kisky | 14db6f2 | 2012-07-19 08:18:06 +0000 | [diff] [blame] | 214 | static int i2c_init_transfer(struct mxc_i2c_regs *i2c_regs, |
| 215 | uchar chip, uint addr, int alen) |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 216 | { |
Troy Kisky | a974bcc | 2012-07-19 08:18:11 +0000 | [diff] [blame] | 217 | unsigned int temp; |
| 218 | int ret; |
| 219 | |
| 220 | /* Enable I2C controller */ |
Troy Kisky | fef163f | 2012-07-19 08:18:13 +0000 | [diff] [blame^] | 221 | if (!(readb(&i2c_regs->i2cr) & I2CR_IEN)) { |
| 222 | writeb(I2CR_IEN, &i2c_regs->i2cr); |
| 223 | /* Wait for controller to be stable */ |
| 224 | udelay(50); |
| 225 | } |
Troy Kisky | a974bcc | 2012-07-19 08:18:11 +0000 | [diff] [blame] | 226 | writeb(0, &i2c_regs->i2sr); |
Troy Kisky | fef163f | 2012-07-19 08:18:13 +0000 | [diff] [blame^] | 227 | ret = wait_for_sr_state(i2c_regs, ST_BUS_IDLE); |
| 228 | if (ret < 0) |
| 229 | goto exit; |
Troy Kisky | a974bcc | 2012-07-19 08:18:11 +0000 | [diff] [blame] | 230 | |
| 231 | /* Start I2C transaction */ |
| 232 | temp = readb(&i2c_regs->i2cr); |
| 233 | temp |= I2CR_MSTA; |
| 234 | writeb(temp, &i2c_regs->i2cr); |
| 235 | |
| 236 | ret = wait_for_sr_state(i2c_regs, ST_BUS_BUSY); |
| 237 | if (ret < 0) |
Troy Kisky | 14db6f2 | 2012-07-19 08:18:06 +0000 | [diff] [blame] | 238 | goto exit; |
| 239 | |
Troy Kisky | a974bcc | 2012-07-19 08:18:11 +0000 | [diff] [blame] | 240 | temp |= I2CR_MTX | I2CR_TX_NO_AK; |
| 241 | writeb(temp, &i2c_regs->i2cr); |
| 242 | |
Troy Kisky | 14db6f2 | 2012-07-19 08:18:06 +0000 | [diff] [blame] | 243 | /* write slave address */ |
| 244 | ret = tx_byte(i2c_regs, chip << 1); |
| 245 | if (ret < 0) |
| 246 | goto exit; |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 247 | |
Marek Vasut | 5f1291e | 2011-10-26 00:05:44 +0000 | [diff] [blame] | 248 | while (alen--) { |
Troy Kisky | 752ac8f | 2012-07-19 08:18:04 +0000 | [diff] [blame] | 249 | ret = tx_byte(i2c_regs, (addr >> (alen * 8)) & 0xff); |
| 250 | if (ret < 0) |
Troy Kisky | 14db6f2 | 2012-07-19 08:18:06 +0000 | [diff] [blame] | 251 | goto exit; |
Stefano Babic | 848bb99 | 2011-01-20 07:51:31 +0000 | [diff] [blame] | 252 | } |
Troy Kisky | 14db6f2 | 2012-07-19 08:18:06 +0000 | [diff] [blame] | 253 | return 0; |
| 254 | exit: |
| 255 | i2c_imx_stop(); |
Troy Kisky | fef163f | 2012-07-19 08:18:13 +0000 | [diff] [blame^] | 256 | /* Disable I2C controller */ |
| 257 | writeb(0, &i2c_regs->i2cr); |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 258 | return ret; |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 259 | } |
| 260 | |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 261 | /* |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 262 | * Read data from I2C device |
| 263 | */ |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 264 | int i2c_read(uchar chip, uint addr, int alen, uchar *buf, int len) |
| 265 | { |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 266 | struct mxc_i2c_regs *i2c_regs = (struct mxc_i2c_regs *)I2C_BASE; |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 267 | int ret; |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 268 | unsigned int temp; |
| 269 | int i; |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 270 | |
Troy Kisky | 14db6f2 | 2012-07-19 08:18:06 +0000 | [diff] [blame] | 271 | ret = i2c_init_transfer(i2c_regs, chip, addr, alen); |
Troy Kisky | 752ac8f | 2012-07-19 08:18:04 +0000 | [diff] [blame] | 272 | if (ret < 0) |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 273 | return ret; |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 274 | |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 275 | temp = readb(&i2c_regs->i2cr); |
| 276 | temp |= I2CR_RSTA; |
| 277 | writeb(temp, &i2c_regs->i2cr); |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 278 | |
Troy Kisky | 752ac8f | 2012-07-19 08:18:04 +0000 | [diff] [blame] | 279 | ret = tx_byte(i2c_regs, (chip << 1) | 1); |
Troy Kisky | 0ce898d | 2012-07-19 08:18:07 +0000 | [diff] [blame] | 280 | if (ret < 0) { |
| 281 | i2c_imx_stop(); |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 282 | return ret; |
Troy Kisky | 0ce898d | 2012-07-19 08:18:07 +0000 | [diff] [blame] | 283 | } |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 284 | |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 285 | /* setup bus to read data */ |
| 286 | temp = readb(&i2c_regs->i2cr); |
| 287 | temp &= ~(I2CR_MTX | I2CR_TX_NO_AK); |
| 288 | if (len == 1) |
| 289 | temp |= I2CR_TX_NO_AK; |
| 290 | writeb(temp, &i2c_regs->i2cr); |
Troy Kisky | 30fa77c | 2012-07-19 08:18:05 +0000 | [diff] [blame] | 291 | writeb(0, &i2c_regs->i2sr); |
| 292 | readb(&i2c_regs->i2dr); /* dummy read to clear ICF */ |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 293 | |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 294 | /* read data */ |
| 295 | for (i = 0; i < len; i++) { |
Troy Kisky | f024a3b | 2012-07-19 08:18:09 +0000 | [diff] [blame] | 296 | ret = wait_for_sr_state(i2c_regs, ST_IIF); |
| 297 | if (ret < 0) { |
Troy Kisky | 0ce898d | 2012-07-19 08:18:07 +0000 | [diff] [blame] | 298 | i2c_imx_stop(); |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 299 | return ret; |
Troy Kisky | 0ce898d | 2012-07-19 08:18:07 +0000 | [diff] [blame] | 300 | } |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 301 | |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 302 | /* |
| 303 | * It must generate STOP before read I2DR to prevent |
| 304 | * controller from generating another clock cycle |
| 305 | */ |
| 306 | if (i == (len - 1)) { |
Troy Kisky | fef163f | 2012-07-19 08:18:13 +0000 | [diff] [blame^] | 307 | i2c_imx_stop(); |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 308 | } else if (i == (len - 2)) { |
| 309 | temp = readb(&i2c_regs->i2cr); |
| 310 | temp |= I2CR_TX_NO_AK; |
| 311 | writeb(temp, &i2c_regs->i2cr); |
| 312 | } |
Troy Kisky | 30fa77c | 2012-07-19 08:18:05 +0000 | [diff] [blame] | 313 | writeb(0, &i2c_regs->i2sr); |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 314 | buf[i] = readb(&i2c_regs->i2dr); |
| 315 | } |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 316 | |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 317 | i2c_imx_stop(); |
| 318 | |
Troy Kisky | f024a3b | 2012-07-19 08:18:09 +0000 | [diff] [blame] | 319 | return 0; |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 320 | } |
| 321 | |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 322 | /* |
| 323 | * Write data to I2C device |
| 324 | */ |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 325 | int i2c_write(uchar chip, uint addr, int alen, uchar *buf, int len) |
| 326 | { |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 327 | struct mxc_i2c_regs *i2c_regs = (struct mxc_i2c_regs *)I2C_BASE; |
| 328 | int ret; |
| 329 | int i; |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 330 | |
Troy Kisky | 14db6f2 | 2012-07-19 08:18:06 +0000 | [diff] [blame] | 331 | ret = i2c_init_transfer(i2c_regs, chip, addr, alen); |
Troy Kisky | 752ac8f | 2012-07-19 08:18:04 +0000 | [diff] [blame] | 332 | if (ret < 0) |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 333 | return ret; |
Sascha Hauer | 15ea70f | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 334 | |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 335 | for (i = 0; i < len; i++) { |
Troy Kisky | 752ac8f | 2012-07-19 08:18:04 +0000 | [diff] [blame] | 336 | ret = tx_byte(i2c_regs, buf[i]); |
| 337 | if (ret < 0) |
Troy Kisky | 0ce898d | 2012-07-19 08:18:07 +0000 | [diff] [blame] | 338 | break; |
Marek Vasut | 94cb842 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 339 | } |
| 340 | |
| 341 | i2c_imx_stop(); |
| 342 | |
| 343 | return ret; |
| 344 | } |
Troy Kisky | 321a42b | 2012-07-19 08:18:08 +0000 | [diff] [blame] | 345 | |
| 346 | /* |
| 347 | * Test if a chip at a given address responds (probe the chip) |
| 348 | */ |
| 349 | int i2c_probe(uchar chip) |
| 350 | { |
| 351 | return i2c_write(chip, 0, 0, NULL, 0); |
| 352 | } |