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 | * |
| 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 | 127cec1 | 2011-01-03 22:27:39 +0000 | [diff] [blame] | 34 | #include <asm/arch/clock.h> |
Stefano Babic | 8627111 | 2011-03-14 15:43:56 +0100 | [diff] [blame] | 35 | #include <asm/arch/imx-regs.h> |
Troy Kisky | cea60b0 | 2012-07-19 08:18:04 +0000 | [diff] [blame] | 36 | #include <asm/errno.h> |
Troy Kisky | 24cd738 | 2012-07-19 08:18:03 +0000 | [diff] [blame] | 37 | #include <asm/io.h> |
Marek Vasut | bf0783d | 2011-10-26 00:05:44 +0000 | [diff] [blame] | 38 | #include <i2c.h> |
Troy Kisky | 7aa57a0 | 2012-07-19 08:18:09 +0000 | [diff] [blame] | 39 | #include <watchdog.h> |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 40 | |
Marek Vasut | db84140 | 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 | cdace06 | 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) |
Troy Kisky | d5383a6 | 2012-07-19 08:18:15 +0000 | [diff] [blame] | 58 | #define I2SR_IAL (1 << 4) |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 59 | #define I2SR_IIF (1 << 1) |
| 60 | #define I2SR_RX_NO_AK (1 << 0) |
| 61 | |
Troy Kisky | e4ff525 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 62 | #if defined(CONFIG_HARD_I2C) && !defined(CONFIG_SYS_I2C_BASE) |
Troy Kisky | de6f604 | 2012-04-24 17:33:25 +0000 | [diff] [blame] | 63 | #error "define CONFIG_SYS_I2C_BASE to use the mxc_i2c driver" |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 64 | #endif |
| 65 | |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 66 | static u16 i2c_clk_div[50][2] = { |
| 67 | { 22, 0x20 }, { 24, 0x21 }, { 26, 0x22 }, { 28, 0x23 }, |
| 68 | { 30, 0x00 }, { 32, 0x24 }, { 36, 0x25 }, { 40, 0x26 }, |
| 69 | { 42, 0x03 }, { 44, 0x27 }, { 48, 0x28 }, { 52, 0x05 }, |
| 70 | { 56, 0x29 }, { 60, 0x06 }, { 64, 0x2A }, { 72, 0x2B }, |
| 71 | { 80, 0x2C }, { 88, 0x09 }, { 96, 0x2D }, { 104, 0x0A }, |
| 72 | { 112, 0x2E }, { 128, 0x2F }, { 144, 0x0C }, { 160, 0x30 }, |
| 73 | { 192, 0x31 }, { 224, 0x32 }, { 240, 0x0F }, { 256, 0x33 }, |
| 74 | { 288, 0x10 }, { 320, 0x34 }, { 384, 0x35 }, { 448, 0x36 }, |
| 75 | { 480, 0x13 }, { 512, 0x37 }, { 576, 0x14 }, { 640, 0x38 }, |
| 76 | { 768, 0x39 }, { 896, 0x3A }, { 960, 0x17 }, { 1024, 0x3B }, |
| 77 | { 1152, 0x18 }, { 1280, 0x3C }, { 1536, 0x3D }, { 1792, 0x3E }, |
| 78 | { 1920, 0x1B }, { 2048, 0x3F }, { 2304, 0x1C }, { 2560, 0x1D }, |
| 79 | { 3072, 0x1E }, { 3840, 0x1F } |
| 80 | }; |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 81 | |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 82 | /* |
| 83 | * Calculate and set proper clock divider |
| 84 | */ |
Marek Vasut | bf0783d | 2011-10-26 00:05:44 +0000 | [diff] [blame] | 85 | static uint8_t i2c_imx_get_clk(unsigned int rate) |
Stefano Babic | 1d549ad | 2011-01-20 07:50:44 +0000 | [diff] [blame] | 86 | { |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 87 | unsigned int i2c_clk_rate; |
| 88 | unsigned int div; |
Marek Vasut | bf0783d | 2011-10-26 00:05:44 +0000 | [diff] [blame] | 89 | u8 clk_div; |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 90 | |
Liu Hui-R64343 | 127cec1 | 2011-01-03 22:27:39 +0000 | [diff] [blame] | 91 | #if defined(CONFIG_MX31) |
Stefano Babic | 1d549ad | 2011-01-20 07:50:44 +0000 | [diff] [blame] | 92 | struct clock_control_regs *sc_regs = |
| 93 | (struct clock_control_regs *)CCM_BASE; |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 94 | |
Guennadi Liakhovetski | e7de18a | 2009-02-13 09:23:36 +0100 | [diff] [blame] | 95 | /* start the required I2C clock */ |
Troy Kisky | de6f604 | 2012-04-24 17:33:25 +0000 | [diff] [blame] | 96 | writel(readl(&sc_regs->cgr0) | (3 << CONFIG_SYS_I2C_CLK_OFFSET), |
Stefano Babic | 1d549ad | 2011-01-20 07:50:44 +0000 | [diff] [blame] | 97 | &sc_regs->cgr0); |
Liu Hui-R64343 | 127cec1 | 2011-01-03 22:27:39 +0000 | [diff] [blame] | 98 | #endif |
Guennadi Liakhovetski | e7de18a | 2009-02-13 09:23:36 +0100 | [diff] [blame] | 99 | |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 100 | /* Divider value calculation */ |
| 101 | i2c_clk_rate = mxc_get_clock(MXC_IPG_PERCLK); |
| 102 | div = (i2c_clk_rate + rate - 1) / rate; |
| 103 | if (div < i2c_clk_div[0][0]) |
Marek Vasut | b567b8f | 2011-09-27 06:34:11 +0000 | [diff] [blame] | 104 | clk_div = 0; |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 105 | 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] | 106 | clk_div = ARRAY_SIZE(i2c_clk_div) - 1; |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 107 | else |
Marek Vasut | b567b8f | 2011-09-27 06:34:11 +0000 | [diff] [blame] | 108 | 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] | 109 | ; |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 110 | |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 111 | /* Store divider value */ |
Marek Vasut | bf0783d | 2011-10-26 00:05:44 +0000 | [diff] [blame] | 112 | return clk_div; |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 113 | } |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 114 | |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 115 | /* |
Troy Kisky | e4ff525 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 116 | * Set I2C Bus speed |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 117 | */ |
Troy Kisky | e4ff525 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 118 | int bus_i2c_set_bus_speed(void *base, int speed) |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 119 | { |
Troy Kisky | e4ff525 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 120 | struct mxc_i2c_regs *i2c_regs = (struct mxc_i2c_regs *)base; |
Marek Vasut | bf0783d | 2011-10-26 00:05:44 +0000 | [diff] [blame] | 121 | u8 clk_idx = i2c_imx_get_clk(speed); |
| 122 | u8 idx = i2c_clk_div[clk_idx][1]; |
| 123 | |
| 124 | /* Store divider value */ |
| 125 | writeb(idx, &i2c_regs->ifdr); |
| 126 | |
Troy Kisky | 83a1a19 | 2012-07-19 08:18:12 +0000 | [diff] [blame] | 127 | /* Reset module */ |
| 128 | writeb(0, &i2c_regs->i2cr); |
| 129 | writeb(0, &i2c_regs->i2sr); |
Marek Vasut | b567b8f | 2011-09-27 06:34:11 +0000 | [diff] [blame] | 130 | return 0; |
| 131 | } |
| 132 | |
| 133 | /* |
| 134 | * Get I2C Speed |
| 135 | */ |
Troy Kisky | e4ff525 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 136 | unsigned int bus_i2c_get_bus_speed(void *base) |
Marek Vasut | b567b8f | 2011-09-27 06:34:11 +0000 | [diff] [blame] | 137 | { |
Troy Kisky | e4ff525 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 138 | struct mxc_i2c_regs *i2c_regs = (struct mxc_i2c_regs *)base; |
Marek Vasut | bf0783d | 2011-10-26 00:05:44 +0000 | [diff] [blame] | 139 | u8 clk_idx = readb(&i2c_regs->ifdr); |
| 140 | u8 clk_div; |
| 141 | |
| 142 | for (clk_div = 0; i2c_clk_div[clk_div][1] != clk_idx; clk_div++) |
| 143 | ; |
| 144 | |
Marek Vasut | b567b8f | 2011-09-27 06:34:11 +0000 | [diff] [blame] | 145 | return mxc_get_clock(MXC_IPG_PERCLK) / i2c_clk_div[clk_div][0]; |
| 146 | } |
| 147 | |
Troy Kisky | 7aa57a0 | 2012-07-19 08:18:09 +0000 | [diff] [blame] | 148 | #define ST_BUS_IDLE (0 | (I2SR_IBB << 8)) |
| 149 | #define ST_BUS_BUSY (I2SR_IBB | (I2SR_IBB << 8)) |
| 150 | #define ST_IIF (I2SR_IIF | (I2SR_IIF << 8)) |
| 151 | |
| 152 | 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] | 153 | { |
Troy Kisky | 7aa57a0 | 2012-07-19 08:18:09 +0000 | [diff] [blame] | 154 | unsigned sr; |
| 155 | ulong elapsed; |
| 156 | ulong start_time = get_timer(0); |
| 157 | for (;;) { |
| 158 | sr = readb(&i2c_regs->i2sr); |
Troy Kisky | d5383a6 | 2012-07-19 08:18:15 +0000 | [diff] [blame] | 159 | if (sr & I2SR_IAL) { |
| 160 | writeb(sr & ~I2SR_IAL, &i2c_regs->i2sr); |
| 161 | printf("%s: Arbitration lost sr=%x cr=%x state=%x\n", |
| 162 | __func__, sr, readb(&i2c_regs->i2cr), state); |
| 163 | return -ERESTART; |
| 164 | } |
Troy Kisky | 7aa57a0 | 2012-07-19 08:18:09 +0000 | [diff] [blame] | 165 | if ((sr & (state >> 8)) == (unsigned char)state) |
| 166 | return sr; |
| 167 | WATCHDOG_RESET(); |
| 168 | elapsed = get_timer(start_time); |
| 169 | if (elapsed > (CONFIG_SYS_HZ / 10)) /* .1 seconds */ |
| 170 | break; |
Stefano Babic | 8168721 | 2011-01-20 07:51:31 +0000 | [diff] [blame] | 171 | } |
Troy Kisky | 7aa57a0 | 2012-07-19 08:18:09 +0000 | [diff] [blame] | 172 | printf("%s: failed sr=%x cr=%x state=%x\n", __func__, |
| 173 | sr, readb(&i2c_regs->i2cr), state); |
Troy Kisky | cea60b0 | 2012-07-19 08:18:04 +0000 | [diff] [blame] | 174 | return -ETIMEDOUT; |
Stefano Babic | 8168721 | 2011-01-20 07:51:31 +0000 | [diff] [blame] | 175 | } |
| 176 | |
Troy Kisky | cea60b0 | 2012-07-19 08:18:04 +0000 | [diff] [blame] | 177 | static int tx_byte(struct mxc_i2c_regs *i2c_regs, u8 byte) |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 178 | { |
Troy Kisky | cea60b0 | 2012-07-19 08:18:04 +0000 | [diff] [blame] | 179 | int ret; |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 180 | |
Troy Kisky | ea572d8 | 2012-07-19 08:18:05 +0000 | [diff] [blame] | 181 | writeb(0, &i2c_regs->i2sr); |
Troy Kisky | cea60b0 | 2012-07-19 08:18:04 +0000 | [diff] [blame] | 182 | writeb(byte, &i2c_regs->i2dr); |
Troy Kisky | 7aa57a0 | 2012-07-19 08:18:09 +0000 | [diff] [blame] | 183 | ret = wait_for_sr_state(i2c_regs, ST_IIF); |
Troy Kisky | cea60b0 | 2012-07-19 08:18:04 +0000 | [diff] [blame] | 184 | if (ret < 0) |
| 185 | return ret; |
Troy Kisky | cea60b0 | 2012-07-19 08:18:04 +0000 | [diff] [blame] | 186 | if (ret & I2SR_RX_NO_AK) |
| 187 | return -ENODEV; |
| 188 | return 0; |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 189 | } |
| 190 | |
| 191 | /* |
Troy Kisky | 90a5b70 | 2012-07-19 08:18:13 +0000 | [diff] [blame] | 192 | * Stop I2C transaction |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 193 | */ |
Troy Kisky | 27a5da0 | 2012-07-19 08:18:17 +0000 | [diff] [blame] | 194 | static void i2c_imx_stop(struct mxc_i2c_regs *i2c_regs) |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 195 | { |
Troy Kisky | 7aa57a0 | 2012-07-19 08:18:09 +0000 | [diff] [blame] | 196 | int ret; |
Troy Kisky | 90a5b70 | 2012-07-19 08:18:13 +0000 | [diff] [blame] | 197 | unsigned int temp = readb(&i2c_regs->i2cr); |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 198 | |
Troy Kisky | 1c076db | 2012-07-19 08:18:02 +0000 | [diff] [blame] | 199 | temp &= ~(I2CR_MSTA | I2CR_MTX); |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 200 | writeb(temp, &i2c_regs->i2cr); |
Troy Kisky | 7aa57a0 | 2012-07-19 08:18:09 +0000 | [diff] [blame] | 201 | ret = wait_for_sr_state(i2c_regs, ST_BUS_IDLE); |
| 202 | if (ret < 0) |
| 203 | printf("%s:trigger stop failed\n", __func__); |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 204 | } |
| 205 | |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 206 | /* |
Troy Kisky | b230ddc | 2012-07-19 08:18:06 +0000 | [diff] [blame] | 207 | * Send start signal, chip address and |
| 208 | * write register address |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 209 | */ |
Troy Kisky | a7f1a00 | 2012-07-19 08:18:16 +0000 | [diff] [blame] | 210 | static int i2c_init_transfer_(struct mxc_i2c_regs *i2c_regs, |
Troy Kisky | b230ddc | 2012-07-19 08:18:06 +0000 | [diff] [blame] | 211 | uchar chip, uint addr, int alen) |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 212 | { |
Troy Kisky | 71e9f3c | 2012-07-19 08:18:11 +0000 | [diff] [blame] | 213 | unsigned int temp; |
| 214 | int ret; |
| 215 | |
| 216 | /* Enable I2C controller */ |
Troy Kisky | 90a5b70 | 2012-07-19 08:18:13 +0000 | [diff] [blame] | 217 | if (!(readb(&i2c_regs->i2cr) & I2CR_IEN)) { |
| 218 | writeb(I2CR_IEN, &i2c_regs->i2cr); |
| 219 | /* Wait for controller to be stable */ |
| 220 | udelay(50); |
| 221 | } |
Troy Kisky | ca741da | 2012-07-19 08:18:14 +0000 | [diff] [blame] | 222 | if (readb(&i2c_regs->iadr) == (chip << 1)) |
| 223 | writeb((chip << 1) ^ 2, &i2c_regs->iadr); |
Troy Kisky | 71e9f3c | 2012-07-19 08:18:11 +0000 | [diff] [blame] | 224 | writeb(0, &i2c_regs->i2sr); |
Troy Kisky | 90a5b70 | 2012-07-19 08:18:13 +0000 | [diff] [blame] | 225 | ret = wait_for_sr_state(i2c_regs, ST_BUS_IDLE); |
| 226 | if (ret < 0) |
Troy Kisky | a7f1a00 | 2012-07-19 08:18:16 +0000 | [diff] [blame] | 227 | return ret; |
Troy Kisky | 71e9f3c | 2012-07-19 08:18:11 +0000 | [diff] [blame] | 228 | |
| 229 | /* Start I2C transaction */ |
| 230 | temp = readb(&i2c_regs->i2cr); |
| 231 | temp |= I2CR_MSTA; |
| 232 | writeb(temp, &i2c_regs->i2cr); |
| 233 | |
| 234 | ret = wait_for_sr_state(i2c_regs, ST_BUS_BUSY); |
| 235 | if (ret < 0) |
Troy Kisky | a7f1a00 | 2012-07-19 08:18:16 +0000 | [diff] [blame] | 236 | return ret; |
Troy Kisky | b230ddc | 2012-07-19 08:18:06 +0000 | [diff] [blame] | 237 | |
Troy Kisky | 71e9f3c | 2012-07-19 08:18:11 +0000 | [diff] [blame] | 238 | temp |= I2CR_MTX | I2CR_TX_NO_AK; |
| 239 | writeb(temp, &i2c_regs->i2cr); |
| 240 | |
Troy Kisky | b230ddc | 2012-07-19 08:18:06 +0000 | [diff] [blame] | 241 | /* write slave address */ |
| 242 | ret = tx_byte(i2c_regs, chip << 1); |
| 243 | if (ret < 0) |
Troy Kisky | a7f1a00 | 2012-07-19 08:18:16 +0000 | [diff] [blame] | 244 | return ret; |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 245 | |
Marek Vasut | bf0783d | 2011-10-26 00:05:44 +0000 | [diff] [blame] | 246 | while (alen--) { |
Troy Kisky | cea60b0 | 2012-07-19 08:18:04 +0000 | [diff] [blame] | 247 | ret = tx_byte(i2c_regs, (addr >> (alen * 8)) & 0xff); |
| 248 | if (ret < 0) |
Troy Kisky | a7f1a00 | 2012-07-19 08:18:16 +0000 | [diff] [blame] | 249 | return ret; |
Stefano Babic | 8168721 | 2011-01-20 07:51:31 +0000 | [diff] [blame] | 250 | } |
Troy Kisky | b230ddc | 2012-07-19 08:18:06 +0000 | [diff] [blame] | 251 | return 0; |
Troy Kisky | a7f1a00 | 2012-07-19 08:18:16 +0000 | [diff] [blame] | 252 | } |
| 253 | |
Troy Kisky | 96c19bd | 2012-07-19 08:18:19 +0000 | [diff] [blame] | 254 | static int i2c_idle_bus(void *base); |
| 255 | |
Troy Kisky | a7f1a00 | 2012-07-19 08:18:16 +0000 | [diff] [blame] | 256 | static int i2c_init_transfer(struct mxc_i2c_regs *i2c_regs, |
| 257 | uchar chip, uint addr, int alen) |
| 258 | { |
| 259 | int retry; |
| 260 | int ret; |
| 261 | for (retry = 0; retry < 3; retry++) { |
| 262 | ret = i2c_init_transfer_(i2c_regs, chip, addr, alen); |
| 263 | if (ret >= 0) |
| 264 | return 0; |
Troy Kisky | 27a5da0 | 2012-07-19 08:18:17 +0000 | [diff] [blame] | 265 | i2c_imx_stop(i2c_regs); |
Troy Kisky | a7f1a00 | 2012-07-19 08:18:16 +0000 | [diff] [blame] | 266 | if (ret == -ENODEV) |
| 267 | return ret; |
| 268 | |
| 269 | printf("%s: failed for chip 0x%x retry=%d\n", __func__, chip, |
| 270 | retry); |
| 271 | if (ret != -ERESTART) |
| 272 | writeb(0, &i2c_regs->i2cr); /* Disable controller */ |
| 273 | udelay(100); |
Troy Kisky | 96c19bd | 2012-07-19 08:18:19 +0000 | [diff] [blame] | 274 | if (i2c_idle_bus(i2c_regs) < 0) |
| 275 | break; |
Troy Kisky | a7f1a00 | 2012-07-19 08:18:16 +0000 | [diff] [blame] | 276 | } |
| 277 | printf("%s: give up i2c_regs=%p\n", __func__, i2c_regs); |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 278 | return ret; |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 279 | } |
| 280 | |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 281 | /* |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 282 | * Read data from I2C device |
| 283 | */ |
Troy Kisky | e4ff525 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 284 | int bus_i2c_read(void *base, uchar chip, uint addr, int alen, uchar *buf, |
| 285 | int len) |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 286 | { |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 287 | int ret; |
| 288 | unsigned int temp; |
| 289 | int i; |
Troy Kisky | e4ff525 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 290 | struct mxc_i2c_regs *i2c_regs = (struct mxc_i2c_regs *)base; |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 291 | |
Troy Kisky | b230ddc | 2012-07-19 08:18:06 +0000 | [diff] [blame] | 292 | ret = i2c_init_transfer(i2c_regs, chip, addr, alen); |
Troy Kisky | cea60b0 | 2012-07-19 08:18:04 +0000 | [diff] [blame] | 293 | if (ret < 0) |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 294 | return ret; |
| 295 | |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 296 | temp = readb(&i2c_regs->i2cr); |
| 297 | temp |= I2CR_RSTA; |
| 298 | writeb(temp, &i2c_regs->i2cr); |
| 299 | |
Troy Kisky | cea60b0 | 2012-07-19 08:18:04 +0000 | [diff] [blame] | 300 | ret = tx_byte(i2c_regs, (chip << 1) | 1); |
Troy Kisky | c4330d2 | 2012-07-19 08:18:07 +0000 | [diff] [blame] | 301 | if (ret < 0) { |
Troy Kisky | 27a5da0 | 2012-07-19 08:18:17 +0000 | [diff] [blame] | 302 | i2c_imx_stop(i2c_regs); |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 303 | return ret; |
Troy Kisky | c4330d2 | 2012-07-19 08:18:07 +0000 | [diff] [blame] | 304 | } |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 305 | |
| 306 | /* setup bus to read data */ |
| 307 | temp = readb(&i2c_regs->i2cr); |
| 308 | temp &= ~(I2CR_MTX | I2CR_TX_NO_AK); |
| 309 | if (len == 1) |
| 310 | temp |= I2CR_TX_NO_AK; |
| 311 | writeb(temp, &i2c_regs->i2cr); |
Troy Kisky | ea572d8 | 2012-07-19 08:18:05 +0000 | [diff] [blame] | 312 | writeb(0, &i2c_regs->i2sr); |
| 313 | readb(&i2c_regs->i2dr); /* dummy read to clear ICF */ |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 314 | |
| 315 | /* read data */ |
| 316 | for (i = 0; i < len; i++) { |
Troy Kisky | 7aa57a0 | 2012-07-19 08:18:09 +0000 | [diff] [blame] | 317 | ret = wait_for_sr_state(i2c_regs, ST_IIF); |
| 318 | if (ret < 0) { |
Troy Kisky | 27a5da0 | 2012-07-19 08:18:17 +0000 | [diff] [blame] | 319 | i2c_imx_stop(i2c_regs); |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 320 | return ret; |
Troy Kisky | c4330d2 | 2012-07-19 08:18:07 +0000 | [diff] [blame] | 321 | } |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 322 | |
| 323 | /* |
| 324 | * It must generate STOP before read I2DR to prevent |
| 325 | * controller from generating another clock cycle |
| 326 | */ |
| 327 | if (i == (len - 1)) { |
Troy Kisky | 27a5da0 | 2012-07-19 08:18:17 +0000 | [diff] [blame] | 328 | i2c_imx_stop(i2c_regs); |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 329 | } else if (i == (len - 2)) { |
| 330 | temp = readb(&i2c_regs->i2cr); |
| 331 | temp |= I2CR_TX_NO_AK; |
| 332 | writeb(temp, &i2c_regs->i2cr); |
| 333 | } |
Troy Kisky | ea572d8 | 2012-07-19 08:18:05 +0000 | [diff] [blame] | 334 | writeb(0, &i2c_regs->i2sr); |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 335 | buf[i] = readb(&i2c_regs->i2dr); |
| 336 | } |
Troy Kisky | 27a5da0 | 2012-07-19 08:18:17 +0000 | [diff] [blame] | 337 | i2c_imx_stop(i2c_regs); |
Troy Kisky | 7aa57a0 | 2012-07-19 08:18:09 +0000 | [diff] [blame] | 338 | return 0; |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 339 | } |
| 340 | |
| 341 | /* |
| 342 | * Write data to I2C device |
| 343 | */ |
Troy Kisky | e4ff525 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 344 | int bus_i2c_write(void *base, uchar chip, uint addr, int alen, |
| 345 | const uchar *buf, int len) |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 346 | { |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 347 | int ret; |
| 348 | int i; |
Troy Kisky | e4ff525 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 349 | struct mxc_i2c_regs *i2c_regs = (struct mxc_i2c_regs *)base; |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 350 | |
Troy Kisky | b230ddc | 2012-07-19 08:18:06 +0000 | [diff] [blame] | 351 | ret = i2c_init_transfer(i2c_regs, chip, addr, alen); |
Troy Kisky | cea60b0 | 2012-07-19 08:18:04 +0000 | [diff] [blame] | 352 | if (ret < 0) |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 353 | return ret; |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 354 | |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 355 | for (i = 0; i < len; i++) { |
Troy Kisky | cea60b0 | 2012-07-19 08:18:04 +0000 | [diff] [blame] | 356 | ret = tx_byte(i2c_regs, buf[i]); |
| 357 | if (ret < 0) |
Troy Kisky | c4330d2 | 2012-07-19 08:18:07 +0000 | [diff] [blame] | 358 | break; |
Marek Vasut | db84140 | 2011-09-22 09:22:12 +0000 | [diff] [blame] | 359 | } |
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; |
Sascha Hauer | cdace06 | 2008-03-26 20:40:49 +0100 | [diff] [blame] | 362 | } |
Troy Kisky | cfbb88d | 2012-07-19 08:18:08 +0000 | [diff] [blame] | 363 | |
Troy Kisky | e4ff525 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 364 | struct i2c_parms { |
| 365 | void *base; |
| 366 | void *idle_bus_data; |
| 367 | int (*idle_bus_fn)(void *p); |
| 368 | }; |
| 369 | |
| 370 | struct sram_data { |
| 371 | unsigned curr_i2c_bus; |
| 372 | struct i2c_parms i2c_data[3]; |
| 373 | }; |
| 374 | |
| 375 | /* |
| 376 | * For SPL boot some boards need i2c before SDRAM is initialized so force |
| 377 | * variables to live in SRAM |
| 378 | */ |
| 379 | static struct sram_data __attribute__((section(".data"))) srdata; |
| 380 | |
| 381 | void *get_base(void) |
| 382 | { |
| 383 | #ifdef CONFIG_SYS_I2C_BASE |
| 384 | #ifdef CONFIG_I2C_MULTI_BUS |
| 385 | void *ret = srdata.i2c_data[srdata.curr_i2c_bus].base; |
| 386 | if (ret) |
| 387 | return ret; |
| 388 | #endif |
| 389 | return (void *)CONFIG_SYS_I2C_BASE; |
| 390 | #elif defined(CONFIG_I2C_MULTI_BUS) |
| 391 | return srdata.i2c_data[srdata.curr_i2c_bus].base; |
| 392 | #else |
| 393 | return srdata.i2c_data[0].base; |
| 394 | #endif |
| 395 | } |
| 396 | |
Troy Kisky | 96c19bd | 2012-07-19 08:18:19 +0000 | [diff] [blame] | 397 | static struct i2c_parms *i2c_get_parms(void *base) |
| 398 | { |
| 399 | int i = 0; |
| 400 | struct i2c_parms *p = srdata.i2c_data; |
| 401 | while (i < ARRAY_SIZE(srdata.i2c_data)) { |
| 402 | if (p->base == base) |
| 403 | return p; |
| 404 | p++; |
| 405 | i++; |
| 406 | } |
| 407 | printf("Invalid I2C base: %p\n", base); |
| 408 | return NULL; |
| 409 | } |
| 410 | |
| 411 | static int i2c_idle_bus(void *base) |
| 412 | { |
| 413 | struct i2c_parms *p = i2c_get_parms(base); |
| 414 | if (p && p->idle_bus_fn) |
| 415 | return p->idle_bus_fn(p->idle_bus_data); |
| 416 | return 0; |
| 417 | } |
| 418 | |
Troy Kisky | 9815326 | 2012-07-19 08:18:20 +0000 | [diff] [blame] | 419 | #ifdef CONFIG_I2C_MULTI_BUS |
| 420 | unsigned int i2c_get_bus_num(void) |
| 421 | { |
| 422 | return srdata.curr_i2c_bus; |
| 423 | } |
| 424 | |
| 425 | int i2c_set_bus_num(unsigned bus_idx) |
| 426 | { |
| 427 | if (bus_idx >= ARRAY_SIZE(srdata.i2c_data)) |
| 428 | return -1; |
| 429 | if (!srdata.i2c_data[bus_idx].base) |
| 430 | return -1; |
| 431 | srdata.curr_i2c_bus = bus_idx; |
| 432 | return 0; |
| 433 | } |
| 434 | #endif |
| 435 | |
Troy Kisky | e4ff525 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 436 | int i2c_read(uchar chip, uint addr, int alen, uchar *buf, int len) |
| 437 | { |
| 438 | return bus_i2c_read(get_base(), chip, addr, alen, buf, len); |
| 439 | } |
| 440 | |
| 441 | int i2c_write(uchar chip, uint addr, int alen, uchar *buf, int len) |
| 442 | { |
| 443 | return bus_i2c_write(get_base(), chip, addr, alen, buf, len); |
| 444 | } |
| 445 | |
Troy Kisky | cfbb88d | 2012-07-19 08:18:08 +0000 | [diff] [blame] | 446 | /* |
| 447 | * Test if a chip at a given address responds (probe the chip) |
| 448 | */ |
| 449 | int i2c_probe(uchar chip) |
| 450 | { |
Troy Kisky | e4ff525 | 2012-07-19 08:18:18 +0000 | [diff] [blame] | 451 | return bus_i2c_write(get_base(), chip, 0, 0, NULL, 0); |
| 452 | } |
| 453 | |
| 454 | void bus_i2c_init(void *base, int speed, int unused, |
| 455 | int (*idle_bus_fn)(void *p), void *idle_bus_data) |
| 456 | { |
| 457 | int i = 0; |
| 458 | struct i2c_parms *p = srdata.i2c_data; |
| 459 | if (!base) |
| 460 | return; |
| 461 | for (;;) { |
| 462 | if (!p->base || (p->base == base)) { |
| 463 | p->base = base; |
| 464 | if (idle_bus_fn) { |
| 465 | p->idle_bus_fn = idle_bus_fn; |
| 466 | p->idle_bus_data = idle_bus_data; |
| 467 | } |
| 468 | break; |
| 469 | } |
| 470 | p++; |
| 471 | i++; |
| 472 | if (i >= ARRAY_SIZE(srdata.i2c_data)) |
| 473 | return; |
| 474 | } |
| 475 | bus_i2c_set_bus_speed(base, speed); |
| 476 | } |
| 477 | |
| 478 | /* |
| 479 | * Init I2C Bus |
| 480 | */ |
| 481 | void i2c_init(int speed, int unused) |
| 482 | { |
| 483 | bus_i2c_init(get_base(), speed, unused, NULL, NULL); |
| 484 | } |
| 485 | |
| 486 | /* |
| 487 | * Set I2C Speed |
| 488 | */ |
| 489 | int i2c_set_bus_speed(unsigned int speed) |
| 490 | { |
| 491 | return bus_i2c_set_bus_speed(get_base(), speed); |
| 492 | } |
| 493 | |
| 494 | /* |
| 495 | * Get I2C Speed |
| 496 | */ |
| 497 | unsigned int i2c_get_bus_speed(void) |
| 498 | { |
| 499 | return bus_i2c_get_bus_speed(get_base()); |
Troy Kisky | cfbb88d | 2012-07-19 08:18:08 +0000 | [diff] [blame] | 500 | } |