Yen Lin | 96a78ac | 2012-03-06 19:00:23 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2012 The Chromium OS Authors. All rights reserved. |
| 3 | * Copyright (c) 2010-2011 NVIDIA Corporation |
| 4 | * NVIDIA Corporation <www.nvidia.com> |
| 5 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 6 | * SPDX-License-Identifier: GPL-2.0+ |
Yen Lin | 96a78ac | 2012-03-06 19:00:23 +0000 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include <common.h> |
Simon Glass | b0e6ef4 | 2014-12-10 08:55:57 -0700 | [diff] [blame] | 10 | #include <dm.h> |
| 11 | #include <errno.h> |
Yen Lin | 96a78ac | 2012-03-06 19:00:23 +0000 | [diff] [blame] | 12 | #include <fdtdec.h> |
| 13 | #include <i2c.h> |
| 14 | #include <asm/io.h> |
Yen Lin | 96a78ac | 2012-03-06 19:00:23 +0000 | [diff] [blame] | 15 | #include <asm/arch/clock.h> |
| 16 | #include <asm/arch/funcmux.h> |
| 17 | #include <asm/arch/gpio.h> |
| 18 | #include <asm/arch/pinmux.h> |
Tom Warren | 150c249 | 2012-09-19 15:50:56 -0700 | [diff] [blame] | 19 | #include <asm/arch-tegra/clk_rst.h> |
| 20 | #include <asm/arch-tegra/tegra_i2c.h> |
Yen Lin | 96a78ac | 2012-03-06 19:00:23 +0000 | [diff] [blame] | 21 | |
| 22 | DECLARE_GLOBAL_DATA_PTR; |
| 23 | |
Simon Glass | b0e6ef4 | 2014-12-10 08:55:57 -0700 | [diff] [blame] | 24 | enum i2c_type { |
| 25 | TYPE_114, |
| 26 | TYPE_STD, |
| 27 | TYPE_DVC, |
| 28 | }; |
| 29 | |
Yen Lin | 96a78ac | 2012-03-06 19:00:23 +0000 | [diff] [blame] | 30 | /* Information about i2c controller */ |
| 31 | struct i2c_bus { |
| 32 | int id; |
| 33 | enum periph_id periph_id; |
| 34 | int speed; |
| 35 | int pinmux_config; |
| 36 | struct i2c_control *control; |
| 37 | struct i2c_ctlr *regs; |
Simon Glass | b0e6ef4 | 2014-12-10 08:55:57 -0700 | [diff] [blame] | 38 | enum i2c_type type; |
Yen Lin | 96a78ac | 2012-03-06 19:00:23 +0000 | [diff] [blame] | 39 | int inited; /* bus is inited */ |
| 40 | }; |
| 41 | |
Yen Lin | 96a78ac | 2012-03-06 19:00:23 +0000 | [diff] [blame] | 42 | static void set_packet_mode(struct i2c_bus *i2c_bus) |
| 43 | { |
| 44 | u32 config; |
| 45 | |
| 46 | config = I2C_CNFG_NEW_MASTER_FSM_MASK | I2C_CNFG_PACKET_MODE_MASK; |
| 47 | |
Simon Glass | b0e6ef4 | 2014-12-10 08:55:57 -0700 | [diff] [blame] | 48 | if (i2c_bus->type == TYPE_DVC) { |
Yen Lin | 96a78ac | 2012-03-06 19:00:23 +0000 | [diff] [blame] | 49 | struct dvc_ctlr *dvc = (struct dvc_ctlr *)i2c_bus->regs; |
| 50 | |
| 51 | writel(config, &dvc->cnfg); |
| 52 | } else { |
| 53 | writel(config, &i2c_bus->regs->cnfg); |
| 54 | /* |
| 55 | * program I2C_SL_CNFG.NEWSL to ENABLE. This fixes probe |
| 56 | * issues, i.e., some slaves may be wrongly detected. |
| 57 | */ |
| 58 | setbits_le32(&i2c_bus->regs->sl_cnfg, I2C_SL_CNFG_NEWSL_MASK); |
| 59 | } |
| 60 | } |
| 61 | |
| 62 | static void i2c_reset_controller(struct i2c_bus *i2c_bus) |
| 63 | { |
| 64 | /* Reset I2C controller. */ |
| 65 | reset_periph(i2c_bus->periph_id, 1); |
| 66 | |
| 67 | /* re-program config register to packet mode */ |
| 68 | set_packet_mode(i2c_bus); |
| 69 | } |
| 70 | |
| 71 | static void i2c_init_controller(struct i2c_bus *i2c_bus) |
| 72 | { |
Simon Glass | b0e6ef4 | 2014-12-10 08:55:57 -0700 | [diff] [blame] | 73 | if (!i2c_bus->speed) |
| 74 | return; |
| 75 | debug("%s: speed=%d\n", __func__, i2c_bus->speed); |
Yen Lin | 96a78ac | 2012-03-06 19:00:23 +0000 | [diff] [blame] | 76 | /* |
| 77 | * Use PLLP - DP-04508-001_v06 datasheet indicates a divisor of 8 |
| 78 | * here, in section 23.3.1, but in fact we seem to need a factor of |
| 79 | * 16 to get the right frequency. |
| 80 | */ |
| 81 | clock_start_periph_pll(i2c_bus->periph_id, CLOCK_ID_PERIPH, |
Tom Warren | e32624e | 2013-02-08 07:25:30 +0000 | [diff] [blame] | 82 | i2c_bus->speed * 2 * 8); |
| 83 | |
Simon Glass | b0e6ef4 | 2014-12-10 08:55:57 -0700 | [diff] [blame] | 84 | if (i2c_bus->type == TYPE_114) { |
Tom Warren | e32624e | 2013-02-08 07:25:30 +0000 | [diff] [blame] | 85 | /* |
| 86 | * T114 I2C went to a single clock source for standard/fast and |
| 87 | * HS clock speeds. The new clock rate setting calculation is: |
| 88 | * SCL = CLK_SOURCE.I2C / |
| 89 | * (CLK_MULT_STD_FAST_MODE * (I2C_CLK_DIV_STD_FAST_MODE+1) * |
| 90 | * I2C FREQUENCY DIVISOR) as per the T114 TRM (sec 30.3.1). |
| 91 | * |
| 92 | * NOTE: We do this here, after the initial clock/pll start, |
| 93 | * because if we read the clk_div reg before the controller |
| 94 | * is running, we hang, and we need it for the new calc. |
| 95 | */ |
| 96 | int clk_div_stdfst_mode = readl(&i2c_bus->regs->clk_div) >> 16; |
| 97 | debug("%s: CLK_DIV_STD_FAST_MODE setting = %d\n", __func__, |
| 98 | clk_div_stdfst_mode); |
| 99 | |
| 100 | clock_start_periph_pll(i2c_bus->periph_id, CLOCK_ID_PERIPH, |
| 101 | CLK_MULT_STD_FAST_MODE * (clk_div_stdfst_mode + 1) * |
| 102 | i2c_bus->speed * 2); |
| 103 | } |
Yen Lin | 96a78ac | 2012-03-06 19:00:23 +0000 | [diff] [blame] | 104 | |
| 105 | /* Reset I2C controller. */ |
| 106 | i2c_reset_controller(i2c_bus); |
| 107 | |
| 108 | /* Configure I2C controller. */ |
Simon Glass | b0e6ef4 | 2014-12-10 08:55:57 -0700 | [diff] [blame] | 109 | if (i2c_bus->type == TYPE_DVC) { /* only for DVC I2C */ |
Yen Lin | 96a78ac | 2012-03-06 19:00:23 +0000 | [diff] [blame] | 110 | struct dvc_ctlr *dvc = (struct dvc_ctlr *)i2c_bus->regs; |
| 111 | |
| 112 | setbits_le32(&dvc->ctrl3, DVC_CTRL_REG3_I2C_HW_SW_PROG_MASK); |
| 113 | } |
| 114 | |
| 115 | funcmux_select(i2c_bus->periph_id, i2c_bus->pinmux_config); |
| 116 | } |
| 117 | |
| 118 | static void send_packet_headers( |
| 119 | struct i2c_bus *i2c_bus, |
| 120 | struct i2c_trans_info *trans, |
Stephen Warren | 68049a0 | 2014-06-25 10:57:27 -0600 | [diff] [blame] | 121 | u32 packet_id, |
| 122 | bool end_with_repeated_start) |
Yen Lin | 96a78ac | 2012-03-06 19:00:23 +0000 | [diff] [blame] | 123 | { |
| 124 | u32 data; |
| 125 | |
| 126 | /* prepare header1: Header size = 0 Protocol = I2C, pktType = 0 */ |
| 127 | data = PROTOCOL_TYPE_I2C << PKT_HDR1_PROTOCOL_SHIFT; |
| 128 | data |= packet_id << PKT_HDR1_PKT_ID_SHIFT; |
| 129 | data |= i2c_bus->id << PKT_HDR1_CTLR_ID_SHIFT; |
| 130 | writel(data, &i2c_bus->control->tx_fifo); |
| 131 | debug("pkt header 1 sent (0x%x)\n", data); |
| 132 | |
| 133 | /* prepare header2 */ |
| 134 | data = (trans->num_bytes - 1) << PKT_HDR2_PAYLOAD_SIZE_SHIFT; |
| 135 | writel(data, &i2c_bus->control->tx_fifo); |
| 136 | debug("pkt header 2 sent (0x%x)\n", data); |
| 137 | |
| 138 | /* prepare IO specific header: configure the slave address */ |
| 139 | data = trans->address << PKT_HDR3_SLAVE_ADDR_SHIFT; |
| 140 | |
| 141 | /* Enable Read if it is not a write transaction */ |
| 142 | if (!(trans->flags & I2C_IS_WRITE)) |
| 143 | data |= PKT_HDR3_READ_MODE_MASK; |
Stephen Warren | 68049a0 | 2014-06-25 10:57:27 -0600 | [diff] [blame] | 144 | if (end_with_repeated_start) |
| 145 | data |= PKT_HDR3_REPEAT_START_MASK; |
Yen Lin | 96a78ac | 2012-03-06 19:00:23 +0000 | [diff] [blame] | 146 | |
| 147 | /* Write I2C specific header */ |
| 148 | writel(data, &i2c_bus->control->tx_fifo); |
| 149 | debug("pkt header 3 sent (0x%x)\n", data); |
| 150 | } |
| 151 | |
| 152 | static int wait_for_tx_fifo_empty(struct i2c_control *control) |
| 153 | { |
| 154 | u32 count; |
| 155 | int timeout_us = I2C_TIMEOUT_USEC; |
| 156 | |
| 157 | while (timeout_us >= 0) { |
| 158 | count = (readl(&control->fifo_status) & TX_FIFO_EMPTY_CNT_MASK) |
| 159 | >> TX_FIFO_EMPTY_CNT_SHIFT; |
| 160 | if (count == I2C_FIFO_DEPTH) |
| 161 | return 1; |
| 162 | udelay(10); |
| 163 | timeout_us -= 10; |
| 164 | } |
| 165 | |
| 166 | return 0; |
| 167 | } |
| 168 | |
| 169 | static int wait_for_rx_fifo_notempty(struct i2c_control *control) |
| 170 | { |
| 171 | u32 count; |
| 172 | int timeout_us = I2C_TIMEOUT_USEC; |
| 173 | |
| 174 | while (timeout_us >= 0) { |
| 175 | count = (readl(&control->fifo_status) & TX_FIFO_FULL_CNT_MASK) |
| 176 | >> TX_FIFO_FULL_CNT_SHIFT; |
| 177 | if (count) |
| 178 | return 1; |
| 179 | udelay(10); |
| 180 | timeout_us -= 10; |
| 181 | } |
| 182 | |
| 183 | return 0; |
| 184 | } |
| 185 | |
| 186 | static int wait_for_transfer_complete(struct i2c_control *control) |
| 187 | { |
| 188 | int int_status; |
| 189 | int timeout_us = I2C_TIMEOUT_USEC; |
| 190 | |
| 191 | while (timeout_us >= 0) { |
| 192 | int_status = readl(&control->int_status); |
| 193 | if (int_status & I2C_INT_NO_ACK_MASK) |
| 194 | return -int_status; |
| 195 | if (int_status & I2C_INT_ARBITRATION_LOST_MASK) |
| 196 | return -int_status; |
| 197 | if (int_status & I2C_INT_XFER_COMPLETE_MASK) |
| 198 | return 0; |
| 199 | |
| 200 | udelay(10); |
| 201 | timeout_us -= 10; |
| 202 | } |
| 203 | |
| 204 | return -1; |
| 205 | } |
| 206 | |
| 207 | static int send_recv_packets(struct i2c_bus *i2c_bus, |
| 208 | struct i2c_trans_info *trans) |
| 209 | { |
| 210 | struct i2c_control *control = i2c_bus->control; |
| 211 | u32 int_status; |
| 212 | u32 words; |
| 213 | u8 *dptr; |
| 214 | u32 local; |
| 215 | uchar last_bytes; |
| 216 | int error = 0; |
| 217 | int is_write = trans->flags & I2C_IS_WRITE; |
| 218 | |
| 219 | /* clear status from previous transaction, XFER_COMPLETE, NOACK, etc. */ |
| 220 | int_status = readl(&control->int_status); |
| 221 | writel(int_status, &control->int_status); |
| 222 | |
Stephen Warren | 68049a0 | 2014-06-25 10:57:27 -0600 | [diff] [blame] | 223 | send_packet_headers(i2c_bus, trans, 1, |
| 224 | trans->flags & I2C_USE_REPEATED_START); |
Yen Lin | 96a78ac | 2012-03-06 19:00:23 +0000 | [diff] [blame] | 225 | |
| 226 | words = DIV_ROUND_UP(trans->num_bytes, 4); |
| 227 | last_bytes = trans->num_bytes & 3; |
| 228 | dptr = trans->buf; |
| 229 | |
| 230 | while (words) { |
| 231 | u32 *wptr = (u32 *)dptr; |
| 232 | |
| 233 | if (is_write) { |
| 234 | /* deal with word alignment */ |
Stephen Warren | 981b14f | 2014-06-25 10:57:28 -0600 | [diff] [blame] | 235 | if ((words == 1) && last_bytes) { |
| 236 | local = 0; |
| 237 | memcpy(&local, dptr, last_bytes); |
Thierry Reding | 8e67c5d | 2015-07-22 15:33:22 -0600 | [diff] [blame] | 238 | } else if ((unsigned long)dptr & 3) { |
Yen Lin | 96a78ac | 2012-03-06 19:00:23 +0000 | [diff] [blame] | 239 | memcpy(&local, dptr, sizeof(u32)); |
Yen Lin | 96a78ac | 2012-03-06 19:00:23 +0000 | [diff] [blame] | 240 | } else { |
Stephen Warren | 981b14f | 2014-06-25 10:57:28 -0600 | [diff] [blame] | 241 | local = *wptr; |
Yen Lin | 96a78ac | 2012-03-06 19:00:23 +0000 | [diff] [blame] | 242 | } |
Stephen Warren | 981b14f | 2014-06-25 10:57:28 -0600 | [diff] [blame] | 243 | writel(local, &control->tx_fifo); |
| 244 | debug("pkt data sent (0x%x)\n", local); |
Yen Lin | 96a78ac | 2012-03-06 19:00:23 +0000 | [diff] [blame] | 245 | if (!wait_for_tx_fifo_empty(control)) { |
| 246 | error = -1; |
| 247 | goto exit; |
| 248 | } |
| 249 | } else { |
| 250 | if (!wait_for_rx_fifo_notempty(control)) { |
| 251 | error = -1; |
| 252 | goto exit; |
| 253 | } |
| 254 | /* |
| 255 | * for the last word, we read into our local buffer, |
| 256 | * in case that caller did not provide enough buffer. |
| 257 | */ |
| 258 | local = readl(&control->rx_fifo); |
| 259 | if ((words == 1) && last_bytes) |
| 260 | memcpy(dptr, (char *)&local, last_bytes); |
Thierry Reding | 8e67c5d | 2015-07-22 15:33:22 -0600 | [diff] [blame] | 261 | else if ((unsigned long)dptr & 3) |
Yen Lin | 96a78ac | 2012-03-06 19:00:23 +0000 | [diff] [blame] | 262 | memcpy(dptr, &local, sizeof(u32)); |
| 263 | else |
| 264 | *wptr = local; |
| 265 | debug("pkt data received (0x%x)\n", local); |
| 266 | } |
| 267 | words--; |
| 268 | dptr += sizeof(u32); |
| 269 | } |
| 270 | |
| 271 | if (wait_for_transfer_complete(control)) { |
| 272 | error = -1; |
| 273 | goto exit; |
| 274 | } |
| 275 | return 0; |
| 276 | exit: |
| 277 | /* error, reset the controller. */ |
| 278 | i2c_reset_controller(i2c_bus); |
| 279 | |
| 280 | return error; |
| 281 | } |
| 282 | |
Simon Glass | b0e6ef4 | 2014-12-10 08:55:57 -0700 | [diff] [blame] | 283 | static int tegra_i2c_write_data(struct i2c_bus *i2c_bus, u32 addr, u8 *data, |
Stephen Warren | 68049a0 | 2014-06-25 10:57:27 -0600 | [diff] [blame] | 284 | u32 len, bool end_with_repeated_start) |
Yen Lin | 96a78ac | 2012-03-06 19:00:23 +0000 | [diff] [blame] | 285 | { |
| 286 | int error; |
| 287 | struct i2c_trans_info trans_info; |
| 288 | |
| 289 | trans_info.address = addr; |
| 290 | trans_info.buf = data; |
| 291 | trans_info.flags = I2C_IS_WRITE; |
Stephen Warren | 68049a0 | 2014-06-25 10:57:27 -0600 | [diff] [blame] | 292 | if (end_with_repeated_start) |
| 293 | trans_info.flags |= I2C_USE_REPEATED_START; |
Yen Lin | 96a78ac | 2012-03-06 19:00:23 +0000 | [diff] [blame] | 294 | trans_info.num_bytes = len; |
| 295 | trans_info.is_10bit_address = 0; |
| 296 | |
Simon Glass | b0e6ef4 | 2014-12-10 08:55:57 -0700 | [diff] [blame] | 297 | error = send_recv_packets(i2c_bus, &trans_info); |
Yen Lin | 96a78ac | 2012-03-06 19:00:23 +0000 | [diff] [blame] | 298 | if (error) |
Tom Warren | 29f3e3f | 2012-09-04 17:00:24 -0700 | [diff] [blame] | 299 | debug("tegra_i2c_write_data: Error (%d) !!!\n", error); |
Yen Lin | 96a78ac | 2012-03-06 19:00:23 +0000 | [diff] [blame] | 300 | |
| 301 | return error; |
| 302 | } |
| 303 | |
Simon Glass | b0e6ef4 | 2014-12-10 08:55:57 -0700 | [diff] [blame] | 304 | static int tegra_i2c_read_data(struct i2c_bus *i2c_bus, u32 addr, u8 *data, |
Simon Glass | d84eb85 | 2012-10-30 07:28:52 +0000 | [diff] [blame] | 305 | u32 len) |
Yen Lin | 96a78ac | 2012-03-06 19:00:23 +0000 | [diff] [blame] | 306 | { |
| 307 | int error; |
| 308 | struct i2c_trans_info trans_info; |
| 309 | |
| 310 | trans_info.address = addr | 1; |
| 311 | trans_info.buf = data; |
| 312 | trans_info.flags = 0; |
| 313 | trans_info.num_bytes = len; |
| 314 | trans_info.is_10bit_address = 0; |
| 315 | |
Simon Glass | b0e6ef4 | 2014-12-10 08:55:57 -0700 | [diff] [blame] | 316 | error = send_recv_packets(i2c_bus, &trans_info); |
Yen Lin | 96a78ac | 2012-03-06 19:00:23 +0000 | [diff] [blame] | 317 | if (error) |
Tom Warren | 29f3e3f | 2012-09-04 17:00:24 -0700 | [diff] [blame] | 318 | debug("tegra_i2c_read_data: Error (%d) !!!\n", error); |
Yen Lin | 96a78ac | 2012-03-06 19:00:23 +0000 | [diff] [blame] | 319 | |
| 320 | return error; |
| 321 | } |
| 322 | |
Simon Glass | b0e6ef4 | 2014-12-10 08:55:57 -0700 | [diff] [blame] | 323 | static int tegra_i2c_set_bus_speed(struct udevice *dev, unsigned int speed) |
Yen Lin | 96a78ac | 2012-03-06 19:00:23 +0000 | [diff] [blame] | 324 | { |
Simon Glass | b0e6ef4 | 2014-12-10 08:55:57 -0700 | [diff] [blame] | 325 | struct i2c_bus *i2c_bus = dev_get_priv(dev); |
Simon Glass | d84eb85 | 2012-10-30 07:28:52 +0000 | [diff] [blame] | 326 | |
Simon Glass | b0e6ef4 | 2014-12-10 08:55:57 -0700 | [diff] [blame] | 327 | i2c_bus->speed = speed; |
| 328 | i2c_init_controller(i2c_bus); |
Yen Lin | 96a78ac | 2012-03-06 19:00:23 +0000 | [diff] [blame] | 329 | |
| 330 | return 0; |
| 331 | } |
| 332 | |
Simon Glass | b0e6ef4 | 2014-12-10 08:55:57 -0700 | [diff] [blame] | 333 | static int tegra_i2c_probe(struct udevice *dev) |
Yen Lin | 96a78ac | 2012-03-06 19:00:23 +0000 | [diff] [blame] | 334 | { |
Simon Glass | b0e6ef4 | 2014-12-10 08:55:57 -0700 | [diff] [blame] | 335 | struct i2c_bus *i2c_bus = dev_get_priv(dev); |
| 336 | const void *blob = gd->fdt_blob; |
| 337 | int node = dev->of_offset; |
| 338 | bool is_dvc; |
| 339 | |
| 340 | i2c_bus->id = dev->seq; |
Simon Glass | 39de843 | 2015-03-25 12:21:55 -0600 | [diff] [blame] | 341 | i2c_bus->type = dev_get_driver_data(dev); |
Yen Lin | 96a78ac | 2012-03-06 19:00:23 +0000 | [diff] [blame] | 342 | i2c_bus->regs = (struct i2c_ctlr *)fdtdec_get_addr(blob, node, "reg"); |
| 343 | |
| 344 | /* |
| 345 | * We don't have a binding for pinmux yet. Leave it out for now. So |
| 346 | * far no one needs anything other than the default. |
| 347 | */ |
| 348 | i2c_bus->pinmux_config = FUNCMUX_DEFAULT; |
Yen Lin | 96a78ac | 2012-03-06 19:00:23 +0000 | [diff] [blame] | 349 | i2c_bus->periph_id = clock_decode_periph_id(blob, node); |
| 350 | |
| 351 | /* |
| 352 | * We can't specify the pinmux config in the fdt, so I2C2 will not |
| 353 | * work on Seaboard. It normally has no devices on it anyway. |
| 354 | * You could add in this little hack if you need to use it. |
| 355 | * The correct solution is a pinmux binding in the fdt. |
| 356 | * |
| 357 | * if (i2c_bus->periph_id == PERIPH_ID_I2C2) |
| 358 | * i2c_bus->pinmux_config = FUNCMUX_I2C2_PTA; |
| 359 | */ |
| 360 | if (i2c_bus->periph_id == -1) |
Simon Glass | b0e6ef4 | 2014-12-10 08:55:57 -0700 | [diff] [blame] | 361 | return -EINVAL; |
Yen Lin | 96a78ac | 2012-03-06 19:00:23 +0000 | [diff] [blame] | 362 | |
Simon Glass | 39de843 | 2015-03-25 12:21:55 -0600 | [diff] [blame] | 363 | is_dvc = dev_get_driver_data(dev) == TYPE_DVC; |
Simon Glass | b0e6ef4 | 2014-12-10 08:55:57 -0700 | [diff] [blame] | 364 | if (is_dvc) { |
| 365 | i2c_bus->control = |
| 366 | &((struct dvc_ctlr *)i2c_bus->regs)->control; |
| 367 | } else { |
| 368 | i2c_bus->control = &i2c_bus->regs->control; |
Yen Lin | 96a78ac | 2012-03-06 19:00:23 +0000 | [diff] [blame] | 369 | } |
Simon Glass | b0e6ef4 | 2014-12-10 08:55:57 -0700 | [diff] [blame] | 370 | i2c_init_controller(i2c_bus); |
| 371 | debug("%s: controller bus %d at %p, periph_id %d, speed %d: ", |
| 372 | is_dvc ? "dvc" : "i2c", dev->seq, i2c_bus->regs, |
| 373 | i2c_bus->periph_id, i2c_bus->speed); |
Yen Lin | 96a78ac | 2012-03-06 19:00:23 +0000 | [diff] [blame] | 374 | |
| 375 | return 0; |
| 376 | } |
| 377 | |
Yen Lin | 96a78ac | 2012-03-06 19:00:23 +0000 | [diff] [blame] | 378 | /* i2c write version without the register address */ |
Simon Glass | b0e6ef4 | 2014-12-10 08:55:57 -0700 | [diff] [blame] | 379 | static int i2c_write_data(struct i2c_bus *i2c_bus, uchar chip, uchar *buffer, |
Jeroen Hofstee | 19d7bf3 | 2014-10-08 22:57:46 +0200 | [diff] [blame] | 380 | int len, bool end_with_repeated_start) |
Yen Lin | 96a78ac | 2012-03-06 19:00:23 +0000 | [diff] [blame] | 381 | { |
| 382 | int rc; |
| 383 | |
| 384 | debug("i2c_write_data: chip=0x%x, len=0x%x\n", chip, len); |
| 385 | debug("write_data: "); |
| 386 | /* use rc for counter */ |
| 387 | for (rc = 0; rc < len; ++rc) |
| 388 | debug(" 0x%02x", buffer[rc]); |
| 389 | debug("\n"); |
| 390 | |
| 391 | /* Shift 7-bit address over for lower-level i2c functions */ |
Simon Glass | b0e6ef4 | 2014-12-10 08:55:57 -0700 | [diff] [blame] | 392 | rc = tegra_i2c_write_data(i2c_bus, chip << 1, buffer, len, |
Stephen Warren | 68049a0 | 2014-06-25 10:57:27 -0600 | [diff] [blame] | 393 | end_with_repeated_start); |
Yen Lin | 96a78ac | 2012-03-06 19:00:23 +0000 | [diff] [blame] | 394 | if (rc) |
| 395 | debug("i2c_write_data(): rc=%d\n", rc); |
| 396 | |
| 397 | return rc; |
| 398 | } |
| 399 | |
| 400 | /* i2c read version without the register address */ |
Simon Glass | b0e6ef4 | 2014-12-10 08:55:57 -0700 | [diff] [blame] | 401 | static int i2c_read_data(struct i2c_bus *i2c_bus, uchar chip, uchar *buffer, |
| 402 | int len) |
Yen Lin | 96a78ac | 2012-03-06 19:00:23 +0000 | [diff] [blame] | 403 | { |
| 404 | int rc; |
| 405 | |
| 406 | debug("inside i2c_read_data():\n"); |
| 407 | /* Shift 7-bit address over for lower-level i2c functions */ |
Simon Glass | b0e6ef4 | 2014-12-10 08:55:57 -0700 | [diff] [blame] | 408 | rc = tegra_i2c_read_data(i2c_bus, chip << 1, buffer, len); |
Yen Lin | 96a78ac | 2012-03-06 19:00:23 +0000 | [diff] [blame] | 409 | if (rc) { |
| 410 | debug("i2c_read_data(): rc=%d\n", rc); |
| 411 | return rc; |
| 412 | } |
| 413 | |
| 414 | debug("i2c_read_data: "); |
| 415 | /* reuse rc for counter*/ |
| 416 | for (rc = 0; rc < len; ++rc) |
| 417 | debug(" 0x%02x", buffer[rc]); |
| 418 | debug("\n"); |
| 419 | |
| 420 | return 0; |
| 421 | } |
| 422 | |
| 423 | /* Probe to see if a chip is present. */ |
Simon Glass | b0e6ef4 | 2014-12-10 08:55:57 -0700 | [diff] [blame] | 424 | static int tegra_i2c_probe_chip(struct udevice *bus, uint chip_addr, |
| 425 | uint chip_flags) |
Yen Lin | 96a78ac | 2012-03-06 19:00:23 +0000 | [diff] [blame] | 426 | { |
Simon Glass | b0e6ef4 | 2014-12-10 08:55:57 -0700 | [diff] [blame] | 427 | struct i2c_bus *i2c_bus = dev_get_priv(bus); |
Yen Lin | 96a78ac | 2012-03-06 19:00:23 +0000 | [diff] [blame] | 428 | int rc; |
Simon Glass | b0e6ef4 | 2014-12-10 08:55:57 -0700 | [diff] [blame] | 429 | u8 reg; |
Yen Lin | 96a78ac | 2012-03-06 19:00:23 +0000 | [diff] [blame] | 430 | |
Simon Glass | b0e6ef4 | 2014-12-10 08:55:57 -0700 | [diff] [blame] | 431 | /* Shift 7-bit address over for lower-level i2c functions */ |
| 432 | rc = tegra_i2c_write_data(i2c_bus, chip_addr << 1, ®, sizeof(reg), |
| 433 | false); |
| 434 | |
| 435 | return rc; |
Yen Lin | 96a78ac | 2012-03-06 19:00:23 +0000 | [diff] [blame] | 436 | } |
| 437 | |
Simon Glass | b0e6ef4 | 2014-12-10 08:55:57 -0700 | [diff] [blame] | 438 | static int tegra_i2c_xfer(struct udevice *bus, struct i2c_msg *msg, |
| 439 | int nmsgs) |
Yen Lin | 96a78ac | 2012-03-06 19:00:23 +0000 | [diff] [blame] | 440 | { |
Simon Glass | b0e6ef4 | 2014-12-10 08:55:57 -0700 | [diff] [blame] | 441 | struct i2c_bus *i2c_bus = dev_get_priv(bus); |
| 442 | int ret; |
Yen Lin | 96a78ac | 2012-03-06 19:00:23 +0000 | [diff] [blame] | 443 | |
Simon Glass | b0e6ef4 | 2014-12-10 08:55:57 -0700 | [diff] [blame] | 444 | debug("i2c_xfer: %d messages\n", nmsgs); |
| 445 | for (; nmsgs > 0; nmsgs--, msg++) { |
| 446 | bool next_is_read = nmsgs > 1 && (msg[1].flags & I2C_M_RD); |
Yen Lin | 96a78ac | 2012-03-06 19:00:23 +0000 | [diff] [blame] | 447 | |
Simon Glass | b0e6ef4 | 2014-12-10 08:55:57 -0700 | [diff] [blame] | 448 | debug("i2c_xfer: chip=0x%x, len=0x%x\n", msg->addr, msg->len); |
| 449 | if (msg->flags & I2C_M_RD) { |
| 450 | ret = i2c_read_data(i2c_bus, msg->addr, msg->buf, |
| 451 | msg->len); |
| 452 | } else { |
| 453 | ret = i2c_write_data(i2c_bus, msg->addr, msg->buf, |
| 454 | msg->len, next_is_read); |
Yen Lin | 96a78ac | 2012-03-06 19:00:23 +0000 | [diff] [blame] | 455 | } |
Simon Glass | b0e6ef4 | 2014-12-10 08:55:57 -0700 | [diff] [blame] | 456 | if (ret) { |
| 457 | debug("i2c_write: error sending\n"); |
| 458 | return -EREMOTEIO; |
Yen Lin | 96a78ac | 2012-03-06 19:00:23 +0000 | [diff] [blame] | 459 | } |
| 460 | } |
| 461 | |
| 462 | return 0; |
| 463 | } |
| 464 | |
Simon Glass | b0e6ef4 | 2014-12-10 08:55:57 -0700 | [diff] [blame] | 465 | int tegra_i2c_get_dvc_bus(struct udevice **busp) |
Yen Lin | 96a78ac | 2012-03-06 19:00:23 +0000 | [diff] [blame] | 466 | { |
Simon Glass | b0e6ef4 | 2014-12-10 08:55:57 -0700 | [diff] [blame] | 467 | struct udevice *bus; |
Yen Lin | 96a78ac | 2012-03-06 19:00:23 +0000 | [diff] [blame] | 468 | |
Simon Glass | b0e6ef4 | 2014-12-10 08:55:57 -0700 | [diff] [blame] | 469 | for (uclass_first_device(UCLASS_I2C, &bus); |
| 470 | bus; |
| 471 | uclass_next_device(&bus)) { |
Simon Glass | 39de843 | 2015-03-25 12:21:55 -0600 | [diff] [blame] | 472 | if (dev_get_driver_data(bus) == TYPE_DVC) { |
Simon Glass | b0e6ef4 | 2014-12-10 08:55:57 -0700 | [diff] [blame] | 473 | *busp = bus; |
| 474 | return 0; |
Yen Lin | 96a78ac | 2012-03-06 19:00:23 +0000 | [diff] [blame] | 475 | } |
| 476 | } |
| 477 | |
Simon Glass | b0e6ef4 | 2014-12-10 08:55:57 -0700 | [diff] [blame] | 478 | return -ENODEV; |
| 479 | } |
| 480 | |
| 481 | static const struct dm_i2c_ops tegra_i2c_ops = { |
| 482 | .xfer = tegra_i2c_xfer, |
| 483 | .probe_chip = tegra_i2c_probe_chip, |
| 484 | .set_bus_speed = tegra_i2c_set_bus_speed, |
| 485 | }; |
| 486 | |
Simon Glass | b0e6ef4 | 2014-12-10 08:55:57 -0700 | [diff] [blame] | 487 | static const struct udevice_id tegra_i2c_ids[] = { |
| 488 | { .compatible = "nvidia,tegra114-i2c", .data = TYPE_114 }, |
| 489 | { .compatible = "nvidia,tegra20-i2c", .data = TYPE_STD }, |
| 490 | { .compatible = "nvidia,tegra20-i2c-dvc", .data = TYPE_DVC }, |
| 491 | { } |
| 492 | }; |
Simon Glass | e31c1e5 | 2012-04-02 13:19:01 +0000 | [diff] [blame] | 493 | |
Simon Glass | b0e6ef4 | 2014-12-10 08:55:57 -0700 | [diff] [blame] | 494 | U_BOOT_DRIVER(i2c_tegra) = { |
| 495 | .name = "i2c_tegra", |
| 496 | .id = UCLASS_I2C, |
| 497 | .of_match = tegra_i2c_ids, |
Simon Glass | b0e6ef4 | 2014-12-10 08:55:57 -0700 | [diff] [blame] | 498 | .probe = tegra_i2c_probe, |
Simon Glass | b0e6ef4 | 2014-12-10 08:55:57 -0700 | [diff] [blame] | 499 | .priv_auto_alloc_size = sizeof(struct i2c_bus), |
| 500 | .ops = &tegra_i2c_ops, |
| 501 | }; |