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