Dirk Eibach | b957743 | 2014-07-03 09:28:18 +0200 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2013 |
Mario Six | b489358 | 2018-03-06 08:04:58 +0100 | [diff] [blame] | 3 | * Dirk Eibach, Guntermann & Drunck GmbH, dirk.eibach@gdsys.cc |
Dirk Eibach | b957743 | 2014-07-03 09:28:18 +0200 | [diff] [blame] | 4 | * |
| 5 | * SPDX-License-Identifier: GPL-2.0+ |
| 6 | */ |
| 7 | |
| 8 | #include <common.h> |
| 9 | #include <i2c.h> |
Mario Six | 3bb409c | 2018-01-15 11:08:11 +0100 | [diff] [blame] | 10 | #ifdef CONFIG_DM_I2C |
| 11 | #include <dm.h> |
| 12 | #include <fpgamap.h> |
| 13 | #include "../misc/gdsys_soc.h" |
| 14 | #else |
Dirk Eibach | b957743 | 2014-07-03 09:28:18 +0200 | [diff] [blame] | 15 | #include <gdsys_fpga.h> |
Mario Six | 3bb409c | 2018-01-15 11:08:11 +0100 | [diff] [blame] | 16 | #endif |
Mario Six | 48689b4 | 2018-01-15 11:08:10 +0100 | [diff] [blame] | 17 | #include <asm/unaligned.h> |
Dirk Eibach | b957743 | 2014-07-03 09:28:18 +0200 | [diff] [blame] | 18 | |
Mario Six | 3bb409c | 2018-01-15 11:08:11 +0100 | [diff] [blame] | 19 | #ifdef CONFIG_DM_I2C |
| 20 | struct ihs_i2c_priv { |
| 21 | uint speed; |
| 22 | phys_addr_t addr; |
| 23 | }; |
| 24 | |
| 25 | enum { |
| 26 | REG_INTERRUPT_STATUS = 0x00, |
| 27 | REG_INTERRUPT_ENABLE_CONTROL = 0x02, |
| 28 | REG_WRITE_MAILBOX_EXT = 0x04, |
| 29 | REG_WRITE_MAILBOX = 0x06, |
| 30 | REG_READ_MAILBOX_EXT = 0x08, |
| 31 | REG_READ_MAILBOX = 0x0A, |
| 32 | }; |
| 33 | |
| 34 | #else /* !CONFIG_DM_I2C */ |
Dirk Eibach | b957743 | 2014-07-03 09:28:18 +0200 | [diff] [blame] | 35 | DECLARE_GLOBAL_DATA_PTR; |
| 36 | |
Dirk Eibach | 9ac3385 | 2015-10-28 11:46:22 +0100 | [diff] [blame] | 37 | #ifdef CONFIG_SYS_I2C_IHS_DUAL |
Mario Six | 3bb409c | 2018-01-15 11:08:11 +0100 | [diff] [blame] | 38 | |
Dirk Eibach | 9ac3385 | 2015-10-28 11:46:22 +0100 | [diff] [blame] | 39 | #define I2C_SET_REG(fld, val) \ |
Dirk Eibach | 2c7212b | 2015-10-28 11:46:23 +0100 | [diff] [blame] | 40 | do { \ |
| 41 | if (I2C_ADAP_HWNR & 0x10) \ |
| 42 | FPGA_SET_REG(I2C_ADAP_HWNR & 0xf, i2c1.fld, val); \ |
| 43 | else \ |
| 44 | FPGA_SET_REG(I2C_ADAP_HWNR, i2c0.fld, val); \ |
| 45 | } while (0) |
Dirk Eibach | 9ac3385 | 2015-10-28 11:46:22 +0100 | [diff] [blame] | 46 | #else |
| 47 | #define I2C_SET_REG(fld, val) \ |
Dirk Eibach | 2c7212b | 2015-10-28 11:46:23 +0100 | [diff] [blame] | 48 | FPGA_SET_REG(I2C_ADAP_HWNR, i2c0.fld, val) |
Dirk Eibach | 9ac3385 | 2015-10-28 11:46:22 +0100 | [diff] [blame] | 49 | #endif |
| 50 | |
| 51 | #ifdef CONFIG_SYS_I2C_IHS_DUAL |
| 52 | #define I2C_GET_REG(fld, val) \ |
Dirk Eibach | 2c7212b | 2015-10-28 11:46:23 +0100 | [diff] [blame] | 53 | do { \ |
| 54 | if (I2C_ADAP_HWNR & 0x10) \ |
| 55 | FPGA_GET_REG(I2C_ADAP_HWNR & 0xf, i2c1.fld, val); \ |
| 56 | else \ |
| 57 | FPGA_GET_REG(I2C_ADAP_HWNR, i2c0.fld, val); \ |
| 58 | } while (0) |
Dirk Eibach | 9ac3385 | 2015-10-28 11:46:22 +0100 | [diff] [blame] | 59 | #else |
| 60 | #define I2C_GET_REG(fld, val) \ |
Dirk Eibach | 2c7212b | 2015-10-28 11:46:23 +0100 | [diff] [blame] | 61 | FPGA_GET_REG(I2C_ADAP_HWNR, i2c0.fld, val) |
Dirk Eibach | 9ac3385 | 2015-10-28 11:46:22 +0100 | [diff] [blame] | 62 | #endif |
Mario Six | 3bb409c | 2018-01-15 11:08:11 +0100 | [diff] [blame] | 63 | #endif /* CONFIG_DM_I2C */ |
Dirk Eibach | 9ac3385 | 2015-10-28 11:46:22 +0100 | [diff] [blame] | 64 | |
Dirk Eibach | b957743 | 2014-07-03 09:28:18 +0200 | [diff] [blame] | 65 | enum { |
Mario Six | 48689b4 | 2018-01-15 11:08:10 +0100 | [diff] [blame] | 66 | I2CINT_ERROR_EV = BIT(13), |
| 67 | I2CINT_TRANSMIT_EV = BIT(14), |
| 68 | I2CINT_RECEIVE_EV = BIT(15), |
Dirk Eibach | b957743 | 2014-07-03 09:28:18 +0200 | [diff] [blame] | 69 | }; |
| 70 | |
| 71 | enum { |
Mario Six | 48689b4 | 2018-01-15 11:08:10 +0100 | [diff] [blame] | 72 | I2CMB_READ = 0 << 10, |
Dirk Eibach | b957743 | 2014-07-03 09:28:18 +0200 | [diff] [blame] | 73 | I2CMB_WRITE = 1 << 10, |
Mario Six | 48689b4 | 2018-01-15 11:08:10 +0100 | [diff] [blame] | 74 | I2CMB_1BYTE = 0 << 11, |
Dirk Eibach | b957743 | 2014-07-03 09:28:18 +0200 | [diff] [blame] | 75 | I2CMB_2BYTE = 1 << 11, |
Mario Six | 48689b4 | 2018-01-15 11:08:10 +0100 | [diff] [blame] | 76 | I2CMB_DONT_HOLD_BUS = 0 << 13, |
Dirk Eibach | b957743 | 2014-07-03 09:28:18 +0200 | [diff] [blame] | 77 | I2CMB_HOLD_BUS = 1 << 13, |
| 78 | I2CMB_NATIVE = 2 << 14, |
| 79 | }; |
| 80 | |
Mario Six | 48689b4 | 2018-01-15 11:08:10 +0100 | [diff] [blame] | 81 | enum { |
| 82 | I2COP_WRITE = 0, |
| 83 | I2COP_READ = 1, |
| 84 | }; |
| 85 | |
Mario Six | 3bb409c | 2018-01-15 11:08:11 +0100 | [diff] [blame] | 86 | #ifdef CONFIG_DM_I2C |
| 87 | static int wait_for_int(struct udevice *dev, int read) |
| 88 | #else |
Dirk Eibach | b957743 | 2014-07-03 09:28:18 +0200 | [diff] [blame] | 89 | static int wait_for_int(bool read) |
Mario Six | 3bb409c | 2018-01-15 11:08:11 +0100 | [diff] [blame] | 90 | #endif |
Dirk Eibach | b957743 | 2014-07-03 09:28:18 +0200 | [diff] [blame] | 91 | { |
| 92 | u16 val; |
Mario Six | 48689b4 | 2018-01-15 11:08:10 +0100 | [diff] [blame] | 93 | uint ctr = 0; |
Mario Six | 3bb409c | 2018-01-15 11:08:11 +0100 | [diff] [blame] | 94 | #ifdef CONFIG_DM_I2C |
| 95 | struct ihs_i2c_priv *priv = dev_get_priv(dev); |
| 96 | struct udevice *fpga; |
| 97 | |
| 98 | gdsys_soc_get_fpga(dev, &fpga); |
| 99 | #endif |
Dirk Eibach | b957743 | 2014-07-03 09:28:18 +0200 | [diff] [blame] | 100 | |
Mario Six | 3bb409c | 2018-01-15 11:08:11 +0100 | [diff] [blame] | 101 | #ifdef CONFIG_DM_I2C |
| 102 | fpgamap_read16(fpga, priv->addr + REG_INTERRUPT_STATUS, &val); |
| 103 | #else |
Dirk Eibach | 9ac3385 | 2015-10-28 11:46:22 +0100 | [diff] [blame] | 104 | I2C_GET_REG(interrupt_status, &val); |
Mario Six | 3bb409c | 2018-01-15 11:08:11 +0100 | [diff] [blame] | 105 | #endif |
Mario Six | 48689b4 | 2018-01-15 11:08:10 +0100 | [diff] [blame] | 106 | /* Wait until error or receive/transmit interrupt was raised */ |
Dirk Eibach | b957743 | 2014-07-03 09:28:18 +0200 | [diff] [blame] | 107 | while (!(val & (I2CINT_ERROR_EV |
| 108 | | (read ? I2CINT_RECEIVE_EV : I2CINT_TRANSMIT_EV)))) { |
| 109 | udelay(10); |
Mario Six | 48689b4 | 2018-01-15 11:08:10 +0100 | [diff] [blame] | 110 | if (ctr++ > 5000) |
Dirk Eibach | b957743 | 2014-07-03 09:28:18 +0200 | [diff] [blame] | 111 | return 1; |
Mario Six | 3bb409c | 2018-01-15 11:08:11 +0100 | [diff] [blame] | 112 | #ifdef CONFIG_DM_I2C |
| 113 | fpgamap_read16(fpga, priv->addr + REG_INTERRUPT_STATUS, &val); |
| 114 | #else |
Dirk Eibach | 9ac3385 | 2015-10-28 11:46:22 +0100 | [diff] [blame] | 115 | I2C_GET_REG(interrupt_status, &val); |
Mario Six | 3bb409c | 2018-01-15 11:08:11 +0100 | [diff] [blame] | 116 | #endif |
Dirk Eibach | b957743 | 2014-07-03 09:28:18 +0200 | [diff] [blame] | 117 | } |
| 118 | |
| 119 | return (val & I2CINT_ERROR_EV) ? 1 : 0; |
| 120 | } |
| 121 | |
Mario Six | 3bb409c | 2018-01-15 11:08:11 +0100 | [diff] [blame] | 122 | #ifdef CONFIG_DM_I2C |
| 123 | static int ihs_i2c_transfer(struct udevice *dev, uchar chip, |
| 124 | uchar *buffer, int len, int read, bool is_last) |
| 125 | #else |
Dirk Eibach | b957743 | 2014-07-03 09:28:18 +0200 | [diff] [blame] | 126 | static int ihs_i2c_transfer(uchar chip, uchar *buffer, int len, bool read, |
| 127 | bool is_last) |
Mario Six | 3bb409c | 2018-01-15 11:08:11 +0100 | [diff] [blame] | 128 | #endif |
Dirk Eibach | b957743 | 2014-07-03 09:28:18 +0200 | [diff] [blame] | 129 | { |
| 130 | u16 val; |
Mario Six | 3bb409c | 2018-01-15 11:08:11 +0100 | [diff] [blame] | 131 | #ifdef CONFIG_DM_I2C |
| 132 | struct ihs_i2c_priv *priv = dev_get_priv(dev); |
| 133 | struct udevice *fpga; |
| 134 | |
| 135 | gdsys_soc_get_fpga(dev, &fpga); |
| 136 | #endif |
Dirk Eibach | b957743 | 2014-07-03 09:28:18 +0200 | [diff] [blame] | 137 | |
Mario Six | 48689b4 | 2018-01-15 11:08:10 +0100 | [diff] [blame] | 138 | /* Clear interrupt status */ |
Mario Six | 3bb409c | 2018-01-15 11:08:11 +0100 | [diff] [blame] | 139 | #ifdef CONFIG_DM_I2C |
| 140 | fpgamap_write16(fpga, priv->addr + REG_INTERRUPT_STATUS, |
| 141 | I2CINT_ERROR_EV | I2CINT_RECEIVE_EV | I2CINT_TRANSMIT_EV); |
| 142 | fpgamap_read16(fpga, priv->addr + REG_INTERRUPT_STATUS, &val); |
| 143 | #else |
Dirk Eibach | 9ac3385 | 2015-10-28 11:46:22 +0100 | [diff] [blame] | 144 | I2C_SET_REG(interrupt_status, I2CINT_ERROR_EV |
Dirk Eibach | b957743 | 2014-07-03 09:28:18 +0200 | [diff] [blame] | 145 | | I2CINT_RECEIVE_EV | I2CINT_TRANSMIT_EV); |
Dirk Eibach | 9ac3385 | 2015-10-28 11:46:22 +0100 | [diff] [blame] | 146 | I2C_GET_REG(interrupt_status, &val); |
Mario Six | 3bb409c | 2018-01-15 11:08:11 +0100 | [diff] [blame] | 147 | #endif |
Dirk Eibach | b957743 | 2014-07-03 09:28:18 +0200 | [diff] [blame] | 148 | |
Mario Six | 48689b4 | 2018-01-15 11:08:10 +0100 | [diff] [blame] | 149 | /* If we want to write and have data, write the bytes to the mailbox */ |
Dirk Eibach | b957743 | 2014-07-03 09:28:18 +0200 | [diff] [blame] | 150 | if (!read && len) { |
| 151 | val = buffer[0]; |
| 152 | |
| 153 | if (len > 1) |
| 154 | val |= buffer[1] << 8; |
Mario Six | 3bb409c | 2018-01-15 11:08:11 +0100 | [diff] [blame] | 155 | #ifdef CONFIG_DM_I2C |
| 156 | fpgamap_write16(fpga, priv->addr + REG_WRITE_MAILBOX_EXT, val); |
| 157 | #else |
Dirk Eibach | 9ac3385 | 2015-10-28 11:46:22 +0100 | [diff] [blame] | 158 | I2C_SET_REG(write_mailbox_ext, val); |
Mario Six | 3bb409c | 2018-01-15 11:08:11 +0100 | [diff] [blame] | 159 | #endif |
Dirk Eibach | b957743 | 2014-07-03 09:28:18 +0200 | [diff] [blame] | 160 | } |
| 161 | |
Mario Six | 3bb409c | 2018-01-15 11:08:11 +0100 | [diff] [blame] | 162 | #ifdef CONFIG_DM_I2C |
| 163 | fpgamap_write16(fpga, priv->addr + REG_WRITE_MAILBOX, |
| 164 | I2CMB_NATIVE |
| 165 | | (read ? I2CMB_READ : I2CMB_WRITE) |
| 166 | | (chip << 1) |
| 167 | | ((len > 1) ? I2CMB_2BYTE : I2CMB_1BYTE) |
| 168 | | (!is_last ? I2CMB_HOLD_BUS : I2CMB_DONT_HOLD_BUS)); |
| 169 | #else |
Dirk Eibach | 9ac3385 | 2015-10-28 11:46:22 +0100 | [diff] [blame] | 170 | I2C_SET_REG(write_mailbox, |
| 171 | I2CMB_NATIVE |
| 172 | | (read ? 0 : I2CMB_WRITE) |
| 173 | | (chip << 1) |
| 174 | | ((len > 1) ? I2CMB_2BYTE : 0) |
| 175 | | (is_last ? 0 : I2CMB_HOLD_BUS)); |
Mario Six | 3bb409c | 2018-01-15 11:08:11 +0100 | [diff] [blame] | 176 | #endif |
Dirk Eibach | b957743 | 2014-07-03 09:28:18 +0200 | [diff] [blame] | 177 | |
Mario Six | 3bb409c | 2018-01-15 11:08:11 +0100 | [diff] [blame] | 178 | #ifdef CONFIG_DM_I2C |
| 179 | if (wait_for_int(dev, read)) |
| 180 | #else |
Dirk Eibach | b957743 | 2014-07-03 09:28:18 +0200 | [diff] [blame] | 181 | if (wait_for_int(read)) |
Mario Six | 3bb409c | 2018-01-15 11:08:11 +0100 | [diff] [blame] | 182 | #endif |
Dirk Eibach | b957743 | 2014-07-03 09:28:18 +0200 | [diff] [blame] | 183 | return 1; |
| 184 | |
Mario Six | 48689b4 | 2018-01-15 11:08:10 +0100 | [diff] [blame] | 185 | /* If we want to read, get the bytes from the mailbox */ |
Dirk Eibach | b957743 | 2014-07-03 09:28:18 +0200 | [diff] [blame] | 186 | if (read) { |
Mario Six | 3bb409c | 2018-01-15 11:08:11 +0100 | [diff] [blame] | 187 | #ifdef CONFIG_DM_I2C |
| 188 | fpgamap_read16(fpga, priv->addr + REG_READ_MAILBOX_EXT, &val); |
| 189 | #else |
Dirk Eibach | 9ac3385 | 2015-10-28 11:46:22 +0100 | [diff] [blame] | 190 | I2C_GET_REG(read_mailbox_ext, &val); |
Mario Six | 3bb409c | 2018-01-15 11:08:11 +0100 | [diff] [blame] | 191 | #endif |
Dirk Eibach | b957743 | 2014-07-03 09:28:18 +0200 | [diff] [blame] | 192 | buffer[0] = val & 0xff; |
| 193 | if (len > 1) |
| 194 | buffer[1] = val >> 8; |
| 195 | } |
| 196 | |
| 197 | return 0; |
| 198 | } |
| 199 | |
Mario Six | 3bb409c | 2018-01-15 11:08:11 +0100 | [diff] [blame] | 200 | #ifdef CONFIG_DM_I2C |
Mario Six | 96961e8 | 2018-01-15 11:08:12 +0100 | [diff] [blame] | 201 | static int ihs_i2c_send_buffer(struct udevice *dev, uchar chip, u8 *data, int len, bool hold_bus, int read) |
Mario Six | 3bb409c | 2018-01-15 11:08:11 +0100 | [diff] [blame] | 202 | #else |
Mario Six | 96961e8 | 2018-01-15 11:08:12 +0100 | [diff] [blame] | 203 | static int ihs_i2c_send_buffer(uchar chip, u8 *data, int len, bool hold_bus, |
| 204 | int read) |
Mario Six | 3bb409c | 2018-01-15 11:08:11 +0100 | [diff] [blame] | 205 | #endif |
Dirk Eibach | b957743 | 2014-07-03 09:28:18 +0200 | [diff] [blame] | 206 | { |
Mario Six | 96961e8 | 2018-01-15 11:08:12 +0100 | [diff] [blame] | 207 | while (len) { |
| 208 | int transfer = min(len, 2); |
| 209 | bool is_last = len <= transfer; |
Dirk Eibach | b957743 | 2014-07-03 09:28:18 +0200 | [diff] [blame] | 210 | |
Mario Six | 3bb409c | 2018-01-15 11:08:11 +0100 | [diff] [blame] | 211 | #ifdef CONFIG_DM_I2C |
Mario Six | 96961e8 | 2018-01-15 11:08:12 +0100 | [diff] [blame] | 212 | if (ihs_i2c_transfer(dev, chip, data, transfer, read, |
Mario Six | 3bb409c | 2018-01-15 11:08:11 +0100 | [diff] [blame] | 213 | hold_bus ? false : is_last)) |
| 214 | return 1; |
| 215 | #else |
Mario Six | 96961e8 | 2018-01-15 11:08:12 +0100 | [diff] [blame] | 216 | if (ihs_i2c_transfer(chip, data, transfer, read, |
Dirk Eibach | b957743 | 2014-07-03 09:28:18 +0200 | [diff] [blame] | 217 | hold_bus ? false : is_last)) |
| 218 | return 1; |
Mario Six | 3bb409c | 2018-01-15 11:08:11 +0100 | [diff] [blame] | 219 | #endif |
Dirk Eibach | b957743 | 2014-07-03 09:28:18 +0200 | [diff] [blame] | 220 | |
Mario Six | 96961e8 | 2018-01-15 11:08:12 +0100 | [diff] [blame] | 221 | data += transfer; |
| 222 | len -= transfer; |
Dirk Eibach | b957743 | 2014-07-03 09:28:18 +0200 | [diff] [blame] | 223 | } |
| 224 | |
| 225 | return 0; |
| 226 | } |
| 227 | |
Mario Six | 3bb409c | 2018-01-15 11:08:11 +0100 | [diff] [blame] | 228 | #ifdef CONFIG_DM_I2C |
Mario Six | 96961e8 | 2018-01-15 11:08:12 +0100 | [diff] [blame] | 229 | static int ihs_i2c_address(struct udevice *dev, uchar chip, u8 *addr, int alen, |
| 230 | bool hold_bus) |
| 231 | #else |
| 232 | static int ihs_i2c_address(uchar chip, u8 *addr, int alen, bool hold_bus) |
| 233 | #endif |
| 234 | { |
| 235 | #ifdef CONFIG_DM_I2C |
| 236 | return ihs_i2c_send_buffer(dev, chip, addr, alen, hold_bus, I2COP_WRITE); |
| 237 | #else |
| 238 | return ihs_i2c_send_buffer(chip, addr, alen, hold_bus, I2COP_WRITE); |
| 239 | #endif |
| 240 | } |
| 241 | |
| 242 | #ifdef CONFIG_DM_I2C |
Mario Six | 3bb409c | 2018-01-15 11:08:11 +0100 | [diff] [blame] | 243 | static int ihs_i2c_access(struct udevice *dev, uchar chip, u8 *addr, |
| 244 | int alen, uchar *buffer, int len, int read) |
| 245 | #else |
Mario Six | 48689b4 | 2018-01-15 11:08:10 +0100 | [diff] [blame] | 246 | static int ihs_i2c_access(struct i2c_adapter *adap, uchar chip, u8 *addr, |
| 247 | int alen, uchar *buffer, int len, int read) |
Mario Six | 3bb409c | 2018-01-15 11:08:11 +0100 | [diff] [blame] | 248 | #endif |
Dirk Eibach | b957743 | 2014-07-03 09:28:18 +0200 | [diff] [blame] | 249 | { |
Mario Six | 48689b4 | 2018-01-15 11:08:10 +0100 | [diff] [blame] | 250 | /* Don't hold the bus if length of data to send/receive is zero */ |
Mario Six | 3bb409c | 2018-01-15 11:08:11 +0100 | [diff] [blame] | 251 | #ifdef CONFIG_DM_I2C |
| 252 | if (len <= 0 || ihs_i2c_address(dev, chip, addr, alen, len)) |
| 253 | return 1; |
| 254 | #else |
Mario Six | 48689b4 | 2018-01-15 11:08:10 +0100 | [diff] [blame] | 255 | if (len <= 0 || ihs_i2c_address(chip, addr, alen, len)) |
Dirk Eibach | b957743 | 2014-07-03 09:28:18 +0200 | [diff] [blame] | 256 | return 1; |
Mario Six | 3bb409c | 2018-01-15 11:08:11 +0100 | [diff] [blame] | 257 | #endif |
Dirk Eibach | b957743 | 2014-07-03 09:28:18 +0200 | [diff] [blame] | 258 | |
Mario Six | 3bb409c | 2018-01-15 11:08:11 +0100 | [diff] [blame] | 259 | #ifdef CONFIG_DM_I2C |
Mario Six | 96961e8 | 2018-01-15 11:08:12 +0100 | [diff] [blame] | 260 | return ihs_i2c_send_buffer(dev, chip, buffer, len, false, read); |
Mario Six | 3bb409c | 2018-01-15 11:08:11 +0100 | [diff] [blame] | 261 | #else |
Mario Six | 96961e8 | 2018-01-15 11:08:12 +0100 | [diff] [blame] | 262 | return ihs_i2c_send_buffer(chip, buffer, len, false, read); |
Mario Six | 3bb409c | 2018-01-15 11:08:11 +0100 | [diff] [blame] | 263 | #endif |
Dirk Eibach | b957743 | 2014-07-03 09:28:18 +0200 | [diff] [blame] | 264 | } |
| 265 | |
Mario Six | 3bb409c | 2018-01-15 11:08:11 +0100 | [diff] [blame] | 266 | #ifdef CONFIG_DM_I2C |
| 267 | |
| 268 | int ihs_i2c_probe(struct udevice *bus) |
| 269 | { |
| 270 | struct ihs_i2c_priv *priv = dev_get_priv(bus); |
| 271 | int addr; |
| 272 | |
| 273 | addr = dev_read_u32_default(bus, "reg", -1); |
| 274 | |
| 275 | priv->addr = addr; |
| 276 | |
| 277 | return 0; |
| 278 | } |
| 279 | |
| 280 | static int ihs_i2c_set_bus_speed(struct udevice *bus, uint speed) |
| 281 | { |
| 282 | struct ihs_i2c_priv *priv = dev_get_priv(bus); |
| 283 | |
| 284 | if (speed != priv->speed && priv->speed != 0) |
| 285 | return 1; |
| 286 | |
| 287 | priv->speed = speed; |
| 288 | |
| 289 | return 0; |
| 290 | } |
| 291 | |
| 292 | static int ihs_i2c_xfer(struct udevice *bus, struct i2c_msg *msg, int nmsgs) |
| 293 | { |
| 294 | struct i2c_msg *dmsg, *omsg, dummy; |
| 295 | |
| 296 | memset(&dummy, 0, sizeof(struct i2c_msg)); |
| 297 | |
| 298 | /* We expect either two messages (one with an offset and one with the |
| 299 | * actucal data) or one message (just data) |
| 300 | */ |
| 301 | if (nmsgs > 2 || nmsgs == 0) { |
| 302 | debug("%s: Only one or two messages are supported.", __func__); |
| 303 | return -1; |
| 304 | } |
| 305 | |
| 306 | omsg = nmsgs == 1 ? &dummy : msg; |
| 307 | dmsg = nmsgs == 1 ? msg : msg + 1; |
| 308 | |
| 309 | if (dmsg->flags & I2C_M_RD) |
| 310 | return ihs_i2c_access(bus, dmsg->addr, omsg->buf, |
| 311 | omsg->len, dmsg->buf, dmsg->len, |
| 312 | I2COP_READ); |
| 313 | else |
| 314 | return ihs_i2c_access(bus, dmsg->addr, omsg->buf, |
| 315 | omsg->len, dmsg->buf, dmsg->len, |
| 316 | I2COP_WRITE); |
| 317 | } |
| 318 | |
| 319 | static int ihs_i2c_probe_chip(struct udevice *bus, u32 chip_addr, |
| 320 | u32 chip_flags) |
| 321 | { |
| 322 | uchar buffer[2]; |
| 323 | |
| 324 | if (ihs_i2c_transfer(bus, chip_addr, buffer, 0, I2COP_READ, true)) |
| 325 | return 1; |
| 326 | |
| 327 | return 0; |
| 328 | } |
| 329 | |
| 330 | static const struct dm_i2c_ops ihs_i2c_ops = { |
| 331 | .xfer = ihs_i2c_xfer, |
| 332 | .probe_chip = ihs_i2c_probe_chip, |
| 333 | .set_bus_speed = ihs_i2c_set_bus_speed, |
| 334 | }; |
| 335 | |
| 336 | static const struct udevice_id ihs_i2c_ids[] = { |
| 337 | { .compatible = "gdsys,ihs_i2cmaster", }, |
| 338 | { /* sentinel */ } |
| 339 | }; |
| 340 | |
| 341 | U_BOOT_DRIVER(i2c_ihs) = { |
| 342 | .name = "i2c_ihs", |
| 343 | .id = UCLASS_I2C, |
| 344 | .of_match = ihs_i2c_ids, |
| 345 | .probe = ihs_i2c_probe, |
| 346 | .priv_auto_alloc_size = sizeof(struct ihs_i2c_priv), |
| 347 | .ops = &ihs_i2c_ops, |
| 348 | }; |
| 349 | |
| 350 | #else /* CONFIG_DM_I2C */ |
| 351 | |
Dirk Eibach | b957743 | 2014-07-03 09:28:18 +0200 | [diff] [blame] | 352 | static void ihs_i2c_init(struct i2c_adapter *adap, int speed, int slaveaddr) |
| 353 | { |
| 354 | #ifdef CONFIG_SYS_I2C_INIT_BOARD |
| 355 | /* |
| 356 | * Call board specific i2c bus reset routine before accessing the |
| 357 | * environment, which might be in a chip on that bus. For details |
| 358 | * about this problem see doc/I2C_Edge_Conditions. |
| 359 | */ |
| 360 | i2c_init_board(); |
| 361 | #endif |
| 362 | } |
| 363 | |
| 364 | static int ihs_i2c_probe(struct i2c_adapter *adap, uchar chip) |
| 365 | { |
| 366 | uchar buffer[2]; |
| 367 | |
Mario Six | 48689b4 | 2018-01-15 11:08:10 +0100 | [diff] [blame] | 368 | if (ihs_i2c_transfer(chip, buffer, 0, I2COP_READ, true)) |
Dirk Eibach | b957743 | 2014-07-03 09:28:18 +0200 | [diff] [blame] | 369 | return 1; |
| 370 | |
| 371 | return 0; |
| 372 | } |
| 373 | |
| 374 | static int ihs_i2c_read(struct i2c_adapter *adap, uchar chip, uint addr, |
| 375 | int alen, uchar *buffer, int len) |
| 376 | { |
Mario Six | 48689b4 | 2018-01-15 11:08:10 +0100 | [diff] [blame] | 377 | u8 addr_bytes[4]; |
| 378 | |
| 379 | put_unaligned_le32(addr, addr_bytes); |
| 380 | |
| 381 | return ihs_i2c_access(adap, chip, addr_bytes, alen, buffer, len, |
| 382 | I2COP_READ); |
Dirk Eibach | b957743 | 2014-07-03 09:28:18 +0200 | [diff] [blame] | 383 | } |
| 384 | |
| 385 | static int ihs_i2c_write(struct i2c_adapter *adap, uchar chip, uint addr, |
| 386 | int alen, uchar *buffer, int len) |
| 387 | { |
Mario Six | 48689b4 | 2018-01-15 11:08:10 +0100 | [diff] [blame] | 388 | u8 addr_bytes[4]; |
| 389 | |
| 390 | put_unaligned_le32(addr, addr_bytes); |
| 391 | |
| 392 | return ihs_i2c_access(adap, chip, addr_bytes, alen, buffer, len, |
| 393 | I2COP_WRITE); |
Dirk Eibach | b957743 | 2014-07-03 09:28:18 +0200 | [diff] [blame] | 394 | } |
| 395 | |
| 396 | static unsigned int ihs_i2c_set_bus_speed(struct i2c_adapter *adap, |
Dirk Eibach | 9ac3385 | 2015-10-28 11:46:22 +0100 | [diff] [blame] | 397 | unsigned int speed) |
Dirk Eibach | b957743 | 2014-07-03 09:28:18 +0200 | [diff] [blame] | 398 | { |
| 399 | if (speed != adap->speed) |
| 400 | return 1; |
| 401 | return speed; |
| 402 | } |
| 403 | |
| 404 | /* |
| 405 | * Register IHS i2c adapters |
| 406 | */ |
| 407 | #ifdef CONFIG_SYS_I2C_IHS_CH0 |
| 408 | U_BOOT_I2C_ADAP_COMPLETE(ihs0, ihs_i2c_init, ihs_i2c_probe, |
| 409 | ihs_i2c_read, ihs_i2c_write, |
| 410 | ihs_i2c_set_bus_speed, |
| 411 | CONFIG_SYS_I2C_IHS_SPEED_0, |
| 412 | CONFIG_SYS_I2C_IHS_SLAVE_0, 0) |
Dirk Eibach | 9ac3385 | 2015-10-28 11:46:22 +0100 | [diff] [blame] | 413 | #ifdef CONFIG_SYS_I2C_IHS_DUAL |
| 414 | U_BOOT_I2C_ADAP_COMPLETE(ihs0_1, ihs_i2c_init, ihs_i2c_probe, |
| 415 | ihs_i2c_read, ihs_i2c_write, |
| 416 | ihs_i2c_set_bus_speed, |
| 417 | CONFIG_SYS_I2C_IHS_SPEED_0_1, |
| 418 | CONFIG_SYS_I2C_IHS_SLAVE_0_1, 16) |
| 419 | #endif |
Dirk Eibach | b957743 | 2014-07-03 09:28:18 +0200 | [diff] [blame] | 420 | #endif |
| 421 | #ifdef CONFIG_SYS_I2C_IHS_CH1 |
| 422 | U_BOOT_I2C_ADAP_COMPLETE(ihs1, ihs_i2c_init, ihs_i2c_probe, |
| 423 | ihs_i2c_read, ihs_i2c_write, |
| 424 | ihs_i2c_set_bus_speed, |
| 425 | CONFIG_SYS_I2C_IHS_SPEED_1, |
| 426 | CONFIG_SYS_I2C_IHS_SLAVE_1, 1) |
Dirk Eibach | 9ac3385 | 2015-10-28 11:46:22 +0100 | [diff] [blame] | 427 | #ifdef CONFIG_SYS_I2C_IHS_DUAL |
| 428 | U_BOOT_I2C_ADAP_COMPLETE(ihs1_1, ihs_i2c_init, ihs_i2c_probe, |
| 429 | ihs_i2c_read, ihs_i2c_write, |
| 430 | ihs_i2c_set_bus_speed, |
| 431 | CONFIG_SYS_I2C_IHS_SPEED_1_1, |
| 432 | CONFIG_SYS_I2C_IHS_SLAVE_1_1, 17) |
| 433 | #endif |
Dirk Eibach | b957743 | 2014-07-03 09:28:18 +0200 | [diff] [blame] | 434 | #endif |
| 435 | #ifdef CONFIG_SYS_I2C_IHS_CH2 |
| 436 | U_BOOT_I2C_ADAP_COMPLETE(ihs2, ihs_i2c_init, ihs_i2c_probe, |
| 437 | ihs_i2c_read, ihs_i2c_write, |
| 438 | ihs_i2c_set_bus_speed, |
| 439 | CONFIG_SYS_I2C_IHS_SPEED_2, |
| 440 | CONFIG_SYS_I2C_IHS_SLAVE_2, 2) |
Dirk Eibach | 9ac3385 | 2015-10-28 11:46:22 +0100 | [diff] [blame] | 441 | #ifdef CONFIG_SYS_I2C_IHS_DUAL |
| 442 | U_BOOT_I2C_ADAP_COMPLETE(ihs2_1, ihs_i2c_init, ihs_i2c_probe, |
| 443 | ihs_i2c_read, ihs_i2c_write, |
| 444 | ihs_i2c_set_bus_speed, |
| 445 | CONFIG_SYS_I2C_IHS_SPEED_2_1, |
| 446 | CONFIG_SYS_I2C_IHS_SLAVE_2_1, 18) |
| 447 | #endif |
Dirk Eibach | b957743 | 2014-07-03 09:28:18 +0200 | [diff] [blame] | 448 | #endif |
| 449 | #ifdef CONFIG_SYS_I2C_IHS_CH3 |
| 450 | U_BOOT_I2C_ADAP_COMPLETE(ihs3, ihs_i2c_init, ihs_i2c_probe, |
| 451 | ihs_i2c_read, ihs_i2c_write, |
| 452 | ihs_i2c_set_bus_speed, |
| 453 | CONFIG_SYS_I2C_IHS_SPEED_3, |
| 454 | CONFIG_SYS_I2C_IHS_SLAVE_3, 3) |
Dirk Eibach | 9ac3385 | 2015-10-28 11:46:22 +0100 | [diff] [blame] | 455 | #ifdef CONFIG_SYS_I2C_IHS_DUAL |
| 456 | U_BOOT_I2C_ADAP_COMPLETE(ihs3_1, ihs_i2c_init, ihs_i2c_probe, |
| 457 | ihs_i2c_read, ihs_i2c_write, |
| 458 | ihs_i2c_set_bus_speed, |
| 459 | CONFIG_SYS_I2C_IHS_SPEED_3_1, |
| 460 | CONFIG_SYS_I2C_IHS_SLAVE_3_1, 19) |
| 461 | #endif |
Dirk Eibach | b957743 | 2014-07-03 09:28:18 +0200 | [diff] [blame] | 462 | #endif |
Mario Six | 3bb409c | 2018-01-15 11:08:11 +0100 | [diff] [blame] | 463 | #endif /* CONFIG_DM_I2C */ |