Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 | /* * Copyright (c) 2018, Nordic Semiconductor ASA * * SPDX-License-Identifier: Apache-2.0 */ #include <drivers/i2c.h> #include <dt-bindings/i2c/i2c.h> #include <nrfx_twim.h> #include <sys/util.h> #include <logging/log.h> LOG_MODULE_REGISTER(i2c_nrfx_twim, CONFIG_I2C_LOG_LEVEL); #define I2C_TRANSFER_TIMEOUT_MSEC K_MSEC(500) struct i2c_nrfx_twim_data { struct k_sem transfer_sync; struct k_sem completion_sync; volatile nrfx_err_t res; uint32_t dev_config; uint16_t concat_buf_size; uint8_t *concat_buf; #ifdef CONFIG_DEVICE_POWER_MANAGEMENT uint32_t pm_state; #endif }; struct i2c_nrfx_twim_config { nrfx_twim_t twim; nrfx_twim_config_t config; }; static inline struct i2c_nrfx_twim_data *get_dev_data(const struct device *dev) { return dev->data; } static inline const struct i2c_nrfx_twim_config *get_dev_config(const struct device *dev) { return dev->config; } static int i2c_nrfx_twim_transfer(const struct device *dev, struct i2c_msg *msgs, uint8_t num_msgs, uint16_t addr) { int ret = 0; uint32_t concat_len = 0; uint8_t *concat_buf = get_dev_data(dev)->concat_buf; uint16_t concat_buf_size = get_dev_data(dev)->concat_buf_size; nrfx_twim_xfer_desc_t cur_xfer = { .address = addr }; k_sem_take(&(get_dev_data(dev)->transfer_sync), K_FOREVER); /* Dummy take on completion_sync sem to be sure that it is empty */ k_sem_take(&(get_dev_data(dev)->completion_sync), K_NO_WAIT); nrfx_twim_enable(&get_dev_config(dev)->twim); for (size_t i = 0; i < num_msgs; i++) { if (I2C_MSG_ADDR_10_BITS & msgs[i].flags) { ret = -ENOTSUP; break; } /* Merge this fragment with the next if we have a buffer, this * isn't the last fragment, it doesn't end a bus transaction, * the next one doesn't start a bus transaction, and the * direction of the next fragment is the same as this one. */ bool concat_next = (concat_buf_size > 0) && ((i + 1) < num_msgs) && !(msgs[i].flags & I2C_MSG_STOP) && !(msgs[i + 1].flags & I2C_MSG_RESTART) && ((msgs[i].flags & I2C_MSG_READ) == (msgs[i + 1].flags & I2C_MSG_READ)); /* If we need to concatenate the next message, or we've * already committed to concatenate this message, add it to * the buffer after verifying there's room. */ if (concat_next || (concat_len != 0)) { if ((concat_len + msgs[i].len) > concat_buf_size) { LOG_ERR("concat-buf overflow: %u + %u > %u", concat_len, msgs[i].len, concat_buf_size); ret = -ENOSPC; break; } if (!(msgs[i].flags & I2C_MSG_READ)) { memcpy(concat_buf + concat_len, msgs[i].buf, msgs[i].len); } concat_len += msgs[i].len; } if (concat_next) { continue; } if (concat_len == 0) { cur_xfer.p_primary_buf = msgs[i].buf; cur_xfer.primary_length = msgs[i].len; } else { cur_xfer.p_primary_buf = concat_buf; cur_xfer.primary_length = concat_len; } cur_xfer.type = (msgs[i].flags & I2C_MSG_READ) ? NRFX_TWIM_XFER_RX : NRFX_TWIM_XFER_TX; nrfx_err_t res = nrfx_twim_xfer(&get_dev_config(dev)->twim, &cur_xfer, (msgs[i].flags & I2C_MSG_STOP) ? 0 : NRFX_TWIM_FLAG_TX_NO_STOP); if (res != NRFX_SUCCESS) { if (res == NRFX_ERROR_BUSY) { ret = -EBUSY; break; } else { ret = -EIO; break; } } ret = k_sem_take(&(get_dev_data(dev)->completion_sync), I2C_TRANSFER_TIMEOUT_MSEC); if (ret != 0) { /* Whatever the frequency, completion_sync should have * been give by the event handler. * * If it hasn't it's probably due to an hardware issue * on the I2C line, for example a short between SDA and * GND. * * Note to fully recover from this issue one should * reinit nrfx twim. */ LOG_ERR("Error on I2C line occurred for message %d", i); ret = -EIO; break; } res = get_dev_data(dev)->res; if (res != NRFX_SUCCESS) { LOG_ERR("Error %d occurred for message %d", res, i); ret = -EIO; break; } /* If concatenated messages were I2C_MSG_READ type, then * content of concatenation buffer has to be copied back into * buffers provided by user. */ if ((msgs[i].flags & I2C_MSG_READ) && cur_xfer.p_primary_buf == concat_buf) { int j = i; while (concat_len >= msgs[j].len) { concat_len -= msgs[j].len; memcpy(msgs[j].buf, concat_buf + concat_len, msgs[j].len); j--; } } concat_len = 0; } nrfx_twim_disable(&get_dev_config(dev)->twim); k_sem_give(&(get_dev_data(dev)->transfer_sync)); return ret; } static void event_handler(nrfx_twim_evt_t const *p_event, void *p_context) { struct i2c_nrfx_twim_data *dev_data = p_context; switch (p_event->type) { case NRFX_TWIM_EVT_DONE: dev_data->res = NRFX_SUCCESS; break; case NRFX_TWIM_EVT_ADDRESS_NACK: dev_data->res = NRFX_ERROR_DRV_TWI_ERR_ANACK; break; case NRFX_TWIM_EVT_DATA_NACK: dev_data->res = NRFX_ERROR_DRV_TWI_ERR_DNACK; break; default: dev_data->res = NRFX_ERROR_INTERNAL; break; } k_sem_give(&dev_data->completion_sync); } static int i2c_nrfx_twim_configure(const struct device *dev, uint32_t dev_config) { nrfx_twim_t const *inst = &(get_dev_config(dev)->twim); if (I2C_ADDR_10_BITS & dev_config) { return -EINVAL; } switch (I2C_SPEED_GET(dev_config)) { case I2C_SPEED_STANDARD: nrf_twim_frequency_set(inst->p_twim, NRF_TWIM_FREQ_100K); break; case I2C_SPEED_FAST: nrf_twim_frequency_set(inst->p_twim, NRF_TWIM_FREQ_400K); break; default: LOG_ERR("unsupported speed"); return -EINVAL; } get_dev_data(dev)->dev_config = dev_config; return 0; } static const struct i2c_driver_api i2c_nrfx_twim_driver_api = { .configure = i2c_nrfx_twim_configure, .transfer = i2c_nrfx_twim_transfer, }; static int init_twim(const struct device *dev) { struct i2c_nrfx_twim_data *dev_data = get_dev_data(dev); nrfx_err_t result = nrfx_twim_init(&get_dev_config(dev)->twim, &get_dev_config(dev)->config, event_handler, dev_data); if (result != NRFX_SUCCESS) { LOG_ERR("Failed to initialize device: %s", dev->name); return -EBUSY; } #ifdef CONFIG_DEVICE_POWER_MANAGEMENT get_dev_data(dev)->pm_state = DEVICE_PM_ACTIVE_STATE; #endif return 0; } #ifdef CONFIG_DEVICE_POWER_MANAGEMENT static int twim_nrfx_pm_control(const struct device *dev, uint32_t ctrl_command, void *context, device_pm_cb cb, void *arg) { int ret = 0; uint32_t pm_current_state = get_dev_data(dev)->pm_state; if (ctrl_command == DEVICE_PM_SET_POWER_STATE) { uint32_t new_state = *((const uint32_t *)context); if (new_state != pm_current_state) { switch (new_state) { case DEVICE_PM_ACTIVE_STATE: init_twim(dev); if (get_dev_data(dev)->dev_config) { i2c_nrfx_twim_configure( dev, get_dev_data(dev)->dev_config); } break; case DEVICE_PM_LOW_POWER_STATE: case DEVICE_PM_SUSPEND_STATE: case DEVICE_PM_OFF_STATE: if (pm_current_state != DEVICE_PM_ACTIVE_STATE) { break; } nrfx_twim_uninit(&get_dev_config(dev)->twim); break; default: ret = -ENOTSUP; } if (!ret) { get_dev_data(dev)->pm_state = new_state; } } } else { __ASSERT_NO_MSG(ctrl_command == DEVICE_PM_GET_POWER_STATE); *((uint32_t *)context) = get_dev_data(dev)->pm_state; } if (cb) { cb(dev, ret, context, arg); } return ret; } #endif /* CONFIG_DEVICE_POWER_MANAGEMENT */ #define I2C_NRFX_TWIM_INVALID_FREQUENCY ((nrf_twim_frequency_t)-1) #define I2C_NRFX_TWIM_FREQUENCY(bitrate) \ (bitrate == I2C_BITRATE_STANDARD ? NRF_TWIM_FREQ_100K \ : bitrate == 250000 ? NRF_TWIM_FREQ_250K \ : bitrate == I2C_BITRATE_FAST ? NRF_TWIM_FREQ_400K \ : I2C_NRFX_TWIM_INVALID_FREQUENCY) #define I2C(idx) DT_NODELABEL(i2c##idx) #define I2C_FREQUENCY(idx) \ I2C_NRFX_TWIM_FREQUENCY(DT_PROP(I2C(idx), clock_frequency)) #define CONCAT_BUF_SIZE(idx) DT_PROP(I2C(idx), zephyr_concat_buf_size) #define I2C_CONCAT_BUF(idx) \ COND_CODE_1(DT_NODE_HAS_PROP(I2C(idx), zephyr_concat_buf_size), \ (.concat_buf = twim_##idx##_concat_buf, \ .concat_buf_size = CONCAT_BUF_SIZE(idx),), ()) #define I2C_NRFX_TWIM_DEVICE(idx) \ BUILD_ASSERT(I2C_FREQUENCY(idx) != \ I2C_NRFX_TWIM_INVALID_FREQUENCY, \ "Wrong I2C " #idx " frequency setting in dts"); \ static int twim_##idx##_init(const struct device *dev) \ { \ IRQ_CONNECT(DT_IRQN(I2C(idx)), DT_IRQ(I2C(idx), priority), \ nrfx_isr, nrfx_twim_##idx##_irq_handler, 0); \ return init_twim(dev); \ } \ COND_CODE_1(DT_NODE_HAS_PROP(I2C(idx), zephyr_concat_buf_size), \ (static uint8_t twim_##idx##_concat_buf[CONCAT_BUF_SIZE(idx)];), \ ()) \ \ static struct i2c_nrfx_twim_data twim_##idx##_data = { \ .transfer_sync = Z_SEM_INITIALIZER( \ twim_##idx##_data.transfer_sync, 1, 1), \ .completion_sync = Z_SEM_INITIALIZER( \ twim_##idx##_data.completion_sync, 0, 1), \ I2C_CONCAT_BUF(idx) \ }; \ static const struct i2c_nrfx_twim_config twim_##idx##z_config = { \ .twim = NRFX_TWIM_INSTANCE(idx), \ .config = { \ .scl = DT_PROP(I2C(idx), scl_pin), \ .sda = DT_PROP(I2C(idx), sda_pin), \ .frequency = I2C_FREQUENCY(idx), \ } \ }; \ DEVICE_DEFINE(twim_##idx, \ DT_LABEL(I2C(idx)), \ twim_##idx##_init, \ twim_nrfx_pm_control, \ &twim_##idx##_data, \ &twim_##idx##z_config, \ POST_KERNEL, \ CONFIG_I2C_INIT_PRIORITY, \ &i2c_nrfx_twim_driver_api) #ifdef CONFIG_I2C_0_NRF_TWIM I2C_NRFX_TWIM_DEVICE(0); #endif #ifdef CONFIG_I2C_1_NRF_TWIM I2C_NRFX_TWIM_DEVICE(1); #endif #ifdef CONFIG_I2C_2_NRF_TWIM I2C_NRFX_TWIM_DEVICE(2); #endif #ifdef CONFIG_I2C_3_NRF_TWIM I2C_NRFX_TWIM_DEVICE(3); #endif |