wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2000 |
| 3 | * Paolo Scaffardi, AIRVENT SAM s.p.a - RIMINI(ITALY), arsenio@tin.it |
| 4 | * |
| 5 | * (C) Copyright 2000 Sysgo Real-Time Solutions, GmbH <www.elinos.com> |
| 6 | * Marius Groeger <mgroeger@sysgo.de> |
| 7 | * |
| 8 | * (C) Copyright 2003 Pengutronix e.K. |
| 9 | * Robert Schwebel <r.schwebel@pengutronix.de> |
| 10 | * |
Lei Wen | 3df619e | 2011-04-13 23:48:31 +0530 | [diff] [blame] | 11 | * (C) Copyright 2011 Marvell Inc. |
| 12 | * Lei Wen <leiwen@marvell.com> |
| 13 | * |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 14 | * See file CREDITS for list of people who contributed to this |
| 15 | * project. |
| 16 | * |
| 17 | * This program is free software; you can redistribute it and/or |
| 18 | * modify it under the terms of the GNU General Public License as |
| 19 | * published by the Free Software Foundation; either version 2 of |
| 20 | * the License, or (at your option) any later version. |
| 21 | * |
| 22 | * This program is distributed in the hope that it will be useful, |
| 23 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 24 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 25 | * GNU General Public License for more details. |
| 26 | * |
| 27 | * You should have received a copy of the GNU General Public License |
| 28 | * along with this program; if not, write to the Free Software |
| 29 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 30 | * MA 02111-1307 USA |
| 31 | * |
| 32 | * Back ported to the 8xx platform (from the 8260 platform) by |
| 33 | * Murray.Jensen@cmst.csiro.au, 27-Jan-01. |
| 34 | */ |
| 35 | |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 36 | #include <common.h> |
Marek Vasut | 3ba8bf7 | 2010-09-09 09:50:39 +0200 | [diff] [blame] | 37 | #include <asm/io.h> |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 38 | |
| 39 | #ifdef CONFIG_HARD_I2C |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 40 | #include <i2c.h> |
Lei Wen | 3df619e | 2011-04-13 23:48:31 +0530 | [diff] [blame] | 41 | #include "mv_i2c.h" |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 42 | |
| 43 | #ifdef DEBUG_I2C |
| 44 | #define PRINTD(x) printf x |
| 45 | #else |
| 46 | #define PRINTD(x) |
| 47 | #endif |
| 48 | |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 49 | /* All transfers are described by this data structure */ |
| 50 | struct i2c_msg { |
| 51 | u8 condition; |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 52 | u8 acknack; |
| 53 | u8 direction; |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 54 | u8 data; |
| 55 | }; |
| 56 | |
Lei Wen | 3df619e | 2011-04-13 23:48:31 +0530 | [diff] [blame] | 57 | struct mv_i2c { |
| 58 | u32 ibmr; |
| 59 | u32 pad0; |
| 60 | u32 idbr; |
| 61 | u32 pad1; |
| 62 | u32 icr; |
| 63 | u32 pad2; |
| 64 | u32 isr; |
| 65 | u32 pad3; |
| 66 | u32 isar; |
| 67 | }; |
| 68 | |
Lei Wen | adb00bb | 2011-04-13 23:48:39 +0530 | [diff] [blame] | 69 | static struct mv_i2c *base; |
Lei Wen | d308c9d | 2011-09-30 05:44:12 +0000 | [diff] [blame] | 70 | static void i2c_board_init(struct mv_i2c *base) |
| 71 | { |
| 72 | #ifdef CONFIG_SYS_I2C_INIT_BOARD |
| 73 | u32 icr; |
| 74 | /* |
| 75 | * call board specific i2c bus reset routine before accessing the |
| 76 | * environment, which might be in a chip on that bus. For details |
| 77 | * about this problem see doc/I2C_Edge_Conditions. |
| 78 | * |
| 79 | * disable I2C controller first, otherwhise it thinks we want to |
| 80 | * talk to the slave port... |
| 81 | */ |
| 82 | icr = readl(&base->icr); |
| 83 | writel(readl(&base->icr) & ~(ICR_SCLE | ICR_IUE), &base->icr); |
| 84 | |
| 85 | i2c_init_board(); |
| 86 | |
| 87 | writel(icr, &base->icr); |
| 88 | #endif |
| 89 | } |
| 90 | |
Lei Wen | adb00bb | 2011-04-13 23:48:39 +0530 | [diff] [blame] | 91 | #ifdef CONFIG_I2C_MULTI_BUS |
| 92 | static u32 i2c_regs[CONFIG_MV_I2C_NUM] = CONFIG_MV_I2C_REG; |
| 93 | static unsigned int bus_initialized[CONFIG_MV_I2C_NUM]; |
| 94 | static unsigned int current_bus; |
| 95 | |
| 96 | int i2c_set_bus_num(unsigned int bus) |
| 97 | { |
| 98 | if ((bus < 0) || (bus >= CONFIG_MV_I2C_NUM)) { |
| 99 | printf("Bad bus: %d\n", bus); |
| 100 | return -1; |
| 101 | } |
| 102 | |
| 103 | base = (struct mv_i2c *)i2c_regs[bus]; |
| 104 | current_bus = bus; |
| 105 | |
| 106 | if (!bus_initialized[current_bus]) { |
Lei Wen | d308c9d | 2011-09-30 05:44:12 +0000 | [diff] [blame] | 107 | i2c_board_init(base); |
Lei Wen | adb00bb | 2011-04-13 23:48:39 +0530 | [diff] [blame] | 108 | bus_initialized[current_bus] = 1; |
| 109 | } |
| 110 | |
| 111 | return 0; |
| 112 | } |
| 113 | |
| 114 | unsigned int i2c_get_bus_num(void) |
| 115 | { |
| 116 | return current_bus; |
| 117 | } |
| 118 | #endif |
Lei Wen | 3df619e | 2011-04-13 23:48:31 +0530 | [diff] [blame] | 119 | |
Lei Wen | 68432c2 | 2011-04-13 23:48:16 +0530 | [diff] [blame] | 120 | /* |
Lei Wen | 3df619e | 2011-04-13 23:48:31 +0530 | [diff] [blame] | 121 | * i2c_reset: - reset the host controller |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 122 | * |
| 123 | */ |
Lei Wen | 68432c2 | 2011-04-13 23:48:16 +0530 | [diff] [blame] | 124 | static void i2c_reset(void) |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 125 | { |
Lei Wen | 3df619e | 2011-04-13 23:48:31 +0530 | [diff] [blame] | 126 | writel(readl(&base->icr) & ~ICR_IUE, &base->icr); /* disable unit */ |
| 127 | writel(readl(&base->icr) | ICR_UR, &base->icr); /* reset the unit */ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 128 | udelay(100); |
Lei Wen | 3df619e | 2011-04-13 23:48:31 +0530 | [diff] [blame] | 129 | writel(readl(&base->icr) & ~ICR_IUE, &base->icr); /* disable unit */ |
| 130 | |
| 131 | i2c_clk_enable(); |
| 132 | |
| 133 | writel(CONFIG_SYS_I2C_SLAVE, &base->isar); /* set our slave address */ |
| 134 | writel(I2C_ICR_INIT, &base->icr); /* set control reg values */ |
| 135 | writel(I2C_ISR_INIT, &base->isr); /* set clear interrupt bits */ |
| 136 | writel(readl(&base->icr) | ICR_IUE, &base->icr); /* enable unit */ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 137 | udelay(100); |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 138 | } |
| 139 | |
Lei Wen | 68432c2 | 2011-04-13 23:48:16 +0530 | [diff] [blame] | 140 | /* |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 141 | * i2c_isr_set_cleared: - wait until certain bits of the I2C status register |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 142 | * are set and cleared |
| 143 | * |
Markus Klotzbuecher | ba70d6a | 2006-03-24 12:23:27 +0100 | [diff] [blame] | 144 | * @return: 1 in case of success, 0 means timeout (no match within 10 ms). |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 145 | */ |
Lei Wen | 68432c2 | 2011-04-13 23:48:16 +0530 | [diff] [blame] | 146 | static int i2c_isr_set_cleared(unsigned long set_mask, |
| 147 | unsigned long cleared_mask) |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 148 | { |
Lei Wen | 3df619e | 2011-04-13 23:48:31 +0530 | [diff] [blame] | 149 | int timeout = 1000, isr; |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 150 | |
Lei Wen | 3df619e | 2011-04-13 23:48:31 +0530 | [diff] [blame] | 151 | do { |
| 152 | isr = readl(&base->isr); |
Lei Wen | 68432c2 | 2011-04-13 23:48:16 +0530 | [diff] [blame] | 153 | udelay(10); |
| 154 | if (timeout-- < 0) |
| 155 | return 0; |
Lei Wen | 3df619e | 2011-04-13 23:48:31 +0530 | [diff] [blame] | 156 | } while (((isr & set_mask) != set_mask) |
| 157 | || ((isr & cleared_mask) != 0)); |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 158 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 159 | return 1; |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 160 | } |
| 161 | |
Lei Wen | 68432c2 | 2011-04-13 23:48:16 +0530 | [diff] [blame] | 162 | /* |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 163 | * i2c_transfer: - Transfer one byte over the i2c bus |
| 164 | * |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 165 | * This function can tranfer a byte over the i2c bus in both directions. |
| 166 | * It is used by the public API functions. |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 167 | * |
| 168 | * @return: 0: transfer successful |
| 169 | * -1: message is empty |
| 170 | * -2: transmit timeout |
| 171 | * -3: ACK missing |
| 172 | * -4: receive timeout |
| 173 | * -5: illegal parameters |
| 174 | * -6: bus is busy and couldn't be aquired |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 175 | */ |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 176 | int i2c_transfer(struct i2c_msg *msg) |
| 177 | { |
| 178 | int ret; |
| 179 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 180 | if (!msg) |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 181 | goto transfer_error_msg_empty; |
| 182 | |
Lei Wen | 68432c2 | 2011-04-13 23:48:16 +0530 | [diff] [blame] | 183 | switch (msg->direction) { |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 184 | case I2C_WRITE: |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 185 | /* check if bus is not busy */ |
Lei Wen | 68432c2 | 2011-04-13 23:48:16 +0530 | [diff] [blame] | 186 | if (!i2c_isr_set_cleared(0, ISR_IBB)) |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 187 | goto transfer_error_bus_busy; |
| 188 | |
| 189 | /* start transmission */ |
Lei Wen | 3df619e | 2011-04-13 23:48:31 +0530 | [diff] [blame] | 190 | writel(readl(&base->icr) & ~ICR_START, &base->icr); |
| 191 | writel(readl(&base->icr) & ~ICR_STOP, &base->icr); |
| 192 | writel(msg->data, &base->idbr); |
Marek Vasut | 3ba8bf7 | 2010-09-09 09:50:39 +0200 | [diff] [blame] | 193 | if (msg->condition == I2C_COND_START) |
Lei Wen | 3df619e | 2011-04-13 23:48:31 +0530 | [diff] [blame] | 194 | writel(readl(&base->icr) | ICR_START, &base->icr); |
Marek Vasut | 3ba8bf7 | 2010-09-09 09:50:39 +0200 | [diff] [blame] | 195 | if (msg->condition == I2C_COND_STOP) |
Lei Wen | 3df619e | 2011-04-13 23:48:31 +0530 | [diff] [blame] | 196 | writel(readl(&base->icr) | ICR_STOP, &base->icr); |
Marek Vasut | 3ba8bf7 | 2010-09-09 09:50:39 +0200 | [diff] [blame] | 197 | if (msg->acknack == I2C_ACKNAK_SENDNAK) |
Lei Wen | 3df619e | 2011-04-13 23:48:31 +0530 | [diff] [blame] | 198 | writel(readl(&base->icr) | ICR_ACKNAK, &base->icr); |
Marek Vasut | 3ba8bf7 | 2010-09-09 09:50:39 +0200 | [diff] [blame] | 199 | if (msg->acknack == I2C_ACKNAK_SENDACK) |
Lei Wen | 3df619e | 2011-04-13 23:48:31 +0530 | [diff] [blame] | 200 | writel(readl(&base->icr) & ~ICR_ACKNAK, &base->icr); |
| 201 | writel(readl(&base->icr) & ~ICR_ALDIE, &base->icr); |
| 202 | writel(readl(&base->icr) | ICR_TB, &base->icr); |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 203 | |
| 204 | /* transmit register empty? */ |
Lei Wen | 68432c2 | 2011-04-13 23:48:16 +0530 | [diff] [blame] | 205 | if (!i2c_isr_set_cleared(ISR_ITE, 0)) |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 206 | goto transfer_error_transmit_timeout; |
| 207 | |
| 208 | /* clear 'transmit empty' state */ |
Lei Wen | 3df619e | 2011-04-13 23:48:31 +0530 | [diff] [blame] | 209 | writel(readl(&base->isr) | ISR_ITE, &base->isr); |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 210 | |
| 211 | /* wait for ACK from slave */ |
| 212 | if (msg->acknack == I2C_ACKNAK_WAITACK) |
Lei Wen | 68432c2 | 2011-04-13 23:48:16 +0530 | [diff] [blame] | 213 | if (!i2c_isr_set_cleared(0, ISR_ACKNAK)) |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 214 | goto transfer_error_ack_missing; |
| 215 | break; |
| 216 | |
| 217 | case I2C_READ: |
| 218 | |
| 219 | /* check if bus is not busy */ |
Lei Wen | 68432c2 | 2011-04-13 23:48:16 +0530 | [diff] [blame] | 220 | if (!i2c_isr_set_cleared(0, ISR_IBB)) |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 221 | goto transfer_error_bus_busy; |
| 222 | |
| 223 | /* start receive */ |
Lei Wen | 3df619e | 2011-04-13 23:48:31 +0530 | [diff] [blame] | 224 | writel(readl(&base->icr) & ~ICR_START, &base->icr); |
| 225 | writel(readl(&base->icr) & ~ICR_STOP, &base->icr); |
Marek Vasut | 3ba8bf7 | 2010-09-09 09:50:39 +0200 | [diff] [blame] | 226 | if (msg->condition == I2C_COND_START) |
Lei Wen | 3df619e | 2011-04-13 23:48:31 +0530 | [diff] [blame] | 227 | writel(readl(&base->icr) | ICR_START, &base->icr); |
Marek Vasut | 3ba8bf7 | 2010-09-09 09:50:39 +0200 | [diff] [blame] | 228 | if (msg->condition == I2C_COND_STOP) |
Lei Wen | 3df619e | 2011-04-13 23:48:31 +0530 | [diff] [blame] | 229 | writel(readl(&base->icr) | ICR_STOP, &base->icr); |
Marek Vasut | 3ba8bf7 | 2010-09-09 09:50:39 +0200 | [diff] [blame] | 230 | if (msg->acknack == I2C_ACKNAK_SENDNAK) |
Lei Wen | 3df619e | 2011-04-13 23:48:31 +0530 | [diff] [blame] | 231 | writel(readl(&base->icr) | ICR_ACKNAK, &base->icr); |
Marek Vasut | 3ba8bf7 | 2010-09-09 09:50:39 +0200 | [diff] [blame] | 232 | if (msg->acknack == I2C_ACKNAK_SENDACK) |
Lei Wen | 3df619e | 2011-04-13 23:48:31 +0530 | [diff] [blame] | 233 | writel(readl(&base->icr) & ~ICR_ACKNAK, &base->icr); |
| 234 | writel(readl(&base->icr) & ~ICR_ALDIE, &base->icr); |
| 235 | writel(readl(&base->icr) | ICR_TB, &base->icr); |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 236 | |
| 237 | /* receive register full? */ |
Lei Wen | 68432c2 | 2011-04-13 23:48:16 +0530 | [diff] [blame] | 238 | if (!i2c_isr_set_cleared(ISR_IRF, 0)) |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 239 | goto transfer_error_receive_timeout; |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 240 | |
Lei Wen | 3df619e | 2011-04-13 23:48:31 +0530 | [diff] [blame] | 241 | msg->data = readl(&base->idbr); |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 242 | |
| 243 | /* clear 'receive empty' state */ |
Lei Wen | 3df619e | 2011-04-13 23:48:31 +0530 | [diff] [blame] | 244 | writel(readl(&base->isr) | ISR_IRF, &base->isr); |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 245 | break; |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 246 | default: |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 247 | goto transfer_error_illegal_param; |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 248 | } |
| 249 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 250 | return 0; |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 251 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 252 | transfer_error_msg_empty: |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 253 | PRINTD(("i2c_transfer: error: 'msg' is empty\n")); |
| 254 | ret = -1; goto i2c_transfer_finish; |
| 255 | |
| 256 | transfer_error_transmit_timeout: |
| 257 | PRINTD(("i2c_transfer: error: transmit timeout\n")); |
| 258 | ret = -2; goto i2c_transfer_finish; |
| 259 | |
| 260 | transfer_error_ack_missing: |
| 261 | PRINTD(("i2c_transfer: error: ACK missing\n")); |
| 262 | ret = -3; goto i2c_transfer_finish; |
| 263 | |
| 264 | transfer_error_receive_timeout: |
| 265 | PRINTD(("i2c_transfer: error: receive timeout\n")); |
| 266 | ret = -4; goto i2c_transfer_finish; |
| 267 | |
| 268 | transfer_error_illegal_param: |
| 269 | PRINTD(("i2c_transfer: error: illegal parameters\n")); |
| 270 | ret = -5; goto i2c_transfer_finish; |
| 271 | |
| 272 | transfer_error_bus_busy: |
| 273 | PRINTD(("i2c_transfer: error: bus is busy\n")); |
| 274 | ret = -6; goto i2c_transfer_finish; |
| 275 | |
| 276 | i2c_transfer_finish: |
Lei Wen | 2be1ed3 | 2011-09-30 05:43:48 +0000 | [diff] [blame] | 277 | PRINTD(("i2c_transfer: ISR: 0x%04x\n", readl(&base->isr))); |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 278 | i2c_reset(); |
| 279 | return ret; |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 280 | } |
| 281 | |
| 282 | /* ------------------------------------------------------------------------ */ |
| 283 | /* API Functions */ |
| 284 | /* ------------------------------------------------------------------------ */ |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 285 | void i2c_init(int speed, int slaveaddr) |
| 286 | { |
Lei Wen | adb00bb | 2011-04-13 23:48:39 +0530 | [diff] [blame] | 287 | #ifdef CONFIG_I2C_MULTI_BUS |
Lei Wen | d308c9d | 2011-09-30 05:44:12 +0000 | [diff] [blame] | 288 | current_bus = 0; |
Lei Wen | adb00bb | 2011-04-13 23:48:39 +0530 | [diff] [blame] | 289 | base = (struct mv_i2c *)i2c_regs[current_bus]; |
| 290 | #else |
| 291 | base = (struct mv_i2c *)CONFIG_MV_I2C_REG; |
| 292 | #endif |
| 293 | |
Lei Wen | d308c9d | 2011-09-30 05:44:12 +0000 | [diff] [blame] | 294 | i2c_board_init(base); |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 295 | } |
| 296 | |
Lei Wen | 68432c2 | 2011-04-13 23:48:16 +0530 | [diff] [blame] | 297 | /* |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 298 | * i2c_probe: - Test if a chip answers for a given i2c address |
| 299 | * |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 300 | * @chip: address of the chip which is searched for |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 301 | * @return: 0 if a chip was found, -1 otherwhise |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 302 | */ |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 303 | int i2c_probe(uchar chip) |
| 304 | { |
| 305 | struct i2c_msg msg; |
| 306 | |
| 307 | i2c_reset(); |
| 308 | |
| 309 | msg.condition = I2C_COND_START; |
| 310 | msg.acknack = I2C_ACKNAK_WAITACK; |
| 311 | msg.direction = I2C_WRITE; |
| 312 | msg.data = (chip << 1) + 1; |
Lei Wen | 68432c2 | 2011-04-13 23:48:16 +0530 | [diff] [blame] | 313 | if (i2c_transfer(&msg)) |
| 314 | return -1; |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 315 | |
| 316 | msg.condition = I2C_COND_STOP; |
| 317 | msg.acknack = I2C_ACKNAK_SENDNAK; |
| 318 | msg.direction = I2C_READ; |
| 319 | msg.data = 0x00; |
Lei Wen | 68432c2 | 2011-04-13 23:48:16 +0530 | [diff] [blame] | 320 | if (i2c_transfer(&msg)) |
| 321 | return -1; |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 322 | |
| 323 | return 0; |
| 324 | } |
| 325 | |
Lei Wen | 68432c2 | 2011-04-13 23:48:16 +0530 | [diff] [blame] | 326 | /* |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 327 | * i2c_read: - Read multiple bytes from an i2c device |
| 328 | * |
| 329 | * The higher level routines take into account that this function is only |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 330 | * called with len < page length of the device (see configuration file) |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 331 | * |
| 332 | * @chip: address of the chip which is to be read |
| 333 | * @addr: i2c data address within the chip |
| 334 | * @alen: length of the i2c data address (1..2 bytes) |
| 335 | * @buffer: where to write the data |
| 336 | * @len: how much byte do we want to read |
| 337 | * @return: 0 in case of success |
| 338 | */ |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 339 | int i2c_read(uchar chip, uint addr, int alen, uchar *buffer, int len) |
| 340 | { |
| 341 | struct i2c_msg msg; |
| 342 | u8 addr_bytes[3]; /* lowest...highest byte of data address */ |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 343 | |
Lei Wen | 68432c2 | 2011-04-13 23:48:16 +0530 | [diff] [blame] | 344 | PRINTD(("i2c_read(chip=0x%02x, addr=0x%02x, alen=0x%02x, " |
| 345 | "len=0x%02x)\n", chip, addr, alen, len)); |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 346 | |
| 347 | i2c_reset(); |
| 348 | |
| 349 | /* dummy chip address write */ |
| 350 | PRINTD(("i2c_read: dummy chip address write\n")); |
| 351 | msg.condition = I2C_COND_START; |
| 352 | msg.acknack = I2C_ACKNAK_WAITACK; |
| 353 | msg.direction = I2C_WRITE; |
Lei Wen | 68432c2 | 2011-04-13 23:48:16 +0530 | [diff] [blame] | 354 | msg.data = (chip << 1); |
| 355 | msg.data &= 0xFE; |
| 356 | if (i2c_transfer(&msg)) |
| 357 | return -1; |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 358 | |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 359 | /* |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 360 | * send memory address bytes; |
| 361 | * alen defines how much bytes we have to send. |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 362 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 363 | /*addr &= ((1 << CONFIG_SYS_EEPROM_PAGE_WRITE_BITS)-1); */ |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 364 | addr_bytes[0] = (u8)((addr >> 0) & 0x000000FF); |
| 365 | addr_bytes[1] = (u8)((addr >> 8) & 0x000000FF); |
| 366 | addr_bytes[2] = (u8)((addr >> 16) & 0x000000FF); |
| 367 | |
| 368 | while (--alen >= 0) { |
Lei Wen | 68432c2 | 2011-04-13 23:48:16 +0530 | [diff] [blame] | 369 | PRINTD(("i2c_read: send memory word address byte %1d\n", alen)); |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 370 | msg.condition = I2C_COND_NORMAL; |
| 371 | msg.acknack = I2C_ACKNAK_WAITACK; |
| 372 | msg.direction = I2C_WRITE; |
| 373 | msg.data = addr_bytes[alen]; |
Lei Wen | 68432c2 | 2011-04-13 23:48:16 +0530 | [diff] [blame] | 374 | if (i2c_transfer(&msg)) |
| 375 | return -1; |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 376 | } |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 377 | |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 378 | /* start read sequence */ |
| 379 | PRINTD(("i2c_read: start read sequence\n")); |
| 380 | msg.condition = I2C_COND_START; |
| 381 | msg.acknack = I2C_ACKNAK_WAITACK; |
| 382 | msg.direction = I2C_WRITE; |
| 383 | msg.data = (chip << 1); |
| 384 | msg.data |= 0x01; |
Lei Wen | 68432c2 | 2011-04-13 23:48:16 +0530 | [diff] [blame] | 385 | if (i2c_transfer(&msg)) |
| 386 | return -1; |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 387 | |
| 388 | /* read bytes; send NACK at last byte */ |
| 389 | while (len--) { |
Lei Wen | 68432c2 | 2011-04-13 23:48:16 +0530 | [diff] [blame] | 390 | if (len == 0) { |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 391 | msg.condition = I2C_COND_STOP; |
| 392 | msg.acknack = I2C_ACKNAK_SENDNAK; |
| 393 | } else { |
| 394 | msg.condition = I2C_COND_NORMAL; |
| 395 | msg.acknack = I2C_ACKNAK_SENDACK; |
| 396 | } |
| 397 | |
| 398 | msg.direction = I2C_READ; |
| 399 | msg.data = 0x00; |
Lei Wen | 68432c2 | 2011-04-13 23:48:16 +0530 | [diff] [blame] | 400 | if (i2c_transfer(&msg)) |
| 401 | return -1; |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 402 | |
Markus Klotzbuecher | ba70d6a | 2006-03-24 12:23:27 +0100 | [diff] [blame] | 403 | *buffer = msg.data; |
Lei Wen | 68432c2 | 2011-04-13 23:48:16 +0530 | [diff] [blame] | 404 | PRINTD(("i2c_read: reading byte (0x%08x)=0x%02x\n", |
| 405 | (unsigned int)buffer, *buffer)); |
Markus Klotzbuecher | ba70d6a | 2006-03-24 12:23:27 +0100 | [diff] [blame] | 406 | buffer++; |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 407 | } |
| 408 | |
| 409 | i2c_reset(); |
| 410 | |
| 411 | return 0; |
| 412 | } |
| 413 | |
Lei Wen | 68432c2 | 2011-04-13 23:48:16 +0530 | [diff] [blame] | 414 | /* |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 415 | * i2c_write: - Write multiple bytes to an i2c device |
| 416 | * |
| 417 | * The higher level routines take into account that this function is only |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 418 | * called with len < page length of the device (see configuration file) |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 419 | * |
| 420 | * @chip: address of the chip which is to be written |
| 421 | * @addr: i2c data address within the chip |
| 422 | * @alen: length of the i2c data address (1..2 bytes) |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 423 | * @buffer: where to find the data to be written |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 424 | * @len: how much byte do we want to read |
| 425 | * @return: 0 in case of success |
| 426 | */ |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 427 | int i2c_write(uchar chip, uint addr, int alen, uchar *buffer, int len) |
| 428 | { |
| 429 | struct i2c_msg msg; |
| 430 | u8 addr_bytes[3]; /* lowest...highest byte of data address */ |
| 431 | |
Lei Wen | 68432c2 | 2011-04-13 23:48:16 +0530 | [diff] [blame] | 432 | PRINTD(("i2c_write(chip=0x%02x, addr=0x%02x, alen=0x%02x, " |
| 433 | "len=0x%02x)\n", chip, addr, alen, len)); |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 434 | |
| 435 | i2c_reset(); |
| 436 | |
| 437 | /* chip address write */ |
| 438 | PRINTD(("i2c_write: chip address write\n")); |
| 439 | msg.condition = I2C_COND_START; |
| 440 | msg.acknack = I2C_ACKNAK_WAITACK; |
| 441 | msg.direction = I2C_WRITE; |
Lei Wen | 68432c2 | 2011-04-13 23:48:16 +0530 | [diff] [blame] | 442 | msg.data = (chip << 1); |
| 443 | msg.data &= 0xFE; |
| 444 | if (i2c_transfer(&msg)) |
| 445 | return -1; |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 446 | |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 447 | /* |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 448 | * send memory address bytes; |
| 449 | * alen defines how much bytes we have to send. |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 450 | */ |
| 451 | addr_bytes[0] = (u8)((addr >> 0) & 0x000000FF); |
| 452 | addr_bytes[1] = (u8)((addr >> 8) & 0x000000FF); |
| 453 | addr_bytes[2] = (u8)((addr >> 16) & 0x000000FF); |
| 454 | |
| 455 | while (--alen >= 0) { |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 456 | PRINTD(("i2c_write: send memory word address\n")); |
| 457 | msg.condition = I2C_COND_NORMAL; |
| 458 | msg.acknack = I2C_ACKNAK_WAITACK; |
| 459 | msg.direction = I2C_WRITE; |
| 460 | msg.data = addr_bytes[alen]; |
Lei Wen | 68432c2 | 2011-04-13 23:48:16 +0530 | [diff] [blame] | 461 | if (i2c_transfer(&msg)) |
| 462 | return -1; |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 463 | } |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 464 | |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 465 | /* write bytes; send NACK at last byte */ |
| 466 | while (len--) { |
Lei Wen | 68432c2 | 2011-04-13 23:48:16 +0530 | [diff] [blame] | 467 | PRINTD(("i2c_write: writing byte (0x%08x)=0x%02x\n", |
| 468 | (unsigned int)buffer, *buffer)); |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 469 | |
Lei Wen | 68432c2 | 2011-04-13 23:48:16 +0530 | [diff] [blame] | 470 | if (len == 0) |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 471 | msg.condition = I2C_COND_STOP; |
| 472 | else |
| 473 | msg.condition = I2C_COND_NORMAL; |
| 474 | |
| 475 | msg.acknack = I2C_ACKNAK_WAITACK; |
| 476 | msg.direction = I2C_WRITE; |
| 477 | msg.data = *(buffer++); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 478 | |
Lei Wen | 68432c2 | 2011-04-13 23:48:16 +0530 | [diff] [blame] | 479 | if (i2c_transfer(&msg)) |
| 480 | return -1; |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 481 | } |
| 482 | |
| 483 | i2c_reset(); |
| 484 | |
| 485 | return 0; |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 486 | } |
wdenk | 43d9616 | 2003-03-06 00:02:04 +0000 | [diff] [blame] | 487 | #endif /* CONFIG_HARD_I2C */ |