Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2002 |
| 4 | * David Mueller, ELSOFT AG, d.mueller@elsoft.ch |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 7 | #include <common.h> |
Przemyslaw Marczak | 8dfcbaa | 2015-01-27 13:36:36 +0100 | [diff] [blame] | 8 | #include <errno.h> |
| 9 | #include <dm.h> |
Rajeshwari Shinde | a9d2ae7 | 2012-12-26 20:03:12 +0000 | [diff] [blame] | 10 | #include <fdtdec.h> |
Piotr Wilczek | c86d9ed | 2012-11-20 02:19:05 +0000 | [diff] [blame] | 11 | #if (defined CONFIG_EXYNOS4 || defined CONFIG_EXYNOS5) |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 12 | #include <log.h> |
Rajeshwari Shinde | ab7e52b | 2012-07-23 21:23:53 +0000 | [diff] [blame] | 13 | #include <asm/arch/clk.h> |
| 14 | #include <asm/arch/cpu.h> |
Rajeshwari Shinde | a9d2ae7 | 2012-12-26 20:03:12 +0000 | [diff] [blame] | 15 | #include <asm/arch/pinmux.h> |
Rajeshwari Shinde | ab7e52b | 2012-07-23 21:23:53 +0000 | [diff] [blame] | 16 | #else |
kevin.morfitt@fearnside-systems.co.uk | ac67804 | 2009-11-17 18:30:34 +0900 | [diff] [blame] | 17 | #include <asm/arch/s3c24x0_cpu.h> |
Rajeshwari Shinde | ab7e52b | 2012-07-23 21:23:53 +0000 | [diff] [blame] | 18 | #endif |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 19 | #include <asm/io.h> |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 20 | #include <i2c.h> |
Rajeshwari Shinde | ab7e52b | 2012-07-23 21:23:53 +0000 | [diff] [blame] | 21 | #include "s3c24x0_i2c.h" |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 22 | |
Jaehoon Chung | a298712 | 2017-01-09 14:47:51 +0900 | [diff] [blame] | 23 | #ifndef CONFIG_SYS_I2C_S3C24X0_SLAVE |
| 24 | #define SYS_I2C_S3C24X0_SLAVE_ADDR 0 |
| 25 | #else |
| 26 | #define SYS_I2C_S3C24X0_SLAVE_ADDR CONFIG_SYS_I2C_S3C24X0_SLAVE |
| 27 | #endif |
| 28 | |
Przemyslaw Marczak | 8dfcbaa | 2015-01-27 13:36:36 +0100 | [diff] [blame] | 29 | DECLARE_GLOBAL_DATA_PTR; |
| 30 | |
Naveen Krishna Ch | e4e2402 | 2013-10-15 16:01:43 +0530 | [diff] [blame] | 31 | /* |
| 32 | * Wait til the byte transfer is completed. |
| 33 | * |
| 34 | * @param i2c- pointer to the appropriate i2c register bank. |
| 35 | * @return I2C_OK, if transmission was ACKED |
| 36 | * I2C_NACK, if transmission was NACKED |
| 37 | * I2C_NOK_TIMEOUT, if transaction did not complete in I2C_TIMEOUT_MS |
| 38 | */ |
| 39 | |
Rajeshwari Shinde | ab7e52b | 2012-07-23 21:23:53 +0000 | [diff] [blame] | 40 | static int WaitForXfer(struct s3c24x0_i2c *i2c) |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 41 | { |
Naveen Krishna Ch | e4e2402 | 2013-10-15 16:01:43 +0530 | [diff] [blame] | 42 | ulong start_time = get_timer(0); |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 43 | |
Naveen Krishna Ch | e4e2402 | 2013-10-15 16:01:43 +0530 | [diff] [blame] | 44 | do { |
| 45 | if (readl(&i2c->iiccon) & I2CCON_IRPND) |
| 46 | return (readl(&i2c->iicstat) & I2CSTAT_NACK) ? |
| 47 | I2C_NACK : I2C_OK; |
| 48 | } while (get_timer(start_time) < I2C_TIMEOUT_MS); |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 49 | |
Naveen Krishna Ch | e4e2402 | 2013-10-15 16:01:43 +0530 | [diff] [blame] | 50 | return I2C_NOK_TOUT; |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 51 | } |
| 52 | |
Simon Glass | 26ea768 | 2015-07-02 18:15:46 -0600 | [diff] [blame] | 53 | static void read_write_byte(struct s3c24x0_i2c *i2c) |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 54 | { |
Simon Glass | 26ea768 | 2015-07-02 18:15:46 -0600 | [diff] [blame] | 55 | clrbits_le32(&i2c->iiccon, I2CCON_IRPND); |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 56 | } |
| 57 | |
Rajeshwari Shinde | ab7e52b | 2012-07-23 21:23:53 +0000 | [diff] [blame] | 58 | static void i2c_ch_init(struct s3c24x0_i2c *i2c, int speed, int slaveadd) |
| 59 | { |
| 60 | ulong freq, pres = 16, div; |
Piotr Wilczek | c86d9ed | 2012-11-20 02:19:05 +0000 | [diff] [blame] | 61 | #if (defined CONFIG_EXYNOS4 || defined CONFIG_EXYNOS5) |
Rajeshwari Shinde | ab7e52b | 2012-07-23 21:23:53 +0000 | [diff] [blame] | 62 | freq = get_i2c_clk(); |
| 63 | #else |
| 64 | freq = get_PCLK(); |
| 65 | #endif |
| 66 | /* calculate prescaler and divisor values */ |
| 67 | if ((freq / pres / (16 + 1)) > speed) |
| 68 | /* set prescaler to 512 */ |
| 69 | pres = 512; |
| 70 | |
| 71 | div = 0; |
| 72 | while ((freq / pres / (div + 1)) > speed) |
| 73 | div++; |
| 74 | |
| 75 | /* set prescaler, divisor according to freq, also set ACKGEN, IRQ */ |
| 76 | writel((div & 0x0F) | 0xA0 | ((pres == 512) ? 0x40 : 0), &i2c->iiccon); |
| 77 | |
| 78 | /* init to SLAVE REVEIVE and set slaveaddr */ |
| 79 | writel(0, &i2c->iicstat); |
| 80 | writel(slaveadd, &i2c->iicadd); |
| 81 | /* program Master Transmit (and implicit STOP) */ |
| 82 | writel(I2C_MODE_MT | I2C_TXRX_ENA, &i2c->iicstat); |
| 83 | } |
| 84 | |
Przemyslaw Marczak | 8dfcbaa | 2015-01-27 13:36:36 +0100 | [diff] [blame] | 85 | static int s3c24x0_i2c_set_bus_speed(struct udevice *dev, unsigned int speed) |
Piotr Wilczek | 2d8f1e2 | 2013-11-20 10:43:49 +0100 | [diff] [blame] | 86 | { |
Simon Glass | 9a1bff6 | 2016-11-23 06:34:42 -0700 | [diff] [blame] | 87 | struct s3c24x0_i2c_bus *i2c_bus = dev_get_priv(dev); |
Piotr Wilczek | 2d8f1e2 | 2013-11-20 10:43:49 +0100 | [diff] [blame] | 88 | |
Piotr Wilczek | 2d8f1e2 | 2013-11-20 10:43:49 +0100 | [diff] [blame] | 89 | i2c_bus->clock_frequency = speed; |
| 90 | |
Simon Glass | 37b8eb3 | 2016-11-23 06:34:43 -0700 | [diff] [blame] | 91 | i2c_ch_init(i2c_bus->regs, i2c_bus->clock_frequency, |
Jaehoon Chung | a298712 | 2017-01-09 14:47:51 +0900 | [diff] [blame] | 92 | SYS_I2C_S3C24X0_SLAVE_ADDR); |
Piotr Wilczek | 2d8f1e2 | 2013-11-20 10:43:49 +0100 | [diff] [blame] | 93 | |
| 94 | return 0; |
| 95 | } |
| 96 | |
Naveen Krishna Ch | 296a461 | 2013-10-15 16:02:44 +0530 | [diff] [blame] | 97 | /* |
wdenk | fc3e216 | 2003-10-08 22:33:00 +0000 | [diff] [blame] | 98 | * cmd_type is 0 for write, 1 for read. |
| 99 | * |
| 100 | * addr_len can take any value from 0-255, it is only limited |
| 101 | * by the char, we could make it larger if needed. If it is |
| 102 | * 0 we skip the address write cycle. |
| 103 | */ |
Rajeshwari Shinde | ab7e52b | 2012-07-23 21:23:53 +0000 | [diff] [blame] | 104 | static int i2c_transfer(struct s3c24x0_i2c *i2c, |
| 105 | unsigned char cmd_type, |
| 106 | unsigned char chip, |
| 107 | unsigned char addr[], |
| 108 | unsigned char addr_len, |
| 109 | unsigned char data[], |
| 110 | unsigned short data_len) |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 111 | { |
Naveen Krishna Ch | e4e2402 | 2013-10-15 16:01:43 +0530 | [diff] [blame] | 112 | int i = 0, result; |
| 113 | ulong start_time = get_timer(0); |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 114 | |
wdenk | fc3e216 | 2003-10-08 22:33:00 +0000 | [diff] [blame] | 115 | if (data == 0 || data_len == 0) { |
| 116 | /*Don't support data transfer of no length or to address 0 */ |
Rajeshwari Shinde | ab7e52b | 2012-07-23 21:23:53 +0000 | [diff] [blame] | 117 | debug("i2c_transfer: bad call\n"); |
wdenk | fc3e216 | 2003-10-08 22:33:00 +0000 | [diff] [blame] | 118 | return I2C_NOK; |
| 119 | } |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 120 | |
Naveen Krishna Ch | e4e2402 | 2013-10-15 16:01:43 +0530 | [diff] [blame] | 121 | while (readl(&i2c->iicstat) & I2CSTAT_BSY) { |
| 122 | if (get_timer(start_time) > I2C_TIMEOUT_MS) |
| 123 | return I2C_NOK_TOUT; |
wdenk | fc3e216 | 2003-10-08 22:33:00 +0000 | [diff] [blame] | 124 | } |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 125 | |
Rajeshwari Shinde | ab7e52b | 2012-07-23 21:23:53 +0000 | [diff] [blame] | 126 | writel(readl(&i2c->iiccon) | I2CCON_ACKGEN, &i2c->iiccon); |
Naveen Krishna Ch | e4e2402 | 2013-10-15 16:01:43 +0530 | [diff] [blame] | 127 | |
| 128 | /* Get the slave chip address going */ |
| 129 | writel(chip, &i2c->iicds); |
| 130 | if ((cmd_type == I2C_WRITE) || (addr && addr_len)) |
| 131 | writel(I2C_MODE_MT | I2C_TXRX_ENA | I2C_START_STOP, |
| 132 | &i2c->iicstat); |
| 133 | else |
| 134 | writel(I2C_MODE_MR | I2C_TXRX_ENA | I2C_START_STOP, |
| 135 | &i2c->iicstat); |
| 136 | |
| 137 | /* Wait for chip address to transmit. */ |
| 138 | result = WaitForXfer(i2c); |
| 139 | if (result != I2C_OK) |
| 140 | goto bailout; |
| 141 | |
| 142 | /* If register address needs to be transmitted - do it now. */ |
| 143 | if (addr && addr_len) { |
| 144 | while ((i < addr_len) && (result == I2C_OK)) { |
| 145 | writel(addr[i++], &i2c->iicds); |
Simon Glass | 26ea768 | 2015-07-02 18:15:46 -0600 | [diff] [blame] | 146 | read_write_byte(i2c); |
Naveen Krishna Ch | e4e2402 | 2013-10-15 16:01:43 +0530 | [diff] [blame] | 147 | result = WaitForXfer(i2c); |
| 148 | } |
| 149 | i = 0; |
| 150 | if (result != I2C_OK) |
| 151 | goto bailout; |
| 152 | } |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 153 | |
wdenk | fc3e216 | 2003-10-08 22:33:00 +0000 | [diff] [blame] | 154 | switch (cmd_type) { |
wdenk | 48b4261 | 2003-06-19 23:01:32 +0000 | [diff] [blame] | 155 | case I2C_WRITE: |
Naveen Krishna Ch | e4e2402 | 2013-10-15 16:01:43 +0530 | [diff] [blame] | 156 | while ((i < data_len) && (result == I2C_OK)) { |
| 157 | writel(data[i++], &i2c->iicds); |
Simon Glass | 26ea768 | 2015-07-02 18:15:46 -0600 | [diff] [blame] | 158 | read_write_byte(i2c); |
Rajeshwari Shinde | ab7e52b | 2012-07-23 21:23:53 +0000 | [diff] [blame] | 159 | result = WaitForXfer(i2c); |
Naveen Krishna Ch | e4e2402 | 2013-10-15 16:01:43 +0530 | [diff] [blame] | 160 | } |
wdenk | fc3e216 | 2003-10-08 22:33:00 +0000 | [diff] [blame] | 161 | break; |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 162 | |
wdenk | 48b4261 | 2003-06-19 23:01:32 +0000 | [diff] [blame] | 163 | case I2C_READ: |
wdenk | fc3e216 | 2003-10-08 22:33:00 +0000 | [diff] [blame] | 164 | if (addr && addr_len) { |
Naveen Krishna Ch | e4e2402 | 2013-10-15 16:01:43 +0530 | [diff] [blame] | 165 | /* |
| 166 | * Register address has been sent, now send slave chip |
| 167 | * address again to start the actual read transaction. |
| 168 | */ |
C Nauman | d9abba8 | 2010-10-26 23:04:31 +0900 | [diff] [blame] | 169 | writel(chip, &i2c->iicds); |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 170 | |
Naveen Krishna Ch | e4e2402 | 2013-10-15 16:01:43 +0530 | [diff] [blame] | 171 | /* Generate a re-START. */ |
Rajeshwari Shinde | cb466c0 | 2013-02-19 02:19:45 +0000 | [diff] [blame] | 172 | writel(I2C_MODE_MR | I2C_TXRX_ENA | I2C_START_STOP, |
| 173 | &i2c->iicstat); |
Simon Glass | 26ea768 | 2015-07-02 18:15:46 -0600 | [diff] [blame] | 174 | read_write_byte(i2c); |
Rajeshwari Shinde | ab7e52b | 2012-07-23 21:23:53 +0000 | [diff] [blame] | 175 | result = WaitForXfer(i2c); |
wdenk | fc3e216 | 2003-10-08 22:33:00 +0000 | [diff] [blame] | 176 | |
Naveen Krishna Ch | e4e2402 | 2013-10-15 16:01:43 +0530 | [diff] [blame] | 177 | if (result != I2C_OK) |
| 178 | goto bailout; |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 179 | } |
| 180 | |
Naveen Krishna Ch | e4e2402 | 2013-10-15 16:01:43 +0530 | [diff] [blame] | 181 | while ((i < data_len) && (result == I2C_OK)) { |
| 182 | /* disable ACK for final READ */ |
| 183 | if (i == data_len - 1) |
| 184 | writel(readl(&i2c->iiccon) |
| 185 | & ~I2CCON_ACKGEN, |
| 186 | &i2c->iiccon); |
Simon Glass | 26ea768 | 2015-07-02 18:15:46 -0600 | [diff] [blame] | 187 | read_write_byte(i2c); |
Naveen Krishna Ch | e4e2402 | 2013-10-15 16:01:43 +0530 | [diff] [blame] | 188 | result = WaitForXfer(i2c); |
| 189 | data[i++] = readl(&i2c->iicds); |
| 190 | } |
| 191 | if (result == I2C_NACK) |
| 192 | result = I2C_OK; /* Normal terminated read. */ |
wdenk | fc3e216 | 2003-10-08 22:33:00 +0000 | [diff] [blame] | 193 | break; |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 194 | |
| 195 | default: |
Rajeshwari Shinde | ab7e52b | 2012-07-23 21:23:53 +0000 | [diff] [blame] | 196 | debug("i2c_transfer: bad call\n"); |
wdenk | fc3e216 | 2003-10-08 22:33:00 +0000 | [diff] [blame] | 197 | result = I2C_NOK; |
| 198 | break; |
| 199 | } |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 200 | |
Naveen Krishna Ch | e4e2402 | 2013-10-15 16:01:43 +0530 | [diff] [blame] | 201 | bailout: |
| 202 | /* Send STOP. */ |
| 203 | writel(I2C_MODE_MR | I2C_TXRX_ENA, &i2c->iicstat); |
Simon Glass | 26ea768 | 2015-07-02 18:15:46 -0600 | [diff] [blame] | 204 | read_write_byte(i2c); |
Naveen Krishna Ch | e4e2402 | 2013-10-15 16:01:43 +0530 | [diff] [blame] | 205 | |
Rajeshwari Shinde | ab7e52b | 2012-07-23 21:23:53 +0000 | [diff] [blame] | 206 | return result; |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 207 | } |
| 208 | |
Przemyslaw Marczak | 8dfcbaa | 2015-01-27 13:36:36 +0100 | [diff] [blame] | 209 | static int s3c24x0_i2c_probe(struct udevice *dev, uint chip, uint chip_flags) |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 210 | { |
Simon Glass | 9a1bff6 | 2016-11-23 06:34:42 -0700 | [diff] [blame] | 211 | struct s3c24x0_i2c_bus *i2c_bus = dev_get_priv(dev); |
wdenk | fc3e216 | 2003-10-08 22:33:00 +0000 | [diff] [blame] | 212 | uchar buf[1]; |
Naveen Krishna Ch | 296a461 | 2013-10-15 16:02:44 +0530 | [diff] [blame] | 213 | int ret; |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 214 | |
wdenk | fc3e216 | 2003-10-08 22:33:00 +0000 | [diff] [blame] | 215 | buf[0] = 0; |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 216 | |
wdenk | fc3e216 | 2003-10-08 22:33:00 +0000 | [diff] [blame] | 217 | /* |
| 218 | * What is needed is to send the chip address and verify that the |
| 219 | * address was <ACK>ed (i.e. there was a chip at that address which |
| 220 | * drove the data line low). |
| 221 | */ |
Simon Glass | 37b8eb3 | 2016-11-23 06:34:43 -0700 | [diff] [blame] | 222 | ret = i2c_transfer(i2c_bus->regs, I2C_READ, chip << 1, 0, 0, buf, 1); |
Naveen Krishna Ch | 296a461 | 2013-10-15 16:02:44 +0530 | [diff] [blame] | 223 | |
Naveen Krishna Ch | 296a461 | 2013-10-15 16:02:44 +0530 | [diff] [blame] | 224 | return ret != I2C_OK; |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 225 | } |
| 226 | |
Simon Glass | 45d9ae8 | 2015-07-02 18:15:47 -0600 | [diff] [blame] | 227 | static int s3c24x0_do_msg(struct s3c24x0_i2c_bus *i2c_bus, struct i2c_msg *msg, |
| 228 | int seq) |
Przemyslaw Marczak | 8dfcbaa | 2015-01-27 13:36:36 +0100 | [diff] [blame] | 229 | { |
Simon Glass | 45d9ae8 | 2015-07-02 18:15:47 -0600 | [diff] [blame] | 230 | struct s3c24x0_i2c *i2c = i2c_bus->regs; |
| 231 | bool is_read = msg->flags & I2C_M_RD; |
| 232 | uint status; |
| 233 | uint addr; |
| 234 | int ret, i; |
Przemyslaw Marczak | 8dfcbaa | 2015-01-27 13:36:36 +0100 | [diff] [blame] | 235 | |
Simon Glass | 45d9ae8 | 2015-07-02 18:15:47 -0600 | [diff] [blame] | 236 | if (!seq) |
| 237 | setbits_le32(&i2c->iiccon, I2CCON_ACKGEN); |
| 238 | |
| 239 | /* Get the slave chip address going */ |
| 240 | addr = msg->addr << 1; |
| 241 | writel(addr, &i2c->iicds); |
| 242 | status = I2C_TXRX_ENA | I2C_START_STOP; |
| 243 | if (is_read) |
| 244 | status |= I2C_MODE_MR; |
| 245 | else |
| 246 | status |= I2C_MODE_MT; |
| 247 | writel(status, &i2c->iicstat); |
| 248 | if (seq) |
| 249 | read_write_byte(i2c); |
| 250 | |
| 251 | /* Wait for chip address to transmit */ |
| 252 | ret = WaitForXfer(i2c); |
| 253 | if (ret) |
| 254 | goto err; |
| 255 | |
| 256 | if (is_read) { |
| 257 | for (i = 0; !ret && i < msg->len; i++) { |
| 258 | /* disable ACK for final READ */ |
| 259 | if (i == msg->len - 1) |
| 260 | clrbits_le32(&i2c->iiccon, I2CCON_ACKGEN); |
| 261 | read_write_byte(i2c); |
| 262 | ret = WaitForXfer(i2c); |
| 263 | msg->buf[i] = readl(&i2c->iicds); |
| 264 | } |
| 265 | if (ret == I2C_NACK) |
| 266 | ret = I2C_OK; /* Normal terminated read */ |
Przemyslaw Marczak | 8dfcbaa | 2015-01-27 13:36:36 +0100 | [diff] [blame] | 267 | } else { |
Simon Glass | 45d9ae8 | 2015-07-02 18:15:47 -0600 | [diff] [blame] | 268 | for (i = 0; !ret && i < msg->len; i++) { |
| 269 | writel(msg->buf[i], &i2c->iicds); |
| 270 | read_write_byte(i2c); |
| 271 | ret = WaitForXfer(i2c); |
| 272 | } |
Przemyslaw Marczak | 8dfcbaa | 2015-01-27 13:36:36 +0100 | [diff] [blame] | 273 | } |
| 274 | |
Simon Glass | 45d9ae8 | 2015-07-02 18:15:47 -0600 | [diff] [blame] | 275 | err: |
| 276 | return ret; |
Przemyslaw Marczak | 8dfcbaa | 2015-01-27 13:36:36 +0100 | [diff] [blame] | 277 | } |
| 278 | |
| 279 | static int s3c24x0_i2c_xfer(struct udevice *dev, struct i2c_msg *msg, |
| 280 | int nmsgs) |
| 281 | { |
| 282 | struct s3c24x0_i2c_bus *i2c_bus = dev_get_priv(dev); |
Simon Glass | 45d9ae8 | 2015-07-02 18:15:47 -0600 | [diff] [blame] | 283 | struct s3c24x0_i2c *i2c = i2c_bus->regs; |
| 284 | ulong start_time; |
| 285 | int ret, i; |
Przemyslaw Marczak | 8dfcbaa | 2015-01-27 13:36:36 +0100 | [diff] [blame] | 286 | |
Simon Glass | 45d9ae8 | 2015-07-02 18:15:47 -0600 | [diff] [blame] | 287 | start_time = get_timer(0); |
| 288 | while (readl(&i2c->iicstat) & I2CSTAT_BSY) { |
| 289 | if (get_timer(start_time) > I2C_TIMEOUT_MS) { |
| 290 | debug("Timeout\n"); |
| 291 | return -ETIMEDOUT; |
Przemyslaw Marczak | 8dfcbaa | 2015-01-27 13:36:36 +0100 | [diff] [blame] | 292 | } |
Przemyslaw Marczak | 8dfcbaa | 2015-01-27 13:36:36 +0100 | [diff] [blame] | 293 | } |
| 294 | |
Simon Glass | 45d9ae8 | 2015-07-02 18:15:47 -0600 | [diff] [blame] | 295 | for (ret = 0, i = 0; !ret && i < nmsgs; i++) |
| 296 | ret = s3c24x0_do_msg(i2c_bus, &msg[i], i); |
| 297 | |
| 298 | /* Send STOP */ |
| 299 | writel(I2C_MODE_MR | I2C_TXRX_ENA, &i2c->iicstat); |
| 300 | read_write_byte(i2c); |
| 301 | |
| 302 | return ret ? -EREMOTEIO : 0; |
Przemyslaw Marczak | 8dfcbaa | 2015-01-27 13:36:36 +0100 | [diff] [blame] | 303 | } |
| 304 | |
Simon Glass | d1998a9 | 2020-12-03 16:55:21 -0700 | [diff] [blame] | 305 | static int s3c_i2c_of_to_plat(struct udevice *dev) |
Przemyslaw Marczak | 8dfcbaa | 2015-01-27 13:36:36 +0100 | [diff] [blame] | 306 | { |
| 307 | const void *blob = gd->fdt_blob; |
| 308 | struct s3c24x0_i2c_bus *i2c_bus = dev_get_priv(dev); |
Simon Glass | 37b8eb3 | 2016-11-23 06:34:43 -0700 | [diff] [blame] | 309 | int node; |
Przemyslaw Marczak | 8dfcbaa | 2015-01-27 13:36:36 +0100 | [diff] [blame] | 310 | |
Simon Glass | e160f7d | 2017-01-17 16:52:55 -0700 | [diff] [blame] | 311 | node = dev_of_offset(dev); |
Przemyslaw Marczak | 8dfcbaa | 2015-01-27 13:36:36 +0100 | [diff] [blame] | 312 | |
Masahiro Yamada | 8613c8d | 2020-07-17 14:36:46 +0900 | [diff] [blame] | 313 | i2c_bus->regs = dev_read_addr_ptr(dev); |
Przemyslaw Marczak | 8dfcbaa | 2015-01-27 13:36:36 +0100 | [diff] [blame] | 314 | |
| 315 | i2c_bus->id = pinmux_decode_periph_id(blob, node); |
| 316 | |
Simon Glass | f3d4615 | 2020-01-23 11:48:22 -0700 | [diff] [blame] | 317 | i2c_bus->clock_frequency = |
| 318 | dev_read_u32_default(dev, "clock-frequency", |
| 319 | I2C_SPEED_STANDARD_RATE); |
Przemyslaw Marczak | 8dfcbaa | 2015-01-27 13:36:36 +0100 | [diff] [blame] | 320 | i2c_bus->node = node; |
| 321 | i2c_bus->bus_num = dev->seq; |
| 322 | |
Simon Glass | 37b8eb3 | 2016-11-23 06:34:43 -0700 | [diff] [blame] | 323 | exynos_pinmux_config(i2c_bus->id, 0); |
Przemyslaw Marczak | 8dfcbaa | 2015-01-27 13:36:36 +0100 | [diff] [blame] | 324 | |
| 325 | i2c_bus->active = true; |
| 326 | |
| 327 | return 0; |
| 328 | } |
| 329 | |
| 330 | static const struct dm_i2c_ops s3c_i2c_ops = { |
| 331 | .xfer = s3c24x0_i2c_xfer, |
| 332 | .probe_chip = s3c24x0_i2c_probe, |
| 333 | .set_bus_speed = s3c24x0_i2c_set_bus_speed, |
| 334 | }; |
| 335 | |
| 336 | static const struct udevice_id s3c_i2c_ids[] = { |
Simon Glass | 37b8eb3 | 2016-11-23 06:34:43 -0700 | [diff] [blame] | 337 | { .compatible = "samsung,s3c2440-i2c" }, |
Przemyslaw Marczak | 8dfcbaa | 2015-01-27 13:36:36 +0100 | [diff] [blame] | 338 | { } |
| 339 | }; |
| 340 | |
| 341 | U_BOOT_DRIVER(i2c_s3c) = { |
| 342 | .name = "i2c_s3c", |
| 343 | .id = UCLASS_I2C, |
| 344 | .of_match = s3c_i2c_ids, |
Simon Glass | d1998a9 | 2020-12-03 16:55:21 -0700 | [diff] [blame] | 345 | .of_to_plat = s3c_i2c_of_to_plat, |
Simon Glass | 41575d8 | 2020-12-03 16:55:17 -0700 | [diff] [blame] | 346 | .priv_auto = sizeof(struct s3c24x0_i2c_bus), |
Przemyslaw Marczak | 8dfcbaa | 2015-01-27 13:36:36 +0100 | [diff] [blame] | 347 | .ops = &s3c_i2c_ops, |
| 348 | }; |