Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 1 | /* |
Timur Tabi | 14bdd93 | 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 | 14bdd93 | 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; |
TsiChung Liew | 5d9a5ef | 2008-08-19 00:56:46 +0600 | [diff] [blame] | 103 | #ifdef __PPC__ |
Timur Tabi | d8c82db | 2008-03-14 17:45:29 -0500 | [diff] [blame] | 104 | u8 dfsr; |
TsiChung Liew | 5d9a5ef | 2008-08-19 00:56:46 +0600 | [diff] [blame] | 105 | #endif |
Timur Tabi | d8c82db | 2008-03-14 17:45:29 -0500 | [diff] [blame] | 106 | u8 fdr; |
| 107 | } fsl_i2c_speed_map[] = { |
TsiChung Liew | 5d9a5ef | 2008-08-19 00:56:46 +0600 | [diff] [blame] | 108 | #ifdef __PPC__ |
Timur Tabi | d8c82db | 2008-03-14 17:45:29 -0500 | [diff] [blame] | 109 | {160, 1, 32}, {192, 1, 33}, {224, 1, 34}, {256, 1, 35}, |
| 110 | {288, 1, 0}, {320, 1, 1}, {352, 6, 1}, {384, 1, 2}, {416, 6, 2}, |
| 111 | {448, 1, 38}, {480, 1, 3}, {512, 1, 39}, {544, 11, 3}, {576, 1, 4}, |
| 112 | {608, 22, 3}, {640, 1, 5}, {672, 32, 3}, {704, 11, 5}, {736, 43, 3}, |
| 113 | {768, 1, 6}, {800, 54, 3}, {832, 11, 6}, {896, 1, 42}, {960, 1, 7}, |
| 114 | {1024, 1, 43}, {1088, 22, 7}, {1152, 1, 8}, {1216, 43, 7}, {1280, 1, 9}, |
| 115 | {1408, 22, 9}, {1536, 1, 10}, {1664, 22, 10}, {1792, 1, 46}, |
| 116 | {1920, 1, 11}, {2048, 1, 47}, {2176, 43, 11}, {2304, 1, 12}, |
| 117 | {2560, 1, 13}, {2816, 43, 13}, {3072, 1, 14}, {3328, 43, 14}, |
| 118 | {3584, 1, 50}, {3840, 1, 15}, {4096, 1, 51}, {4608, 1, 16}, |
| 119 | {5120, 1, 17}, {6144, 1, 18}, {7168, 1, 54}, {7680, 1, 19}, |
| 120 | {8192, 1, 55}, {9216, 1, 20}, {10240, 1, 21}, {12288, 1, 22}, |
| 121 | {14336, 1, 58}, {15360, 1, 23}, {16384, 1, 59}, {18432, 1, 24}, |
| 122 | {20480, 1, 25}, {24576, 1, 26}, {28672, 1, 62}, {30720, 1, 27}, |
| 123 | {32768, 1, 63}, {36864, 1, 28}, {40960, 1, 29}, {49152, 1, 30}, |
| 124 | {61440, 1, 31}, {-1, 1, 31} |
TsiChung Liew | 5d9a5ef | 2008-08-19 00:56:46 +0600 | [diff] [blame] | 125 | #elif defined(__M68K__) |
| 126 | {20, 32}, {22, 33}, {24, 34}, {26, 35}, |
| 127 | {28, 0}, {28, 36}, {30, 1}, {32, 37}, |
| 128 | {34, 2}, {36, 38}, {40, 3}, {40, 39}, |
| 129 | {44, 4}, {48, 5}, {48, 40}, {56, 6}, |
| 130 | {56, 41}, {64, 42}, {68, 7}, {72, 43}, |
| 131 | {80, 8}, {80, 44}, {88, 9}, {96, 41}, |
| 132 | {104, 10}, {112, 42}, {128, 11}, {128, 43}, |
| 133 | {144, 12}, {160, 13}, {160, 48}, {192, 14}, |
| 134 | {192, 49}, {224, 50}, {240, 15}, {256, 51}, |
| 135 | {288, 16}, {320, 17}, {320, 52}, {384, 18}, |
| 136 | {384, 53}, {448, 54}, {480, 19}, {512, 55}, |
| 137 | {576, 20}, {640, 21}, {640, 56}, {768, 22}, |
| 138 | {768, 57}, {960, 23}, {896, 58}, {1024, 59}, |
| 139 | {1152, 24}, {1280, 25}, {1280, 60}, {1536, 26}, |
| 140 | {1536, 61}, {1792, 62}, {1920, 27}, {2048, 63}, |
| 141 | {2304, 28}, {2560, 29}, {3072, 30}, {3840, 31}, |
| 142 | {-1, 31} |
| 143 | #endif |
Timur Tabi | d8c82db | 2008-03-14 17:45:29 -0500 | [diff] [blame] | 144 | }; |
| 145 | |
| 146 | /** |
| 147 | * Set the I2C bus speed for a given I2C device |
| 148 | * |
| 149 | * @param dev: the I2C device |
| 150 | * @i2c_clk: I2C bus clock frequency |
| 151 | * @speed: the desired speed of the bus |
| 152 | * |
| 153 | * The I2C device must be stopped before calling this function. |
| 154 | * |
| 155 | * The return value is the actual bus speed that is set. |
| 156 | */ |
| 157 | static unsigned int set_i2c_bus_speed(const struct fsl_i2c *dev, |
| 158 | unsigned int i2c_clk, unsigned int speed) |
| 159 | { |
| 160 | unsigned short divider = min(i2c_clk / speed, (unsigned short) -1); |
| 161 | unsigned int i; |
Timur Tabi | d8c82db | 2008-03-14 17:45:29 -0500 | [diff] [blame] | 162 | |
| 163 | /* |
| 164 | * We want to choose an FDR/DFSR that generates an I2C bus speed that |
| 165 | * is equal to or lower than the requested speed. That means that we |
| 166 | * want the first divider that is equal to or greater than the |
| 167 | * calculated divider. |
| 168 | */ |
| 169 | |
| 170 | for (i = 0; i < ARRAY_SIZE(fsl_i2c_speed_map); i++) |
| 171 | if (fsl_i2c_speed_map[i].divider >= divider) { |
TsiChung Liew | 5d9a5ef | 2008-08-19 00:56:46 +0600 | [diff] [blame] | 172 | u8 fdr; |
| 173 | #ifdef __PPC__ |
| 174 | u8 dfsr; |
Timur Tabi | d8c82db | 2008-03-14 17:45:29 -0500 | [diff] [blame] | 175 | dfsr = fsl_i2c_speed_map[i].dfsr; |
TsiChung Liew | 5d9a5ef | 2008-08-19 00:56:46 +0600 | [diff] [blame] | 176 | #endif |
Timur Tabi | d8c82db | 2008-03-14 17:45:29 -0500 | [diff] [blame] | 177 | fdr = fsl_i2c_speed_map[i].fdr; |
| 178 | speed = i2c_clk / fsl_i2c_speed_map[i].divider; |
Kumar Gala | 3e3f766 | 2008-03-26 18:53:28 -0500 | [diff] [blame] | 179 | writeb(fdr, &dev->fdr); /* set bus speed */ |
TsiChung Liew | 5d9a5ef | 2008-08-19 00:56:46 +0600 | [diff] [blame] | 180 | #ifdef __PPC__ |
Kumar Gala | 3e3f766 | 2008-03-26 18:53:28 -0500 | [diff] [blame] | 181 | writeb(dfsr, &dev->dfsrr); /* set default filter */ |
TsiChung Liew | 5d9a5ef | 2008-08-19 00:56:46 +0600 | [diff] [blame] | 182 | #endif |
Timur Tabi | d8c82db | 2008-03-14 17:45:29 -0500 | [diff] [blame] | 183 | break; |
| 184 | } |
| 185 | |
Timur Tabi | d8c82db | 2008-03-14 17:45:29 -0500 | [diff] [blame] | 186 | return speed; |
| 187 | } |
| 188 | |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 189 | void |
| 190 | i2c_init(int speed, int slaveadd) |
| 191 | { |
Timur Tabi | d8c82db | 2008-03-14 17:45:29 -0500 | [diff] [blame] | 192 | struct fsl_i2c *dev; |
Stefan Roese | f2302d4 | 2008-08-06 14:05:38 +0200 | [diff] [blame] | 193 | unsigned int temp; |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 194 | |
Heiko Schocher | 39df00d | 2009-07-09 12:04:26 +0200 | [diff] [blame] | 195 | #ifdef CONFIG_SYS_I2C_INIT_BOARD |
| 196 | /* call board specific i2c bus reset routine before accessing the */ |
| 197 | /* environment, which might be in a chip on that bus. For details */ |
| 198 | /* about this problem see doc/I2C_Edge_Conditions. */ |
| 199 | i2c_init_board(); |
| 200 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 201 | dev = (struct fsl_i2c *) (CONFIG_SYS_IMMR + CONFIG_SYS_I2C_OFFSET); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 202 | |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 203 | writeb(0, &dev->cr); /* stop I2C controller */ |
Joakim Tjernlund | f6f5f70 | 2007-01-31 11:04:19 +0100 | [diff] [blame] | 204 | udelay(5); /* let it shutdown in peace */ |
Stefan Roese | f2302d4 | 2008-08-06 14:05:38 +0200 | [diff] [blame] | 205 | temp = set_i2c_bus_speed(dev, gd->i2c1_clk, speed); |
| 206 | if (gd->flags & GD_FLG_RELOC) |
| 207 | i2c_bus_speed[0] = temp; |
Joakim Tjernlund | 14198bf | 2006-11-28 16:17:18 -0600 | [diff] [blame] | 208 | writeb(slaveadd << 1, &dev->adr); /* write slave address */ |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 209 | writeb(0x0, &dev->sr); /* clear status register */ |
| 210 | writeb(I2C_CR_MEN, &dev->cr); /* start I2C controller */ |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 211 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 212 | #ifdef CONFIG_SYS_I2C2_OFFSET |
| 213 | dev = (struct fsl_i2c *) (CONFIG_SYS_IMMR + CONFIG_SYS_I2C2_OFFSET); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 214 | |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 215 | writeb(0, &dev->cr); /* stop I2C controller */ |
Timur Tabi | e739bc9 | 2007-07-03 13:46:32 -0500 | [diff] [blame] | 216 | udelay(5); /* let it shutdown in peace */ |
Stefan Roese | f2302d4 | 2008-08-06 14:05:38 +0200 | [diff] [blame] | 217 | temp = set_i2c_bus_speed(dev, gd->i2c2_clk, speed); |
| 218 | if (gd->flags & GD_FLG_RELOC) |
| 219 | i2c_bus_speed[1] = temp; |
Timur Tabi | e739bc9 | 2007-07-03 13:46:32 -0500 | [diff] [blame] | 220 | writeb(slaveadd << 1, &dev->adr); /* write slave address */ |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 221 | writeb(0x0, &dev->sr); /* clear status register */ |
| 222 | writeb(I2C_CR_MEN, &dev->cr); /* start I2C controller */ |
Timur Tabi | d8c82db | 2008-03-14 17:45:29 -0500 | [diff] [blame] | 223 | #endif |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 224 | } |
| 225 | |
| 226 | static __inline__ int |
| 227 | i2c_wait4bus(void) |
| 228 | { |
Stefan Roese | f2302d4 | 2008-08-06 14:05:38 +0200 | [diff] [blame] | 229 | unsigned long long timeval = get_ticks(); |
Timur Tabi | 14bdd93 | 2009-09-04 16:28:35 -0500 | [diff] [blame] | 230 | const unsigned long long timeout = usec2ticks(CONFIG_I2C_MBB_TIMEOUT); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 231 | |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 232 | while (readb(&i2c_dev[i2c_bus_num]->sr) & I2C_SR_MBB) { |
Timur Tabi | 14bdd93 | 2009-09-04 16:28:35 -0500 | [diff] [blame] | 233 | if ((get_ticks() - timeval) > timeout) |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 234 | return -1; |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 235 | } |
| 236 | |
| 237 | return 0; |
| 238 | } |
| 239 | |
| 240 | static __inline__ int |
| 241 | i2c_wait(int write) |
| 242 | { |
| 243 | u32 csr; |
Stefan Roese | f2302d4 | 2008-08-06 14:05:38 +0200 | [diff] [blame] | 244 | unsigned long long timeval = get_ticks(); |
Timur Tabi | 14bdd93 | 2009-09-04 16:28:35 -0500 | [diff] [blame] | 245 | const unsigned long long timeout = usec2ticks(CONFIG_I2C_TIMEOUT); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 246 | |
| 247 | do { |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 248 | csr = readb(&i2c_dev[i2c_bus_num]->sr); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 249 | if (!(csr & I2C_SR_MIF)) |
| 250 | continue; |
| 251 | |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 252 | writeb(0x0, &i2c_dev[i2c_bus_num]->sr); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 253 | |
| 254 | if (csr & I2C_SR_MAL) { |
| 255 | debug("i2c_wait: MAL\n"); |
| 256 | return -1; |
| 257 | } |
| 258 | |
| 259 | if (!(csr & I2C_SR_MCF)) { |
| 260 | debug("i2c_wait: unfinished\n"); |
| 261 | return -1; |
| 262 | } |
| 263 | |
Joakim Tjernlund | 1939d96 | 2006-11-28 16:17:27 -0600 | [diff] [blame] | 264 | if (write == I2C_WRITE_BIT && (csr & I2C_SR_RXAK)) { |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 265 | debug("i2c_wait: No RXACK\n"); |
| 266 | return -1; |
| 267 | } |
| 268 | |
| 269 | return 0; |
Timur Tabi | 14bdd93 | 2009-09-04 16:28:35 -0500 | [diff] [blame] | 270 | } while ((get_ticks() - timeval) < timeout); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 271 | |
| 272 | debug("i2c_wait: timed out\n"); |
| 273 | return -1; |
| 274 | } |
| 275 | |
| 276 | static __inline__ int |
| 277 | i2c_write_addr (u8 dev, u8 dir, int rsta) |
| 278 | { |
| 279 | writeb(I2C_CR_MEN | I2C_CR_MSTA | I2C_CR_MTX |
| 280 | | (rsta ? I2C_CR_RSTA : 0), |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 281 | &i2c_dev[i2c_bus_num]->cr); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 282 | |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 283 | writeb((dev << 1) | dir, &i2c_dev[i2c_bus_num]->dr); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 284 | |
Joakim Tjernlund | 1939d96 | 2006-11-28 16:17:27 -0600 | [diff] [blame] | 285 | if (i2c_wait(I2C_WRITE_BIT) < 0) |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 286 | return 0; |
| 287 | |
| 288 | return 1; |
| 289 | } |
| 290 | |
| 291 | static __inline__ int |
| 292 | __i2c_write(u8 *data, int length) |
| 293 | { |
| 294 | int i; |
| 295 | |
| 296 | writeb(I2C_CR_MEN | I2C_CR_MSTA | I2C_CR_MTX, |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 297 | &i2c_dev[i2c_bus_num]->cr); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 298 | |
| 299 | for (i = 0; i < length; i++) { |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 300 | writeb(data[i], &i2c_dev[i2c_bus_num]->dr); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 301 | |
Joakim Tjernlund | 1939d96 | 2006-11-28 16:17:27 -0600 | [diff] [blame] | 302 | if (i2c_wait(I2C_WRITE_BIT) < 0) |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 303 | break; |
| 304 | } |
| 305 | |
| 306 | return i; |
| 307 | } |
| 308 | |
| 309 | static __inline__ int |
| 310 | __i2c_read(u8 *data, int length) |
| 311 | { |
| 312 | int i; |
| 313 | |
| 314 | 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] | 315 | &i2c_dev[i2c_bus_num]->cr); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 316 | |
| 317 | /* dummy read */ |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 318 | readb(&i2c_dev[i2c_bus_num]->dr); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 319 | |
| 320 | for (i = 0; i < length; i++) { |
Joakim Tjernlund | 1939d96 | 2006-11-28 16:17:27 -0600 | [diff] [blame] | 321 | if (i2c_wait(I2C_READ_BIT) < 0) |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 322 | break; |
| 323 | |
| 324 | /* Generate ack on last next to last byte */ |
| 325 | if (i == length - 2) |
| 326 | writeb(I2C_CR_MEN | I2C_CR_MSTA | I2C_CR_TXAK, |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 327 | &i2c_dev[i2c_bus_num]->cr); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 328 | |
| 329 | /* Generate stop on last byte */ |
| 330 | if (i == length - 1) |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 331 | writeb(I2C_CR_MEN | I2C_CR_TXAK, &i2c_dev[i2c_bus_num]->cr); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 332 | |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 333 | data[i] = readb(&i2c_dev[i2c_bus_num]->dr); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 334 | } |
| 335 | |
| 336 | return i; |
| 337 | } |
| 338 | |
| 339 | int |
| 340 | i2c_read(u8 dev, uint addr, int alen, u8 *data, int length) |
| 341 | { |
Joakim Tjernlund | f6f5f70 | 2007-01-31 11:04:19 +0100 | [diff] [blame] | 342 | int i = -1; /* signal error */ |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 343 | u8 *a = (u8*)&addr; |
| 344 | |
Jon Loeliger | 4d45f69 | 2006-10-19 12:02:24 -0500 | [diff] [blame] | 345 | if (i2c_wait4bus() >= 0 |
Joakim Tjernlund | 1939d96 | 2006-11-28 16:17:27 -0600 | [diff] [blame] | 346 | && i2c_write_addr(dev, I2C_WRITE_BIT, 0) != 0 |
Joakim Tjernlund | f6f5f70 | 2007-01-31 11:04:19 +0100 | [diff] [blame] | 347 | && __i2c_write(&a[4 - alen], alen) == alen) |
| 348 | i = 0; /* No error so far */ |
| 349 | |
| 350 | if (length |
| 351 | && i2c_write_addr(dev, I2C_READ_BIT, 1) != 0) |
Jon Loeliger | 4d45f69 | 2006-10-19 12:02:24 -0500 | [diff] [blame] | 352 | i = __i2c_read(data, length); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 353 | |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 354 | writeb(I2C_CR_MEN, &i2c_dev[i2c_bus_num]->cr); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 355 | |
Jon Loeliger | 4d45f69 | 2006-10-19 12:02:24 -0500 | [diff] [blame] | 356 | if (i == length) |
| 357 | return 0; |
| 358 | |
| 359 | return -1; |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 360 | } |
| 361 | |
| 362 | int |
| 363 | i2c_write(u8 dev, uint addr, int alen, u8 *data, int length) |
| 364 | { |
Joakim Tjernlund | f6f5f70 | 2007-01-31 11:04:19 +0100 | [diff] [blame] | 365 | int i = -1; /* signal error */ |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 366 | u8 *a = (u8*)&addr; |
| 367 | |
Jon Loeliger | 4d45f69 | 2006-10-19 12:02:24 -0500 | [diff] [blame] | 368 | if (i2c_wait4bus() >= 0 |
Joakim Tjernlund | 1939d96 | 2006-11-28 16:17:27 -0600 | [diff] [blame] | 369 | && i2c_write_addr(dev, I2C_WRITE_BIT, 0) != 0 |
Jon Loeliger | 4d45f69 | 2006-10-19 12:02:24 -0500 | [diff] [blame] | 370 | && __i2c_write(&a[4 - alen], alen) == alen) { |
| 371 | i = __i2c_write(data, length); |
| 372 | } |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 373 | |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 374 | writeb(I2C_CR_MEN, &i2c_dev[i2c_bus_num]->cr); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 375 | |
Jon Loeliger | 4d45f69 | 2006-10-19 12:02:24 -0500 | [diff] [blame] | 376 | if (i == length) |
| 377 | return 0; |
| 378 | |
| 379 | return -1; |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 380 | } |
| 381 | |
| 382 | int |
| 383 | i2c_probe(uchar chip) |
| 384 | { |
Joakim Tjernlund | f6f5f70 | 2007-01-31 11:04:19 +0100 | [diff] [blame] | 385 | /* For unknow reason the controller will ACK when |
| 386 | * probing for a slave with the same address, so skip |
| 387 | * it. |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 388 | */ |
Joakim Tjernlund | f6f5f70 | 2007-01-31 11:04:19 +0100 | [diff] [blame] | 389 | if (chip == (readb(&i2c_dev[i2c_bus_num]->adr) >> 1)) |
| 390 | return -1; |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 391 | |
Joakim Tjernlund | f6f5f70 | 2007-01-31 11:04:19 +0100 | [diff] [blame] | 392 | return i2c_read(chip, 0, 0, NULL, 0); |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 393 | } |
| 394 | |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 395 | int i2c_set_bus_num(unsigned int bus) |
| 396 | { |
Heiko Schocher | c1bce4f | 2009-02-24 11:30:37 +0100 | [diff] [blame] | 397 | #if defined(CONFIG_I2C_MUX) |
| 398 | if (bus < CONFIG_SYS_MAX_I2C_BUS) { |
| 399 | i2c_bus_num = bus; |
| 400 | } else { |
| 401 | int ret; |
| 402 | |
| 403 | ret = i2x_mux_select_mux(bus); |
| 404 | if (ret) |
| 405 | return ret; |
| 406 | i2c_bus_num = 0; |
| 407 | } |
| 408 | i2c_bus_num_mux = bus; |
| 409 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 410 | #ifdef CONFIG_SYS_I2C2_OFFSET |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 411 | if (bus > 1) { |
| 412 | #else |
| 413 | if (bus > 0) { |
| 414 | #endif |
| 415 | return -1; |
| 416 | } |
| 417 | |
| 418 | i2c_bus_num = bus; |
Heiko Schocher | c1bce4f | 2009-02-24 11:30:37 +0100 | [diff] [blame] | 419 | #endif |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 420 | return 0; |
| 421 | } |
| 422 | |
| 423 | int i2c_set_bus_speed(unsigned int speed) |
| 424 | { |
Timur Tabi | d8c82db | 2008-03-14 17:45:29 -0500 | [diff] [blame] | 425 | unsigned int i2c_clk = (i2c_bus_num == 1) ? gd->i2c2_clk : gd->i2c1_clk; |
| 426 | |
| 427 | writeb(0, &i2c_dev[i2c_bus_num]->cr); /* stop controller */ |
| 428 | i2c_bus_speed[i2c_bus_num] = |
| 429 | set_i2c_bus_speed(i2c_dev[i2c_bus_num], i2c_clk, speed); |
| 430 | writeb(I2C_CR_MEN, &i2c_dev[i2c_bus_num]->cr); /* start controller */ |
| 431 | |
| 432 | return 0; |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 433 | } |
| 434 | |
| 435 | unsigned int i2c_get_bus_num(void) |
| 436 | { |
Heiko Schocher | c1bce4f | 2009-02-24 11:30:37 +0100 | [diff] [blame] | 437 | #if defined(CONFIG_I2C_MUX) |
| 438 | return i2c_bus_num_mux; |
| 439 | #else |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 440 | return i2c_bus_num; |
Heiko Schocher | c1bce4f | 2009-02-24 11:30:37 +0100 | [diff] [blame] | 441 | #endif |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 442 | } |
| 443 | |
| 444 | unsigned int i2c_get_bus_speed(void) |
| 445 | { |
Timur Tabi | d8c82db | 2008-03-14 17:45:29 -0500 | [diff] [blame] | 446 | return i2c_bus_speed[i2c_bus_num]; |
Timur Tabi | be5e618 | 2006-11-03 19:15:00 -0600 | [diff] [blame] | 447 | } |
Timur Tabi | d8c82db | 2008-03-14 17:45:29 -0500 | [diff] [blame] | 448 | |
Jon Loeliger | 7237c03 | 2006-10-19 11:02:16 -0500 | [diff] [blame] | 449 | #endif /* CONFIG_HARD_I2C */ |