Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 2 | /* |
Timur Tabi | 92477a6 | 2009-09-04 16:28:35 -0500 | [diff] [blame] | 3 | * Copyright 2006,2009 Freescale Semiconductor, Inc. |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 4 | * |
Heiko Schocher | 00f792e | 2012-10-24 13:48:22 +0200 | [diff] [blame] | 5 | * 2012, Heiko Schocher, DENX Software Engineering, hs@denx.de. |
| 6 | * Changes for multibus/multiadapter I2C support. |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 7 | */ |
| 8 | |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 9 | #include <common.h> |
Jon Loeliger | 4d45f69 | 2006-10-19 12:02:24 -0500 | [diff] [blame] | 10 | #include <command.h> |
Jon Loeliger | 2047672 | 2006-10-20 15:50:15 -0500 | [diff] [blame] | 11 | #include <i2c.h> /* Functional interface */ |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 12 | #include <log.h> |
Simon Glass | 6887c5b | 2019-11-14 12:57:26 -0700 | [diff] [blame] | 13 | #include <time.h> |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 14 | #include <asm/io.h> |
Jon Loeliger | 2047672 | 2006-10-20 15:50:15 -0500 | [diff] [blame] | 15 | #include <asm/fsl_i2c.h> /* HW definitions */ |
Mario Six | e5c762f | 2018-03-28 14:37:44 +0200 | [diff] [blame] | 16 | #include <clk.h> |
mario.six@gdsys.cc | dbc82ce | 2016-04-25 08:31:09 +0200 | [diff] [blame] | 17 | #include <dm.h> |
| 18 | #include <mapmem.h> |
Simon Glass | c05ed00 | 2020-05-10 11:40:11 -0600 | [diff] [blame^] | 19 | #include <linux/delay.h> |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 20 | |
Timur Tabi | 92477a6 | 2009-09-04 16:28:35 -0500 | [diff] [blame] | 21 | /* The maximum number of microseconds we will wait until another master has |
| 22 | * released the bus. If not defined in the board header file, then use a |
| 23 | * generic value. |
| 24 | */ |
| 25 | #ifndef CONFIG_I2C_MBB_TIMEOUT |
| 26 | #define CONFIG_I2C_MBB_TIMEOUT 100000 |
| 27 | #endif |
| 28 | |
| 29 | /* The maximum number of microseconds we will wait for a read or write |
| 30 | * operation to complete. If not defined in the board header file, then use a |
| 31 | * generic value. |
| 32 | */ |
| 33 | #ifndef CONFIG_I2C_TIMEOUT |
Shaveta Leekha | 6dd38cc | 2014-11-03 10:43:14 +0530 | [diff] [blame] | 34 | #define CONFIG_I2C_TIMEOUT 100000 |
Timur Tabi | 92477a6 | 2009-09-04 16:28:35 -0500 | [diff] [blame] | 35 | #endif |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 36 | |
Joakim Tjernlund | 1939d96 | 2006-11-28 16:17:27 -0600 | [diff] [blame] | 37 | #define I2C_READ_BIT 1 |
| 38 | #define I2C_WRITE_BIT 0 |
| 39 | |
Timur Tabi | d8c82db | 2008-03-14 17:45:29 -0500 | [diff] [blame] | 40 | DECLARE_GLOBAL_DATA_PTR; |
| 41 | |
mario.six@gdsys.cc | dbc82ce | 2016-04-25 08:31:09 +0200 | [diff] [blame] | 42 | #ifndef CONFIG_DM_I2C |
mario.six@gdsys.cc | ec2c81c | 2016-04-25 08:31:01 +0200 | [diff] [blame] | 43 | static const struct fsl_i2c_base *i2c_base[4] = { |
| 44 | (struct fsl_i2c_base *)(CONFIG_SYS_IMMR + CONFIG_SYS_FSL_I2C_OFFSET), |
Heiko Schocher | 00f792e | 2012-10-24 13:48:22 +0200 | [diff] [blame] | 45 | #ifdef CONFIG_SYS_FSL_I2C2_OFFSET |
mario.six@gdsys.cc | ec2c81c | 2016-04-25 08:31:01 +0200 | [diff] [blame] | 46 | (struct fsl_i2c_base *)(CONFIG_SYS_IMMR + CONFIG_SYS_FSL_I2C2_OFFSET), |
Shengzhou Liu | a17fd10 | 2014-07-07 12:17:48 +0800 | [diff] [blame] | 47 | #endif |
| 48 | #ifdef CONFIG_SYS_FSL_I2C3_OFFSET |
mario.six@gdsys.cc | ec2c81c | 2016-04-25 08:31:01 +0200 | [diff] [blame] | 49 | (struct fsl_i2c_base *)(CONFIG_SYS_IMMR + CONFIG_SYS_FSL_I2C3_OFFSET), |
Shengzhou Liu | a17fd10 | 2014-07-07 12:17:48 +0800 | [diff] [blame] | 50 | #endif |
| 51 | #ifdef CONFIG_SYS_FSL_I2C4_OFFSET |
mario.six@gdsys.cc | ec2c81c | 2016-04-25 08:31:01 +0200 | [diff] [blame] | 52 | (struct fsl_i2c_base *)(CONFIG_SYS_IMMR + CONFIG_SYS_FSL_I2C4_OFFSET) |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 53 | #endif |
| 54 | }; |
mario.six@gdsys.cc | dbc82ce | 2016-04-25 08:31:09 +0200 | [diff] [blame] | 55 | #endif |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 56 | |
Timur Tabi | d8c82db | 2008-03-14 17:45:29 -0500 | [diff] [blame] | 57 | /* I2C speed map for a DFSR value of 1 */ |
| 58 | |
Tom Rini | 645cb46 | 2017-02-09 15:40:16 -0500 | [diff] [blame] | 59 | #ifdef __M68K__ |
Timur Tabi | d8c82db | 2008-03-14 17:45:29 -0500 | [diff] [blame] | 60 | /* |
| 61 | * Map I2C frequency dividers to FDR and DFSR values |
| 62 | * |
| 63 | * This structure is used to define the elements of a table that maps I2C |
| 64 | * frequency divider (I2C clock rate divided by I2C bus speed) to a value to be |
| 65 | * programmed into the Frequency Divider Ratio (FDR) and Digital Filter |
| 66 | * Sampling Rate (DFSR) registers. |
| 67 | * |
| 68 | * The actual table should be defined in the board file, and it must be called |
| 69 | * fsl_i2c_speed_map[]. |
| 70 | * |
| 71 | * The last entry of the table must have a value of {-1, X}, where X is same |
| 72 | * FDR/DFSR values as the second-to-last entry. This guarantees that any |
| 73 | * search through the array will always find a match. |
| 74 | * |
| 75 | * The values of the divider must be in increasing numerical order, i.e. |
| 76 | * fsl_i2c_speed_map[x+1].divider > fsl_i2c_speed_map[x].divider. |
| 77 | * |
| 78 | * For this table, the values are based on a value of 1 for the DFSR |
| 79 | * register. See the application note AN2919 "Determining the I2C Frequency |
| 80 | * Divider Ratio for SCL" |
TsiChung Liew | 5d9a5ef | 2008-08-19 00:56:46 +0600 | [diff] [blame] | 81 | * |
| 82 | * ColdFire I2C frequency dividers for FDR values are different from |
| 83 | * PowerPC. The protocol to use the I2C module is still the same. |
| 84 | * A different table is defined and are based on MCF5xxx user manual. |
| 85 | * |
Timur Tabi | d8c82db | 2008-03-14 17:45:29 -0500 | [diff] [blame] | 86 | */ |
| 87 | static const struct { |
| 88 | unsigned short divider; |
Timur Tabi | d8c82db | 2008-03-14 17:45:29 -0500 | [diff] [blame] | 89 | u8 fdr; |
| 90 | } fsl_i2c_speed_map[] = { |
TsiChung Liew | 5d9a5ef | 2008-08-19 00:56:46 +0600 | [diff] [blame] | 91 | {20, 32}, {22, 33}, {24, 34}, {26, 35}, |
| 92 | {28, 0}, {28, 36}, {30, 1}, {32, 37}, |
| 93 | {34, 2}, {36, 38}, {40, 3}, {40, 39}, |
| 94 | {44, 4}, {48, 5}, {48, 40}, {56, 6}, |
| 95 | {56, 41}, {64, 42}, {68, 7}, {72, 43}, |
| 96 | {80, 8}, {80, 44}, {88, 9}, {96, 41}, |
| 97 | {104, 10}, {112, 42}, {128, 11}, {128, 43}, |
| 98 | {144, 12}, {160, 13}, {160, 48}, {192, 14}, |
| 99 | {192, 49}, {224, 50}, {240, 15}, {256, 51}, |
| 100 | {288, 16}, {320, 17}, {320, 52}, {384, 18}, |
| 101 | {384, 53}, {448, 54}, {480, 19}, {512, 55}, |
| 102 | {576, 20}, {640, 21}, {640, 56}, {768, 22}, |
| 103 | {768, 57}, {960, 23}, {896, 58}, {1024, 59}, |
| 104 | {1152, 24}, {1280, 25}, {1280, 60}, {1536, 26}, |
| 105 | {1536, 61}, {1792, 62}, {1920, 27}, {2048, 63}, |
| 106 | {2304, 28}, {2560, 29}, {3072, 30}, {3840, 31}, |
| 107 | {-1, 31} |
Timur Tabi | d8c82db | 2008-03-14 17:45:29 -0500 | [diff] [blame] | 108 | }; |
Tom Rini | 645cb46 | 2017-02-09 15:40:16 -0500 | [diff] [blame] | 109 | #endif |
Timur Tabi | d8c82db | 2008-03-14 17:45:29 -0500 | [diff] [blame] | 110 | |
| 111 | /** |
| 112 | * Set the I2C bus speed for a given I2C device |
| 113 | * |
mario.six@gdsys.cc | ec2c81c | 2016-04-25 08:31:01 +0200 | [diff] [blame] | 114 | * @param base: the I2C device registers |
Timur Tabi | d8c82db | 2008-03-14 17:45:29 -0500 | [diff] [blame] | 115 | * @i2c_clk: I2C bus clock frequency |
| 116 | * @speed: the desired speed of the bus |
| 117 | * |
| 118 | * The I2C device must be stopped before calling this function. |
| 119 | * |
| 120 | * The return value is the actual bus speed that is set. |
| 121 | */ |
Mario Six | a059de1 | 2018-01-15 11:08:07 +0100 | [diff] [blame] | 122 | static uint set_i2c_bus_speed(const struct fsl_i2c_base *base, |
| 123 | uint i2c_clk, uint speed) |
Timur Tabi | d8c82db | 2008-03-14 17:45:29 -0500 | [diff] [blame] | 124 | { |
Mario Six | a059de1 | 2018-01-15 11:08:07 +0100 | [diff] [blame] | 125 | ushort divider = min(i2c_clk / speed, (uint)USHRT_MAX); |
Timur Tabi | d8c82db | 2008-03-14 17:45:29 -0500 | [diff] [blame] | 126 | |
| 127 | /* |
| 128 | * We want to choose an FDR/DFSR that generates an I2C bus speed that |
| 129 | * is equal to or lower than the requested speed. That means that we |
| 130 | * want the first divider that is equal to or greater than the |
| 131 | * calculated divider. |
| 132 | */ |
Joakim Tjernlund | 9940420 | 2009-09-17 11:07:17 +0200 | [diff] [blame] | 133 | #ifdef __PPC__ |
| 134 | u8 dfsr, fdr = 0x31; /* Default if no FDR found */ |
| 135 | /* a, b and dfsr matches identifiers A,B and C respectively in AN2919 */ |
Mario Six | a059de1 | 2018-01-15 11:08:07 +0100 | [diff] [blame] | 136 | ushort a, b, ga, gb; |
| 137 | ulong c_div, est_div; |
Joakim Tjernlund | 9940420 | 2009-09-17 11:07:17 +0200 | [diff] [blame] | 138 | |
| 139 | #ifdef CONFIG_FSL_I2C_CUSTOM_DFSR |
| 140 | dfsr = CONFIG_FSL_I2C_CUSTOM_DFSR; |
| 141 | #else |
| 142 | /* Condition 1: dfsr <= 50/T */ |
| 143 | dfsr = (5 * (i2c_clk / 1000)) / 100000; |
| 144 | #endif |
| 145 | #ifdef CONFIG_FSL_I2C_CUSTOM_FDR |
| 146 | fdr = CONFIG_FSL_I2C_CUSTOM_FDR; |
| 147 | speed = i2c_clk / divider; /* Fake something */ |
| 148 | #else |
| 149 | debug("Requested speed:%d, i2c_clk:%d\n", speed, i2c_clk); |
| 150 | if (!dfsr) |
| 151 | dfsr = 1; |
| 152 | |
| 153 | est_div = ~0; |
| 154 | for (ga = 0x4, a = 10; a <= 30; ga++, a += 2) { |
| 155 | for (gb = 0; gb < 8; gb++) { |
| 156 | b = 16 << gb; |
Mario Six | a059de1 | 2018-01-15 11:08:07 +0100 | [diff] [blame] | 157 | c_div = b * (a + ((3 * dfsr) / b) * 2); |
| 158 | if (c_div > divider && c_div < est_div) { |
| 159 | ushort bin_gb, bin_ga; |
Joakim Tjernlund | 9940420 | 2009-09-17 11:07:17 +0200 | [diff] [blame] | 160 | |
| 161 | est_div = c_div; |
| 162 | bin_gb = gb << 2; |
| 163 | bin_ga = (ga & 0x3) | ((ga & 0x4) << 3); |
| 164 | fdr = bin_gb | bin_ga; |
| 165 | speed = i2c_clk / est_div; |
Mario Six | a059de1 | 2018-01-15 11:08:07 +0100 | [diff] [blame] | 166 | |
| 167 | debug("FDR: 0x%.2x, ", fdr); |
| 168 | debug("div: %ld, ", est_div); |
| 169 | debug("ga: 0x%x, gb: 0x%x, ", ga, gb); |
| 170 | debug("a: %d, b: %d, speed: %d\n", a, b, speed); |
| 171 | |
Joakim Tjernlund | 9940420 | 2009-09-17 11:07:17 +0200 | [diff] [blame] | 172 | /* Condition 2 not accounted for */ |
| 173 | debug("Tr <= %d ns\n", |
| 174 | (b - 3 * dfsr) * 1000000 / |
| 175 | (i2c_clk / 1000)); |
| 176 | } |
| 177 | } |
| 178 | if (a == 20) |
| 179 | a += 2; |
| 180 | if (a == 24) |
| 181 | a += 4; |
| 182 | } |
Mario Six | a059de1 | 2018-01-15 11:08:07 +0100 | [diff] [blame] | 183 | debug("divider: %d, est_div: %ld, DFSR: %d\n", divider, est_div, dfsr); |
| 184 | debug("FDR: 0x%.2x, speed: %d\n", fdr, speed); |
Joakim Tjernlund | 9940420 | 2009-09-17 11:07:17 +0200 | [diff] [blame] | 185 | #endif |
mario.six@gdsys.cc | ec2c81c | 2016-04-25 08:31:01 +0200 | [diff] [blame] | 186 | writeb(dfsr, &base->dfsrr); /* set default filter */ |
| 187 | writeb(fdr, &base->fdr); /* set bus speed */ |
Joakim Tjernlund | 9940420 | 2009-09-17 11:07:17 +0200 | [diff] [blame] | 188 | #else |
Mario Six | a059de1 | 2018-01-15 11:08:07 +0100 | [diff] [blame] | 189 | uint i; |
Timur Tabi | d8c82db | 2008-03-14 17:45:29 -0500 | [diff] [blame] | 190 | |
| 191 | for (i = 0; i < ARRAY_SIZE(fsl_i2c_speed_map); i++) |
| 192 | if (fsl_i2c_speed_map[i].divider >= divider) { |
TsiChung Liew | 5d9a5ef | 2008-08-19 00:56:46 +0600 | [diff] [blame] | 193 | u8 fdr; |
Joakim Tjernlund | 9940420 | 2009-09-17 11:07:17 +0200 | [diff] [blame] | 194 | |
Joakim Tjernlund | d01ee4d | 2009-09-17 11:07:16 +0200 | [diff] [blame] | 195 | fdr = fsl_i2c_speed_map[i].fdr; |
| 196 | speed = i2c_clk / fsl_i2c_speed_map[i].divider; |
mario.six@gdsys.cc | ec2c81c | 2016-04-25 08:31:01 +0200 | [diff] [blame] | 197 | writeb(fdr, &base->fdr); /* set bus speed */ |
Joakim Tjernlund | d01ee4d | 2009-09-17 11:07:16 +0200 | [diff] [blame] | 198 | |
Timur Tabi | d8c82db | 2008-03-14 17:45:29 -0500 | [diff] [blame] | 199 | break; |
| 200 | } |
Joakim Tjernlund | 9940420 | 2009-09-17 11:07:17 +0200 | [diff] [blame] | 201 | #endif |
Timur Tabi | d8c82db | 2008-03-14 17:45:29 -0500 | [diff] [blame] | 202 | return speed; |
| 203 | } |
| 204 | |
mario.six@gdsys.cc | dbc82ce | 2016-04-25 08:31:09 +0200 | [diff] [blame] | 205 | #ifndef CONFIG_DM_I2C |
Mario Six | a059de1 | 2018-01-15 11:08:07 +0100 | [diff] [blame] | 206 | static uint get_i2c_clock(int bus) |
Jerry Huang | c9a8b25 | 2011-10-26 15:29:38 +0000 | [diff] [blame] | 207 | { |
| 208 | if (bus) |
Simon Glass | 609e6ec | 2012-12-13 20:48:49 +0000 | [diff] [blame] | 209 | return gd->arch.i2c2_clk; /* I2C2 clock */ |
Jerry Huang | c9a8b25 | 2011-10-26 15:29:38 +0000 | [diff] [blame] | 210 | else |
Simon Glass | 609e6ec | 2012-12-13 20:48:49 +0000 | [diff] [blame] | 211 | return gd->arch.i2c1_clk; /* I2C1 clock */ |
Jerry Huang | c9a8b25 | 2011-10-26 15:29:38 +0000 | [diff] [blame] | 212 | } |
mario.six@gdsys.cc | dbc82ce | 2016-04-25 08:31:09 +0200 | [diff] [blame] | 213 | #endif |
Jerry Huang | c9a8b25 | 2011-10-26 15:29:38 +0000 | [diff] [blame] | 214 | |
mario.six@gdsys.cc | ec2c81c | 2016-04-25 08:31:01 +0200 | [diff] [blame] | 215 | static int fsl_i2c_fixup(const struct fsl_i2c_base *base) |
Chunhe Lan | b8ce334 | 2013-08-16 15:10:36 +0800 | [diff] [blame] | 216 | { |
| 217 | const unsigned long long timeout = usec2ticks(CONFIG_I2C_MBB_TIMEOUT); |
| 218 | unsigned long long timeval = 0; |
| 219 | int ret = -1; |
Mario Six | a059de1 | 2018-01-15 11:08:07 +0100 | [diff] [blame] | 220 | uint flags = 0; |
Chunhe Lan | 9c3f77e | 2013-08-16 15:10:37 +0800 | [diff] [blame] | 221 | |
| 222 | #ifdef CONFIG_SYS_FSL_ERRATUM_I2C_A004447 |
Mario Six | a059de1 | 2018-01-15 11:08:07 +0100 | [diff] [blame] | 223 | uint svr = get_svr(); |
| 224 | |
Chunhe Lan | 9c3f77e | 2013-08-16 15:10:37 +0800 | [diff] [blame] | 225 | if ((SVR_SOC_VER(svr) == SVR_8548 && IS_SVR_REV(svr, 3, 1)) || |
| 226 | (SVR_REV(svr) <= CONFIG_SYS_FSL_A004447_SVR_REV)) |
| 227 | flags = I2C_CR_BIT6; |
| 228 | #endif |
Chunhe Lan | b8ce334 | 2013-08-16 15:10:36 +0800 | [diff] [blame] | 229 | |
mario.six@gdsys.cc | ec2c81c | 2016-04-25 08:31:01 +0200 | [diff] [blame] | 230 | writeb(I2C_CR_MEN | I2C_CR_MSTA, &base->cr); |
Chunhe Lan | b8ce334 | 2013-08-16 15:10:36 +0800 | [diff] [blame] | 231 | |
| 232 | timeval = get_ticks(); |
mario.six@gdsys.cc | ec2c81c | 2016-04-25 08:31:01 +0200 | [diff] [blame] | 233 | while (!(readb(&base->sr) & I2C_SR_MBB)) { |
Chunhe Lan | b8ce334 | 2013-08-16 15:10:36 +0800 | [diff] [blame] | 234 | if ((get_ticks() - timeval) > timeout) |
| 235 | goto err; |
| 236 | } |
| 237 | |
mario.six@gdsys.cc | ec2c81c | 2016-04-25 08:31:01 +0200 | [diff] [blame] | 238 | if (readb(&base->sr) & I2C_SR_MAL) { |
Chunhe Lan | b8ce334 | 2013-08-16 15:10:36 +0800 | [diff] [blame] | 239 | /* SDA is stuck low */ |
mario.six@gdsys.cc | ec2c81c | 2016-04-25 08:31:01 +0200 | [diff] [blame] | 240 | writeb(0, &base->cr); |
Chunhe Lan | b8ce334 | 2013-08-16 15:10:36 +0800 | [diff] [blame] | 241 | udelay(100); |
mario.six@gdsys.cc | ec2c81c | 2016-04-25 08:31:01 +0200 | [diff] [blame] | 242 | writeb(I2C_CR_MSTA | flags, &base->cr); |
| 243 | writeb(I2C_CR_MEN | I2C_CR_MSTA | flags, &base->cr); |
Chunhe Lan | b8ce334 | 2013-08-16 15:10:36 +0800 | [diff] [blame] | 244 | } |
| 245 | |
mario.six@gdsys.cc | ec2c81c | 2016-04-25 08:31:01 +0200 | [diff] [blame] | 246 | readb(&base->dr); |
Chunhe Lan | b8ce334 | 2013-08-16 15:10:36 +0800 | [diff] [blame] | 247 | |
| 248 | timeval = get_ticks(); |
mario.six@gdsys.cc | ec2c81c | 2016-04-25 08:31:01 +0200 | [diff] [blame] | 249 | while (!(readb(&base->sr) & I2C_SR_MIF)) { |
Chunhe Lan | b8ce334 | 2013-08-16 15:10:36 +0800 | [diff] [blame] | 250 | if ((get_ticks() - timeval) > timeout) |
| 251 | goto err; |
| 252 | } |
| 253 | ret = 0; |
| 254 | |
| 255 | err: |
mario.six@gdsys.cc | ec2c81c | 2016-04-25 08:31:01 +0200 | [diff] [blame] | 256 | writeb(I2C_CR_MEN | flags, &base->cr); |
| 257 | writeb(0, &base->sr); |
Chunhe Lan | b8ce334 | 2013-08-16 15:10:36 +0800 | [diff] [blame] | 258 | udelay(100); |
| 259 | |
| 260 | return ret; |
| 261 | } |
| 262 | |
mario.six@gdsys.cc | ecf591e | 2016-04-25 08:31:08 +0200 | [diff] [blame] | 263 | static void __i2c_init(const struct fsl_i2c_base *base, int speed, int |
| 264 | slaveadd, int i2c_clk, int busnum) |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 265 | { |
Chunhe Lan | b8ce334 | 2013-08-16 15:10:36 +0800 | [diff] [blame] | 266 | const unsigned long long timeout = usec2ticks(CONFIG_I2C_MBB_TIMEOUT); |
| 267 | unsigned long long timeval; |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 268 | |
Heiko Schocher | 39df00d | 2009-07-09 12:04:26 +0200 | [diff] [blame] | 269 | #ifdef CONFIG_SYS_I2C_INIT_BOARD |
Richard Retanubun | 26a3350 | 2010-04-12 15:08:17 -0400 | [diff] [blame] | 270 | /* Call board specific i2c bus reset routine before accessing the |
| 271 | * environment, which might be in a chip on that bus. For details |
| 272 | * about this problem see doc/I2C_Edge_Conditions. |
Mario Six | a059de1 | 2018-01-15 11:08:07 +0100 | [diff] [blame] | 273 | */ |
Heiko Schocher | 39df00d | 2009-07-09 12:04:26 +0200 | [diff] [blame] | 274 | i2c_init_board(); |
| 275 | #endif |
mario.six@gdsys.cc | ec2c81c | 2016-04-25 08:31:01 +0200 | [diff] [blame] | 276 | writeb(0, &base->cr); /* stop I2C controller */ |
Heiko Schocher | 00f792e | 2012-10-24 13:48:22 +0200 | [diff] [blame] | 277 | udelay(5); /* let it shutdown in peace */ |
mario.six@gdsys.cc | ecf591e | 2016-04-25 08:31:08 +0200 | [diff] [blame] | 278 | set_i2c_bus_speed(base, i2c_clk, speed); |
mario.six@gdsys.cc | ec2c81c | 2016-04-25 08:31:01 +0200 | [diff] [blame] | 279 | writeb(slaveadd << 1, &base->adr);/* write slave address */ |
| 280 | writeb(0x0, &base->sr); /* clear status register */ |
| 281 | writeb(I2C_CR_MEN, &base->cr); /* start I2C controller */ |
Richard Retanubun | 26a3350 | 2010-04-12 15:08:17 -0400 | [diff] [blame] | 282 | |
Chunhe Lan | b8ce334 | 2013-08-16 15:10:36 +0800 | [diff] [blame] | 283 | timeval = get_ticks(); |
mario.six@gdsys.cc | ec2c81c | 2016-04-25 08:31:01 +0200 | [diff] [blame] | 284 | while (readb(&base->sr) & I2C_SR_MBB) { |
Chunhe Lan | b8ce334 | 2013-08-16 15:10:36 +0800 | [diff] [blame] | 285 | if ((get_ticks() - timeval) < timeout) |
| 286 | continue; |
| 287 | |
mario.six@gdsys.cc | ec2c81c | 2016-04-25 08:31:01 +0200 | [diff] [blame] | 288 | if (fsl_i2c_fixup(base)) |
Chunhe Lan | b8ce334 | 2013-08-16 15:10:36 +0800 | [diff] [blame] | 289 | debug("i2c_init: BUS#%d failed to init\n", |
mario.six@gdsys.cc | ecf591e | 2016-04-25 08:31:08 +0200 | [diff] [blame] | 290 | busnum); |
Chunhe Lan | b8ce334 | 2013-08-16 15:10:36 +0800 | [diff] [blame] | 291 | |
| 292 | break; |
| 293 | } |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 294 | } |
| 295 | |
Mario Six | a059de1 | 2018-01-15 11:08:07 +0100 | [diff] [blame] | 296 | static int i2c_wait4bus(const struct fsl_i2c_base *base) |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 297 | { |
Stefan Roese | f2302d4 | 2008-08-06 14:05:38 +0200 | [diff] [blame] | 298 | unsigned long long timeval = get_ticks(); |
Timur Tabi | 92477a6 | 2009-09-04 16:28:35 -0500 | [diff] [blame] | 299 | const unsigned long long timeout = usec2ticks(CONFIG_I2C_MBB_TIMEOUT); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 300 | |
mario.six@gdsys.cc | ec2c81c | 2016-04-25 08:31:01 +0200 | [diff] [blame] | 301 | while (readb(&base->sr) & I2C_SR_MBB) { |
Timur Tabi | 92477a6 | 2009-09-04 16:28:35 -0500 | [diff] [blame] | 302 | if ((get_ticks() - timeval) > timeout) |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 303 | return -1; |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 304 | } |
| 305 | |
| 306 | return 0; |
| 307 | } |
| 308 | |
Mario Six | d4f422f | 2018-01-15 11:08:08 +0100 | [diff] [blame] | 309 | static int i2c_wait(const struct fsl_i2c_base *base, int write) |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 310 | { |
| 311 | u32 csr; |
Stefan Roese | f2302d4 | 2008-08-06 14:05:38 +0200 | [diff] [blame] | 312 | unsigned long long timeval = get_ticks(); |
Timur Tabi | 92477a6 | 2009-09-04 16:28:35 -0500 | [diff] [blame] | 313 | const unsigned long long timeout = usec2ticks(CONFIG_I2C_TIMEOUT); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 314 | |
| 315 | do { |
mario.six@gdsys.cc | ec2c81c | 2016-04-25 08:31:01 +0200 | [diff] [blame] | 316 | csr = readb(&base->sr); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 317 | if (!(csr & I2C_SR_MIF)) |
| 318 | continue; |
Joakim Tjernlund | 21f4cbb | 2009-09-17 11:07:15 +0200 | [diff] [blame] | 319 | /* Read again to allow register to stabilise */ |
mario.six@gdsys.cc | ec2c81c | 2016-04-25 08:31:01 +0200 | [diff] [blame] | 320 | csr = readb(&base->sr); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 321 | |
mario.six@gdsys.cc | ec2c81c | 2016-04-25 08:31:01 +0200 | [diff] [blame] | 322 | writeb(0x0, &base->sr); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 323 | |
| 324 | if (csr & I2C_SR_MAL) { |
Mario Six | a059de1 | 2018-01-15 11:08:07 +0100 | [diff] [blame] | 325 | debug("%s: MAL\n", __func__); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 326 | return -1; |
| 327 | } |
| 328 | |
| 329 | if (!(csr & I2C_SR_MCF)) { |
Mario Six | a059de1 | 2018-01-15 11:08:07 +0100 | [diff] [blame] | 330 | debug("%s: unfinished\n", __func__); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 331 | return -1; |
| 332 | } |
| 333 | |
Joakim Tjernlund | 1939d96 | 2006-11-28 16:17:27 -0600 | [diff] [blame] | 334 | if (write == I2C_WRITE_BIT && (csr & I2C_SR_RXAK)) { |
Mario Six | a059de1 | 2018-01-15 11:08:07 +0100 | [diff] [blame] | 335 | debug("%s: No RXACK\n", __func__); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 336 | return -1; |
| 337 | } |
| 338 | |
| 339 | return 0; |
Timur Tabi | 92477a6 | 2009-09-04 16:28:35 -0500 | [diff] [blame] | 340 | } while ((get_ticks() - timeval) < timeout); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 341 | |
Mario Six | a059de1 | 2018-01-15 11:08:07 +0100 | [diff] [blame] | 342 | debug("%s: timed out\n", __func__); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 343 | return -1; |
| 344 | } |
| 345 | |
Mario Six | d4f422f | 2018-01-15 11:08:08 +0100 | [diff] [blame] | 346 | static int i2c_write_addr(const struct fsl_i2c_base *base, u8 dev, |
| 347 | u8 dir, int rsta) |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 348 | { |
| 349 | writeb(I2C_CR_MEN | I2C_CR_MSTA | I2C_CR_MTX |
| 350 | | (rsta ? I2C_CR_RSTA : 0), |
mario.six@gdsys.cc | ec2c81c | 2016-04-25 08:31:01 +0200 | [diff] [blame] | 351 | &base->cr); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 352 | |
mario.six@gdsys.cc | ec2c81c | 2016-04-25 08:31:01 +0200 | [diff] [blame] | 353 | writeb((dev << 1) | dir, &base->dr); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 354 | |
mario.six@gdsys.cc | ecf591e | 2016-04-25 08:31:08 +0200 | [diff] [blame] | 355 | if (i2c_wait(base, I2C_WRITE_BIT) < 0) |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 356 | return 0; |
| 357 | |
| 358 | return 1; |
| 359 | } |
| 360 | |
Mario Six | d4f422f | 2018-01-15 11:08:08 +0100 | [diff] [blame] | 361 | static int __i2c_write_data(const struct fsl_i2c_base *base, u8 *data, |
| 362 | int length) |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 363 | { |
| 364 | int i; |
| 365 | |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 366 | for (i = 0; i < length; i++) { |
mario.six@gdsys.cc | ec2c81c | 2016-04-25 08:31:01 +0200 | [diff] [blame] | 367 | writeb(data[i], &base->dr); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 368 | |
mario.six@gdsys.cc | ecf591e | 2016-04-25 08:31:08 +0200 | [diff] [blame] | 369 | if (i2c_wait(base, I2C_WRITE_BIT) < 0) |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 370 | break; |
| 371 | } |
| 372 | |
| 373 | return i; |
| 374 | } |
| 375 | |
Mario Six | d4f422f | 2018-01-15 11:08:08 +0100 | [diff] [blame] | 376 | static int __i2c_read_data(const struct fsl_i2c_base *base, u8 *data, |
| 377 | int length) |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 378 | { |
| 379 | int i; |
| 380 | |
| 381 | writeb(I2C_CR_MEN | I2C_CR_MSTA | ((length == 1) ? I2C_CR_TXAK : 0), |
mario.six@gdsys.cc | ec2c81c | 2016-04-25 08:31:01 +0200 | [diff] [blame] | 382 | &base->cr); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 383 | |
| 384 | /* dummy read */ |
mario.six@gdsys.cc | ec2c81c | 2016-04-25 08:31:01 +0200 | [diff] [blame] | 385 | readb(&base->dr); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 386 | |
| 387 | for (i = 0; i < length; i++) { |
mario.six@gdsys.cc | ecf591e | 2016-04-25 08:31:08 +0200 | [diff] [blame] | 388 | if (i2c_wait(base, I2C_READ_BIT) < 0) |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 389 | break; |
| 390 | |
| 391 | /* Generate ack on last next to last byte */ |
| 392 | if (i == length - 2) |
| 393 | writeb(I2C_CR_MEN | I2C_CR_MSTA | I2C_CR_TXAK, |
mario.six@gdsys.cc | ec2c81c | 2016-04-25 08:31:01 +0200 | [diff] [blame] | 394 | &base->cr); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 395 | |
Joakim Tjernlund | d1c9e5b | 2009-09-22 13:40:44 +0200 | [diff] [blame] | 396 | /* Do not generate stop on last byte */ |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 397 | if (i == length - 1) |
Joakim Tjernlund | d1c9e5b | 2009-09-22 13:40:44 +0200 | [diff] [blame] | 398 | writeb(I2C_CR_MEN | I2C_CR_MSTA | I2C_CR_MTX, |
mario.six@gdsys.cc | ec2c81c | 2016-04-25 08:31:01 +0200 | [diff] [blame] | 399 | &base->cr); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 400 | |
mario.six@gdsys.cc | ec2c81c | 2016-04-25 08:31:01 +0200 | [diff] [blame] | 401 | data[i] = readb(&base->dr); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 402 | } |
| 403 | |
| 404 | return i; |
| 405 | } |
| 406 | |
Mario Six | a059de1 | 2018-01-15 11:08:07 +0100 | [diff] [blame] | 407 | static int __i2c_read(const struct fsl_i2c_base *base, u8 chip_addr, u8 *offset, |
| 408 | int olen, u8 *data, int dlen) |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 409 | { |
mario.six@gdsys.cc | 2b21e96 | 2016-04-25 08:31:02 +0200 | [diff] [blame] | 410 | int ret = -1; /* signal error */ |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 411 | |
mario.six@gdsys.cc | ecf591e | 2016-04-25 08:31:08 +0200 | [diff] [blame] | 412 | if (i2c_wait4bus(base) < 0) |
Reinhard Pfau | b778c1b | 2013-06-26 15:55:14 +0200 | [diff] [blame] | 413 | return -1; |
| 414 | |
mario.six@gdsys.cc | 386b276 | 2016-04-25 08:31:03 +0200 | [diff] [blame] | 415 | /* Some drivers use offset lengths in excess of 4 bytes. These drivers |
| 416 | * adhere to the following convention: |
| 417 | * - the offset length is passed as negative (that is, the absolute |
| 418 | * value of olen is the actual offset length) |
| 419 | * - the offset itself is passed in data, which is overwritten by the |
| 420 | * subsequent read operation |
Shaveta Leekha | a405764 | 2014-04-24 14:51:23 +0530 | [diff] [blame] | 421 | */ |
mario.six@gdsys.cc | 2b21e96 | 2016-04-25 08:31:02 +0200 | [diff] [blame] | 422 | if (olen < 0) { |
mario.six@gdsys.cc | ecf591e | 2016-04-25 08:31:08 +0200 | [diff] [blame] | 423 | if (i2c_write_addr(base, chip_addr, I2C_WRITE_BIT, 0) != 0) |
| 424 | ret = __i2c_write_data(base, data, -olen); |
Joakim Tjernlund | f6f5f70 | 2007-01-31 11:04:19 +0100 | [diff] [blame] | 425 | |
mario.six@gdsys.cc | 03a112a | 2016-04-25 08:31:04 +0200 | [diff] [blame] | 426 | if (ret != -olen) |
Shaveta Leekha | a405764 | 2014-04-24 14:51:23 +0530 | [diff] [blame] | 427 | return -1; |
| 428 | |
mario.six@gdsys.cc | ecf591e | 2016-04-25 08:31:08 +0200 | [diff] [blame] | 429 | if (dlen && i2c_write_addr(base, chip_addr, |
mario.six@gdsys.cc | 2b21e96 | 2016-04-25 08:31:02 +0200 | [diff] [blame] | 430 | I2C_READ_BIT, 1) != 0) |
mario.six@gdsys.cc | ecf591e | 2016-04-25 08:31:08 +0200 | [diff] [blame] | 431 | ret = __i2c_read_data(base, data, dlen); |
Shaveta Leekha | a405764 | 2014-04-24 14:51:23 +0530 | [diff] [blame] | 432 | } else { |
mario.six@gdsys.cc | 2b21e96 | 2016-04-25 08:31:02 +0200 | [diff] [blame] | 433 | if ((!dlen || olen > 0) && |
mario.six@gdsys.cc | ecf591e | 2016-04-25 08:31:08 +0200 | [diff] [blame] | 434 | i2c_write_addr(base, chip_addr, I2C_WRITE_BIT, 0) != 0 && |
| 435 | __i2c_write_data(base, offset, olen) == olen) |
mario.six@gdsys.cc | 2b21e96 | 2016-04-25 08:31:02 +0200 | [diff] [blame] | 436 | ret = 0; /* No error so far */ |
Shaveta Leekha | a405764 | 2014-04-24 14:51:23 +0530 | [diff] [blame] | 437 | |
mario.six@gdsys.cc | ecf591e | 2016-04-25 08:31:08 +0200 | [diff] [blame] | 438 | if (dlen && i2c_write_addr(base, chip_addr, I2C_READ_BIT, |
mario.six@gdsys.cc | 2b21e96 | 2016-04-25 08:31:02 +0200 | [diff] [blame] | 439 | olen ? 1 : 0) != 0) |
mario.six@gdsys.cc | ecf591e | 2016-04-25 08:31:08 +0200 | [diff] [blame] | 440 | ret = __i2c_read_data(base, data, dlen); |
Shaveta Leekha | a405764 | 2014-04-24 14:51:23 +0530 | [diff] [blame] | 441 | } |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 442 | |
mario.six@gdsys.cc | ec2c81c | 2016-04-25 08:31:01 +0200 | [diff] [blame] | 443 | writeb(I2C_CR_MEN, &base->cr); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 444 | |
mario.six@gdsys.cc | ecf591e | 2016-04-25 08:31:08 +0200 | [diff] [blame] | 445 | if (i2c_wait4bus(base)) /* Wait until STOP */ |
Joakim Tjernlund | d1c9e5b | 2009-09-22 13:40:44 +0200 | [diff] [blame] | 446 | debug("i2c_read: wait4bus timed out\n"); |
| 447 | |
mario.six@gdsys.cc | 2b21e96 | 2016-04-25 08:31:02 +0200 | [diff] [blame] | 448 | if (ret == dlen) |
| 449 | return 0; |
Jon Loeliger | 4d45f69 | 2006-10-19 12:02:24 -0500 | [diff] [blame] | 450 | |
| 451 | return -1; |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 452 | } |
| 453 | |
Mario Six | a059de1 | 2018-01-15 11:08:07 +0100 | [diff] [blame] | 454 | static int __i2c_write(const struct fsl_i2c_base *base, u8 chip_addr, |
| 455 | u8 *offset, int olen, u8 *data, int dlen) |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 456 | { |
mario.six@gdsys.cc | 2b21e96 | 2016-04-25 08:31:02 +0200 | [diff] [blame] | 457 | int ret = -1; /* signal error */ |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 458 | |
mario.six@gdsys.cc | ecf591e | 2016-04-25 08:31:08 +0200 | [diff] [blame] | 459 | if (i2c_wait4bus(base) < 0) |
Chunhe Lan | b8ce334 | 2013-08-16 15:10:36 +0800 | [diff] [blame] | 460 | return -1; |
| 461 | |
mario.six@gdsys.cc | ecf591e | 2016-04-25 08:31:08 +0200 | [diff] [blame] | 462 | if (i2c_write_addr(base, chip_addr, I2C_WRITE_BIT, 0) != 0 && |
| 463 | __i2c_write_data(base, offset, olen) == olen) { |
| 464 | ret = __i2c_write_data(base, data, dlen); |
Jon Loeliger | 4d45f69 | 2006-10-19 12:02:24 -0500 | [diff] [blame] | 465 | } |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 466 | |
mario.six@gdsys.cc | ec2c81c | 2016-04-25 08:31:01 +0200 | [diff] [blame] | 467 | writeb(I2C_CR_MEN, &base->cr); |
mario.six@gdsys.cc | ecf591e | 2016-04-25 08:31:08 +0200 | [diff] [blame] | 468 | if (i2c_wait4bus(base)) /* Wait until STOP */ |
Joakim Tjernlund | 21f4cbb | 2009-09-17 11:07:15 +0200 | [diff] [blame] | 469 | debug("i2c_write: wait4bus timed out\n"); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 470 | |
mario.six@gdsys.cc | 2b21e96 | 2016-04-25 08:31:02 +0200 | [diff] [blame] | 471 | if (ret == dlen) |
| 472 | return 0; |
Jon Loeliger | 4d45f69 | 2006-10-19 12:02:24 -0500 | [diff] [blame] | 473 | |
| 474 | return -1; |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 475 | } |
| 476 | |
Mario Six | a059de1 | 2018-01-15 11:08:07 +0100 | [diff] [blame] | 477 | static int __i2c_probe_chip(const struct fsl_i2c_base *base, uchar chip) |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 478 | { |
Mario Six | a059de1 | 2018-01-15 11:08:07 +0100 | [diff] [blame] | 479 | /* For unknown reason the controller will ACK when |
Joakim Tjernlund | f6f5f70 | 2007-01-31 11:04:19 +0100 | [diff] [blame] | 480 | * probing for a slave with the same address, so skip |
| 481 | * it. |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 482 | */ |
mario.six@gdsys.cc | ec2c81c | 2016-04-25 08:31:01 +0200 | [diff] [blame] | 483 | if (chip == (readb(&base->adr) >> 1)) |
Joakim Tjernlund | f6f5f70 | 2007-01-31 11:04:19 +0100 | [diff] [blame] | 484 | return -1; |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 485 | |
mario.six@gdsys.cc | ecf591e | 2016-04-25 08:31:08 +0200 | [diff] [blame] | 486 | return __i2c_read(base, chip, 0, 0, NULL, 0); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 487 | } |
| 488 | |
Mario Six | a059de1 | 2018-01-15 11:08:07 +0100 | [diff] [blame] | 489 | static uint __i2c_set_bus_speed(const struct fsl_i2c_base *base, |
| 490 | uint speed, int i2c_clk) |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 491 | { |
mario.six@gdsys.cc | ec2c81c | 2016-04-25 08:31:01 +0200 | [diff] [blame] | 492 | writeb(0, &base->cr); /* stop controller */ |
mario.six@gdsys.cc | ecf591e | 2016-04-25 08:31:08 +0200 | [diff] [blame] | 493 | set_i2c_bus_speed(base, i2c_clk, speed); |
mario.six@gdsys.cc | ec2c81c | 2016-04-25 08:31:01 +0200 | [diff] [blame] | 494 | writeb(I2C_CR_MEN, &base->cr); /* start controller */ |
Timur Tabi | d8c82db | 2008-03-14 17:45:29 -0500 | [diff] [blame] | 495 | |
| 496 | return 0; |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 497 | } |
| 498 | |
mario.six@gdsys.cc | dbc82ce | 2016-04-25 08:31:09 +0200 | [diff] [blame] | 499 | #ifndef CONFIG_DM_I2C |
mario.six@gdsys.cc | ad7e657 | 2016-04-25 08:31:07 +0200 | [diff] [blame] | 500 | static void fsl_i2c_init(struct i2c_adapter *adap, int speed, int slaveadd) |
| 501 | { |
mario.six@gdsys.cc | ecf591e | 2016-04-25 08:31:08 +0200 | [diff] [blame] | 502 | __i2c_init(i2c_base[adap->hwadapnr], speed, slaveadd, |
| 503 | get_i2c_clock(adap->hwadapnr), adap->hwadapnr); |
mario.six@gdsys.cc | ad7e657 | 2016-04-25 08:31:07 +0200 | [diff] [blame] | 504 | } |
| 505 | |
Mario Six | a059de1 | 2018-01-15 11:08:07 +0100 | [diff] [blame] | 506 | static int fsl_i2c_probe_chip(struct i2c_adapter *adap, uchar chip) |
mario.six@gdsys.cc | ad7e657 | 2016-04-25 08:31:07 +0200 | [diff] [blame] | 507 | { |
mario.six@gdsys.cc | ecf591e | 2016-04-25 08:31:08 +0200 | [diff] [blame] | 508 | return __i2c_probe_chip(i2c_base[adap->hwadapnr], chip); |
mario.six@gdsys.cc | ad7e657 | 2016-04-25 08:31:07 +0200 | [diff] [blame] | 509 | } |
| 510 | |
Mario Six | a059de1 | 2018-01-15 11:08:07 +0100 | [diff] [blame] | 511 | static int fsl_i2c_read(struct i2c_adapter *adap, u8 chip_addr, uint offset, |
| 512 | int olen, u8 *data, int dlen) |
mario.six@gdsys.cc | ad7e657 | 2016-04-25 08:31:07 +0200 | [diff] [blame] | 513 | { |
mario.six@gdsys.cc | ecf591e | 2016-04-25 08:31:08 +0200 | [diff] [blame] | 514 | u8 *o = (u8 *)&offset; |
Mario Six | a059de1 | 2018-01-15 11:08:07 +0100 | [diff] [blame] | 515 | |
mario.six@gdsys.cc | ecf591e | 2016-04-25 08:31:08 +0200 | [diff] [blame] | 516 | return __i2c_read(i2c_base[adap->hwadapnr], chip_addr, &o[4 - olen], |
| 517 | olen, data, dlen); |
mario.six@gdsys.cc | ad7e657 | 2016-04-25 08:31:07 +0200 | [diff] [blame] | 518 | } |
| 519 | |
Mario Six | a059de1 | 2018-01-15 11:08:07 +0100 | [diff] [blame] | 520 | static int fsl_i2c_write(struct i2c_adapter *adap, u8 chip_addr, uint offset, |
| 521 | int olen, u8 *data, int dlen) |
mario.six@gdsys.cc | ad7e657 | 2016-04-25 08:31:07 +0200 | [diff] [blame] | 522 | { |
mario.six@gdsys.cc | ecf591e | 2016-04-25 08:31:08 +0200 | [diff] [blame] | 523 | u8 *o = (u8 *)&offset; |
Mario Six | a059de1 | 2018-01-15 11:08:07 +0100 | [diff] [blame] | 524 | |
mario.six@gdsys.cc | ecf591e | 2016-04-25 08:31:08 +0200 | [diff] [blame] | 525 | return __i2c_write(i2c_base[adap->hwadapnr], chip_addr, &o[4 - olen], |
| 526 | olen, data, dlen); |
mario.six@gdsys.cc | ad7e657 | 2016-04-25 08:31:07 +0200 | [diff] [blame] | 527 | } |
| 528 | |
Mario Six | a059de1 | 2018-01-15 11:08:07 +0100 | [diff] [blame] | 529 | static uint fsl_i2c_set_bus_speed(struct i2c_adapter *adap, uint speed) |
mario.six@gdsys.cc | ad7e657 | 2016-04-25 08:31:07 +0200 | [diff] [blame] | 530 | { |
mario.six@gdsys.cc | ecf591e | 2016-04-25 08:31:08 +0200 | [diff] [blame] | 531 | return __i2c_set_bus_speed(i2c_base[adap->hwadapnr], speed, |
| 532 | get_i2c_clock(adap->hwadapnr)); |
mario.six@gdsys.cc | ad7e657 | 2016-04-25 08:31:07 +0200 | [diff] [blame] | 533 | } |
| 534 | |
Heiko Schocher | 00f792e | 2012-10-24 13:48:22 +0200 | [diff] [blame] | 535 | /* |
| 536 | * Register fsl i2c adapters |
| 537 | */ |
mario.six@gdsys.cc | 16579ec | 2016-04-25 08:31:05 +0200 | [diff] [blame] | 538 | U_BOOT_I2C_ADAP_COMPLETE(fsl_0, fsl_i2c_init, fsl_i2c_probe_chip, fsl_i2c_read, |
Heiko Schocher | 00f792e | 2012-10-24 13:48:22 +0200 | [diff] [blame] | 539 | fsl_i2c_write, fsl_i2c_set_bus_speed, |
| 540 | CONFIG_SYS_FSL_I2C_SPEED, CONFIG_SYS_FSL_I2C_SLAVE, |
| 541 | 0) |
| 542 | #ifdef CONFIG_SYS_FSL_I2C2_OFFSET |
mario.six@gdsys.cc | 16579ec | 2016-04-25 08:31:05 +0200 | [diff] [blame] | 543 | U_BOOT_I2C_ADAP_COMPLETE(fsl_1, fsl_i2c_init, fsl_i2c_probe_chip, fsl_i2c_read, |
Heiko Schocher | 00f792e | 2012-10-24 13:48:22 +0200 | [diff] [blame] | 544 | fsl_i2c_write, fsl_i2c_set_bus_speed, |
| 545 | CONFIG_SYS_FSL_I2C2_SPEED, CONFIG_SYS_FSL_I2C2_SLAVE, |
| 546 | 1) |
Heiko Schocher | c1bce4f | 2009-02-24 11:30:37 +0100 | [diff] [blame] | 547 | #endif |
Shengzhou Liu | a17fd10 | 2014-07-07 12:17:48 +0800 | [diff] [blame] | 548 | #ifdef CONFIG_SYS_FSL_I2C3_OFFSET |
mario.six@gdsys.cc | 16579ec | 2016-04-25 08:31:05 +0200 | [diff] [blame] | 549 | U_BOOT_I2C_ADAP_COMPLETE(fsl_2, fsl_i2c_init, fsl_i2c_probe_chip, fsl_i2c_read, |
Shengzhou Liu | a17fd10 | 2014-07-07 12:17:48 +0800 | [diff] [blame] | 550 | fsl_i2c_write, fsl_i2c_set_bus_speed, |
| 551 | CONFIG_SYS_FSL_I2C3_SPEED, CONFIG_SYS_FSL_I2C3_SLAVE, |
| 552 | 2) |
| 553 | #endif |
| 554 | #ifdef CONFIG_SYS_FSL_I2C4_OFFSET |
mario.six@gdsys.cc | 16579ec | 2016-04-25 08:31:05 +0200 | [diff] [blame] | 555 | U_BOOT_I2C_ADAP_COMPLETE(fsl_3, fsl_i2c_init, fsl_i2c_probe_chip, fsl_i2c_read, |
Shengzhou Liu | a17fd10 | 2014-07-07 12:17:48 +0800 | [diff] [blame] | 556 | fsl_i2c_write, fsl_i2c_set_bus_speed, |
| 557 | CONFIG_SYS_FSL_I2C4_SPEED, CONFIG_SYS_FSL_I2C4_SLAVE, |
| 558 | 3) |
| 559 | #endif |
mario.six@gdsys.cc | dbc82ce | 2016-04-25 08:31:09 +0200 | [diff] [blame] | 560 | #else /* CONFIG_DM_I2C */ |
| 561 | static int fsl_i2c_probe_chip(struct udevice *bus, u32 chip_addr, |
| 562 | u32 chip_flags) |
| 563 | { |
| 564 | struct fsl_i2c_dev *dev = dev_get_priv(bus); |
Mario Six | a059de1 | 2018-01-15 11:08:07 +0100 | [diff] [blame] | 565 | |
mario.six@gdsys.cc | dbc82ce | 2016-04-25 08:31:09 +0200 | [diff] [blame] | 566 | return __i2c_probe_chip(dev->base, chip_addr); |
| 567 | } |
| 568 | |
Mario Six | a059de1 | 2018-01-15 11:08:07 +0100 | [diff] [blame] | 569 | static int fsl_i2c_set_bus_speed(struct udevice *bus, uint speed) |
mario.six@gdsys.cc | dbc82ce | 2016-04-25 08:31:09 +0200 | [diff] [blame] | 570 | { |
| 571 | struct fsl_i2c_dev *dev = dev_get_priv(bus); |
Mario Six | a059de1 | 2018-01-15 11:08:07 +0100 | [diff] [blame] | 572 | |
mario.six@gdsys.cc | dbc82ce | 2016-04-25 08:31:09 +0200 | [diff] [blame] | 573 | return __i2c_set_bus_speed(dev->base, speed, dev->i2c_clk); |
| 574 | } |
| 575 | |
| 576 | static int fsl_i2c_ofdata_to_platdata(struct udevice *bus) |
| 577 | { |
| 578 | struct fsl_i2c_dev *dev = dev_get_priv(bus); |
Mario Six | e5c762f | 2018-03-28 14:37:44 +0200 | [diff] [blame] | 579 | struct clk clock; |
mario.six@gdsys.cc | dbc82ce | 2016-04-25 08:31:09 +0200 | [diff] [blame] | 580 | |
Mario Six | d934832 | 2018-03-28 14:37:43 +0200 | [diff] [blame] | 581 | dev->base = map_sysmem(dev_read_addr(bus), sizeof(struct fsl_i2c_base)); |
mario.six@gdsys.cc | dbc82ce | 2016-04-25 08:31:09 +0200 | [diff] [blame] | 582 | |
| 583 | if (!dev->base) |
| 584 | return -ENOMEM; |
| 585 | |
Mario Six | 84a4d34 | 2018-01-15 11:08:09 +0100 | [diff] [blame] | 586 | dev->index = dev_read_u32_default(bus, "cell-index", -1); |
| 587 | dev->slaveadd = dev_read_u32_default(bus, "u-boot,i2c-slave-addr", |
| 588 | 0x7f); |
Simon Glass | f3d4615 | 2020-01-23 11:48:22 -0700 | [diff] [blame] | 589 | dev->speed = dev_read_u32_default(bus, "clock-frequency", |
| 590 | I2C_SPEED_FAST_RATE); |
mario.six@gdsys.cc | dbc82ce | 2016-04-25 08:31:09 +0200 | [diff] [blame] | 591 | |
Mario Six | e5c762f | 2018-03-28 14:37:44 +0200 | [diff] [blame] | 592 | if (!clk_get_by_index(bus, 0, &clock)) |
| 593 | dev->i2c_clk = clk_get_rate(&clock); |
| 594 | else |
| 595 | dev->i2c_clk = dev->index ? gd->arch.i2c2_clk : |
| 596 | gd->arch.i2c1_clk; |
mario.six@gdsys.cc | dbc82ce | 2016-04-25 08:31:09 +0200 | [diff] [blame] | 597 | |
| 598 | return 0; |
| 599 | } |
| 600 | |
| 601 | static int fsl_i2c_probe(struct udevice *bus) |
| 602 | { |
| 603 | struct fsl_i2c_dev *dev = dev_get_priv(bus); |
Mario Six | a059de1 | 2018-01-15 11:08:07 +0100 | [diff] [blame] | 604 | |
mario.six@gdsys.cc | dbc82ce | 2016-04-25 08:31:09 +0200 | [diff] [blame] | 605 | __i2c_init(dev->base, dev->speed, dev->slaveadd, dev->i2c_clk, |
| 606 | dev->index); |
| 607 | return 0; |
| 608 | } |
| 609 | |
| 610 | static int fsl_i2c_xfer(struct udevice *bus, struct i2c_msg *msg, int nmsgs) |
| 611 | { |
| 612 | struct fsl_i2c_dev *dev = dev_get_priv(bus); |
| 613 | struct i2c_msg *dmsg, *omsg, dummy; |
| 614 | |
| 615 | memset(&dummy, 0, sizeof(struct i2c_msg)); |
| 616 | |
| 617 | /* We expect either two messages (one with an offset and one with the |
Mario Six | a059de1 | 2018-01-15 11:08:07 +0100 | [diff] [blame] | 618 | * actual data) or one message (just data) |
| 619 | */ |
mario.six@gdsys.cc | dbc82ce | 2016-04-25 08:31:09 +0200 | [diff] [blame] | 620 | if (nmsgs > 2 || nmsgs == 0) { |
| 621 | debug("%s: Only one or two messages are supported.", __func__); |
| 622 | return -1; |
| 623 | } |
| 624 | |
| 625 | omsg = nmsgs == 1 ? &dummy : msg; |
| 626 | dmsg = nmsgs == 1 ? msg : msg + 1; |
| 627 | |
| 628 | if (dmsg->flags & I2C_M_RD) |
| 629 | return __i2c_read(dev->base, dmsg->addr, omsg->buf, omsg->len, |
| 630 | dmsg->buf, dmsg->len); |
| 631 | else |
| 632 | return __i2c_write(dev->base, dmsg->addr, omsg->buf, omsg->len, |
| 633 | dmsg->buf, dmsg->len); |
| 634 | } |
| 635 | |
| 636 | static const struct dm_i2c_ops fsl_i2c_ops = { |
| 637 | .xfer = fsl_i2c_xfer, |
| 638 | .probe_chip = fsl_i2c_probe_chip, |
| 639 | .set_bus_speed = fsl_i2c_set_bus_speed, |
| 640 | }; |
| 641 | |
| 642 | static const struct udevice_id fsl_i2c_ids[] = { |
| 643 | { .compatible = "fsl-i2c", }, |
| 644 | { /* sentinel */ } |
| 645 | }; |
| 646 | |
| 647 | U_BOOT_DRIVER(i2c_fsl) = { |
| 648 | .name = "i2c_fsl", |
| 649 | .id = UCLASS_I2C, |
| 650 | .of_match = fsl_i2c_ids, |
| 651 | .probe = fsl_i2c_probe, |
| 652 | .ofdata_to_platdata = fsl_i2c_ofdata_to_platdata, |
| 653 | .priv_auto_alloc_size = sizeof(struct fsl_i2c_dev), |
| 654 | .ops = &fsl_i2c_ops, |
| 655 | }; |
| 656 | |
| 657 | #endif /* CONFIG_DM_I2C */ |