Stefan Roese | 79b2d0b | 2007-02-20 10:27:08 +0100 | [diff] [blame] | 1 | /* |
Stefan Roese | eb5eb2b | 2009-11-19 14:03:17 +0100 | [diff] [blame] | 2 | * (C) Copyright 2007-2009 |
Stefan Roese | 79b2d0b | 2007-02-20 10:27:08 +0100 | [diff] [blame] | 3 | * Stefan Roese, DENX Software Engineering, sr@denx.de. |
| 4 | * |
| 5 | * based on work by Anne Sophie Harnois <anne-sophie.harnois@nextream.fr> |
| 6 | * |
| 7 | * (C) Copyright 2001 |
| 8 | * Bill Hunter, Wave 7 Optics, williamhunter@mediaone.net |
| 9 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 10 | * SPDX-License-Identifier: GPL-2.0+ |
Stefan Roese | 79b2d0b | 2007-02-20 10:27:08 +0100 | [diff] [blame] | 11 | */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 12 | |
| 13 | #include <common.h> |
Stefan Roese | b36df56 | 2010-09-09 19:18:00 +0200 | [diff] [blame] | 14 | #include <asm/ppc4xx.h> |
| 15 | #include <asm/ppc4xx-i2c.h> |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 16 | #include <i2c.h> |
Peter Tyser | 61f2b38 | 2010-04-12 22:28:07 -0500 | [diff] [blame] | 17 | #include <asm/io.h> |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 18 | |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 19 | DECLARE_GLOBAL_DATA_PTR; |
| 20 | |
Dirk Eibach | 880540d | 2013-04-25 02:40:01 +0000 | [diff] [blame] | 21 | static inline struct ppc4xx_i2c *ppc4xx_get_i2c(int hwadapnr) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 22 | { |
Dirk Eibach | 880540d | 2013-04-25 02:40:01 +0000 | [diff] [blame] | 23 | unsigned long base; |
| 24 | |
| 25 | #if defined(CONFIG_440EP) || defined(CONFIG_440GR) || \ |
| 26 | defined(CONFIG_440EPX) || defined(CONFIG_440GRX) || \ |
| 27 | defined(CONFIG_460EX) || defined(CONFIG_460GT) |
| 28 | base = CONFIG_SYS_PERIPHERAL_BASE + 0x00000700 + (hwadapnr * 0x100); |
| 29 | #elif defined(CONFIG_440) || defined(CONFIG_405EX) |
| 30 | /* all remaining 440 variants */ |
| 31 | base = CONFIG_SYS_PERIPHERAL_BASE + 0x00000400 + (hwadapnr * 0x100); |
| 32 | #else |
| 33 | /* all 405 variants */ |
| 34 | base = 0xEF600500 + (hwadapnr * 0x100); |
| 35 | #endif |
| 36 | return (struct ppc4xx_i2c *)base; |
| 37 | } |
| 38 | |
| 39 | static void _i2c_bus_reset(struct i2c_adapter *adap) |
| 40 | { |
| 41 | struct ppc4xx_i2c *i2c = ppc4xx_get_i2c(adap->hwadapnr); |
Stefan Roese | 79b2d0b | 2007-02-20 10:27:08 +0100 | [diff] [blame] | 42 | int i; |
| 43 | u8 dc; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 44 | |
| 45 | /* Reset status register */ |
| 46 | /* write 1 in SCMP and IRQA to clear these fields */ |
Stefan Roese | eb5eb2b | 2009-11-19 14:03:17 +0100 | [diff] [blame] | 47 | out_8(&i2c->sts, 0x0A); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 48 | |
| 49 | /* write 1 in IRQP IRQD LA ICT XFRA to clear these fields */ |
Stefan Roese | eb5eb2b | 2009-11-19 14:03:17 +0100 | [diff] [blame] | 50 | out_8(&i2c->extsts, 0x8F); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 51 | |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 52 | /* Place chip in the reset state */ |
Stefan Roese | eb5eb2b | 2009-11-19 14:03:17 +0100 | [diff] [blame] | 53 | out_8(&i2c->xtcntlss, IIC_XTCNTLSS_SRST); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 54 | |
Stefan Roese | 79b2d0b | 2007-02-20 10:27:08 +0100 | [diff] [blame] | 55 | /* Check if bus is free */ |
Stefan Roese | eb5eb2b | 2009-11-19 14:03:17 +0100 | [diff] [blame] | 56 | dc = in_8(&i2c->directcntl); |
Stefan Roese | 79b2d0b | 2007-02-20 10:27:08 +0100 | [diff] [blame] | 57 | if (!DIRCTNL_FREE(dc)){ |
| 58 | /* Try to set bus free state */ |
Stefan Roese | eb5eb2b | 2009-11-19 14:03:17 +0100 | [diff] [blame] | 59 | out_8(&i2c->directcntl, IIC_DIRCNTL_SDAC | IIC_DIRCNTL_SCC); |
Stefan Roese | 79b2d0b | 2007-02-20 10:27:08 +0100 | [diff] [blame] | 60 | |
| 61 | /* Wait until we regain bus control */ |
| 62 | for (i = 0; i < 100; ++i) { |
Stefan Roese | eb5eb2b | 2009-11-19 14:03:17 +0100 | [diff] [blame] | 63 | dc = in_8(&i2c->directcntl); |
Stefan Roese | 79b2d0b | 2007-02-20 10:27:08 +0100 | [diff] [blame] | 64 | if (DIRCTNL_FREE(dc)) |
| 65 | break; |
| 66 | |
| 67 | /* Toggle SCL line */ |
| 68 | dc ^= IIC_DIRCNTL_SCC; |
Stefan Roese | eb5eb2b | 2009-11-19 14:03:17 +0100 | [diff] [blame] | 69 | out_8(&i2c->directcntl, dc); |
Stefan Roese | 79b2d0b | 2007-02-20 10:27:08 +0100 | [diff] [blame] | 70 | udelay(10); |
| 71 | dc ^= IIC_DIRCNTL_SCC; |
Stefan Roese | eb5eb2b | 2009-11-19 14:03:17 +0100 | [diff] [blame] | 72 | out_8(&i2c->directcntl, dc); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 73 | } |
| 74 | } |
Stefan Roese | 79b2d0b | 2007-02-20 10:27:08 +0100 | [diff] [blame] | 75 | |
| 76 | /* Remove reset */ |
Stefan Roese | eb5eb2b | 2009-11-19 14:03:17 +0100 | [diff] [blame] | 77 | out_8(&i2c->xtcntlss, 0); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 78 | } |
| 79 | |
Dirk Eibach | 880540d | 2013-04-25 02:40:01 +0000 | [diff] [blame] | 80 | static void ppc4xx_i2c_init(struct i2c_adapter *adap, int speed, int slaveaddr) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 81 | { |
Dirk Eibach | 880540d | 2013-04-25 02:40:01 +0000 | [diff] [blame] | 82 | struct ppc4xx_i2c *i2c = ppc4xx_get_i2c(adap->hwadapnr); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 83 | int val, divisor; |
| 84 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 85 | #ifdef CONFIG_SYS_I2C_INIT_BOARD |
Stefan Roese | eb5eb2b | 2009-11-19 14:03:17 +0100 | [diff] [blame] | 86 | /* |
| 87 | * Call board specific i2c bus reset routine before accessing the |
| 88 | * environment, which might be in a chip on that bus. For details |
| 89 | * about this problem see doc/I2C_Edge_Conditions. |
| 90 | */ |
wdenk | 47cd00f | 2003-03-06 13:39:27 +0000 | [diff] [blame] | 91 | i2c_init_board(); |
| 92 | #endif |
| 93 | |
Dirk Eibach | 880540d | 2013-04-25 02:40:01 +0000 | [diff] [blame] | 94 | /* Handle possible failed I2C state */ |
| 95 | /* FIXME: put this into i2c_init_board()? */ |
| 96 | _i2c_bus_reset(adap); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 97 | |
Dirk Eibach | 880540d | 2013-04-25 02:40:01 +0000 | [diff] [blame] | 98 | /* clear lo master address */ |
| 99 | out_8(&i2c->lmadr, 0); |
Stefan Roese | 1a332da | 2010-03-29 15:30:46 +0200 | [diff] [blame] | 100 | |
Dirk Eibach | 880540d | 2013-04-25 02:40:01 +0000 | [diff] [blame] | 101 | /* clear hi master address */ |
| 102 | out_8(&i2c->hmadr, 0); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 103 | |
Dirk Eibach | 880540d | 2013-04-25 02:40:01 +0000 | [diff] [blame] | 104 | /* clear lo slave address */ |
| 105 | out_8(&i2c->lsadr, 0); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 106 | |
Dirk Eibach | 880540d | 2013-04-25 02:40:01 +0000 | [diff] [blame] | 107 | /* clear hi slave address */ |
| 108 | out_8(&i2c->hsadr, 0); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 109 | |
Dirk Eibach | 880540d | 2013-04-25 02:40:01 +0000 | [diff] [blame] | 110 | /* Clock divide Register */ |
| 111 | /* set divisor according to freq_opb */ |
| 112 | divisor = (get_OPB_freq() - 1) / 10000000; |
| 113 | if (divisor == 0) |
| 114 | divisor = 1; |
| 115 | out_8(&i2c->clkdiv, divisor); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 116 | |
Dirk Eibach | 880540d | 2013-04-25 02:40:01 +0000 | [diff] [blame] | 117 | /* no interrupts */ |
| 118 | out_8(&i2c->intrmsk, 0); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 119 | |
Dirk Eibach | 880540d | 2013-04-25 02:40:01 +0000 | [diff] [blame] | 120 | /* clear transfer count */ |
| 121 | out_8(&i2c->xfrcnt, 0); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 122 | |
Dirk Eibach | 880540d | 2013-04-25 02:40:01 +0000 | [diff] [blame] | 123 | /* clear extended control & stat */ |
| 124 | /* write 1 in SRC SRS SWC SWS to clear these fields */ |
| 125 | out_8(&i2c->xtcntlss, 0xF0); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 126 | |
Dirk Eibach | 880540d | 2013-04-25 02:40:01 +0000 | [diff] [blame] | 127 | /* Mode Control Register |
| 128 | Flush Slave/Master data buffer */ |
| 129 | out_8(&i2c->mdcntl, IIC_MDCNTL_FSDB | IIC_MDCNTL_FMDB); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 130 | |
Dirk Eibach | 880540d | 2013-04-25 02:40:01 +0000 | [diff] [blame] | 131 | val = in_8(&i2c->mdcntl); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 132 | |
Dirk Eibach | 880540d | 2013-04-25 02:40:01 +0000 | [diff] [blame] | 133 | /* Ignore General Call, slave transfers are ignored, |
| 134 | * disable interrupts, exit unknown bus state, enable hold |
| 135 | * SCL 100kHz normaly or FastMode for 400kHz and above |
| 136 | */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 137 | |
Dirk Eibach | 880540d | 2013-04-25 02:40:01 +0000 | [diff] [blame] | 138 | val |= IIC_MDCNTL_EUBS | IIC_MDCNTL_HSCL; |
| 139 | if (speed >= 400000) |
| 140 | val |= IIC_MDCNTL_FSM; |
| 141 | out_8(&i2c->mdcntl, val); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 142 | |
Dirk Eibach | 880540d | 2013-04-25 02:40:01 +0000 | [diff] [blame] | 143 | /* clear control reg */ |
| 144 | out_8(&i2c->cntl, 0x00); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 145 | } |
| 146 | |
| 147 | /* |
Stefan Roese | 79b2d0b | 2007-02-20 10:27:08 +0100 | [diff] [blame] | 148 | * This code tries to use the features of the 405GP i2c |
| 149 | * controller. It will transfer up to 4 bytes in one pass |
| 150 | * on the loop. It only does out_8((u8 *)lbz) to the buffer when it |
| 151 | * is possible to do out16(lhz) transfers. |
| 152 | * |
| 153 | * cmd_type is 0 for write 1 for read. |
| 154 | * |
| 155 | * addr_len can take any value from 0-255, it is only limited |
| 156 | * by the char, we could make it larger if needed. If it is |
| 157 | * 0 we skip the address write cycle. |
| 158 | * |
| 159 | * Typical case is a Write of an addr followd by a Read. The |
| 160 | * IBM FAQ does not cover this. On the last byte of the write |
Dirk Eibach | 7e78f7a | 2014-10-29 15:56:43 +0100 | [diff] [blame] | 161 | * we don't set the creg CHT bit but the RPST bit. |
Stefan Roese | 79b2d0b | 2007-02-20 10:27:08 +0100 | [diff] [blame] | 162 | * |
| 163 | * It does not support address only transfers, there must be |
| 164 | * a data part. If you want to write the address yourself, put |
| 165 | * it in the data pointer. |
| 166 | * |
| 167 | * It does not support transfer to/from address 0. |
| 168 | * |
| 169 | * It does not check XFRCNT. |
| 170 | */ |
Dirk Eibach | 880540d | 2013-04-25 02:40:01 +0000 | [diff] [blame] | 171 | static int _i2c_transfer(struct i2c_adapter *adap, |
| 172 | unsigned char cmd_type, |
Stefan Roese | 79b2d0b | 2007-02-20 10:27:08 +0100 | [diff] [blame] | 173 | unsigned char chip, |
| 174 | unsigned char addr[], |
| 175 | unsigned char addr_len, |
| 176 | unsigned char data[], |
| 177 | unsigned short data_len) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 178 | { |
Dirk Eibach | 880540d | 2013-04-25 02:40:01 +0000 | [diff] [blame] | 179 | struct ppc4xx_i2c *i2c = ppc4xx_get_i2c(adap->hwadapnr); |
Stefan Roese | eb5eb2b | 2009-11-19 14:03:17 +0100 | [diff] [blame] | 180 | u8 *ptr; |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 181 | int reading; |
Stefan Roese | eb5eb2b | 2009-11-19 14:03:17 +0100 | [diff] [blame] | 182 | int tran, cnt; |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 183 | int result; |
| 184 | int status; |
| 185 | int i; |
Stefan Roese | eb5eb2b | 2009-11-19 14:03:17 +0100 | [diff] [blame] | 186 | u8 creg; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 187 | |
Stefan Roese | 79b2d0b | 2007-02-20 10:27:08 +0100 | [diff] [blame] | 188 | if (data == 0 || data_len == 0) { |
| 189 | /* Don't support data transfer of no length or to address 0 */ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 190 | printf( "i2c_transfer: bad call\n" ); |
| 191 | return IIC_NOK; |
| 192 | } |
Stefan Roese | 79b2d0b | 2007-02-20 10:27:08 +0100 | [diff] [blame] | 193 | if (addr && addr_len) { |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 194 | ptr = addr; |
| 195 | cnt = addr_len; |
| 196 | reading = 0; |
Stefan Roese | 79b2d0b | 2007-02-20 10:27:08 +0100 | [diff] [blame] | 197 | } else { |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 198 | ptr = data; |
| 199 | cnt = data_len; |
| 200 | reading = cmd_type; |
| 201 | } |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 202 | |
Stefan Roese | 79b2d0b | 2007-02-20 10:27:08 +0100 | [diff] [blame] | 203 | /* Clear Stop Complete Bit */ |
Stefan Roese | eb5eb2b | 2009-11-19 14:03:17 +0100 | [diff] [blame] | 204 | out_8(&i2c->sts, IIC_STS_SCMP); |
| 205 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 206 | /* Check init */ |
Stefan Roese | 79b2d0b | 2007-02-20 10:27:08 +0100 | [diff] [blame] | 207 | i = 10; |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 208 | do { |
| 209 | /* Get status */ |
Stefan Roese | eb5eb2b | 2009-11-19 14:03:17 +0100 | [diff] [blame] | 210 | status = in_8(&i2c->sts); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 211 | i--; |
Stefan Roese | 79b2d0b | 2007-02-20 10:27:08 +0100 | [diff] [blame] | 212 | } while ((status & IIC_STS_PT) && (i > 0)); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 213 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 214 | if (status & IIC_STS_PT) { |
| 215 | result = IIC_NOK_TOUT; |
| 216 | return(result); |
| 217 | } |
Stefan Roese | eb5eb2b | 2009-11-19 14:03:17 +0100 | [diff] [blame] | 218 | |
Stefan Roese | 79b2d0b | 2007-02-20 10:27:08 +0100 | [diff] [blame] | 219 | /* flush the Master/Slave Databuffers */ |
Stefan Roese | eb5eb2b | 2009-11-19 14:03:17 +0100 | [diff] [blame] | 220 | out_8(&i2c->mdcntl, in_8(&i2c->mdcntl) | |
| 221 | IIC_MDCNTL_FMDB | IIC_MDCNTL_FSDB); |
| 222 | |
Stefan Roese | 79b2d0b | 2007-02-20 10:27:08 +0100 | [diff] [blame] | 223 | /* need to wait 4 OPB clocks? code below should take that long */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 224 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 225 | /* 7-bit adressing */ |
Stefan Roese | eb5eb2b | 2009-11-19 14:03:17 +0100 | [diff] [blame] | 226 | out_8(&i2c->hmadr, 0); |
| 227 | out_8(&i2c->lmadr, chip); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 228 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 229 | tran = 0; |
| 230 | result = IIC_OK; |
| 231 | creg = 0; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 232 | |
Stefan Roese | 79b2d0b | 2007-02-20 10:27:08 +0100 | [diff] [blame] | 233 | while (tran != cnt && (result == IIC_OK)) { |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 234 | int bc,j; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 235 | |
Stefan Roese | eb5eb2b | 2009-11-19 14:03:17 +0100 | [diff] [blame] | 236 | /* |
| 237 | * Control register = |
| 238 | * Normal transfer, 7-bits adressing, Transfer up to |
| 239 | * bc bytes, Normal start, Transfer is a sequence of transfers |
Stefan Roese | 79b2d0b | 2007-02-20 10:27:08 +0100 | [diff] [blame] | 240 | */ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 241 | creg |= IIC_CNTL_PT; |
| 242 | |
Stefan Roese | 79b2d0b | 2007-02-20 10:27:08 +0100 | [diff] [blame] | 243 | bc = (cnt - tran) > 4 ? 4 : cnt - tran; |
| 244 | creg |= (bc - 1) << 4; |
| 245 | /* if the real cmd type is write continue trans */ |
| 246 | if ((!cmd_type && (ptr == addr)) || ((tran + bc) != cnt)) |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 247 | creg |= IIC_CNTL_CHT; |
| 248 | |
Dirk Eibach | 7e78f7a | 2014-10-29 15:56:43 +0100 | [diff] [blame] | 249 | /* last part of address, prepare for repeated start on read */ |
| 250 | if (cmd_type && (ptr == addr) && ((tran + bc) == cnt)) |
| 251 | creg |= IIC_CNTL_RPST; |
| 252 | |
Stefan Roese | eb5eb2b | 2009-11-19 14:03:17 +0100 | [diff] [blame] | 253 | if (reading) { |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 254 | creg |= IIC_CNTL_READ; |
Stefan Roese | eb5eb2b | 2009-11-19 14:03:17 +0100 | [diff] [blame] | 255 | } else { |
| 256 | for(j = 0; j < bc; j++) { |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 257 | /* Set buffer */ |
Stefan Roese | eb5eb2b | 2009-11-19 14:03:17 +0100 | [diff] [blame] | 258 | out_8(&i2c->mdbuf, ptr[tran + j]); |
| 259 | } |
| 260 | } |
| 261 | out_8(&i2c->cntl, creg); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 262 | |
Stefan Roese | eb5eb2b | 2009-11-19 14:03:17 +0100 | [diff] [blame] | 263 | /* |
| 264 | * Transfer is in progress |
Stefan Roese | 79b2d0b | 2007-02-20 10:27:08 +0100 | [diff] [blame] | 265 | * we have to wait for upto 5 bytes of data |
| 266 | * 1 byte chip address+r/w bit then bc bytes |
| 267 | * of data. |
| 268 | * udelay(10) is 1 bit time at 100khz |
| 269 | * Doubled for slop. 20 is too small. |
| 270 | */ |
Stefan Roese | eb5eb2b | 2009-11-19 14:03:17 +0100 | [diff] [blame] | 271 | i = 2 * 5 * 8; |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 272 | do { |
| 273 | /* Get status */ |
Stefan Roese | eb5eb2b | 2009-11-19 14:03:17 +0100 | [diff] [blame] | 274 | status = in_8(&i2c->sts); |
Stefan Roese | 79b2d0b | 2007-02-20 10:27:08 +0100 | [diff] [blame] | 275 | udelay(10); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 276 | i--; |
Stefan Roese | eb5eb2b | 2009-11-19 14:03:17 +0100 | [diff] [blame] | 277 | } while ((status & IIC_STS_PT) && !(status & IIC_STS_ERR) && |
| 278 | (i > 0)); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 279 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 280 | if (status & IIC_STS_ERR) { |
| 281 | result = IIC_NOK; |
Stefan Roese | eb5eb2b | 2009-11-19 14:03:17 +0100 | [diff] [blame] | 282 | status = in_8(&i2c->extsts); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 283 | /* Lost arbitration? */ |
| 284 | if (status & IIC_EXTSTS_LA) |
| 285 | result = IIC_NOK_LA; |
| 286 | /* Incomplete transfer? */ |
| 287 | if (status & IIC_EXTSTS_ICT) |
| 288 | result = IIC_NOK_ICT; |
| 289 | /* Transfer aborted? */ |
| 290 | if (status & IIC_EXTSTS_XFRA) |
| 291 | result = IIC_NOK_XFRA; |
Dirk Eibach | b97cd68 | 2014-10-29 15:56:44 +0100 | [diff] [blame] | 292 | /* Is bus free? |
| 293 | * If error happened during combined xfer |
| 294 | * IIC interface is usually stuck in some strange |
| 295 | * state without a valid stop condition. |
| 296 | * Brute, but working: generate stop, then soft reset. |
| 297 | */ |
| 298 | if ((status & IIC_EXTSTS_BCS_MASK) |
| 299 | != IIC_EXTSTS_BCS_FREE){ |
| 300 | u8 mdcntl = in_8(&i2c->mdcntl); |
| 301 | |
| 302 | /* Generate valid stop condition */ |
| 303 | out_8(&i2c->xtcntlss, IIC_XTCNTLSS_SRST); |
| 304 | out_8(&i2c->directcntl, IIC_DIRCNTL_SCC); |
| 305 | udelay(10); |
| 306 | out_8(&i2c->directcntl, |
| 307 | IIC_DIRCNTL_SCC | IIC_DIRCNTL_SDAC); |
| 308 | out_8(&i2c->xtcntlss, 0); |
| 309 | |
| 310 | ppc4xx_i2c_init(adap, (mdcntl & IIC_MDCNTL_FSM) |
| 311 | ? 400000 : 100000, 0); |
| 312 | } |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 313 | } else if ( status & IIC_STS_PT) { |
| 314 | result = IIC_NOK_TOUT; |
| 315 | } |
Stefan Roese | eb5eb2b | 2009-11-19 14:03:17 +0100 | [diff] [blame] | 316 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 317 | /* Command is reading => get buffer */ |
| 318 | if ((reading) && (result == IIC_OK)) { |
| 319 | /* Are there data in buffer */ |
| 320 | if (status & IIC_STS_MDBS) { |
| 321 | /* |
Stefan Roese | eb5eb2b | 2009-11-19 14:03:17 +0100 | [diff] [blame] | 322 | * even if we have data we have to wait 4OPB |
| 323 | * clocks for it to hit the front of the FIFO, |
| 324 | * after that we can just read. We should check |
| 325 | * XFCNT here and if the FIFO is full there is |
| 326 | * no need to wait. |
Stefan Roese | 79b2d0b | 2007-02-20 10:27:08 +0100 | [diff] [blame] | 327 | */ |
| 328 | udelay(1); |
Stefan Roese | eb5eb2b | 2009-11-19 14:03:17 +0100 | [diff] [blame] | 329 | for (j = 0; j < bc; j++) |
| 330 | ptr[tran + j] = in_8(&i2c->mdbuf); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 331 | } else |
| 332 | result = IIC_NOK_DATA; |
| 333 | } |
| 334 | creg = 0; |
Stefan Roese | 79b2d0b | 2007-02-20 10:27:08 +0100 | [diff] [blame] | 335 | tran += bc; |
| 336 | if (ptr == addr && tran == cnt) { |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 337 | ptr = data; |
| 338 | cnt = data_len; |
| 339 | tran = 0; |
| 340 | reading = cmd_type; |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 341 | } |
| 342 | } |
Stefan Roese | eb5eb2b | 2009-11-19 14:03:17 +0100 | [diff] [blame] | 343 | return result; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 344 | } |
| 345 | |
Dirk Eibach | 880540d | 2013-04-25 02:40:01 +0000 | [diff] [blame] | 346 | static int ppc4xx_i2c_probe(struct i2c_adapter *adap, uchar chip) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 347 | { |
| 348 | uchar buf[1]; |
| 349 | |
| 350 | buf[0] = 0; |
| 351 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 352 | /* |
| 353 | * What is needed is to send the chip address and verify that the |
| 354 | * address was <ACK>ed (i.e. there was a chip at that address which |
| 355 | * drove the data line low). |
| 356 | */ |
Dirk Eibach | 880540d | 2013-04-25 02:40:01 +0000 | [diff] [blame] | 357 | return (_i2c_transfer(adap, 1, chip << 1, 0, 0, buf, 1) != 0); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 358 | } |
| 359 | |
Dirk Eibach | 880540d | 2013-04-25 02:40:01 +0000 | [diff] [blame] | 360 | static int ppc4xx_i2c_transfer(struct i2c_adapter *adap, uchar chip, uint addr, |
| 361 | int alen, uchar *buffer, int len, int read) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 362 | { |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 363 | uchar xaddr[4]; |
| 364 | int ret; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 365 | |
Stefan Roese | 79b2d0b | 2007-02-20 10:27:08 +0100 | [diff] [blame] | 366 | if (alen > 4) { |
Stefan Roese | eb5eb2b | 2009-11-19 14:03:17 +0100 | [diff] [blame] | 367 | printf("I2C: addr len %d not supported\n", alen); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 368 | return 1; |
| 369 | } |
| 370 | |
Stefan Roese | 79b2d0b | 2007-02-20 10:27:08 +0100 | [diff] [blame] | 371 | if (alen > 0) { |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 372 | xaddr[0] = (addr >> 24) & 0xFF; |
| 373 | xaddr[1] = (addr >> 16) & 0xFF; |
| 374 | xaddr[2] = (addr >> 8) & 0xFF; |
| 375 | xaddr[3] = addr & 0xFF; |
| 376 | } |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 377 | |
| 378 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 379 | #ifdef CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 380 | /* |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 381 | * EEPROM chips that implement "address overflow" are ones |
| 382 | * like Catalyst 24WC04/08/16 which has 9/10/11 bits of |
| 383 | * address and the extra bits end up in the "chip address" |
| 384 | * bit slots. This makes a 24WC08 (1Kbyte) chip look like |
| 385 | * four 256 byte chips. |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 386 | * |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 387 | * Note that we consider the length of the address field to |
| 388 | * still be one byte because the extra address bits are |
| 389 | * hidden in the chip address. |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 390 | */ |
Stefan Roese | 79b2d0b | 2007-02-20 10:27:08 +0100 | [diff] [blame] | 391 | if (alen > 0) |
Stefan Roese | eb5eb2b | 2009-11-19 14:03:17 +0100 | [diff] [blame] | 392 | chip |= ((addr >> (alen * 8)) & |
| 393 | CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 394 | #endif |
Dirk Eibach | 880540d | 2013-04-25 02:40:01 +0000 | [diff] [blame] | 395 | ret = _i2c_transfer(adap, read, chip << 1, &xaddr[4 - alen], alen, |
| 396 | buffer, len); |
| 397 | if (ret) { |
Graeme Russ | e3e454c | 2011-08-29 02:14:05 +0000 | [diff] [blame] | 398 | printf("I2C %s: failed %d\n", read ? "read" : "write", ret); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 399 | return 1; |
| 400 | } |
Stefan Roese | eb5eb2b | 2009-11-19 14:03:17 +0100 | [diff] [blame] | 401 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 402 | return 0; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 403 | } |
| 404 | |
Dirk Eibach | 880540d | 2013-04-25 02:40:01 +0000 | [diff] [blame] | 405 | static int ppc4xx_i2c_read(struct i2c_adapter *adap, uchar chip, uint addr, |
| 406 | int alen, uchar *buffer, int len) |
Stefan Roese | eb5eb2b | 2009-11-19 14:03:17 +0100 | [diff] [blame] | 407 | { |
Dirk Eibach | 880540d | 2013-04-25 02:40:01 +0000 | [diff] [blame] | 408 | return ppc4xx_i2c_transfer(adap, chip, addr, alen, buffer, len, 1); |
Stefan Roese | eb5eb2b | 2009-11-19 14:03:17 +0100 | [diff] [blame] | 409 | } |
| 410 | |
Dirk Eibach | 880540d | 2013-04-25 02:40:01 +0000 | [diff] [blame] | 411 | static int ppc4xx_i2c_write(struct i2c_adapter *adap, uchar chip, uint addr, |
| 412 | int alen, uchar *buffer, int len) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 413 | { |
Dirk Eibach | 880540d | 2013-04-25 02:40:01 +0000 | [diff] [blame] | 414 | return ppc4xx_i2c_transfer(adap, chip, addr, alen, buffer, len, 0); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 415 | } |
| 416 | |
Dirk Eibach | 880540d | 2013-04-25 02:40:01 +0000 | [diff] [blame] | 417 | static unsigned int ppc4xx_i2c_set_bus_speed(struct i2c_adapter *adap, |
| 418 | unsigned int speed) |
Stefan Roese | 79b2d0b | 2007-02-20 10:27:08 +0100 | [diff] [blame] | 419 | { |
Dirk Eibach | 880540d | 2013-04-25 02:40:01 +0000 | [diff] [blame] | 420 | if (speed != adap->speed) |
Stefan Roese | 79b2d0b | 2007-02-20 10:27:08 +0100 | [diff] [blame] | 421 | return -1; |
Dirk Eibach | 880540d | 2013-04-25 02:40:01 +0000 | [diff] [blame] | 422 | return speed; |
Stefan Roese | 79b2d0b | 2007-02-20 10:27:08 +0100 | [diff] [blame] | 423 | } |
Dirk Eibach | 880540d | 2013-04-25 02:40:01 +0000 | [diff] [blame] | 424 | |
| 425 | /* |
| 426 | * Register ppc4xx i2c adapters |
| 427 | */ |
| 428 | #ifdef CONFIG_SYS_I2C_PPC4XX_CH0 |
| 429 | U_BOOT_I2C_ADAP_COMPLETE(ppc4xx_0, ppc4xx_i2c_init, ppc4xx_i2c_probe, |
| 430 | ppc4xx_i2c_read, ppc4xx_i2c_write, |
| 431 | ppc4xx_i2c_set_bus_speed, |
| 432 | CONFIG_SYS_I2C_PPC4XX_SPEED_0, |
| 433 | CONFIG_SYS_I2C_PPC4XX_SLAVE_0, 0) |
| 434 | #endif |
| 435 | #ifdef CONFIG_SYS_I2C_PPC4XX_CH1 |
| 436 | U_BOOT_I2C_ADAP_COMPLETE(ppc4xx_1, ppc4xx_i2c_init, ppc4xx_i2c_probe, |
| 437 | ppc4xx_i2c_read, ppc4xx_i2c_write, |
| 438 | ppc4xx_i2c_set_bus_speed, |
| 439 | CONFIG_SYS_I2C_PPC4XX_SPEED_1, |
| 440 | CONFIG_SYS_I2C_PPC4XX_SLAVE_1, 1) |
| 441 | #endif |