Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 1 | /* |
Timur Tabi | 92477a6 | 2009-09-04 16:28:35 -0500 | [diff] [blame] | 2 | * Copyright 2006,2009 Freescale Semiconductor, Inc. |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 3 | * |
| 4 | * This program is free software; you can redistribute it and/or |
| 5 | * modify it under the terms of the GNU General Public License |
| 6 | * Version 2 as published by the Free Software Foundation. |
| 7 | * |
| 8 | * This program is distributed in the hope that it will be useful, |
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 11 | * GNU General Public License for more details. |
| 12 | * |
| 13 | * You should have received a copy of the GNU General Public License |
| 14 | * along with this program; if not, write to the Free Software |
| 15 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 16 | * MA 02111-1307 USA |
| 17 | */ |
| 18 | |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 19 | #include <common.h> |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 20 | |
| 21 | #ifdef CONFIG_HARD_I2C |
| 22 | |
Jon Loeliger | 4d45f69 | 2006-10-19 12:02:24 -0500 | [diff] [blame] | 23 | #include <command.h> |
Jon Loeliger | 2047672 | 2006-10-20 15:50:15 -0500 | [diff] [blame] | 24 | #include <i2c.h> /* Functional interface */ |
| 25 | |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 26 | #include <asm/io.h> |
Jon Loeliger | 2047672 | 2006-10-20 15:50:15 -0500 | [diff] [blame] | 27 | #include <asm/fsl_i2c.h> /* HW definitions */ |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 28 | |
Timur Tabi | 92477a6 | 2009-09-04 16:28:35 -0500 | [diff] [blame] | 29 | /* The maximum number of microseconds we will wait until another master has |
| 30 | * released the bus. If not defined in the board header file, then use a |
| 31 | * generic value. |
| 32 | */ |
| 33 | #ifndef CONFIG_I2C_MBB_TIMEOUT |
| 34 | #define CONFIG_I2C_MBB_TIMEOUT 100000 |
| 35 | #endif |
| 36 | |
| 37 | /* The maximum number of microseconds we will wait for a read or write |
| 38 | * operation to complete. If not defined in the board header file, then use a |
| 39 | * generic value. |
| 40 | */ |
| 41 | #ifndef CONFIG_I2C_TIMEOUT |
| 42 | #define CONFIG_I2C_TIMEOUT 10000 |
| 43 | #endif |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 44 | |
Joakim Tjernlund | 1939d96 | 2006-11-28 16:17:27 -0600 | [diff] [blame] | 45 | #define I2C_READ_BIT 1 |
| 46 | #define I2C_WRITE_BIT 0 |
| 47 | |
Timur Tabi | d8c82db | 2008-03-14 17:45:29 -0500 | [diff] [blame] | 48 | DECLARE_GLOBAL_DATA_PTR; |
| 49 | |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 50 | /* Initialize the bus pointer to whatever one the SPD EEPROM is on. |
| 51 | * Default is bus 0. This is necessary because the DDR initialization |
| 52 | * runs from ROM, and we can't switch buses because we can't modify |
| 53 | * the global variables. |
| 54 | */ |
Trent Piepho | 5e3ab68 | 2008-11-12 17:29:48 -0800 | [diff] [blame] | 55 | #ifndef CONFIG_SYS_SPD_BUS_NUM |
| 56 | #define CONFIG_SYS_SPD_BUS_NUM 0 |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 57 | #endif |
Trent Piepho | 5e3ab68 | 2008-11-12 17:29:48 -0800 | [diff] [blame] | 58 | static unsigned int i2c_bus_num __attribute__ ((section (".data"))) = CONFIG_SYS_SPD_BUS_NUM; |
Heiko Schocher | c1bce4f | 2009-02-24 11:30:37 +0100 | [diff] [blame] | 59 | #if defined(CONFIG_I2C_MUX) |
| 60 | static unsigned int i2c_bus_num_mux __attribute__ ((section ("data"))) = 0; |
| 61 | #endif |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 62 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 63 | static unsigned int i2c_bus_speed[2] = {CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SPEED}; |
Timur Tabi | d8c82db | 2008-03-14 17:45:29 -0500 | [diff] [blame] | 64 | |
| 65 | static const struct fsl_i2c *i2c_dev[2] = { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 66 | (struct fsl_i2c *) (CONFIG_SYS_IMMR + CONFIG_SYS_I2C_OFFSET), |
| 67 | #ifdef CONFIG_SYS_I2C2_OFFSET |
| 68 | (struct fsl_i2c *) (CONFIG_SYS_IMMR + CONFIG_SYS_I2C2_OFFSET) |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 69 | #endif |
| 70 | }; |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 71 | |
Timur Tabi | d8c82db | 2008-03-14 17:45:29 -0500 | [diff] [blame] | 72 | /* I2C speed map for a DFSR value of 1 */ |
| 73 | |
| 74 | /* |
| 75 | * Map I2C frequency dividers to FDR and DFSR values |
| 76 | * |
| 77 | * This structure is used to define the elements of a table that maps I2C |
| 78 | * frequency divider (I2C clock rate divided by I2C bus speed) to a value to be |
| 79 | * programmed into the Frequency Divider Ratio (FDR) and Digital Filter |
| 80 | * Sampling Rate (DFSR) registers. |
| 81 | * |
| 82 | * The actual table should be defined in the board file, and it must be called |
| 83 | * fsl_i2c_speed_map[]. |
| 84 | * |
| 85 | * The last entry of the table must have a value of {-1, X}, where X is same |
| 86 | * FDR/DFSR values as the second-to-last entry. This guarantees that any |
| 87 | * search through the array will always find a match. |
| 88 | * |
| 89 | * The values of the divider must be in increasing numerical order, i.e. |
| 90 | * fsl_i2c_speed_map[x+1].divider > fsl_i2c_speed_map[x].divider. |
| 91 | * |
| 92 | * For this table, the values are based on a value of 1 for the DFSR |
| 93 | * register. See the application note AN2919 "Determining the I2C Frequency |
| 94 | * Divider Ratio for SCL" |
TsiChung Liew | 5d9a5ef | 2008-08-19 00:56:46 +0600 | [diff] [blame] | 95 | * |
| 96 | * ColdFire I2C frequency dividers for FDR values are different from |
| 97 | * PowerPC. The protocol to use the I2C module is still the same. |
| 98 | * A different table is defined and are based on MCF5xxx user manual. |
| 99 | * |
Timur Tabi | d8c82db | 2008-03-14 17:45:29 -0500 | [diff] [blame] | 100 | */ |
| 101 | static const struct { |
| 102 | unsigned short divider; |
Timur Tabi | d8c82db | 2008-03-14 17:45:29 -0500 | [diff] [blame] | 103 | u8 fdr; |
| 104 | } fsl_i2c_speed_map[] = { |
Joakim Tjernlund | 9940420 | 2009-09-17 11:07:17 +0200 | [diff] [blame] | 105 | #ifdef __M68K__ |
TsiChung Liew | 5d9a5ef | 2008-08-19 00:56:46 +0600 | [diff] [blame] | 106 | {20, 32}, {22, 33}, {24, 34}, {26, 35}, |
| 107 | {28, 0}, {28, 36}, {30, 1}, {32, 37}, |
| 108 | {34, 2}, {36, 38}, {40, 3}, {40, 39}, |
| 109 | {44, 4}, {48, 5}, {48, 40}, {56, 6}, |
| 110 | {56, 41}, {64, 42}, {68, 7}, {72, 43}, |
| 111 | {80, 8}, {80, 44}, {88, 9}, {96, 41}, |
| 112 | {104, 10}, {112, 42}, {128, 11}, {128, 43}, |
| 113 | {144, 12}, {160, 13}, {160, 48}, {192, 14}, |
| 114 | {192, 49}, {224, 50}, {240, 15}, {256, 51}, |
| 115 | {288, 16}, {320, 17}, {320, 52}, {384, 18}, |
| 116 | {384, 53}, {448, 54}, {480, 19}, {512, 55}, |
| 117 | {576, 20}, {640, 21}, {640, 56}, {768, 22}, |
| 118 | {768, 57}, {960, 23}, {896, 58}, {1024, 59}, |
| 119 | {1152, 24}, {1280, 25}, {1280, 60}, {1536, 26}, |
| 120 | {1536, 61}, {1792, 62}, {1920, 27}, {2048, 63}, |
| 121 | {2304, 28}, {2560, 29}, {3072, 30}, {3840, 31}, |
| 122 | {-1, 31} |
| 123 | #endif |
Timur Tabi | d8c82db | 2008-03-14 17:45:29 -0500 | [diff] [blame] | 124 | }; |
| 125 | |
| 126 | /** |
| 127 | * Set the I2C bus speed for a given I2C device |
| 128 | * |
| 129 | * @param dev: the I2C device |
| 130 | * @i2c_clk: I2C bus clock frequency |
| 131 | * @speed: the desired speed of the bus |
| 132 | * |
| 133 | * The I2C device must be stopped before calling this function. |
| 134 | * |
| 135 | * The return value is the actual bus speed that is set. |
| 136 | */ |
| 137 | static unsigned int set_i2c_bus_speed(const struct fsl_i2c *dev, |
| 138 | unsigned int i2c_clk, unsigned int speed) |
| 139 | { |
| 140 | unsigned short divider = min(i2c_clk / speed, (unsigned short) -1); |
Timur Tabi | d8c82db | 2008-03-14 17:45:29 -0500 | [diff] [blame] | 141 | |
| 142 | /* |
| 143 | * We want to choose an FDR/DFSR that generates an I2C bus speed that |
| 144 | * is equal to or lower than the requested speed. That means that we |
| 145 | * want the first divider that is equal to or greater than the |
| 146 | * calculated divider. |
| 147 | */ |
Joakim Tjernlund | 9940420 | 2009-09-17 11:07:17 +0200 | [diff] [blame] | 148 | #ifdef __PPC__ |
| 149 | u8 dfsr, fdr = 0x31; /* Default if no FDR found */ |
| 150 | /* a, b and dfsr matches identifiers A,B and C respectively in AN2919 */ |
| 151 | unsigned short a, b, ga, gb; |
| 152 | unsigned long c_div, est_div; |
| 153 | |
| 154 | #ifdef CONFIG_FSL_I2C_CUSTOM_DFSR |
| 155 | dfsr = CONFIG_FSL_I2C_CUSTOM_DFSR; |
| 156 | #else |
| 157 | /* Condition 1: dfsr <= 50/T */ |
| 158 | dfsr = (5 * (i2c_clk / 1000)) / 100000; |
| 159 | #endif |
| 160 | #ifdef CONFIG_FSL_I2C_CUSTOM_FDR |
| 161 | fdr = CONFIG_FSL_I2C_CUSTOM_FDR; |
| 162 | speed = i2c_clk / divider; /* Fake something */ |
| 163 | #else |
| 164 | debug("Requested speed:%d, i2c_clk:%d\n", speed, i2c_clk); |
| 165 | if (!dfsr) |
| 166 | dfsr = 1; |
| 167 | |
| 168 | est_div = ~0; |
| 169 | for (ga = 0x4, a = 10; a <= 30; ga++, a += 2) { |
| 170 | for (gb = 0; gb < 8; gb++) { |
| 171 | b = 16 << gb; |
| 172 | c_div = b * (a + ((3*dfsr)/b)*2); |
| 173 | if ((c_div > divider) && (c_div < est_div)) { |
| 174 | unsigned short bin_gb, bin_ga; |
| 175 | |
| 176 | est_div = c_div; |
| 177 | bin_gb = gb << 2; |
| 178 | bin_ga = (ga & 0x3) | ((ga & 0x4) << 3); |
| 179 | fdr = bin_gb | bin_ga; |
| 180 | speed = i2c_clk / est_div; |
| 181 | debug("FDR:0x%.2x, div:%ld, ga:0x%x, gb:0x%x, " |
| 182 | "a:%d, b:%d, speed:%d\n", |
| 183 | fdr, est_div, ga, gb, a, b, speed); |
| 184 | /* Condition 2 not accounted for */ |
| 185 | debug("Tr <= %d ns\n", |
| 186 | (b - 3 * dfsr) * 1000000 / |
| 187 | (i2c_clk / 1000)); |
| 188 | } |
| 189 | } |
| 190 | if (a == 20) |
| 191 | a += 2; |
| 192 | if (a == 24) |
| 193 | a += 4; |
| 194 | } |
| 195 | debug("divider:%d, est_div:%ld, DFSR:%d\n", divider, est_div, dfsr); |
| 196 | debug("FDR:0x%.2x, speed:%d\n", fdr, speed); |
| 197 | #endif |
| 198 | writeb(dfsr, &dev->dfsrr); /* set default filter */ |
| 199 | writeb(fdr, &dev->fdr); /* set bus speed */ |
| 200 | #else |
| 201 | unsigned int i; |
Timur Tabi | d8c82db | 2008-03-14 17:45:29 -0500 | [diff] [blame] | 202 | |
| 203 | for (i = 0; i < ARRAY_SIZE(fsl_i2c_speed_map); i++) |
| 204 | if (fsl_i2c_speed_map[i].divider >= divider) { |
TsiChung Liew | 5d9a5ef | 2008-08-19 00:56:46 +0600 | [diff] [blame] | 205 | u8 fdr; |
Joakim Tjernlund | 9940420 | 2009-09-17 11:07:17 +0200 | [diff] [blame] | 206 | |
Joakim Tjernlund | d01ee4d | 2009-09-17 11:07:16 +0200 | [diff] [blame] | 207 | fdr = fsl_i2c_speed_map[i].fdr; |
| 208 | speed = i2c_clk / fsl_i2c_speed_map[i].divider; |
Joakim Tjernlund | d01ee4d | 2009-09-17 11:07:16 +0200 | [diff] [blame] | 209 | writeb(fdr, &dev->fdr); /* set bus speed */ |
| 210 | |
Timur Tabi | d8c82db | 2008-03-14 17:45:29 -0500 | [diff] [blame] | 211 | break; |
| 212 | } |
Joakim Tjernlund | 9940420 | 2009-09-17 11:07:17 +0200 | [diff] [blame] | 213 | #endif |
Timur Tabi | d8c82db | 2008-03-14 17:45:29 -0500 | [diff] [blame] | 214 | return speed; |
| 215 | } |
| 216 | |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 217 | void |
| 218 | i2c_init(int speed, int slaveadd) |
| 219 | { |
Timur Tabi | d8c82db | 2008-03-14 17:45:29 -0500 | [diff] [blame] | 220 | struct fsl_i2c *dev; |
Stefan Roese | f2302d4 | 2008-08-06 14:05:38 +0200 | [diff] [blame] | 221 | unsigned int temp; |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 222 | |
Heiko Schocher | 39df00d | 2009-07-09 12:04:26 +0200 | [diff] [blame] | 223 | #ifdef CONFIG_SYS_I2C_INIT_BOARD |
| 224 | /* call board specific i2c bus reset routine before accessing the */ |
| 225 | /* environment, which might be in a chip on that bus. For details */ |
| 226 | /* about this problem see doc/I2C_Edge_Conditions. */ |
| 227 | i2c_init_board(); |
| 228 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 229 | dev = (struct fsl_i2c *) (CONFIG_SYS_IMMR + CONFIG_SYS_I2C_OFFSET); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 230 | |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 231 | writeb(0, &dev->cr); /* stop I2C controller */ |
Joakim Tjernlund | f6f5f70 | 2007-01-31 11:04:19 +0100 | [diff] [blame] | 232 | udelay(5); /* let it shutdown in peace */ |
Stefan Roese | f2302d4 | 2008-08-06 14:05:38 +0200 | [diff] [blame] | 233 | temp = set_i2c_bus_speed(dev, gd->i2c1_clk, speed); |
| 234 | if (gd->flags & GD_FLG_RELOC) |
| 235 | i2c_bus_speed[0] = temp; |
Joakim Tjernlund | 14198bf | 2006-11-28 16:17:18 -0600 | [diff] [blame] | 236 | writeb(slaveadd << 1, &dev->adr); /* write slave address */ |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 237 | writeb(0x0, &dev->sr); /* clear status register */ |
| 238 | writeb(I2C_CR_MEN, &dev->cr); /* start I2C controller */ |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 239 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 240 | #ifdef CONFIG_SYS_I2C2_OFFSET |
| 241 | dev = (struct fsl_i2c *) (CONFIG_SYS_IMMR + CONFIG_SYS_I2C2_OFFSET); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 242 | |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 243 | writeb(0, &dev->cr); /* stop I2C controller */ |
Timur Tabi | e739bc9 | 2007-07-03 13:46:32 -0500 | [diff] [blame] | 244 | udelay(5); /* let it shutdown in peace */ |
Stefan Roese | f2302d4 | 2008-08-06 14:05:38 +0200 | [diff] [blame] | 245 | temp = set_i2c_bus_speed(dev, gd->i2c2_clk, speed); |
| 246 | if (gd->flags & GD_FLG_RELOC) |
| 247 | i2c_bus_speed[1] = temp; |
Timur Tabi | e739bc9 | 2007-07-03 13:46:32 -0500 | [diff] [blame] | 248 | writeb(slaveadd << 1, &dev->adr); /* write slave address */ |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 249 | writeb(0x0, &dev->sr); /* clear status register */ |
| 250 | writeb(I2C_CR_MEN, &dev->cr); /* start I2C controller */ |
Timur Tabi | d8c82db | 2008-03-14 17:45:29 -0500 | [diff] [blame] | 251 | #endif |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 252 | } |
| 253 | |
Joakim Tjernlund | 21f4cbb | 2009-09-17 11:07:15 +0200 | [diff] [blame] | 254 | static int |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 255 | i2c_wait4bus(void) |
| 256 | { |
Stefan Roese | f2302d4 | 2008-08-06 14:05:38 +0200 | [diff] [blame] | 257 | unsigned long long timeval = get_ticks(); |
Timur Tabi | 92477a6 | 2009-09-04 16:28:35 -0500 | [diff] [blame] | 258 | const unsigned long long timeout = usec2ticks(CONFIG_I2C_MBB_TIMEOUT); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 259 | |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 260 | while (readb(&i2c_dev[i2c_bus_num]->sr) & I2C_SR_MBB) { |
Timur Tabi | 92477a6 | 2009-09-04 16:28:35 -0500 | [diff] [blame] | 261 | if ((get_ticks() - timeval) > timeout) |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 262 | return -1; |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 263 | } |
| 264 | |
| 265 | return 0; |
| 266 | } |
| 267 | |
| 268 | static __inline__ int |
| 269 | i2c_wait(int write) |
| 270 | { |
| 271 | u32 csr; |
Stefan Roese | f2302d4 | 2008-08-06 14:05:38 +0200 | [diff] [blame] | 272 | unsigned long long timeval = get_ticks(); |
Timur Tabi | 92477a6 | 2009-09-04 16:28:35 -0500 | [diff] [blame] | 273 | const unsigned long long timeout = usec2ticks(CONFIG_I2C_TIMEOUT); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 274 | |
| 275 | do { |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 276 | csr = readb(&i2c_dev[i2c_bus_num]->sr); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 277 | if (!(csr & I2C_SR_MIF)) |
| 278 | continue; |
Joakim Tjernlund | 21f4cbb | 2009-09-17 11:07:15 +0200 | [diff] [blame] | 279 | /* Read again to allow register to stabilise */ |
| 280 | csr = readb(&i2c_dev[i2c_bus_num]->sr); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 281 | |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 282 | writeb(0x0, &i2c_dev[i2c_bus_num]->sr); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 283 | |
| 284 | if (csr & I2C_SR_MAL) { |
| 285 | debug("i2c_wait: MAL\n"); |
| 286 | return -1; |
| 287 | } |
| 288 | |
| 289 | if (!(csr & I2C_SR_MCF)) { |
| 290 | debug("i2c_wait: unfinished\n"); |
| 291 | return -1; |
| 292 | } |
| 293 | |
Joakim Tjernlund | 1939d96 | 2006-11-28 16:17:27 -0600 | [diff] [blame] | 294 | if (write == I2C_WRITE_BIT && (csr & I2C_SR_RXAK)) { |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 295 | debug("i2c_wait: No RXACK\n"); |
| 296 | return -1; |
| 297 | } |
| 298 | |
| 299 | return 0; |
Timur Tabi | 92477a6 | 2009-09-04 16:28:35 -0500 | [diff] [blame] | 300 | } while ((get_ticks() - timeval) < timeout); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 301 | |
| 302 | debug("i2c_wait: timed out\n"); |
| 303 | return -1; |
| 304 | } |
| 305 | |
| 306 | static __inline__ int |
| 307 | i2c_write_addr (u8 dev, u8 dir, int rsta) |
| 308 | { |
| 309 | writeb(I2C_CR_MEN | I2C_CR_MSTA | I2C_CR_MTX |
| 310 | | (rsta ? I2C_CR_RSTA : 0), |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 311 | &i2c_dev[i2c_bus_num]->cr); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 312 | |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 313 | writeb((dev << 1) | dir, &i2c_dev[i2c_bus_num]->dr); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 314 | |
Joakim Tjernlund | 1939d96 | 2006-11-28 16:17:27 -0600 | [diff] [blame] | 315 | if (i2c_wait(I2C_WRITE_BIT) < 0) |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 316 | return 0; |
| 317 | |
| 318 | return 1; |
| 319 | } |
| 320 | |
| 321 | static __inline__ int |
| 322 | __i2c_write(u8 *data, int length) |
| 323 | { |
| 324 | int i; |
| 325 | |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 326 | for (i = 0; i < length; i++) { |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 327 | writeb(data[i], &i2c_dev[i2c_bus_num]->dr); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 328 | |
Joakim Tjernlund | 1939d96 | 2006-11-28 16:17:27 -0600 | [diff] [blame] | 329 | if (i2c_wait(I2C_WRITE_BIT) < 0) |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 330 | break; |
| 331 | } |
| 332 | |
| 333 | return i; |
| 334 | } |
| 335 | |
| 336 | static __inline__ int |
| 337 | __i2c_read(u8 *data, int length) |
| 338 | { |
| 339 | int i; |
| 340 | |
| 341 | writeb(I2C_CR_MEN | I2C_CR_MSTA | ((length == 1) ? I2C_CR_TXAK : 0), |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 342 | &i2c_dev[i2c_bus_num]->cr); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 343 | |
| 344 | /* dummy read */ |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 345 | readb(&i2c_dev[i2c_bus_num]->dr); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 346 | |
| 347 | for (i = 0; i < length; i++) { |
Joakim Tjernlund | 1939d96 | 2006-11-28 16:17:27 -0600 | [diff] [blame] | 348 | if (i2c_wait(I2C_READ_BIT) < 0) |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 349 | break; |
| 350 | |
| 351 | /* Generate ack on last next to last byte */ |
| 352 | if (i == length - 2) |
| 353 | writeb(I2C_CR_MEN | I2C_CR_MSTA | I2C_CR_TXAK, |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 354 | &i2c_dev[i2c_bus_num]->cr); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 355 | |
Joakim Tjernlund | d1c9e5b | 2009-09-22 13:40:44 +0200 | [diff] [blame^] | 356 | /* Do not generate stop on last byte */ |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 357 | if (i == length - 1) |
Joakim Tjernlund | d1c9e5b | 2009-09-22 13:40:44 +0200 | [diff] [blame^] | 358 | writeb(I2C_CR_MEN | I2C_CR_MSTA | I2C_CR_MTX, |
| 359 | &i2c_dev[i2c_bus_num]->cr); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 360 | |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 361 | data[i] = readb(&i2c_dev[i2c_bus_num]->dr); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 362 | } |
| 363 | |
| 364 | return i; |
| 365 | } |
| 366 | |
| 367 | int |
| 368 | i2c_read(u8 dev, uint addr, int alen, u8 *data, int length) |
| 369 | { |
Joakim Tjernlund | f6f5f70 | 2007-01-31 11:04:19 +0100 | [diff] [blame] | 370 | int i = -1; /* signal error */ |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 371 | u8 *a = (u8*)&addr; |
| 372 | |
Jon Loeliger | 4d45f69 | 2006-10-19 12:02:24 -0500 | [diff] [blame] | 373 | if (i2c_wait4bus() >= 0 |
Joakim Tjernlund | 1939d96 | 2006-11-28 16:17:27 -0600 | [diff] [blame] | 374 | && i2c_write_addr(dev, I2C_WRITE_BIT, 0) != 0 |
Joakim Tjernlund | f6f5f70 | 2007-01-31 11:04:19 +0100 | [diff] [blame] | 375 | && __i2c_write(&a[4 - alen], alen) == alen) |
| 376 | i = 0; /* No error so far */ |
| 377 | |
| 378 | if (length |
| 379 | && i2c_write_addr(dev, I2C_READ_BIT, 1) != 0) |
Jon Loeliger | 4d45f69 | 2006-10-19 12:02:24 -0500 | [diff] [blame] | 380 | i = __i2c_read(data, length); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 381 | |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 382 | writeb(I2C_CR_MEN, &i2c_dev[i2c_bus_num]->cr); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 383 | |
Joakim Tjernlund | d1c9e5b | 2009-09-22 13:40:44 +0200 | [diff] [blame^] | 384 | if (i2c_wait4bus()) /* Wait until STOP */ |
| 385 | debug("i2c_read: wait4bus timed out\n"); |
| 386 | |
Jon Loeliger | 4d45f69 | 2006-10-19 12:02:24 -0500 | [diff] [blame] | 387 | if (i == length) |
| 388 | return 0; |
| 389 | |
| 390 | return -1; |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 391 | } |
| 392 | |
| 393 | int |
| 394 | i2c_write(u8 dev, uint addr, int alen, u8 *data, int length) |
| 395 | { |
Joakim Tjernlund | f6f5f70 | 2007-01-31 11:04:19 +0100 | [diff] [blame] | 396 | int i = -1; /* signal error */ |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 397 | u8 *a = (u8*)&addr; |
| 398 | |
Jon Loeliger | 4d45f69 | 2006-10-19 12:02:24 -0500 | [diff] [blame] | 399 | if (i2c_wait4bus() >= 0 |
Joakim Tjernlund | 1939d96 | 2006-11-28 16:17:27 -0600 | [diff] [blame] | 400 | && i2c_write_addr(dev, I2C_WRITE_BIT, 0) != 0 |
Jon Loeliger | 4d45f69 | 2006-10-19 12:02:24 -0500 | [diff] [blame] | 401 | && __i2c_write(&a[4 - alen], alen) == alen) { |
| 402 | i = __i2c_write(data, length); |
| 403 | } |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 404 | |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 405 | writeb(I2C_CR_MEN, &i2c_dev[i2c_bus_num]->cr); |
Joakim Tjernlund | 21f4cbb | 2009-09-17 11:07:15 +0200 | [diff] [blame] | 406 | if (i2c_wait4bus()) /* Wait until STOP */ |
| 407 | debug("i2c_write: wait4bus timed out\n"); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 408 | |
Jon Loeliger | 4d45f69 | 2006-10-19 12:02:24 -0500 | [diff] [blame] | 409 | if (i == length) |
| 410 | return 0; |
| 411 | |
| 412 | return -1; |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 413 | } |
| 414 | |
| 415 | int |
| 416 | i2c_probe(uchar chip) |
| 417 | { |
Joakim Tjernlund | f6f5f70 | 2007-01-31 11:04:19 +0100 | [diff] [blame] | 418 | /* For unknow reason the controller will ACK when |
| 419 | * probing for a slave with the same address, so skip |
| 420 | * it. |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 421 | */ |
Joakim Tjernlund | f6f5f70 | 2007-01-31 11:04:19 +0100 | [diff] [blame] | 422 | if (chip == (readb(&i2c_dev[i2c_bus_num]->adr) >> 1)) |
| 423 | return -1; |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 424 | |
Joakim Tjernlund | f6f5f70 | 2007-01-31 11:04:19 +0100 | [diff] [blame] | 425 | return i2c_read(chip, 0, 0, NULL, 0); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 426 | } |
| 427 | |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 428 | int i2c_set_bus_num(unsigned int bus) |
| 429 | { |
Heiko Schocher | c1bce4f | 2009-02-24 11:30:37 +0100 | [diff] [blame] | 430 | #if defined(CONFIG_I2C_MUX) |
| 431 | if (bus < CONFIG_SYS_MAX_I2C_BUS) { |
| 432 | i2c_bus_num = bus; |
| 433 | } else { |
| 434 | int ret; |
| 435 | |
| 436 | ret = i2x_mux_select_mux(bus); |
| 437 | if (ret) |
| 438 | return ret; |
| 439 | i2c_bus_num = 0; |
| 440 | } |
| 441 | i2c_bus_num_mux = bus; |
| 442 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 443 | #ifdef CONFIG_SYS_I2C2_OFFSET |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 444 | if (bus > 1) { |
| 445 | #else |
| 446 | if (bus > 0) { |
| 447 | #endif |
| 448 | return -1; |
| 449 | } |
| 450 | |
| 451 | i2c_bus_num = bus; |
Heiko Schocher | c1bce4f | 2009-02-24 11:30:37 +0100 | [diff] [blame] | 452 | #endif |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 453 | return 0; |
| 454 | } |
| 455 | |
| 456 | int i2c_set_bus_speed(unsigned int speed) |
| 457 | { |
Timur Tabi | d8c82db | 2008-03-14 17:45:29 -0500 | [diff] [blame] | 458 | unsigned int i2c_clk = (i2c_bus_num == 1) ? gd->i2c2_clk : gd->i2c1_clk; |
| 459 | |
| 460 | writeb(0, &i2c_dev[i2c_bus_num]->cr); /* stop controller */ |
| 461 | i2c_bus_speed[i2c_bus_num] = |
| 462 | set_i2c_bus_speed(i2c_dev[i2c_bus_num], i2c_clk, speed); |
| 463 | writeb(I2C_CR_MEN, &i2c_dev[i2c_bus_num]->cr); /* start controller */ |
| 464 | |
| 465 | return 0; |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 466 | } |
| 467 | |
| 468 | unsigned int i2c_get_bus_num(void) |
| 469 | { |
Heiko Schocher | c1bce4f | 2009-02-24 11:30:37 +0100 | [diff] [blame] | 470 | #if defined(CONFIG_I2C_MUX) |
| 471 | return i2c_bus_num_mux; |
| 472 | #else |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 473 | return i2c_bus_num; |
Heiko Schocher | c1bce4f | 2009-02-24 11:30:37 +0100 | [diff] [blame] | 474 | #endif |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 475 | } |
| 476 | |
| 477 | unsigned int i2c_get_bus_speed(void) |
| 478 | { |
Timur Tabi | d8c82db | 2008-03-14 17:45:29 -0500 | [diff] [blame] | 479 | return i2c_bus_speed[i2c_bus_num]; |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 480 | } |
Timur Tabi | d8c82db | 2008-03-14 17:45:29 -0500 | [diff] [blame] | 481 | |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 482 | #endif /* CONFIG_HARD_I2C */ |