wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2002 |
| 3 | * David Mueller, ELSOFT AG, d.mueller@elsoft.ch |
| 4 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | /* This code should work for both the S3C2400 and the S3C2410 |
| 9 | * as they seem to have the same I2C controller inside. |
| 10 | * The different address mapping is handled by the s3c24xx.h files below. |
| 11 | */ |
| 12 | |
| 13 | #include <common.h> |
Rajeshwari Shinde | a9d2ae7 | 2012-12-26 20:03:12 +0000 | [diff] [blame] | 14 | #include <fdtdec.h> |
Piotr Wilczek | c86d9ed | 2012-11-20 02:19:05 +0000 | [diff] [blame] | 15 | #if (defined CONFIG_EXYNOS4 || defined CONFIG_EXYNOS5) |
Rajeshwari Shinde | ab7e52b | 2012-07-23 21:23:53 +0000 | [diff] [blame] | 16 | #include <asm/arch/clk.h> |
| 17 | #include <asm/arch/cpu.h> |
Rajeshwari Shinde | a9d2ae7 | 2012-12-26 20:03:12 +0000 | [diff] [blame] | 18 | #include <asm/arch/pinmux.h> |
Rajeshwari Shinde | ab7e52b | 2012-07-23 21:23:53 +0000 | [diff] [blame] | 19 | #else |
kevin.morfitt@fearnside-systems.co.uk | ac67804 | 2009-11-17 18:30:34 +0900 | [diff] [blame] | 20 | #include <asm/arch/s3c24x0_cpu.h> |
Rajeshwari Shinde | ab7e52b | 2012-07-23 21:23:53 +0000 | [diff] [blame] | 21 | #endif |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 22 | #include <asm/io.h> |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 23 | #include <i2c.h> |
Rajeshwari Shinde | ab7e52b | 2012-07-23 21:23:53 +0000 | [diff] [blame] | 24 | #include "s3c24x0_i2c.h" |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 25 | |
wdenk | 48b4261 | 2003-06-19 23:01:32 +0000 | [diff] [blame] | 26 | #define I2C_WRITE 0 |
| 27 | #define I2C_READ 1 |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 28 | |
wdenk | 48b4261 | 2003-06-19 23:01:32 +0000 | [diff] [blame] | 29 | #define I2C_OK 0 |
| 30 | #define I2C_NOK 1 |
| 31 | #define I2C_NACK 2 |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 32 | #define I2C_NOK_LA 3 /* Lost arbitration */ |
| 33 | #define I2C_NOK_TOUT 4 /* time out */ |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 34 | |
Naveen Krishna Ch | 296a461 | 2013-10-15 16:02:44 +0530 | [diff] [blame] | 35 | /* HSI2C specific register description */ |
| 36 | |
| 37 | /* I2C_CTL Register bits */ |
| 38 | #define HSI2C_FUNC_MODE_I2C (1u << 0) |
| 39 | #define HSI2C_MASTER (1u << 3) |
| 40 | #define HSI2C_RXCHON (1u << 6) /* Write/Send */ |
| 41 | #define HSI2C_TXCHON (1u << 7) /* Read/Receive */ |
| 42 | #define HSI2C_SW_RST (1u << 31) |
| 43 | |
| 44 | /* I2C_FIFO_CTL Register bits */ |
| 45 | #define HSI2C_RXFIFO_EN (1u << 0) |
| 46 | #define HSI2C_TXFIFO_EN (1u << 1) |
| 47 | #define HSI2C_TXFIFO_TRIGGER_LEVEL (0x20 << 16) |
| 48 | #define HSI2C_RXFIFO_TRIGGER_LEVEL (0x20 << 4) |
| 49 | |
| 50 | /* I2C_TRAILING_CTL Register bits */ |
| 51 | #define HSI2C_TRAILING_COUNT (0xff) |
| 52 | |
| 53 | /* I2C_INT_EN Register bits */ |
| 54 | #define HSI2C_TX_UNDERRUN_EN (1u << 2) |
| 55 | #define HSI2C_TX_OVERRUN_EN (1u << 3) |
| 56 | #define HSI2C_RX_UNDERRUN_EN (1u << 4) |
| 57 | #define HSI2C_RX_OVERRUN_EN (1u << 5) |
| 58 | #define HSI2C_INT_TRAILING_EN (1u << 6) |
| 59 | #define HSI2C_INT_I2C_EN (1u << 9) |
| 60 | |
| 61 | #define HSI2C_INT_ERROR_MASK (HSI2C_TX_UNDERRUN_EN |\ |
| 62 | HSI2C_TX_OVERRUN_EN |\ |
| 63 | HSI2C_RX_UNDERRUN_EN |\ |
| 64 | HSI2C_RX_OVERRUN_EN |\ |
| 65 | HSI2C_INT_TRAILING_EN) |
| 66 | |
| 67 | /* I2C_CONF Register bits */ |
| 68 | #define HSI2C_AUTO_MODE (1u << 31) |
| 69 | #define HSI2C_10BIT_ADDR_MODE (1u << 30) |
| 70 | #define HSI2C_HS_MODE (1u << 29) |
| 71 | |
| 72 | /* I2C_AUTO_CONF Register bits */ |
| 73 | #define HSI2C_READ_WRITE (1u << 16) |
| 74 | #define HSI2C_STOP_AFTER_TRANS (1u << 17) |
| 75 | #define HSI2C_MASTER_RUN (1u << 31) |
| 76 | |
| 77 | /* I2C_TIMEOUT Register bits */ |
| 78 | #define HSI2C_TIMEOUT_EN (1u << 31) |
| 79 | |
| 80 | /* I2C_TRANS_STATUS register bits */ |
| 81 | #define HSI2C_MASTER_BUSY (1u << 17) |
| 82 | #define HSI2C_SLAVE_BUSY (1u << 16) |
| 83 | #define HSI2C_TIMEOUT_AUTO (1u << 4) |
| 84 | #define HSI2C_NO_DEV (1u << 3) |
| 85 | #define HSI2C_NO_DEV_ACK (1u << 2) |
| 86 | #define HSI2C_TRANS_ABORT (1u << 1) |
| 87 | #define HSI2C_TRANS_SUCCESS (1u << 0) |
| 88 | #define HSI2C_TRANS_ERROR_MASK (HSI2C_TIMEOUT_AUTO |\ |
| 89 | HSI2C_NO_DEV | HSI2C_NO_DEV_ACK |\ |
| 90 | HSI2C_TRANS_ABORT) |
| 91 | #define HSI2C_TRANS_FINISHED_MASK (HSI2C_TRANS_ERROR_MASK | HSI2C_TRANS_SUCCESS) |
| 92 | |
| 93 | |
| 94 | /* I2C_FIFO_STAT Register bits */ |
| 95 | #define HSI2C_RX_FIFO_EMPTY (1u << 24) |
| 96 | #define HSI2C_RX_FIFO_FULL (1u << 23) |
| 97 | #define HSI2C_TX_FIFO_EMPTY (1u << 8) |
| 98 | #define HSI2C_TX_FIFO_FULL (1u << 7) |
| 99 | #define HSI2C_RX_FIFO_LEVEL(x) (((x) >> 16) & 0x7f) |
| 100 | #define HSI2C_TX_FIFO_LEVEL(x) ((x) & 0x7f) |
| 101 | |
| 102 | #define HSI2C_SLV_ADDR_MAS(x) ((x & 0x3ff) << 10) |
| 103 | |
| 104 | /* S3C I2C Controller bits */ |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 105 | #define I2CSTAT_BSY 0x20 /* Busy bit */ |
| 106 | #define I2CSTAT_NACK 0x01 /* Nack bit */ |
Rajeshwari Shinde | ab7e52b | 2012-07-23 21:23:53 +0000 | [diff] [blame] | 107 | #define I2CCON_ACKGEN 0x80 /* Acknowledge generation */ |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 108 | #define I2CCON_IRPND 0x10 /* Interrupt pending bit */ |
| 109 | #define I2C_MODE_MT 0xC0 /* Master Transmit Mode */ |
| 110 | #define I2C_MODE_MR 0x80 /* Master Receive Mode */ |
| 111 | #define I2C_START_STOP 0x20 /* START / STOP */ |
| 112 | #define I2C_TXRX_ENA 0x10 /* I2C Tx/Rx enable */ |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 113 | |
Naveen Krishna Ch | e4e2402 | 2013-10-15 16:01:43 +0530 | [diff] [blame] | 114 | #define I2C_TIMEOUT_MS 1000 /* 1 second */ |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 115 | |
Naveen Krishna Ch | 296a461 | 2013-10-15 16:02:44 +0530 | [diff] [blame] | 116 | #define HSI2C_TIMEOUT_US 100000 /* 100 ms, finer granularity */ |
| 117 | |
| 118 | |
| 119 | /* To support VCMA9 boards and other who dont define max_i2c_num */ |
| 120 | #ifndef CONFIG_MAX_I2C_NUM |
| 121 | #define CONFIG_MAX_I2C_NUM 1 |
| 122 | #endif |
Rajeshwari Shinde | ab7e52b | 2012-07-23 21:23:53 +0000 | [diff] [blame] | 123 | |
Rajeshwari Shinde | a9d2ae7 | 2012-12-26 20:03:12 +0000 | [diff] [blame] | 124 | /* |
| 125 | * For SPL boot some boards need i2c before SDRAM is initialised so force |
| 126 | * variables to live in SRAM |
| 127 | */ |
Rajeshwari Shinde | a9d2ae7 | 2012-12-26 20:03:12 +0000 | [diff] [blame] | 128 | static struct s3c24x0_i2c_bus i2c_bus[CONFIG_MAX_I2C_NUM] |
| 129 | __attribute__((section(".data"))); |
Naveen Krishna Ch | 296a461 | 2013-10-15 16:02:44 +0530 | [diff] [blame] | 130 | |
| 131 | /** |
| 132 | * Get a pointer to the given bus index |
| 133 | * |
| 134 | * @bus_idx: Bus index to look up |
| 135 | * @return pointer to bus, or NULL if invalid or not available |
| 136 | */ |
| 137 | static struct s3c24x0_i2c_bus *get_bus(unsigned int bus_idx) |
| 138 | { |
| 139 | if (bus_idx < ARRAY_SIZE(i2c_bus)) { |
| 140 | struct s3c24x0_i2c_bus *bus; |
| 141 | |
| 142 | bus = &i2c_bus[bus_idx]; |
| 143 | if (bus->active) |
| 144 | return bus; |
| 145 | } |
| 146 | |
| 147 | debug("Undefined bus: %d\n", bus_idx); |
| 148 | return NULL; |
| 149 | } |
Rajeshwari Shinde | ab7e52b | 2012-07-23 21:23:53 +0000 | [diff] [blame] | 150 | |
Piotr Wilczek | c86d9ed | 2012-11-20 02:19:05 +0000 | [diff] [blame] | 151 | #if !(defined CONFIG_EXYNOS4 || defined CONFIG_EXYNOS5) |
wdenk | 48b4261 | 2003-06-19 23:01:32 +0000 | [diff] [blame] | 152 | static int GetI2CSDA(void) |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 153 | { |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 154 | struct s3c24x0_gpio *gpio = s3c24x0_get_base_gpio(); |
wdenk | 48b4261 | 2003-06-19 23:01:32 +0000 | [diff] [blame] | 155 | |
wdenk | 6dff552 | 2003-07-15 07:45:49 +0000 | [diff] [blame] | 156 | #ifdef CONFIG_S3C2410 |
C Nauman | d9abba8 | 2010-10-26 23:04:31 +0900 | [diff] [blame] | 157 | return (readl(&gpio->gpedat) & 0x8000) >> 15; |
wdenk | 6dff552 | 2003-07-15 07:45:49 +0000 | [diff] [blame] | 158 | #endif |
| 159 | #ifdef CONFIG_S3C2400 |
C Nauman | d9abba8 | 2010-10-26 23:04:31 +0900 | [diff] [blame] | 160 | return (readl(&gpio->pgdat) & 0x0020) >> 5; |
wdenk | 6dff552 | 2003-07-15 07:45:49 +0000 | [diff] [blame] | 161 | #endif |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 162 | } |
| 163 | |
wdenk | 48b4261 | 2003-06-19 23:01:32 +0000 | [diff] [blame] | 164 | static void SetI2CSCL(int x) |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 165 | { |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 166 | struct s3c24x0_gpio *gpio = s3c24x0_get_base_gpio(); |
wdenk | 48b4261 | 2003-06-19 23:01:32 +0000 | [diff] [blame] | 167 | |
wdenk | 6dff552 | 2003-07-15 07:45:49 +0000 | [diff] [blame] | 168 | #ifdef CONFIG_S3C2410 |
Rajeshwari Shinde | ab7e52b | 2012-07-23 21:23:53 +0000 | [diff] [blame] | 169 | writel((readl(&gpio->gpedat) & ~0x4000) | |
| 170 | (x & 1) << 14, &gpio->gpedat); |
wdenk | 6dff552 | 2003-07-15 07:45:49 +0000 | [diff] [blame] | 171 | #endif |
| 172 | #ifdef CONFIG_S3C2400 |
C Nauman | d9abba8 | 2010-10-26 23:04:31 +0900 | [diff] [blame] | 173 | writel((readl(&gpio->pgdat) & ~0x0040) | (x & 1) << 6, &gpio->pgdat); |
wdenk | 6dff552 | 2003-07-15 07:45:49 +0000 | [diff] [blame] | 174 | #endif |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 175 | } |
Rajeshwari Shinde | ab7e52b | 2012-07-23 21:23:53 +0000 | [diff] [blame] | 176 | #endif |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 177 | |
Naveen Krishna Ch | e4e2402 | 2013-10-15 16:01:43 +0530 | [diff] [blame] | 178 | /* |
| 179 | * Wait til the byte transfer is completed. |
| 180 | * |
| 181 | * @param i2c- pointer to the appropriate i2c register bank. |
| 182 | * @return I2C_OK, if transmission was ACKED |
| 183 | * I2C_NACK, if transmission was NACKED |
| 184 | * I2C_NOK_TIMEOUT, if transaction did not complete in I2C_TIMEOUT_MS |
| 185 | */ |
| 186 | |
Rajeshwari Shinde | ab7e52b | 2012-07-23 21:23:53 +0000 | [diff] [blame] | 187 | static int WaitForXfer(struct s3c24x0_i2c *i2c) |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 188 | { |
Naveen Krishna Ch | e4e2402 | 2013-10-15 16:01:43 +0530 | [diff] [blame] | 189 | ulong start_time = get_timer(0); |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 190 | |
Naveen Krishna Ch | e4e2402 | 2013-10-15 16:01:43 +0530 | [diff] [blame] | 191 | do { |
| 192 | if (readl(&i2c->iiccon) & I2CCON_IRPND) |
| 193 | return (readl(&i2c->iicstat) & I2CSTAT_NACK) ? |
| 194 | I2C_NACK : I2C_OK; |
| 195 | } while (get_timer(start_time) < I2C_TIMEOUT_MS); |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 196 | |
Naveen Krishna Ch | e4e2402 | 2013-10-15 16:01:43 +0530 | [diff] [blame] | 197 | return I2C_NOK_TOUT; |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 198 | } |
| 199 | |
Naveen Krishna Ch | 296a461 | 2013-10-15 16:02:44 +0530 | [diff] [blame] | 200 | /* |
| 201 | * Wait for transfer completion. |
| 202 | * |
| 203 | * This function reads the interrupt status register waiting for the INT_I2C |
| 204 | * bit to be set, which indicates copletion of a transaction. |
| 205 | * |
| 206 | * @param i2c: pointer to the appropriate register bank |
| 207 | * |
| 208 | * @return: I2C_OK in case of successful completion, I2C_NOK_TIMEOUT in case |
| 209 | * the status bits do not get set in time, or an approrpiate error |
| 210 | * value in case of transfer errors. |
| 211 | */ |
| 212 | static int hsi2c_wait_for_trx(struct exynos5_hsi2c *i2c) |
| 213 | { |
| 214 | int i = HSI2C_TIMEOUT_US; |
| 215 | |
| 216 | while (i-- > 0) { |
| 217 | u32 int_status = readl(&i2c->usi_int_stat); |
| 218 | |
| 219 | if (int_status & HSI2C_INT_I2C_EN) { |
| 220 | u32 trans_status = readl(&i2c->usi_trans_status); |
| 221 | |
| 222 | /* Deassert pending interrupt. */ |
| 223 | writel(int_status, &i2c->usi_int_stat); |
| 224 | |
| 225 | if (trans_status & HSI2C_NO_DEV_ACK) { |
| 226 | debug("%s: no ACK from device\n", __func__); |
| 227 | return I2C_NACK; |
| 228 | } |
| 229 | if (trans_status & HSI2C_NO_DEV) { |
| 230 | debug("%s: no device\n", __func__); |
| 231 | return I2C_NOK; |
| 232 | } |
| 233 | if (trans_status & HSI2C_TRANS_ABORT) { |
| 234 | debug("%s: arbitration lost\n", __func__); |
| 235 | return I2C_NOK_LA; |
| 236 | } |
| 237 | if (trans_status & HSI2C_TIMEOUT_AUTO) { |
| 238 | debug("%s: device timed out\n", __func__); |
| 239 | return I2C_NOK_TOUT; |
| 240 | } |
| 241 | return I2C_OK; |
| 242 | } |
| 243 | udelay(1); |
| 244 | } |
| 245 | debug("%s: transaction timeout!\n", __func__); |
| 246 | return I2C_NOK_TOUT; |
| 247 | } |
| 248 | |
Rajeshwari Shinde | ab7e52b | 2012-07-23 21:23:53 +0000 | [diff] [blame] | 249 | static void ReadWriteByte(struct s3c24x0_i2c *i2c) |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 250 | { |
C Nauman | d9abba8 | 2010-10-26 23:04:31 +0900 | [diff] [blame] | 251 | writel(readl(&i2c->iiccon) & ~I2CCON_IRPND, &i2c->iiccon); |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 252 | } |
| 253 | |
Piotr Wilczek | 2d8f1e2 | 2013-11-20 10:43:49 +0100 | [diff] [blame] | 254 | static struct s3c24x0_i2c *get_base_i2c(int bus) |
Rajeshwari Shinde | ab7e52b | 2012-07-23 21:23:53 +0000 | [diff] [blame] | 255 | { |
Piotr Wilczek | c86d9ed | 2012-11-20 02:19:05 +0000 | [diff] [blame] | 256 | #ifdef CONFIG_EXYNOS4 |
| 257 | struct s3c24x0_i2c *i2c = (struct s3c24x0_i2c *)(samsung_get_base_i2c() |
| 258 | + (EXYNOS4_I2C_SPACING |
Piotr Wilczek | 2d8f1e2 | 2013-11-20 10:43:49 +0100 | [diff] [blame] | 259 | * bus)); |
Piotr Wilczek | c86d9ed | 2012-11-20 02:19:05 +0000 | [diff] [blame] | 260 | return i2c; |
| 261 | #elif defined CONFIG_EXYNOS5 |
Rajeshwari Shinde | ab7e52b | 2012-07-23 21:23:53 +0000 | [diff] [blame] | 262 | struct s3c24x0_i2c *i2c = (struct s3c24x0_i2c *)(samsung_get_base_i2c() |
| 263 | + (EXYNOS5_I2C_SPACING |
Piotr Wilczek | 2d8f1e2 | 2013-11-20 10:43:49 +0100 | [diff] [blame] | 264 | * bus)); |
Rajeshwari Shinde | ab7e52b | 2012-07-23 21:23:53 +0000 | [diff] [blame] | 265 | return i2c; |
| 266 | #else |
| 267 | return s3c24x0_get_base_i2c(); |
| 268 | #endif |
| 269 | } |
| 270 | |
| 271 | static void i2c_ch_init(struct s3c24x0_i2c *i2c, int speed, int slaveadd) |
| 272 | { |
| 273 | ulong freq, pres = 16, div; |
Piotr Wilczek | c86d9ed | 2012-11-20 02:19:05 +0000 | [diff] [blame] | 274 | #if (defined CONFIG_EXYNOS4 || defined CONFIG_EXYNOS5) |
Rajeshwari Shinde | ab7e52b | 2012-07-23 21:23:53 +0000 | [diff] [blame] | 275 | freq = get_i2c_clk(); |
| 276 | #else |
| 277 | freq = get_PCLK(); |
| 278 | #endif |
| 279 | /* calculate prescaler and divisor values */ |
| 280 | if ((freq / pres / (16 + 1)) > speed) |
| 281 | /* set prescaler to 512 */ |
| 282 | pres = 512; |
| 283 | |
| 284 | div = 0; |
| 285 | while ((freq / pres / (div + 1)) > speed) |
| 286 | div++; |
| 287 | |
| 288 | /* set prescaler, divisor according to freq, also set ACKGEN, IRQ */ |
| 289 | writel((div & 0x0F) | 0xA0 | ((pres == 512) ? 0x40 : 0), &i2c->iiccon); |
| 290 | |
| 291 | /* init to SLAVE REVEIVE and set slaveaddr */ |
| 292 | writel(0, &i2c->iicstat); |
| 293 | writel(slaveadd, &i2c->iicadd); |
| 294 | /* program Master Transmit (and implicit STOP) */ |
| 295 | writel(I2C_MODE_MT | I2C_TXRX_ENA, &i2c->iicstat); |
| 296 | } |
| 297 | |
Naveen Krishna Ch | 296a461 | 2013-10-15 16:02:44 +0530 | [diff] [blame] | 298 | static int hsi2c_get_clk_details(struct s3c24x0_i2c_bus *i2c_bus) |
| 299 | { |
| 300 | struct exynos5_hsi2c *hsregs = i2c_bus->hsregs; |
| 301 | ulong clkin; |
| 302 | unsigned int op_clk = i2c_bus->clock_frequency; |
| 303 | unsigned int i = 0, utemp0 = 0, utemp1 = 0; |
| 304 | unsigned int t_ftl_cycle; |
| 305 | |
Piotr Wilczek | a6756bb | 2013-11-20 10:43:50 +0100 | [diff] [blame] | 306 | #if (defined CONFIG_EXYNOS4 || defined CONFIG_EXYNOS5) |
Naveen Krishna Ch | 296a461 | 2013-10-15 16:02:44 +0530 | [diff] [blame] | 307 | clkin = get_i2c_clk(); |
Piotr Wilczek | a6756bb | 2013-11-20 10:43:50 +0100 | [diff] [blame] | 308 | #else |
| 309 | clkin = get_PCLK(); |
Naveen Krishna Ch | 296a461 | 2013-10-15 16:02:44 +0530 | [diff] [blame] | 310 | #endif |
| 311 | /* FPCLK / FI2C = |
| 312 | * (CLK_DIV + 1) * (TSCLK_L + TSCLK_H + 2) + 8 + 2 * FLT_CYCLE |
| 313 | * uTemp0 = (CLK_DIV + 1) * (TSCLK_L + TSCLK_H + 2) |
| 314 | * uTemp1 = (TSCLK_L + TSCLK_H + 2) |
| 315 | * uTemp2 = TSCLK_L + TSCLK_H |
| 316 | */ |
| 317 | t_ftl_cycle = (readl(&hsregs->usi_conf) >> 16) & 0x7; |
| 318 | utemp0 = (clkin / op_clk) - 8 - 2 * t_ftl_cycle; |
| 319 | |
| 320 | /* CLK_DIV max is 256 */ |
| 321 | for (i = 0; i < 256; i++) { |
| 322 | utemp1 = utemp0 / (i + 1); |
| 323 | if ((utemp1 < 512) && (utemp1 > 4)) { |
| 324 | i2c_bus->clk_cycle = utemp1 - 2; |
| 325 | i2c_bus->clk_div = i; |
| 326 | return 0; |
| 327 | } |
| 328 | } |
| 329 | return -1; |
| 330 | } |
Naveen Krishna Ch | 296a461 | 2013-10-15 16:02:44 +0530 | [diff] [blame] | 331 | |
| 332 | static void hsi2c_ch_init(struct s3c24x0_i2c_bus *i2c_bus) |
| 333 | { |
| 334 | struct exynos5_hsi2c *hsregs = i2c_bus->hsregs; |
| 335 | unsigned int t_sr_release; |
| 336 | unsigned int n_clkdiv; |
| 337 | unsigned int t_start_su, t_start_hd; |
| 338 | unsigned int t_stop_su; |
| 339 | unsigned int t_data_su, t_data_hd; |
| 340 | unsigned int t_scl_l, t_scl_h; |
| 341 | u32 i2c_timing_s1; |
| 342 | u32 i2c_timing_s2; |
| 343 | u32 i2c_timing_s3; |
| 344 | u32 i2c_timing_sla; |
| 345 | |
| 346 | n_clkdiv = i2c_bus->clk_div; |
| 347 | t_scl_l = i2c_bus->clk_cycle / 2; |
| 348 | t_scl_h = i2c_bus->clk_cycle / 2; |
| 349 | t_start_su = t_scl_l; |
| 350 | t_start_hd = t_scl_l; |
| 351 | t_stop_su = t_scl_l; |
| 352 | t_data_su = t_scl_l / 2; |
| 353 | t_data_hd = t_scl_l / 2; |
| 354 | t_sr_release = i2c_bus->clk_cycle; |
| 355 | |
| 356 | i2c_timing_s1 = t_start_su << 24 | t_start_hd << 16 | t_stop_su << 8; |
| 357 | i2c_timing_s2 = t_data_su << 24 | t_scl_l << 8 | t_scl_h << 0; |
| 358 | i2c_timing_s3 = n_clkdiv << 16 | t_sr_release << 0; |
| 359 | i2c_timing_sla = t_data_hd << 0; |
| 360 | |
| 361 | writel(HSI2C_TRAILING_COUNT, &hsregs->usi_trailing_ctl); |
| 362 | |
| 363 | /* Clear to enable Timeout */ |
| 364 | clrsetbits_le32(&hsregs->usi_timeout, HSI2C_TIMEOUT_EN, 0); |
| 365 | |
| 366 | /* set AUTO mode */ |
| 367 | writel(readl(&hsregs->usi_conf) | HSI2C_AUTO_MODE, &hsregs->usi_conf); |
| 368 | |
| 369 | /* Enable completion conditions' reporting. */ |
| 370 | writel(HSI2C_INT_I2C_EN, &hsregs->usi_int_en); |
| 371 | |
| 372 | /* Enable FIFOs */ |
| 373 | writel(HSI2C_RXFIFO_EN | HSI2C_TXFIFO_EN, &hsregs->usi_fifo_ctl); |
| 374 | |
| 375 | /* Currently operating in Fast speed mode. */ |
| 376 | writel(i2c_timing_s1, &hsregs->usi_timing_fs1); |
| 377 | writel(i2c_timing_s2, &hsregs->usi_timing_fs2); |
| 378 | writel(i2c_timing_s3, &hsregs->usi_timing_fs3); |
| 379 | writel(i2c_timing_sla, &hsregs->usi_timing_sla); |
| 380 | } |
| 381 | |
| 382 | /* SW reset for the high speed bus */ |
| 383 | static void exynos5_i2c_reset(struct s3c24x0_i2c_bus *i2c_bus) |
| 384 | { |
| 385 | struct exynos5_hsi2c *i2c = i2c_bus->hsregs; |
| 386 | u32 i2c_ctl; |
| 387 | |
| 388 | /* Set and clear the bit for reset */ |
| 389 | i2c_ctl = readl(&i2c->usi_ctl); |
| 390 | i2c_ctl |= HSI2C_SW_RST; |
| 391 | writel(i2c_ctl, &i2c->usi_ctl); |
| 392 | |
| 393 | i2c_ctl = readl(&i2c->usi_ctl); |
| 394 | i2c_ctl &= ~HSI2C_SW_RST; |
| 395 | writel(i2c_ctl, &i2c->usi_ctl); |
| 396 | |
| 397 | /* Initialize the configure registers */ |
| 398 | hsi2c_ch_init(i2c_bus); |
| 399 | } |
| 400 | |
Piotr Wilczek | 2d8f1e2 | 2013-11-20 10:43:49 +0100 | [diff] [blame] | 401 | static void s3c24x0_i2c_init(struct i2c_adapter *adap, int speed, int slaveadd) |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 402 | { |
Rajeshwari Shinde | ab7e52b | 2012-07-23 21:23:53 +0000 | [diff] [blame] | 403 | struct s3c24x0_i2c *i2c; |
Piotr Wilczek | 2d8f1e2 | 2013-11-20 10:43:49 +0100 | [diff] [blame] | 404 | struct s3c24x0_i2c_bus *bus; |
| 405 | |
Piotr Wilczek | c86d9ed | 2012-11-20 02:19:05 +0000 | [diff] [blame] | 406 | #if !(defined CONFIG_EXYNOS4 || defined CONFIG_EXYNOS5) |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 407 | struct s3c24x0_gpio *gpio = s3c24x0_get_base_gpio(); |
Rajeshwari Shinde | ab7e52b | 2012-07-23 21:23:53 +0000 | [diff] [blame] | 408 | #endif |
Naveen Krishna Ch | e4e2402 | 2013-10-15 16:01:43 +0530 | [diff] [blame] | 409 | ulong start_time = get_timer(0); |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 410 | |
Rajeshwari Shinde | ab7e52b | 2012-07-23 21:23:53 +0000 | [diff] [blame] | 411 | /* By default i2c channel 0 is the current bus */ |
Piotr Wilczek | 2d8f1e2 | 2013-11-20 10:43:49 +0100 | [diff] [blame] | 412 | i2c = get_base_i2c(adap->hwadapnr); |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 413 | |
Naveen Krishna Ch | e4e2402 | 2013-10-15 16:01:43 +0530 | [diff] [blame] | 414 | /* |
| 415 | * In case the previous transfer is still going, wait to give it a |
| 416 | * chance to finish. |
| 417 | */ |
| 418 | while (readl(&i2c->iicstat) & I2CSTAT_BSY) { |
| 419 | if (get_timer(start_time) > I2C_TIMEOUT_MS) { |
| 420 | printf("%s: I2C bus busy for %p\n", __func__, |
| 421 | &i2c->iicstat); |
| 422 | return; |
| 423 | } |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 424 | } |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 425 | |
Piotr Wilczek | c86d9ed | 2012-11-20 02:19:05 +0000 | [diff] [blame] | 426 | #if !(defined CONFIG_EXYNOS4 || defined CONFIG_EXYNOS5) |
Naveen Krishna Ch | 296a461 | 2013-10-15 16:02:44 +0530 | [diff] [blame] | 427 | int i; |
| 428 | |
C Nauman | d9abba8 | 2010-10-26 23:04:31 +0900 | [diff] [blame] | 429 | if ((readl(&i2c->iicstat) & I2CSTAT_BSY) || GetI2CSDA() == 0) { |
wdenk | 6dff552 | 2003-07-15 07:45:49 +0000 | [diff] [blame] | 430 | #ifdef CONFIG_S3C2410 |
C Nauman | d9abba8 | 2010-10-26 23:04:31 +0900 | [diff] [blame] | 431 | ulong old_gpecon = readl(&gpio->gpecon); |
wdenk | 6dff552 | 2003-07-15 07:45:49 +0000 | [diff] [blame] | 432 | #endif |
| 433 | #ifdef CONFIG_S3C2400 |
C Nauman | d9abba8 | 2010-10-26 23:04:31 +0900 | [diff] [blame] | 434 | ulong old_gpecon = readl(&gpio->pgcon); |
wdenk | 6dff552 | 2003-07-15 07:45:49 +0000 | [diff] [blame] | 435 | #endif |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 436 | /* bus still busy probably by (most) previously interrupted |
| 437 | transfer */ |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 438 | |
wdenk | fc3e216 | 2003-10-08 22:33:00 +0000 | [diff] [blame] | 439 | #ifdef CONFIG_S3C2410 |
| 440 | /* set I2CSDA and I2CSCL (GPE15, GPE14) to GPIO */ |
C Nauman | d9abba8 | 2010-10-26 23:04:31 +0900 | [diff] [blame] | 441 | writel((readl(&gpio->gpecon) & ~0xF0000000) | 0x10000000, |
| 442 | &gpio->gpecon); |
wdenk | fc3e216 | 2003-10-08 22:33:00 +0000 | [diff] [blame] | 443 | #endif |
| 444 | #ifdef CONFIG_S3C2400 |
| 445 | /* set I2CSDA and I2CSCL (PG5, PG6) to GPIO */ |
C Nauman | d9abba8 | 2010-10-26 23:04:31 +0900 | [diff] [blame] | 446 | writel((readl(&gpio->pgcon) & ~0x00003c00) | 0x00001000, |
| 447 | &gpio->pgcon); |
wdenk | fc3e216 | 2003-10-08 22:33:00 +0000 | [diff] [blame] | 448 | #endif |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 449 | |
wdenk | fc3e216 | 2003-10-08 22:33:00 +0000 | [diff] [blame] | 450 | /* toggle I2CSCL until bus idle */ |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 451 | SetI2CSCL(0); |
| 452 | udelay(1000); |
wdenk | fc3e216 | 2003-10-08 22:33:00 +0000 | [diff] [blame] | 453 | i = 10; |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 454 | while ((i > 0) && (GetI2CSDA() != 1)) { |
| 455 | SetI2CSCL(1); |
| 456 | udelay(1000); |
| 457 | SetI2CSCL(0); |
| 458 | udelay(1000); |
wdenk | fc3e216 | 2003-10-08 22:33:00 +0000 | [diff] [blame] | 459 | i--; |
| 460 | } |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 461 | SetI2CSCL(1); |
| 462 | udelay(1000); |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 463 | |
wdenk | fc3e216 | 2003-10-08 22:33:00 +0000 | [diff] [blame] | 464 | /* restore pin functions */ |
| 465 | #ifdef CONFIG_S3C2410 |
C Nauman | d9abba8 | 2010-10-26 23:04:31 +0900 | [diff] [blame] | 466 | writel(old_gpecon, &gpio->gpecon); |
wdenk | fc3e216 | 2003-10-08 22:33:00 +0000 | [diff] [blame] | 467 | #endif |
| 468 | #ifdef CONFIG_S3C2400 |
C Nauman | d9abba8 | 2010-10-26 23:04:31 +0900 | [diff] [blame] | 469 | writel(old_gpecon, &gpio->pgcon); |
wdenk | fc3e216 | 2003-10-08 22:33:00 +0000 | [diff] [blame] | 470 | #endif |
| 471 | } |
Piotr Wilczek | c86d9ed | 2012-11-20 02:19:05 +0000 | [diff] [blame] | 472 | #endif /* #if !(defined CONFIG_EXYNOS4 || defined CONFIG_EXYNOS5) */ |
Rajeshwari Shinde | ab7e52b | 2012-07-23 21:23:53 +0000 | [diff] [blame] | 473 | i2c_ch_init(i2c, speed, slaveadd); |
Piotr Wilczek | 2d8f1e2 | 2013-11-20 10:43:49 +0100 | [diff] [blame] | 474 | |
| 475 | bus = &i2c_bus[adap->hwadapnr]; |
| 476 | bus->active = true; |
| 477 | bus->regs = i2c; |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 478 | } |
| 479 | |
| 480 | /* |
Naveen Krishna Ch | 296a461 | 2013-10-15 16:02:44 +0530 | [diff] [blame] | 481 | * Poll the appropriate bit of the fifo status register until the interface is |
| 482 | * ready to process the next byte or timeout expires. |
| 483 | * |
| 484 | * In addition to the FIFO status register this function also polls the |
| 485 | * interrupt status register to be able to detect unexpected transaction |
| 486 | * completion. |
| 487 | * |
| 488 | * When FIFO is ready to process the next byte, this function returns I2C_OK. |
| 489 | * If in course of polling the INT_I2C assertion is detected, the function |
| 490 | * returns I2C_NOK. If timeout happens before any of the above conditions is |
| 491 | * met - the function returns I2C_NOK_TOUT; |
| 492 | |
| 493 | * @param i2c: pointer to the appropriate i2c register bank. |
| 494 | * @param rx_transfer: set to True if the receive transaction is in progress. |
| 495 | * @return: as described above. |
| 496 | */ |
| 497 | static unsigned hsi2c_poll_fifo(struct exynos5_hsi2c *i2c, bool rx_transfer) |
| 498 | { |
| 499 | u32 fifo_bit = rx_transfer ? HSI2C_RX_FIFO_EMPTY : HSI2C_TX_FIFO_FULL; |
| 500 | int i = HSI2C_TIMEOUT_US; |
| 501 | |
| 502 | while (readl(&i2c->usi_fifo_stat) & fifo_bit) { |
| 503 | if (readl(&i2c->usi_int_stat) & HSI2C_INT_I2C_EN) { |
| 504 | /* |
| 505 | * There is a chance that assertion of |
| 506 | * HSI2C_INT_I2C_EN and deassertion of |
| 507 | * HSI2C_RX_FIFO_EMPTY happen simultaneously. Let's |
| 508 | * give FIFO status priority and check it one more |
| 509 | * time before reporting interrupt. The interrupt will |
| 510 | * be reported next time this function is called. |
| 511 | */ |
| 512 | if (rx_transfer && |
| 513 | !(readl(&i2c->usi_fifo_stat) & fifo_bit)) |
| 514 | break; |
| 515 | return I2C_NOK; |
| 516 | } |
| 517 | if (!i--) { |
| 518 | debug("%s: FIFO polling timeout!\n", __func__); |
| 519 | return I2C_NOK_TOUT; |
| 520 | } |
| 521 | udelay(1); |
| 522 | } |
| 523 | return I2C_OK; |
| 524 | } |
| 525 | |
| 526 | /* |
| 527 | * Preapre hsi2c transaction, either read or write. |
| 528 | * |
| 529 | * Set up transfer as described in section 27.5.1.2 'I2C Channel Auto Mode' of |
| 530 | * the 5420 UM. |
| 531 | * |
| 532 | * @param i2c: pointer to the appropriate i2c register bank. |
| 533 | * @param chip: slave address on the i2c bus (with read/write bit exlcuded) |
| 534 | * @param len: number of bytes expected to be sent or received |
| 535 | * @param rx_transfer: set to true for receive transactions |
| 536 | * @param: issue_stop: set to true if i2c stop condition should be generated |
| 537 | * after this transaction. |
| 538 | * @return: I2C_NOK_TOUT in case the bus remained busy for HSI2C_TIMEOUT_US, |
| 539 | * I2C_OK otherwise. |
| 540 | */ |
| 541 | static int hsi2c_prepare_transaction(struct exynos5_hsi2c *i2c, |
| 542 | u8 chip, |
| 543 | u16 len, |
| 544 | bool rx_transfer, |
| 545 | bool issue_stop) |
| 546 | { |
| 547 | u32 conf; |
| 548 | |
| 549 | conf = len | HSI2C_MASTER_RUN; |
| 550 | |
| 551 | if (issue_stop) |
| 552 | conf |= HSI2C_STOP_AFTER_TRANS; |
| 553 | |
| 554 | /* Clear to enable Timeout */ |
| 555 | writel(readl(&i2c->usi_timeout) & ~HSI2C_TIMEOUT_EN, &i2c->usi_timeout); |
| 556 | |
| 557 | /* Set slave address */ |
| 558 | writel(HSI2C_SLV_ADDR_MAS(chip), &i2c->i2c_addr); |
| 559 | |
| 560 | if (rx_transfer) { |
| 561 | /* i2c master, read transaction */ |
| 562 | writel((HSI2C_RXCHON | HSI2C_FUNC_MODE_I2C | HSI2C_MASTER), |
| 563 | &i2c->usi_ctl); |
| 564 | |
| 565 | /* read up to len bytes, stop after transaction is finished */ |
| 566 | writel(conf | HSI2C_READ_WRITE, &i2c->usi_auto_conf); |
| 567 | } else { |
| 568 | /* i2c master, write transaction */ |
| 569 | writel((HSI2C_TXCHON | HSI2C_FUNC_MODE_I2C | HSI2C_MASTER), |
| 570 | &i2c->usi_ctl); |
| 571 | |
| 572 | /* write up to len bytes, stop after transaction is finished */ |
| 573 | writel(conf, &i2c->usi_auto_conf); |
| 574 | } |
| 575 | |
| 576 | /* Reset all pending interrupt status bits we care about, if any */ |
| 577 | writel(HSI2C_INT_I2C_EN, &i2c->usi_int_stat); |
| 578 | |
| 579 | return I2C_OK; |
| 580 | } |
| 581 | |
| 582 | /* |
| 583 | * Wait while i2c bus is settling down (mostly stop gets completed). |
| 584 | */ |
| 585 | static int hsi2c_wait_while_busy(struct exynos5_hsi2c *i2c) |
| 586 | { |
| 587 | int i = HSI2C_TIMEOUT_US; |
| 588 | |
| 589 | while (readl(&i2c->usi_trans_status) & HSI2C_MASTER_BUSY) { |
| 590 | if (!i--) { |
| 591 | debug("%s: bus busy\n", __func__); |
| 592 | return I2C_NOK_TOUT; |
| 593 | } |
| 594 | udelay(1); |
| 595 | } |
| 596 | return I2C_OK; |
| 597 | } |
| 598 | |
| 599 | static int hsi2c_write(struct exynos5_hsi2c *i2c, |
| 600 | unsigned char chip, |
| 601 | unsigned char addr[], |
| 602 | unsigned char alen, |
| 603 | unsigned char data[], |
| 604 | unsigned short len, |
| 605 | bool issue_stop) |
| 606 | { |
| 607 | int i, rv = 0; |
| 608 | |
| 609 | if (!(len + alen)) { |
| 610 | /* Writes of zero length not supported in auto mode. */ |
| 611 | debug("%s: zero length writes not supported\n", __func__); |
| 612 | return I2C_NOK; |
| 613 | } |
| 614 | |
| 615 | rv = hsi2c_prepare_transaction |
| 616 | (i2c, chip, len + alen, false, issue_stop); |
| 617 | if (rv != I2C_OK) |
| 618 | return rv; |
| 619 | |
| 620 | /* Move address, if any, and the data, if any, into the FIFO. */ |
| 621 | for (i = 0; i < alen; i++) { |
| 622 | rv = hsi2c_poll_fifo(i2c, false); |
| 623 | if (rv != I2C_OK) { |
| 624 | debug("%s: address write failed\n", __func__); |
| 625 | goto write_error; |
| 626 | } |
| 627 | writel(addr[i], &i2c->usi_txdata); |
| 628 | } |
| 629 | |
| 630 | for (i = 0; i < len; i++) { |
| 631 | rv = hsi2c_poll_fifo(i2c, false); |
| 632 | if (rv != I2C_OK) { |
| 633 | debug("%s: data write failed\n", __func__); |
| 634 | goto write_error; |
| 635 | } |
| 636 | writel(data[i], &i2c->usi_txdata); |
| 637 | } |
| 638 | |
| 639 | rv = hsi2c_wait_for_trx(i2c); |
| 640 | |
| 641 | write_error: |
| 642 | if (issue_stop) { |
| 643 | int tmp_ret = hsi2c_wait_while_busy(i2c); |
| 644 | if (rv == I2C_OK) |
| 645 | rv = tmp_ret; |
| 646 | } |
| 647 | |
| 648 | writel(HSI2C_FUNC_MODE_I2C, &i2c->usi_ctl); /* done */ |
| 649 | return rv; |
| 650 | } |
| 651 | |
| 652 | static int hsi2c_read(struct exynos5_hsi2c *i2c, |
| 653 | unsigned char chip, |
| 654 | unsigned char addr[], |
| 655 | unsigned char alen, |
| 656 | unsigned char data[], |
| 657 | unsigned short len) |
| 658 | { |
| 659 | int i, rv, tmp_ret; |
| 660 | bool drop_data = false; |
| 661 | |
| 662 | if (!len) { |
| 663 | /* Reads of zero length not supported in auto mode. */ |
| 664 | debug("%s: zero length read adjusted\n", __func__); |
| 665 | drop_data = true; |
| 666 | len = 1; |
| 667 | } |
| 668 | |
| 669 | if (alen) { |
| 670 | /* Internal register adress needs to be written first. */ |
| 671 | rv = hsi2c_write(i2c, chip, addr, alen, NULL, 0, false); |
| 672 | if (rv != I2C_OK) |
| 673 | return rv; |
| 674 | } |
| 675 | |
| 676 | rv = hsi2c_prepare_transaction(i2c, chip, len, true, true); |
| 677 | |
| 678 | if (rv != I2C_OK) |
| 679 | return rv; |
| 680 | |
| 681 | for (i = 0; i < len; i++) { |
| 682 | rv = hsi2c_poll_fifo(i2c, true); |
| 683 | if (rv != I2C_OK) |
| 684 | goto read_err; |
| 685 | if (drop_data) |
| 686 | continue; |
| 687 | data[i] = readl(&i2c->usi_rxdata); |
| 688 | } |
| 689 | |
| 690 | rv = hsi2c_wait_for_trx(i2c); |
| 691 | |
| 692 | read_err: |
| 693 | tmp_ret = hsi2c_wait_while_busy(i2c); |
| 694 | if (rv == I2C_OK) |
| 695 | rv = tmp_ret; |
| 696 | |
| 697 | writel(HSI2C_FUNC_MODE_I2C, &i2c->usi_ctl); /* done */ |
| 698 | return rv; |
| 699 | } |
| 700 | |
Piotr Wilczek | 2d8f1e2 | 2013-11-20 10:43:49 +0100 | [diff] [blame] | 701 | static unsigned int s3c24x0_i2c_set_bus_speed(struct i2c_adapter *adap, |
| 702 | unsigned int speed) |
| 703 | { |
| 704 | struct s3c24x0_i2c_bus *i2c_bus; |
| 705 | |
| 706 | i2c_bus = get_bus(adap->hwadapnr); |
| 707 | if (!i2c_bus) |
| 708 | return -1; |
| 709 | |
| 710 | i2c_bus->clock_frequency = speed; |
| 711 | |
| 712 | if (i2c_bus->is_highspeed) { |
| 713 | if (hsi2c_get_clk_details(i2c_bus)) |
| 714 | return -1; |
| 715 | hsi2c_ch_init(i2c_bus); |
| 716 | } else { |
| 717 | i2c_ch_init(i2c_bus->regs, i2c_bus->clock_frequency, |
| 718 | CONFIG_SYS_I2C_S3C24X0_SLAVE); |
| 719 | } |
| 720 | |
| 721 | return 0; |
| 722 | } |
| 723 | |
Naveen Krishna Ch | e717fc6 | 2013-12-06 12:12:38 +0530 | [diff] [blame] | 724 | #ifdef CONFIG_EXYNOS5 |
| 725 | static void exynos_i2c_init(struct i2c_adapter *adap, int speed, int slaveaddr) |
| 726 | { |
| 727 | /* This will override the speed selected in the fdt for that port */ |
| 728 | debug("i2c_init(speed=%u, slaveaddr=0x%x)\n", speed, slaveaddr); |
| 729 | if (i2c_set_bus_speed(speed)) |
| 730 | printf("i2c_init: failed to init bus %d for speed = %d\n", |
| 731 | adap->hwadapnr, speed); |
| 732 | } |
| 733 | #endif |
| 734 | |
Naveen Krishna Ch | 296a461 | 2013-10-15 16:02:44 +0530 | [diff] [blame] | 735 | /* |
wdenk | fc3e216 | 2003-10-08 22:33:00 +0000 | [diff] [blame] | 736 | * cmd_type is 0 for write, 1 for read. |
| 737 | * |
| 738 | * addr_len can take any value from 0-255, it is only limited |
| 739 | * by the char, we could make it larger if needed. If it is |
| 740 | * 0 we skip the address write cycle. |
| 741 | */ |
Rajeshwari Shinde | ab7e52b | 2012-07-23 21:23:53 +0000 | [diff] [blame] | 742 | static int i2c_transfer(struct s3c24x0_i2c *i2c, |
| 743 | unsigned char cmd_type, |
| 744 | unsigned char chip, |
| 745 | unsigned char addr[], |
| 746 | unsigned char addr_len, |
| 747 | unsigned char data[], |
| 748 | unsigned short data_len) |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 749 | { |
Naveen Krishna Ch | e4e2402 | 2013-10-15 16:01:43 +0530 | [diff] [blame] | 750 | int i = 0, result; |
| 751 | ulong start_time = get_timer(0); |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 752 | |
wdenk | fc3e216 | 2003-10-08 22:33:00 +0000 | [diff] [blame] | 753 | if (data == 0 || data_len == 0) { |
| 754 | /*Don't support data transfer of no length or to address 0 */ |
Rajeshwari Shinde | ab7e52b | 2012-07-23 21:23:53 +0000 | [diff] [blame] | 755 | debug("i2c_transfer: bad call\n"); |
wdenk | fc3e216 | 2003-10-08 22:33:00 +0000 | [diff] [blame] | 756 | return I2C_NOK; |
| 757 | } |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 758 | |
Naveen Krishna Ch | e4e2402 | 2013-10-15 16:01:43 +0530 | [diff] [blame] | 759 | while (readl(&i2c->iicstat) & I2CSTAT_BSY) { |
| 760 | if (get_timer(start_time) > I2C_TIMEOUT_MS) |
| 761 | return I2C_NOK_TOUT; |
wdenk | fc3e216 | 2003-10-08 22:33:00 +0000 | [diff] [blame] | 762 | } |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 763 | |
Rajeshwari Shinde | ab7e52b | 2012-07-23 21:23:53 +0000 | [diff] [blame] | 764 | writel(readl(&i2c->iiccon) | I2CCON_ACKGEN, &i2c->iiccon); |
Naveen Krishna Ch | e4e2402 | 2013-10-15 16:01:43 +0530 | [diff] [blame] | 765 | |
| 766 | /* Get the slave chip address going */ |
| 767 | writel(chip, &i2c->iicds); |
| 768 | if ((cmd_type == I2C_WRITE) || (addr && addr_len)) |
| 769 | writel(I2C_MODE_MT | I2C_TXRX_ENA | I2C_START_STOP, |
| 770 | &i2c->iicstat); |
| 771 | else |
| 772 | writel(I2C_MODE_MR | I2C_TXRX_ENA | I2C_START_STOP, |
| 773 | &i2c->iicstat); |
| 774 | |
| 775 | /* Wait for chip address to transmit. */ |
| 776 | result = WaitForXfer(i2c); |
| 777 | if (result != I2C_OK) |
| 778 | goto bailout; |
| 779 | |
| 780 | /* If register address needs to be transmitted - do it now. */ |
| 781 | if (addr && addr_len) { |
| 782 | while ((i < addr_len) && (result == I2C_OK)) { |
| 783 | writel(addr[i++], &i2c->iicds); |
| 784 | ReadWriteByte(i2c); |
| 785 | result = WaitForXfer(i2c); |
| 786 | } |
| 787 | i = 0; |
| 788 | if (result != I2C_OK) |
| 789 | goto bailout; |
| 790 | } |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 791 | |
wdenk | fc3e216 | 2003-10-08 22:33:00 +0000 | [diff] [blame] | 792 | switch (cmd_type) { |
wdenk | 48b4261 | 2003-06-19 23:01:32 +0000 | [diff] [blame] | 793 | case I2C_WRITE: |
Naveen Krishna Ch | e4e2402 | 2013-10-15 16:01:43 +0530 | [diff] [blame] | 794 | while ((i < data_len) && (result == I2C_OK)) { |
| 795 | writel(data[i++], &i2c->iicds); |
| 796 | ReadWriteByte(i2c); |
Rajeshwari Shinde | ab7e52b | 2012-07-23 21:23:53 +0000 | [diff] [blame] | 797 | result = WaitForXfer(i2c); |
Naveen Krishna Ch | e4e2402 | 2013-10-15 16:01:43 +0530 | [diff] [blame] | 798 | } |
wdenk | fc3e216 | 2003-10-08 22:33:00 +0000 | [diff] [blame] | 799 | break; |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 800 | |
wdenk | 48b4261 | 2003-06-19 23:01:32 +0000 | [diff] [blame] | 801 | case I2C_READ: |
wdenk | fc3e216 | 2003-10-08 22:33:00 +0000 | [diff] [blame] | 802 | if (addr && addr_len) { |
Naveen Krishna Ch | e4e2402 | 2013-10-15 16:01:43 +0530 | [diff] [blame] | 803 | /* |
| 804 | * Register address has been sent, now send slave chip |
| 805 | * address again to start the actual read transaction. |
| 806 | */ |
C Nauman | d9abba8 | 2010-10-26 23:04:31 +0900 | [diff] [blame] | 807 | writel(chip, &i2c->iicds); |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 808 | |
Naveen Krishna Ch | e4e2402 | 2013-10-15 16:01:43 +0530 | [diff] [blame] | 809 | /* Generate a re-START. */ |
Rajeshwari Shinde | cb466c0 | 2013-02-19 02:19:45 +0000 | [diff] [blame] | 810 | writel(I2C_MODE_MR | I2C_TXRX_ENA | I2C_START_STOP, |
| 811 | &i2c->iicstat); |
Naveen Krishna Ch | e4e2402 | 2013-10-15 16:01:43 +0530 | [diff] [blame] | 812 | ReadWriteByte(i2c); |
Rajeshwari Shinde | ab7e52b | 2012-07-23 21:23:53 +0000 | [diff] [blame] | 813 | result = WaitForXfer(i2c); |
wdenk | fc3e216 | 2003-10-08 22:33:00 +0000 | [diff] [blame] | 814 | |
Naveen Krishna Ch | e4e2402 | 2013-10-15 16:01:43 +0530 | [diff] [blame] | 815 | if (result != I2C_OK) |
| 816 | goto bailout; |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 817 | } |
| 818 | |
Naveen Krishna Ch | e4e2402 | 2013-10-15 16:01:43 +0530 | [diff] [blame] | 819 | while ((i < data_len) && (result == I2C_OK)) { |
| 820 | /* disable ACK for final READ */ |
| 821 | if (i == data_len - 1) |
| 822 | writel(readl(&i2c->iiccon) |
| 823 | & ~I2CCON_ACKGEN, |
| 824 | &i2c->iiccon); |
| 825 | ReadWriteByte(i2c); |
| 826 | result = WaitForXfer(i2c); |
| 827 | data[i++] = readl(&i2c->iicds); |
| 828 | } |
| 829 | if (result == I2C_NACK) |
| 830 | result = I2C_OK; /* Normal terminated read. */ |
wdenk | fc3e216 | 2003-10-08 22:33:00 +0000 | [diff] [blame] | 831 | break; |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 832 | |
| 833 | default: |
Rajeshwari Shinde | ab7e52b | 2012-07-23 21:23:53 +0000 | [diff] [blame] | 834 | debug("i2c_transfer: bad call\n"); |
wdenk | fc3e216 | 2003-10-08 22:33:00 +0000 | [diff] [blame] | 835 | result = I2C_NOK; |
| 836 | break; |
| 837 | } |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 838 | |
Naveen Krishna Ch | e4e2402 | 2013-10-15 16:01:43 +0530 | [diff] [blame] | 839 | bailout: |
| 840 | /* Send STOP. */ |
| 841 | writel(I2C_MODE_MR | I2C_TXRX_ENA, &i2c->iicstat); |
| 842 | ReadWriteByte(i2c); |
| 843 | |
Rajeshwari Shinde | ab7e52b | 2012-07-23 21:23:53 +0000 | [diff] [blame] | 844 | return result; |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 845 | } |
| 846 | |
Piotr Wilczek | 2d8f1e2 | 2013-11-20 10:43:49 +0100 | [diff] [blame] | 847 | static int s3c24x0_i2c_probe(struct i2c_adapter *adap, uchar chip) |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 848 | { |
Naveen Krishna Ch | 296a461 | 2013-10-15 16:02:44 +0530 | [diff] [blame] | 849 | struct s3c24x0_i2c_bus *i2c_bus; |
wdenk | fc3e216 | 2003-10-08 22:33:00 +0000 | [diff] [blame] | 850 | uchar buf[1]; |
Naveen Krishna Ch | 296a461 | 2013-10-15 16:02:44 +0530 | [diff] [blame] | 851 | int ret; |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 852 | |
Piotr Wilczek | 2d8f1e2 | 2013-11-20 10:43:49 +0100 | [diff] [blame] | 853 | i2c_bus = get_bus(adap->hwadapnr); |
Naveen Krishna Ch | 296a461 | 2013-10-15 16:02:44 +0530 | [diff] [blame] | 854 | if (!i2c_bus) |
| 855 | return -1; |
wdenk | fc3e216 | 2003-10-08 22:33:00 +0000 | [diff] [blame] | 856 | buf[0] = 0; |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 857 | |
wdenk | fc3e216 | 2003-10-08 22:33:00 +0000 | [diff] [blame] | 858 | /* |
| 859 | * What is needed is to send the chip address and verify that the |
| 860 | * address was <ACK>ed (i.e. there was a chip at that address which |
| 861 | * drove the data line low). |
| 862 | */ |
Naveen Krishna Ch | 296a461 | 2013-10-15 16:02:44 +0530 | [diff] [blame] | 863 | if (i2c_bus->is_highspeed) { |
| 864 | ret = hsi2c_read(i2c_bus->hsregs, |
| 865 | chip, 0, 0, buf, 1); |
| 866 | } else { |
| 867 | ret = i2c_transfer(i2c_bus->regs, |
| 868 | I2C_READ, chip << 1, 0, 0, buf, 1); |
| 869 | } |
| 870 | |
Naveen Krishna Ch | 296a461 | 2013-10-15 16:02:44 +0530 | [diff] [blame] | 871 | return ret != I2C_OK; |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 872 | } |
| 873 | |
Piotr Wilczek | 2d8f1e2 | 2013-11-20 10:43:49 +0100 | [diff] [blame] | 874 | static int s3c24x0_i2c_read(struct i2c_adapter *adap, uchar chip, uint addr, |
| 875 | int alen, uchar *buffer, int len) |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 876 | { |
Naveen Krishna Ch | 296a461 | 2013-10-15 16:02:44 +0530 | [diff] [blame] | 877 | struct s3c24x0_i2c_bus *i2c_bus; |
wdenk | fc3e216 | 2003-10-08 22:33:00 +0000 | [diff] [blame] | 878 | uchar xaddr[4]; |
| 879 | int ret; |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 880 | |
wdenk | fc3e216 | 2003-10-08 22:33:00 +0000 | [diff] [blame] | 881 | if (alen > 4) { |
Rajeshwari Shinde | ab7e52b | 2012-07-23 21:23:53 +0000 | [diff] [blame] | 882 | debug("I2C read: addr len %d not supported\n", alen); |
wdenk | fc3e216 | 2003-10-08 22:33:00 +0000 | [diff] [blame] | 883 | return 1; |
| 884 | } |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 885 | |
wdenk | fc3e216 | 2003-10-08 22:33:00 +0000 | [diff] [blame] | 886 | if (alen > 0) { |
| 887 | xaddr[0] = (addr >> 24) & 0xFF; |
| 888 | xaddr[1] = (addr >> 16) & 0xFF; |
| 889 | xaddr[2] = (addr >> 8) & 0xFF; |
| 890 | xaddr[3] = addr & 0xFF; |
| 891 | } |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 892 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 893 | #ifdef CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW |
wdenk | fc3e216 | 2003-10-08 22:33:00 +0000 | [diff] [blame] | 894 | /* |
| 895 | * EEPROM chips that implement "address overflow" are ones |
| 896 | * like Catalyst 24WC04/08/16 which has 9/10/11 bits of |
| 897 | * address and the extra bits end up in the "chip address" |
| 898 | * bit slots. This makes a 24WC08 (1Kbyte) chip look like |
| 899 | * four 256 byte chips. |
| 900 | * |
| 901 | * Note that we consider the length of the address field to |
| 902 | * still be one byte because the extra address bits are |
| 903 | * hidden in the chip address. |
| 904 | */ |
| 905 | if (alen > 0) |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 906 | chip |= ((addr >> (alen * 8)) & |
| 907 | CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW); |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 908 | #endif |
Piotr Wilczek | 2d8f1e2 | 2013-11-20 10:43:49 +0100 | [diff] [blame] | 909 | i2c_bus = get_bus(adap->hwadapnr); |
Naveen Krishna Ch | 296a461 | 2013-10-15 16:02:44 +0530 | [diff] [blame] | 910 | if (!i2c_bus) |
| 911 | return -1; |
| 912 | |
| 913 | if (i2c_bus->is_highspeed) |
| 914 | ret = hsi2c_read(i2c_bus->hsregs, chip, &xaddr[4 - alen], |
| 915 | alen, buffer, len); |
| 916 | else |
| 917 | ret = i2c_transfer(i2c_bus->regs, I2C_READ, chip << 1, |
| 918 | &xaddr[4 - alen], alen, buffer, len); |
| 919 | |
| 920 | if (ret) { |
| 921 | if (i2c_bus->is_highspeed) |
| 922 | exynos5_i2c_reset(i2c_bus); |
| 923 | debug("I2c read failed %d\n", ret); |
wdenk | fc3e216 | 2003-10-08 22:33:00 +0000 | [diff] [blame] | 924 | return 1; |
| 925 | } |
| 926 | return 0; |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 927 | } |
| 928 | |
Piotr Wilczek | 2d8f1e2 | 2013-11-20 10:43:49 +0100 | [diff] [blame] | 929 | static int s3c24x0_i2c_write(struct i2c_adapter *adap, uchar chip, uint addr, |
| 930 | int alen, uchar *buffer, int len) |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 931 | { |
Naveen Krishna Ch | 296a461 | 2013-10-15 16:02:44 +0530 | [diff] [blame] | 932 | struct s3c24x0_i2c_bus *i2c_bus; |
wdenk | fc3e216 | 2003-10-08 22:33:00 +0000 | [diff] [blame] | 933 | uchar xaddr[4]; |
Naveen Krishna Ch | 296a461 | 2013-10-15 16:02:44 +0530 | [diff] [blame] | 934 | int ret; |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 935 | |
wdenk | fc3e216 | 2003-10-08 22:33:00 +0000 | [diff] [blame] | 936 | if (alen > 4) { |
Rajeshwari Shinde | ab7e52b | 2012-07-23 21:23:53 +0000 | [diff] [blame] | 937 | debug("I2C write: addr len %d not supported\n", alen); |
wdenk | fc3e216 | 2003-10-08 22:33:00 +0000 | [diff] [blame] | 938 | return 1; |
| 939 | } |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 940 | |
wdenk | fc3e216 | 2003-10-08 22:33:00 +0000 | [diff] [blame] | 941 | if (alen > 0) { |
| 942 | xaddr[0] = (addr >> 24) & 0xFF; |
| 943 | xaddr[1] = (addr >> 16) & 0xFF; |
| 944 | xaddr[2] = (addr >> 8) & 0xFF; |
| 945 | xaddr[3] = addr & 0xFF; |
| 946 | } |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 947 | #ifdef CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW |
wdenk | fc3e216 | 2003-10-08 22:33:00 +0000 | [diff] [blame] | 948 | /* |
| 949 | * EEPROM chips that implement "address overflow" are ones |
| 950 | * like Catalyst 24WC04/08/16 which has 9/10/11 bits of |
| 951 | * address and the extra bits end up in the "chip address" |
| 952 | * bit slots. This makes a 24WC08 (1Kbyte) chip look like |
| 953 | * four 256 byte chips. |
| 954 | * |
| 955 | * Note that we consider the length of the address field to |
| 956 | * still be one byte because the extra address bits are |
| 957 | * hidden in the chip address. |
| 958 | */ |
| 959 | if (alen > 0) |
kevin.morfitt@fearnside-systems.co.uk | eb0ae7f | 2009-10-10 13:33:11 +0900 | [diff] [blame] | 960 | chip |= ((addr >> (alen * 8)) & |
| 961 | CONFIG_SYS_I2C_EEPROM_ADDR_OVERFLOW); |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 962 | #endif |
Piotr Wilczek | 2d8f1e2 | 2013-11-20 10:43:49 +0100 | [diff] [blame] | 963 | i2c_bus = get_bus(adap->hwadapnr); |
Naveen Krishna Ch | 296a461 | 2013-10-15 16:02:44 +0530 | [diff] [blame] | 964 | if (!i2c_bus) |
| 965 | return -1; |
| 966 | |
| 967 | if (i2c_bus->is_highspeed) |
| 968 | ret = hsi2c_write(i2c_bus->hsregs, chip, &xaddr[4 - alen], |
| 969 | alen, buffer, len, true); |
| 970 | else |
| 971 | ret = i2c_transfer(i2c_bus->regs, I2C_WRITE, chip << 1, |
| 972 | &xaddr[4 - alen], alen, buffer, len); |
| 973 | |
| 974 | if (ret != 0) { |
| 975 | if (i2c_bus->is_highspeed) |
| 976 | exynos5_i2c_reset(i2c_bus); |
| 977 | return 1; |
| 978 | } else { |
| 979 | return 0; |
| 980 | } |
wdenk | 1cb8e98 | 2003-03-06 21:55:29 +0000 | [diff] [blame] | 981 | } |
Rajeshwari Shinde | a9d2ae7 | 2012-12-26 20:03:12 +0000 | [diff] [blame] | 982 | |
Amar | 1ae76d4 | 2013-07-10 10:42:29 +0530 | [diff] [blame] | 983 | #ifdef CONFIG_OF_CONTROL |
Naveen Krishna Ch | 296a461 | 2013-10-15 16:02:44 +0530 | [diff] [blame] | 984 | static void process_nodes(const void *blob, int node_list[], int count, |
| 985 | int is_highspeed) |
Rajeshwari Shinde | a9d2ae7 | 2012-12-26 20:03:12 +0000 | [diff] [blame] | 986 | { |
Naveen Krishna Ch | 296a461 | 2013-10-15 16:02:44 +0530 | [diff] [blame] | 987 | struct s3c24x0_i2c_bus *bus; |
Amar | 2c07bb9 | 2013-04-04 02:27:06 -0400 | [diff] [blame] | 988 | int i; |
Rajeshwari Shinde | a9d2ae7 | 2012-12-26 20:03:12 +0000 | [diff] [blame] | 989 | |
| 990 | for (i = 0; i < count; i++) { |
Rajeshwari Shinde | a9d2ae7 | 2012-12-26 20:03:12 +0000 | [diff] [blame] | 991 | int node = node_list[i]; |
| 992 | |
| 993 | if (node <= 0) |
| 994 | continue; |
Naveen Krishna Ch | 296a461 | 2013-10-15 16:02:44 +0530 | [diff] [blame] | 995 | |
Rajeshwari Shinde | a9d2ae7 | 2012-12-26 20:03:12 +0000 | [diff] [blame] | 996 | bus = &i2c_bus[i]; |
Simon Glass | 940dd16 | 2013-10-15 16:02:10 +0530 | [diff] [blame] | 997 | bus->active = true; |
Naveen Krishna Ch | 296a461 | 2013-10-15 16:02:44 +0530 | [diff] [blame] | 998 | bus->is_highspeed = is_highspeed; |
| 999 | |
| 1000 | if (is_highspeed) |
| 1001 | bus->hsregs = (struct exynos5_hsi2c *) |
| 1002 | fdtdec_get_addr(blob, node, "reg"); |
| 1003 | else |
| 1004 | bus->regs = (struct s3c24x0_i2c *) |
| 1005 | fdtdec_get_addr(blob, node, "reg"); |
| 1006 | |
Rajeshwari Shinde | a9d2ae7 | 2012-12-26 20:03:12 +0000 | [diff] [blame] | 1007 | bus->id = pinmux_decode_periph_id(blob, node); |
Naveen Krishna Ch | 296a461 | 2013-10-15 16:02:44 +0530 | [diff] [blame] | 1008 | bus->clock_frequency = fdtdec_get_int(blob, node, |
Piotr Wilczek | 2d8f1e2 | 2013-11-20 10:43:49 +0100 | [diff] [blame] | 1009 | "clock-frequency", |
| 1010 | CONFIG_SYS_I2C_S3C24X0_SPEED); |
Rajeshwari Shinde | a9d2ae7 | 2012-12-26 20:03:12 +0000 | [diff] [blame] | 1011 | bus->node = node; |
Simon Glass | 940dd16 | 2013-10-15 16:02:10 +0530 | [diff] [blame] | 1012 | bus->bus_num = i; |
Rajeshwari Shinde | a9d2ae7 | 2012-12-26 20:03:12 +0000 | [diff] [blame] | 1013 | exynos_pinmux_config(bus->id, 0); |
Naveen Krishna Ch | 296a461 | 2013-10-15 16:02:44 +0530 | [diff] [blame] | 1014 | |
| 1015 | /* Mark position as used */ |
| 1016 | node_list[i] = -1; |
Rajeshwari Shinde | a9d2ae7 | 2012-12-26 20:03:12 +0000 | [diff] [blame] | 1017 | } |
| 1018 | } |
| 1019 | |
Naveen Krishna Ch | 296a461 | 2013-10-15 16:02:44 +0530 | [diff] [blame] | 1020 | void board_i2c_init(const void *blob) |
Rajeshwari Shinde | a9d2ae7 | 2012-12-26 20:03:12 +0000 | [diff] [blame] | 1021 | { |
Naveen Krishna Ch | 296a461 | 2013-10-15 16:02:44 +0530 | [diff] [blame] | 1022 | int node_list[CONFIG_MAX_I2C_NUM]; |
| 1023 | int count; |
Simon Glass | 940dd16 | 2013-10-15 16:02:10 +0530 | [diff] [blame] | 1024 | |
Naveen Krishna Ch | 296a461 | 2013-10-15 16:02:44 +0530 | [diff] [blame] | 1025 | /* First get the normal i2c ports */ |
| 1026 | count = fdtdec_find_aliases_for_id(blob, "i2c", |
| 1027 | COMPAT_SAMSUNG_S3C2440_I2C, node_list, |
| 1028 | CONFIG_MAX_I2C_NUM); |
| 1029 | process_nodes(blob, node_list, count, 0); |
Rajeshwari Shinde | a9d2ae7 | 2012-12-26 20:03:12 +0000 | [diff] [blame] | 1030 | |
Naveen Krishna Ch | 296a461 | 2013-10-15 16:02:44 +0530 | [diff] [blame] | 1031 | /* Now look for high speed i2c ports */ |
| 1032 | count = fdtdec_find_aliases_for_id(blob, "i2c", |
| 1033 | COMPAT_SAMSUNG_EXYNOS5_I2C, node_list, |
| 1034 | CONFIG_MAX_I2C_NUM); |
| 1035 | process_nodes(blob, node_list, count, 1); |
| 1036 | |
Rajeshwari Shinde | a9d2ae7 | 2012-12-26 20:03:12 +0000 | [diff] [blame] | 1037 | } |
| 1038 | |
| 1039 | int i2c_get_bus_num_fdt(int node) |
| 1040 | { |
| 1041 | int i; |
| 1042 | |
Simon Glass | 940dd16 | 2013-10-15 16:02:10 +0530 | [diff] [blame] | 1043 | for (i = 0; i < ARRAY_SIZE(i2c_bus); i++) { |
Rajeshwari Shinde | a9d2ae7 | 2012-12-26 20:03:12 +0000 | [diff] [blame] | 1044 | if (node == i2c_bus[i].node) |
| 1045 | return i; |
| 1046 | } |
| 1047 | |
| 1048 | debug("%s: Can't find any matched I2C bus\n", __func__); |
| 1049 | return -1; |
| 1050 | } |
| 1051 | |
| 1052 | int i2c_reset_port_fdt(const void *blob, int node) |
| 1053 | { |
Naveen Krishna Ch | 296a461 | 2013-10-15 16:02:44 +0530 | [diff] [blame] | 1054 | struct s3c24x0_i2c_bus *i2c_bus; |
Rajeshwari Shinde | a9d2ae7 | 2012-12-26 20:03:12 +0000 | [diff] [blame] | 1055 | int bus; |
| 1056 | |
| 1057 | bus = i2c_get_bus_num_fdt(node); |
| 1058 | if (bus < 0) { |
| 1059 | debug("could not get bus for node %d\n", node); |
| 1060 | return -1; |
| 1061 | } |
| 1062 | |
Naveen Krishna Ch | 296a461 | 2013-10-15 16:02:44 +0530 | [diff] [blame] | 1063 | i2c_bus = get_bus(bus); |
| 1064 | if (!i2c_bus) { |
Rajeshwari Shinde | a9d2ae7 | 2012-12-26 20:03:12 +0000 | [diff] [blame] | 1065 | debug("get_bus() failed for node node %d\n", node); |
| 1066 | return -1; |
| 1067 | } |
| 1068 | |
Naveen Krishna Ch | 296a461 | 2013-10-15 16:02:44 +0530 | [diff] [blame] | 1069 | if (i2c_bus->is_highspeed) { |
| 1070 | if (hsi2c_get_clk_details(i2c_bus)) |
| 1071 | return -1; |
| 1072 | hsi2c_ch_init(i2c_bus); |
| 1073 | } else { |
| 1074 | i2c_ch_init(i2c_bus->regs, i2c_bus->clock_frequency, |
Piotr Wilczek | 2d8f1e2 | 2013-11-20 10:43:49 +0100 | [diff] [blame] | 1075 | CONFIG_SYS_I2C_S3C24X0_SLAVE); |
Naveen Krishna Ch | 296a461 | 2013-10-15 16:02:44 +0530 | [diff] [blame] | 1076 | } |
Rajeshwari Shinde | a9d2ae7 | 2012-12-26 20:03:12 +0000 | [diff] [blame] | 1077 | |
| 1078 | return 0; |
| 1079 | } |
| 1080 | #endif |
| 1081 | |
Piotr Wilczek | 2d8f1e2 | 2013-11-20 10:43:49 +0100 | [diff] [blame] | 1082 | /* |
| 1083 | * Register s3c24x0 i2c adapters |
| 1084 | */ |
Naveen Krishna Ch | e717fc6 | 2013-12-06 12:12:38 +0530 | [diff] [blame] | 1085 | #if defined(CONFIG_EXYNOS5420) |
| 1086 | U_BOOT_I2C_ADAP_COMPLETE(i2c00, s3c24x0_i2c_init, s3c24x0_i2c_probe, |
| 1087 | s3c24x0_i2c_read, s3c24x0_i2c_write, |
| 1088 | s3c24x0_i2c_set_bus_speed, |
| 1089 | CONFIG_SYS_I2C_S3C24X0_SPEED, |
| 1090 | CONFIG_SYS_I2C_S3C24X0_SLAVE, 0) |
| 1091 | U_BOOT_I2C_ADAP_COMPLETE(i2c01, s3c24x0_i2c_init, s3c24x0_i2c_probe, |
| 1092 | s3c24x0_i2c_read, s3c24x0_i2c_write, |
| 1093 | s3c24x0_i2c_set_bus_speed, |
| 1094 | CONFIG_SYS_I2C_S3C24X0_SPEED, |
| 1095 | CONFIG_SYS_I2C_S3C24X0_SLAVE, 1) |
| 1096 | U_BOOT_I2C_ADAP_COMPLETE(i2c02, s3c24x0_i2c_init, s3c24x0_i2c_probe, |
| 1097 | s3c24x0_i2c_read, s3c24x0_i2c_write, |
| 1098 | s3c24x0_i2c_set_bus_speed, |
| 1099 | CONFIG_SYS_I2C_S3C24X0_SPEED, |
| 1100 | CONFIG_SYS_I2C_S3C24X0_SLAVE, 2) |
| 1101 | U_BOOT_I2C_ADAP_COMPLETE(i2c03, exynos_i2c_init, s3c24x0_i2c_probe, |
| 1102 | s3c24x0_i2c_read, s3c24x0_i2c_write, |
| 1103 | s3c24x0_i2c_set_bus_speed, |
| 1104 | CONFIG_SYS_I2C_S3C24X0_SPEED, |
| 1105 | CONFIG_SYS_I2C_S3C24X0_SLAVE, 3) |
| 1106 | U_BOOT_I2C_ADAP_COMPLETE(i2c04, exynos_i2c_init, s3c24x0_i2c_probe, |
| 1107 | s3c24x0_i2c_read, s3c24x0_i2c_write, |
| 1108 | s3c24x0_i2c_set_bus_speed, |
| 1109 | CONFIG_SYS_I2C_S3C24X0_SPEED, |
| 1110 | CONFIG_SYS_I2C_S3C24X0_SLAVE, 4) |
| 1111 | U_BOOT_I2C_ADAP_COMPLETE(i2c05, exynos_i2c_init, s3c24x0_i2c_probe, |
| 1112 | s3c24x0_i2c_read, s3c24x0_i2c_write, |
| 1113 | s3c24x0_i2c_set_bus_speed, |
| 1114 | CONFIG_SYS_I2C_S3C24X0_SPEED, |
| 1115 | CONFIG_SYS_I2C_S3C24X0_SLAVE, 5) |
| 1116 | U_BOOT_I2C_ADAP_COMPLETE(i2c06, exynos_i2c_init, s3c24x0_i2c_probe, |
| 1117 | s3c24x0_i2c_read, s3c24x0_i2c_write, |
| 1118 | s3c24x0_i2c_set_bus_speed, |
| 1119 | CONFIG_SYS_I2C_S3C24X0_SPEED, |
| 1120 | CONFIG_SYS_I2C_S3C24X0_SLAVE, 6) |
| 1121 | U_BOOT_I2C_ADAP_COMPLETE(i2c07, exynos_i2c_init, s3c24x0_i2c_probe, |
| 1122 | s3c24x0_i2c_read, s3c24x0_i2c_write, |
| 1123 | s3c24x0_i2c_set_bus_speed, |
| 1124 | CONFIG_SYS_I2C_S3C24X0_SPEED, |
| 1125 | CONFIG_SYS_I2C_S3C24X0_SLAVE, 7) |
| 1126 | U_BOOT_I2C_ADAP_COMPLETE(i2c08, exynos_i2c_init, s3c24x0_i2c_probe, |
| 1127 | s3c24x0_i2c_read, s3c24x0_i2c_write, |
| 1128 | s3c24x0_i2c_set_bus_speed, |
| 1129 | CONFIG_SYS_I2C_S3C24X0_SPEED, |
| 1130 | CONFIG_SYS_I2C_S3C24X0_SLAVE, 8) |
| 1131 | U_BOOT_I2C_ADAP_COMPLETE(i2c09, exynos_i2c_init, s3c24x0_i2c_probe, |
| 1132 | s3c24x0_i2c_read, s3c24x0_i2c_write, |
| 1133 | s3c24x0_i2c_set_bus_speed, |
| 1134 | CONFIG_SYS_I2C_S3C24X0_SPEED, |
| 1135 | CONFIG_SYS_I2C_S3C24X0_SLAVE, 9) |
| 1136 | U_BOOT_I2C_ADAP_COMPLETE(i2c10, exynos_i2c_init, s3c24x0_i2c_probe, |
| 1137 | s3c24x0_i2c_read, s3c24x0_i2c_write, |
| 1138 | s3c24x0_i2c_set_bus_speed, |
| 1139 | CONFIG_SYS_I2C_S3C24X0_SPEED, |
| 1140 | CONFIG_SYS_I2C_S3C24X0_SLAVE, 10) |
| 1141 | #elif defined(CONFIG_EXYNOS5250) |
| 1142 | U_BOOT_I2C_ADAP_COMPLETE(i2c00, exynos_i2c_init, s3c24x0_i2c_probe, |
| 1143 | s3c24x0_i2c_read, s3c24x0_i2c_write, |
| 1144 | s3c24x0_i2c_set_bus_speed, |
| 1145 | CONFIG_SYS_I2C_S3C24X0_SPEED, |
| 1146 | CONFIG_SYS_I2C_S3C24X0_SLAVE, 0) |
| 1147 | U_BOOT_I2C_ADAP_COMPLETE(i2c01, exynos_i2c_init, s3c24x0_i2c_probe, |
| 1148 | s3c24x0_i2c_read, s3c24x0_i2c_write, |
| 1149 | s3c24x0_i2c_set_bus_speed, |
| 1150 | CONFIG_SYS_I2C_S3C24X0_SPEED, |
| 1151 | CONFIG_SYS_I2C_S3C24X0_SLAVE, 1) |
| 1152 | U_BOOT_I2C_ADAP_COMPLETE(i2c02, exynos_i2c_init, s3c24x0_i2c_probe, |
| 1153 | s3c24x0_i2c_read, s3c24x0_i2c_write, |
| 1154 | s3c24x0_i2c_set_bus_speed, |
| 1155 | CONFIG_SYS_I2C_S3C24X0_SPEED, |
| 1156 | CONFIG_SYS_I2C_S3C24X0_SLAVE, 2) |
| 1157 | U_BOOT_I2C_ADAP_COMPLETE(i2c03, exynos_i2c_init, s3c24x0_i2c_probe, |
| 1158 | s3c24x0_i2c_read, s3c24x0_i2c_write, |
| 1159 | s3c24x0_i2c_set_bus_speed, |
| 1160 | CONFIG_SYS_I2C_S3C24X0_SPEED, |
| 1161 | CONFIG_SYS_I2C_S3C24X0_SLAVE, 3) |
| 1162 | U_BOOT_I2C_ADAP_COMPLETE(i2c04, s3c24x0_i2c_init, s3c24x0_i2c_probe, |
| 1163 | s3c24x0_i2c_read, s3c24x0_i2c_write, |
| 1164 | s3c24x0_i2c_set_bus_speed, |
| 1165 | CONFIG_SYS_I2C_S3C24X0_SPEED, |
| 1166 | CONFIG_SYS_I2C_S3C24X0_SLAVE, 4) |
| 1167 | U_BOOT_I2C_ADAP_COMPLETE(i2c05, s3c24x0_i2c_init, s3c24x0_i2c_probe, |
| 1168 | s3c24x0_i2c_read, s3c24x0_i2c_write, |
| 1169 | s3c24x0_i2c_set_bus_speed, |
| 1170 | CONFIG_SYS_I2C_S3C24X0_SPEED, |
| 1171 | CONFIG_SYS_I2C_S3C24X0_SLAVE, 5) |
| 1172 | U_BOOT_I2C_ADAP_COMPLETE(i2c06, s3c24x0_i2c_init, s3c24x0_i2c_probe, |
| 1173 | s3c24x0_i2c_read, s3c24x0_i2c_write, |
| 1174 | s3c24x0_i2c_set_bus_speed, |
| 1175 | CONFIG_SYS_I2C_S3C24X0_SPEED, |
| 1176 | CONFIG_SYS_I2C_S3C24X0_SLAVE, 6) |
| 1177 | U_BOOT_I2C_ADAP_COMPLETE(i2c07, s3c24x0_i2c_init, s3c24x0_i2c_probe, |
| 1178 | s3c24x0_i2c_read, s3c24x0_i2c_write, |
| 1179 | s3c24x0_i2c_set_bus_speed, |
| 1180 | CONFIG_SYS_I2C_S3C24X0_SPEED, |
| 1181 | CONFIG_SYS_I2C_S3C24X0_SLAVE, 7) |
| 1182 | U_BOOT_I2C_ADAP_COMPLETE(i2c08, s3c24x0_i2c_init, s3c24x0_i2c_probe, |
| 1183 | s3c24x0_i2c_read, s3c24x0_i2c_write, |
| 1184 | s3c24x0_i2c_set_bus_speed, |
| 1185 | CONFIG_SYS_I2C_S3C24X0_SPEED, |
| 1186 | CONFIG_SYS_I2C_S3C24X0_SLAVE, 8) |
| 1187 | U_BOOT_I2C_ADAP_COMPLETE(i2c09, s3c24x0_i2c_init, s3c24x0_i2c_probe, |
| 1188 | s3c24x0_i2c_read, s3c24x0_i2c_write, |
| 1189 | s3c24x0_i2c_set_bus_speed, |
| 1190 | CONFIG_SYS_I2C_S3C24X0_SPEED, |
| 1191 | CONFIG_SYS_I2C_S3C24X0_SLAVE, 9) |
| 1192 | U_BOOT_I2C_ADAP_COMPLETE(s3c10, s3c24x0_i2c_init, s3c24x0_i2c_probe, |
| 1193 | s3c24x0_i2c_read, s3c24x0_i2c_write, |
| 1194 | s3c24x0_i2c_set_bus_speed, |
| 1195 | CONFIG_SYS_I2C_S3C24X0_SPEED, |
| 1196 | CONFIG_SYS_I2C_S3C24X0_SLAVE, 10) |
| 1197 | #elif defined(CONFIG_EXYNOS4) |
| 1198 | U_BOOT_I2C_ADAP_COMPLETE(i2c00, s3c24x0_i2c_init, s3c24x0_i2c_probe, |
| 1199 | s3c24x0_i2c_read, s3c24x0_i2c_write, |
| 1200 | s3c24x0_i2c_set_bus_speed, |
| 1201 | CONFIG_SYS_I2C_S3C24X0_SPEED, |
| 1202 | CONFIG_SYS_I2C_S3C24X0_SLAVE, 0) |
| 1203 | U_BOOT_I2C_ADAP_COMPLETE(i2c01, s3c24x0_i2c_init, s3c24x0_i2c_probe, |
| 1204 | s3c24x0_i2c_read, s3c24x0_i2c_write, |
| 1205 | s3c24x0_i2c_set_bus_speed, |
| 1206 | CONFIG_SYS_I2C_S3C24X0_SPEED, |
| 1207 | CONFIG_SYS_I2C_S3C24X0_SLAVE, 1) |
| 1208 | U_BOOT_I2C_ADAP_COMPLETE(i2c02, s3c24x0_i2c_init, s3c24x0_i2c_probe, |
| 1209 | s3c24x0_i2c_read, s3c24x0_i2c_write, |
| 1210 | s3c24x0_i2c_set_bus_speed, |
| 1211 | CONFIG_SYS_I2C_S3C24X0_SPEED, |
| 1212 | CONFIG_SYS_I2C_S3C24X0_SLAVE, 2) |
| 1213 | U_BOOT_I2C_ADAP_COMPLETE(i2c03, s3c24x0_i2c_init, s3c24x0_i2c_probe, |
| 1214 | s3c24x0_i2c_read, s3c24x0_i2c_write, |
| 1215 | s3c24x0_i2c_set_bus_speed, |
| 1216 | CONFIG_SYS_I2C_S3C24X0_SPEED, |
| 1217 | CONFIG_SYS_I2C_S3C24X0_SLAVE, 3) |
| 1218 | U_BOOT_I2C_ADAP_COMPLETE(i2c04, s3c24x0_i2c_init, s3c24x0_i2c_probe, |
| 1219 | s3c24x0_i2c_read, s3c24x0_i2c_write, |
| 1220 | s3c24x0_i2c_set_bus_speed, |
| 1221 | CONFIG_SYS_I2C_S3C24X0_SPEED, |
| 1222 | CONFIG_SYS_I2C_S3C24X0_SLAVE, 4) |
| 1223 | U_BOOT_I2C_ADAP_COMPLETE(i2c05, s3c24x0_i2c_init, s3c24x0_i2c_probe, |
| 1224 | s3c24x0_i2c_read, s3c24x0_i2c_write, |
| 1225 | s3c24x0_i2c_set_bus_speed, |
| 1226 | CONFIG_SYS_I2C_S3C24X0_SPEED, |
| 1227 | CONFIG_SYS_I2C_S3C24X0_SLAVE, 5) |
| 1228 | U_BOOT_I2C_ADAP_COMPLETE(i2c06, s3c24x0_i2c_init, s3c24x0_i2c_probe, |
| 1229 | s3c24x0_i2c_read, s3c24x0_i2c_write, |
| 1230 | s3c24x0_i2c_set_bus_speed, |
| 1231 | CONFIG_SYS_I2C_S3C24X0_SPEED, |
| 1232 | CONFIG_SYS_I2C_S3C24X0_SLAVE, 6) |
| 1233 | U_BOOT_I2C_ADAP_COMPLETE(i2c07, s3c24x0_i2c_init, s3c24x0_i2c_probe, |
| 1234 | s3c24x0_i2c_read, s3c24x0_i2c_write, |
| 1235 | s3c24x0_i2c_set_bus_speed, |
| 1236 | CONFIG_SYS_I2C_S3C24X0_SPEED, |
| 1237 | CONFIG_SYS_I2C_S3C24X0_SLAVE, 7) |
| 1238 | U_BOOT_I2C_ADAP_COMPLETE(i2c08, s3c24x0_i2c_init, s3c24x0_i2c_probe, |
| 1239 | s3c24x0_i2c_read, s3c24x0_i2c_write, |
| 1240 | s3c24x0_i2c_set_bus_speed, |
| 1241 | CONFIG_SYS_I2C_S3C24X0_SPEED, |
| 1242 | CONFIG_SYS_I2C_S3C24X0_SLAVE, 8) |
| 1243 | #else |
| 1244 | U_BOOT_I2C_ADAP_COMPLETE(s3c0, s3c24x0_i2c_init, s3c24x0_i2c_probe, |
| 1245 | s3c24x0_i2c_read, s3c24x0_i2c_write, |
| 1246 | s3c24x0_i2c_set_bus_speed, |
| 1247 | CONFIG_SYS_I2C_S3C24X0_SPEED, |
| 1248 | CONFIG_SYS_I2C_S3C24X0_SLAVE, 0) |
| 1249 | #endif |