i2c.c 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. /*
  2. * This file is part of the MicroPython project, http://micropython.org/
  3. *
  4. * The MIT License (MIT)
  5. *
  6. * Copyright (c) 2017 Glenn Ruben Bakke
  7. *
  8. * Permission is hereby granted, free of charge, to any person obtaining a copy
  9. * of this software and associated documentation files (the "Software"), to deal
  10. * in the Software without restriction, including without limitation the rights
  11. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  12. * copies of the Software, and to permit persons to whom the Software is
  13. * furnished to do so, subject to the following conditions:
  14. *
  15. * The above copyright notice and this permission notice shall be included in
  16. * all copies or substantial portions of the Software.
  17. *
  18. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  19. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  20. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  21. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  22. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  23. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  24. * THE SOFTWARE.
  25. */
  26. #include <stdio.h>
  27. #include <string.h>
  28. #include "py/nlr.h"
  29. #include "py/runtime.h"
  30. #include "py/mperrno.h"
  31. #include "py/mphal.h"
  32. #include "extmod/machine_i2c.h"
  33. #include "i2c.h"
  34. #include "nrfx_twi.h"
  35. #if MICROPY_PY_MACHINE_I2C
  36. STATIC const mp_obj_type_t machine_hard_i2c_type;
  37. typedef struct _machine_hard_i2c_obj_t {
  38. mp_obj_base_t base;
  39. nrfx_twi_t p_twi; // Driver instance
  40. } machine_hard_i2c_obj_t;
  41. STATIC const machine_hard_i2c_obj_t machine_hard_i2c_obj[] = {
  42. {{&machine_hard_i2c_type}, .p_twi = NRFX_TWI_INSTANCE(0)},
  43. {{&machine_hard_i2c_type}, .p_twi = NRFX_TWI_INSTANCE(1)},
  44. };
  45. void i2c_init0(void) {
  46. }
  47. STATIC int i2c_find(mp_obj_t id) {
  48. // given an integer id
  49. int i2c_id = mp_obj_get_int(id);
  50. if (i2c_id >= 0 && i2c_id < MP_ARRAY_SIZE(machine_hard_i2c_obj)) {
  51. return i2c_id;
  52. }
  53. nlr_raise(mp_obj_new_exception_msg_varg(&mp_type_ValueError,
  54. "I2C(%d) does not exist", i2c_id));
  55. }
  56. STATIC void machine_hard_i2c_print(const mp_print_t *print, mp_obj_t self_in, mp_print_kind_t kind) {
  57. machine_hard_i2c_obj_t *self = self_in;
  58. mp_printf(print, "I2C(%u)", self->p_twi.drv_inst_idx);
  59. }
  60. /******************************************************************************/
  61. /* MicroPython bindings for machine API */
  62. mp_obj_t machine_hard_i2c_make_new(const mp_obj_type_t *type, size_t n_args, size_t n_kw, const mp_obj_t *all_args) {
  63. enum { ARG_id, ARG_scl, ARG_sda };
  64. static const mp_arg_t allowed_args[] = {
  65. { MP_QSTR_id, MP_ARG_REQUIRED | MP_ARG_OBJ },
  66. { MP_QSTR_scl, MP_ARG_REQUIRED | MP_ARG_OBJ },
  67. { MP_QSTR_sda, MP_ARG_REQUIRED | MP_ARG_OBJ },
  68. };
  69. // parse args
  70. mp_arg_val_t args[MP_ARRAY_SIZE(allowed_args)];
  71. mp_arg_parse_all_kw_array(n_args, n_kw, all_args, MP_ARRAY_SIZE(allowed_args), allowed_args, args);
  72. // get static peripheral object
  73. int i2c_id = i2c_find(args[ARG_id].u_obj);
  74. const machine_hard_i2c_obj_t *self = &machine_hard_i2c_obj[i2c_id];
  75. nrfx_twi_config_t config;
  76. config.scl = mp_hal_get_pin_obj(args[ARG_scl].u_obj)->pin;
  77. config.sda = mp_hal_get_pin_obj(args[ARG_sda].u_obj)->pin;
  78. config.frequency = NRF_TWI_FREQ_400K;
  79. config.hold_bus_uninit = false;
  80. // Set context to this object.
  81. nrfx_twi_init(&self->p_twi, &config, NULL, (void *)self);
  82. return MP_OBJ_FROM_PTR(self);
  83. }
  84. int machine_hard_i2c_readfrom(mp_obj_base_t *self_in, uint16_t addr, uint8_t *dest, size_t len, bool stop) {
  85. machine_hard_i2c_obj_t *self = (machine_hard_i2c_obj_t *)self_in;
  86. nrfx_twi_enable(&self->p_twi);
  87. nrfx_err_t err_code = nrfx_twi_rx(&self->p_twi, addr, dest, len);
  88. if (err_code != NRFX_SUCCESS) {
  89. if (err_code == NRFX_ERROR_DRV_TWI_ERR_ANACK) {
  90. return -MP_ENODEV;
  91. }
  92. else if (err_code == NRFX_ERROR_DRV_TWI_ERR_DNACK) {
  93. return -MP_EIO;
  94. }
  95. return -MP_ETIMEDOUT;
  96. }
  97. nrfx_twi_disable(&self->p_twi);
  98. return 0;
  99. }
  100. int machine_hard_i2c_writeto(mp_obj_base_t *self_in, uint16_t addr, const uint8_t *src, size_t len, bool stop) {
  101. machine_hard_i2c_obj_t *self = (machine_hard_i2c_obj_t *)self_in;
  102. nrfx_twi_enable(&self->p_twi);
  103. nrfx_err_t err_code = nrfx_twi_tx(&self->p_twi, addr, src, len, !stop);
  104. if (err_code != NRFX_SUCCESS) {
  105. if (err_code == NRFX_ERROR_DRV_TWI_ERR_ANACK) {
  106. return -MP_ENODEV;
  107. }
  108. else if (err_code == NRFX_ERROR_DRV_TWI_ERR_DNACK) {
  109. return -MP_EIO;
  110. }
  111. return -MP_ETIMEDOUT;
  112. }
  113. nrfx_twi_disable(&self->p_twi);
  114. return len;
  115. }
  116. STATIC const mp_machine_i2c_p_t machine_hard_i2c_p = {
  117. .readfrom = machine_hard_i2c_readfrom,
  118. .writeto = machine_hard_i2c_writeto,
  119. };
  120. STATIC const mp_obj_type_t machine_hard_i2c_type = {
  121. { &mp_type_type },
  122. .name = MP_QSTR_I2C,
  123. .print = machine_hard_i2c_print,
  124. .make_new = machine_hard_i2c_make_new,
  125. .protocol = &machine_hard_i2c_p,
  126. .locals_dict = (mp_obj_dict_t*)&mp_machine_soft_i2c_locals_dict,
  127. };
  128. #endif // MICROPY_PY_MACHINE_I2C