i2c_master.c 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. /* Copyright 2018 Jack Humbert
  2. * Copyright 2018 Yiancar
  3. *
  4. * This program is free software: you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation, either version 2 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. */
  17. /* This library is only valid for STM32 processors.
  18. * This library follows the convention of the AVR i2c_master library.
  19. * As a result addresses are expected to be already shifted (addr << 1).
  20. * I2CD1 is the default driver which corresponds to pins B6 and B7. This
  21. * can be changed.
  22. * Please ensure that HAL_USE_I2C is TRUE in the halconf.h file and that
  23. * STM32_I2C_USE_I2C1 is TRUE in the mcuconf.h file. Pins B6 and B7 are used
  24. * but using any other I2C pins should be trivial.
  25. */
  26. #include "quantum.h"
  27. #include "i2c_master.h"
  28. #include <string.h>
  29. #include <hal.h>
  30. static const I2CConfig i2cconfig = {
  31. #ifdef USE_I2CV1
  32. I2C1_OPMODE,
  33. I2C1_CLOCK_SPEED,
  34. I2C1_DUTY_CYCLE,
  35. #else
  36. // This configures the I2C clock to 400khz assuming a 72Mhz clock
  37. // For more info : https://www.st.com/en/embedded-software/stsw-stm32126.html
  38. STM32_TIMINGR_PRESC(I2C1_TIMINGR_PRESC) | STM32_TIMINGR_SCLDEL(I2C1_TIMINGR_SCLDEL) | STM32_TIMINGR_SDADEL(I2C1_TIMINGR_SDADEL) | STM32_TIMINGR_SCLH(I2C1_TIMINGR_SCLH) | STM32_TIMINGR_SCLL(I2C1_TIMINGR_SCLL), 0, 0
  39. #endif
  40. };
  41. static i2c_status_t chibios_to_qmk(const msg_t* status) {
  42. switch (*status) {
  43. case I2C_NO_ERROR:
  44. return I2C_STATUS_SUCCESS;
  45. case I2C_TIMEOUT:
  46. return I2C_STATUS_TIMEOUT;
  47. // I2C_BUS_ERROR, I2C_ARBITRATION_LOST, I2C_ACK_FAILURE, I2C_OVERRUN, I2C_PEC_ERROR, I2C_SMB_ALERT
  48. default:
  49. return I2C_STATUS_ERROR;
  50. }
  51. }
  52. __attribute__((weak)) void i2c_init(void) {
  53. // Try releasing special pins for a short time
  54. palSetPadMode(I2C1_SCL_BANK, I2C1_SCL, PAL_MODE_INPUT);
  55. palSetPadMode(I2C1_SDA_BANK, I2C1_SDA, PAL_MODE_INPUT);
  56. chThdSleepMilliseconds(10);
  57. #if defined(USE_GPIOV1)
  58. palSetPadMode(I2C1_SCL_BANK, I2C1_SCL, PAL_MODE_STM32_ALTERNATE_OPENDRAIN);
  59. palSetPadMode(I2C1_SDA_BANK, I2C1_SDA, PAL_MODE_STM32_ALTERNATE_OPENDRAIN);
  60. #else
  61. palSetPadMode(I2C1_SCL_BANK, I2C1_SCL, PAL_MODE_ALTERNATE(I2C1_SCL_PAL_MODE) | PAL_STM32_OTYPE_OPENDRAIN);
  62. palSetPadMode(I2C1_SDA_BANK, I2C1_SDA, PAL_MODE_ALTERNATE(I2C1_SDA_PAL_MODE) | PAL_STM32_OTYPE_OPENDRAIN);
  63. #endif
  64. }
  65. i2c_status_t i2c_start(uint8_t address) {
  66. #if I2C_USE_MUTUAL_EXCLUSION
  67. i2cAcquireBus(&I2C_DRIVER);
  68. #endif
  69. i2cStart(&I2C_DRIVER, &i2cconfig);
  70. return I2C_STATUS_SUCCESS;
  71. }
  72. i2c_status_t i2c_transmit(uint8_t address, const uint8_t* data, uint16_t length, uint16_t timeout) {
  73. #if I2C_USE_MUTUAL_EXCLUSION
  74. i2cAcquireBus(&I2C_DRIVER);
  75. #endif
  76. i2cStart(&I2C_DRIVER, &i2cconfig);
  77. msg_t status = i2cMasterTransmitTimeout(&I2C_DRIVER, (address >> 1), data, length, 0, 0, MS2ST(timeout));
  78. #if I2C_USE_MUTUAL_EXCLUSION
  79. i2cReleaseBus(&I2C_DRIVER);
  80. #endif
  81. return chibios_to_qmk(&status);
  82. }
  83. i2c_status_t i2c_receive(uint8_t address, uint8_t* data, uint16_t length, uint16_t timeout) {
  84. #if I2C_USE_MUTUAL_EXCLUSION
  85. i2cAcquireBus(&I2C_DRIVER);
  86. #endif
  87. i2cStart(&I2C_DRIVER, &i2cconfig);
  88. msg_t status = i2cMasterReceiveTimeout(&I2C_DRIVER, (address >> 1), data, length, MS2ST(timeout));
  89. #if I2C_USE_MUTUAL_EXCLUSION
  90. i2cReleaseBus(&I2C_DRIVER);
  91. #endif
  92. return chibios_to_qmk(&status);
  93. }
  94. i2c_status_t i2c_writeReg(uint8_t devaddr, uint8_t regaddr, const uint8_t* data, uint16_t length, uint16_t timeout) {
  95. #if I2C_USE_MUTUAL_EXCLUSION
  96. i2cAcquireBus(&I2C_DRIVER);
  97. #endif
  98. i2cStart(&I2C_DRIVER, &i2cconfig);
  99. uint8_t complete_packet[length + 1];
  100. for (uint8_t i = 0; i < length; i++) {
  101. complete_packet[i + 1] = data[i];
  102. }
  103. complete_packet[0] = regaddr;
  104. msg_t status = i2cMasterTransmitTimeout(&I2C_DRIVER, (devaddr >> 1), complete_packet, length + 1, 0, 0, MS2ST(timeout));
  105. #if I2C_USE_MUTUAL_EXCLUSION
  106. i2cReleaseBus(&I2C_DRIVER);
  107. #endif
  108. return chibios_to_qmk(&status);
  109. }
  110. i2c_status_t i2c_readReg(uint8_t devaddr, uint8_t regaddr, uint8_t* data, uint16_t length, uint16_t timeout) {
  111. #if I2C_USE_MUTUAL_EXCLUSION
  112. i2cAcquireBus(&I2C_DRIVER);
  113. #endif
  114. i2cStart(&I2C_DRIVER, &i2cconfig);
  115. msg_t status = i2cMasterTransmitTimeout(&I2C_DRIVER, (devaddr >> 1), &regaddr, 1, data, length, MS2ST(timeout));
  116. #if I2C_USE_MUTUAL_EXCLUSION
  117. i2cReleaseBus(&I2C_DRIVER);
  118. #endif
  119. return chibios_to_qmk(&status);
  120. }
  121. void i2c_stop(void) {
  122. i2cStop(&I2C_DRIVER);
  123. #if I2C_USE_MUTUAL_EXCLUSION
  124. i2cReleaseBus(&I2C_DRIVER);
  125. #endif
  126. }