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