RTOS enabled i2c-driver based on the official i2c-C-api.

Dependencies:   mbed-rtos

Fork of mbed-RtosI2cDriver by Helmut Schmücker

I2cRtosDriver

Overview

  • Based on RTOS
    • Less busy wait waste of CPU cycles
    • ... but some waste of CPU cycles by context switches
    • Frees up to 80% of CPU resources
  • Fixes the bug described in https://mbed.org/forum/bugs-suggestions/topic/4128/
  • Spends minimal time in interrupt context
  • Supports I2C Master and Slave mode
  • Interface compatible to official I2C lib
  • Supports LPC1768 and LPC11U24.
  • Reuses parts of the official I2C implementation
  • The test and example programs work quite well and the results look promising. But this is by no means a thoroughly regression tested library. There might be some surprises left.
  • If you want to avoid the RTOS overhead MODI2C might be a better choice.

Usage

  • In existing projects simply replace in the I2C interface class declaration the official type by one of the adapters I2CMasterRtos or I2CSlaveRtos described below. The behavior should be the same.
  • You can also use the I2CDriver interface directly.
  • You can create several instances of I2CMasterRtos, I2CSlaveRtos and I2CDriver. The interface classes are lightweight and work in parallel.
  • See also the tests/examples in I2CDriverTest01.h - I2CDriverTest05.h
  • The I2CDriver class is the central interface
    • I2CDriver provides a "fat" API for I2C master and slave access
    • It supports on the fly changes between master and slave mode.
    • All requests are blocking. Other threads might do their work while the calling thread waits for the i2c requests to be completed.
    • It ensures mutual exclusive access to the I2C HW.
      • This is realized by a static RTOS mutex for each I2C channel. The mutex is taken by the calling thread on any call of an I2CDriver-function.
      • Thus accesses are prioritized automatically by the priority of the calling user threads.
      • Once having access to the interface the requests are performed with high priority and cannot be interrupted by other threads.
      • Optionally the interface can be locked manually. Useful if one wants to perform a sequence of commands without interruption.
  • I2CMasterRtos and I2CSlaveRtos provide an interface compatible to the official mbed I2C interface. Additionally
    • the constructors provide parameters for defining the frequency and the slave address
    • I2CMasterRtos provides a function to read data from a given slave register
    • In contrast to the original interface the I2CSlaveRtos::receive() function is blocking, i.e it returns, when the master sends a request to the listening slave. There is no need to poll the receive status in a loop. Optionally a timeout value can be passed to the function.
    • The stop function provides a timeout mechanism and returns the status. Thus if someone on the bus inhibits the creation of a stop condition by keeping the scl or the sda line low the mbed master won't get freezed.
    • The interface adapters are implemented as object adapters, i.e they hold an I2CDriver-instance, to which they forward the user requests by simple inline functions. The overhead is negligible.

Design

The i2c read and write sequences have been realized in an interrupt service routine. The communicaton between the calling thread and the ISR is realized by a simple static transfer struct and a semaphore ... see i2cRtos_api.c
The start and stop functions still use the busy wait approach. They are not entered that frequently and usually they take less than 12µs at 100kHz bus speed. At 400kHz even less time is consumed. Thus there wouldn't be much benefit if one triggers the whole interrupt/task wait/switch sequence for that short period of time.

Performance

The following performance data have been measured with the small test applications in I2CDriverTest01.h and I2CDriverTest04.h . In these applications a high priority thread, triggered at a rate of 1kHz, reads on each trigger a data packet of given size with given I2C bus speed from a SRF08 ultra sonic ranger or a MPU6050 accelerometer/gyro. At the same time the main thread - running at a lower priority - counts in an endless loop adjacent increments of the mbed's µs-ticker API and calculates a duty cycle from this. These duty cycle measurements are shown in the table below together with the time measured for one read sequence (write address+register; write address and read x byte of data). The measurements have been performed with the ISR/RTOS approach used by this driver and with the busy wait approach used by the official mbed I2C implementation. The i2c implementation can be selected via #define PREFIX in I2CDriver.cpp.

  • The time for one read cycle is almost the same for both approaches
  • At full load the duty cycle of the low priority thread drops almost to zero for the busy wait approach, whereas with the RTOS/ISR enabled driver it stays at 80%-90% on the LPC1768 and above 65% on the LPC11U24.
  • => Especially at low bus speeds and/or high data transfer loads the driver is able to free a significant amount of CPU time.
LPC17681byte/ms4byte/ms6byte/ms1byte/ms6byte/ms12byte/ms25byte/ms
SRF08@ 100kHz@ 100kHz@ 100kHz@ 400kHz@ 400kHz@ 400kHz@ 400kHz
rtos/ISRDC[%]91.791.090.593.391.990.386.8
t[µs]421714910141314518961
busy waitDC[%]57.127.78.185.868.748.23.8
t[µs]415710907128299503949
LPC17681byte/ms4byte/ms7byte/ms1byte/ms6byte/ms12byte/ms36byte/ms
MPU6050@ 100kHz@ 100kHz@ 100kHz@ 400kHz@ 400kHz@ 400kHz@ 400kHz
rtos/ISRDC[%]91.590.789.393.091.690.084.2
t[µs]415687959133254398977
busy waitDC[%]57.730.53.386.574.359.71.2
t[µs]408681953121243392974
LPC11U241byte/ms6byte/ms1byte/ms6byte/ms23byte/ms
SRF08@ 100kHz@ 100kHz@ 400kHz@ 400kHz@ 400kHz
rtos/ISRDC[%]79.277.581.178.771.4
t[µs]474975199374978
busy waitDC[%]51.82.480.5633.3
t[µs]442937156332928
LPC11U241byte/ms6byte/ms1byte/ms6byte/ms32byte/ms
MPU6050@ 100kHz@ 100kHz@ 400kHz@ 400kHz@ 400kHz
rtos/ISRDC[%]79.176.881.078.667.1
t[µs]466922188316985
busy waitDC[%]52.87.281.769.87.4
t[µs]433893143268895
Committer:
humlet
Date:
Sun May 19 11:21:16 2013 +0000
Revision:
14:352609d395c1
Parent:
13:530968937ccb
almost beta?; ***refactored (removed mbed-NXP and mbed-src hacks/dependencies) ; *** bugs fixed; *** performance improved (read/write sequence now handled in ISR);

Who changed what in which revision?

UserRevisionLine numberNew contents of line
humlet 14:352609d395c1 1 // exchange messages betwen the LPC1768's two i2c ports using low level read/write/start/stop commands
humlet 14:352609d395c1 2 // changing master and slave mode on the fly
humlet 14:352609d395c1 3
humlet 7:04824382eafb 4 #include "mbed.h"
humlet 7:04824382eafb 5 #include "rtos.h"
humlet 7:04824382eafb 6 #include "I2CMasterRtos.h"
humlet 13:530968937ccb 7 #include "I2CSlaveRtos.h"
humlet 7:04824382eafb 8
humlet 13:530968937ccb 9 const int freq = 400000;
humlet 13:530968937ccb 10 const int adr = 42<<1;
humlet 13:530968937ccb 11 const int len=34;
humlet 13:530968937ccb 12 const char mstMsg[len]="We are mbed, resistance is futile";
humlet 13:530968937ccb 13 const char slvMsg[len]="Fine with me, let's get addicted ";
humlet 7:04824382eafb 14
humlet 13:530968937ccb 15 static void slvRxMsg(I2CSlaveRtos& slv)
humlet 13:530968937ccb 16 {
humlet 13:530968937ccb 17 char rxMsg[len];
humlet 13:530968937ccb 18 memset(rxMsg,0,len);
humlet 13:530968937ccb 19 if ( slv.receive() == I2CSlave::WriteAddressed ) {
humlet 13:530968937ccb 20 int cnt=0;
humlet 13:530968937ccb 21 while(cnt<len) rxMsg[cnt++]=slv.read();
humlet 13:530968937ccb 22 slv.stop(); // stop sretching low level of scl
humlet 13:530968937ccb 23 printf("thread %x received message (sz=%d) as i2c slave: '%s'\n",Thread::gettid(),cnt,rxMsg);
humlet 13:530968937ccb 24 } else
humlet 13:530968937ccb 25 printf("Ouch slv rx failure\n");
humlet 13:530968937ccb 26 }
humlet 7:04824382eafb 27
humlet 13:530968937ccb 28 static void slvTxMsg(I2CSlaveRtos& slv)
humlet 13:530968937ccb 29 {
humlet 13:530968937ccb 30 if ( slv.receive()==I2CSlave::ReadAddressed) {
humlet 13:530968937ccb 31 int cnt=0;
humlet 13:530968937ccb 32 while(cnt<len && slv.write(slvMsg[cnt++]));
humlet 13:530968937ccb 33 slv.stop(); // stop sretching low level of scl
humlet 13:530968937ccb 34 } else
humlet 13:530968937ccb 35 printf("Ouch slv tx failure\n");
humlet 13:530968937ccb 36 }
humlet 7:04824382eafb 37
humlet 13:530968937ccb 38 static void mstTxMsg(I2CMasterRtos& mst)
humlet 7:04824382eafb 39 {
humlet 13:530968937ccb 40 mst.start();
humlet 13:530968937ccb 41 if(!mst.write(adr & 0xfe))printf("adr+W not acked\n");
humlet 13:530968937ccb 42 int cnt=0;
humlet 13:530968937ccb 43 while(cnt<len && mst.write(mstMsg[cnt++]));
humlet 13:530968937ccb 44 // give the slave a chance to stop stretching scl to low, otherwise we will busy wait for the stop forever
humlet 13:530968937ccb 45 while(!mst.stop())Thread::wait(1);
humlet 7:04824382eafb 46 }
humlet 7:04824382eafb 47
humlet 13:530968937ccb 48 static void mstRxMsg(I2CMasterRtos& mst)
humlet 7:04824382eafb 49 {
humlet 13:530968937ccb 50 char rxMsg[len];
humlet 13:530968937ccb 51 memset(rxMsg,0,len);
humlet 7:04824382eafb 52
humlet 13:530968937ccb 53 mst.lock(); // no special reason, just a test
humlet 13:530968937ccb 54 mst.start();
humlet 13:530968937ccb 55 if(!mst.write(adr | 0x01))printf("adr+R not acked\n");
humlet 13:530968937ccb 56 int cnt=0;
humlet 13:530968937ccb 57 while(cnt<len-1) rxMsg[cnt++]=mst.read(1);
humlet 13:530968937ccb 58 mst.unlock();
humlet 13:530968937ccb 59 rxMsg[cnt++]=mst.read(0);
humlet 13:530968937ccb 60 // give the slave a chance to stop stretching scl to low, otherwise we will busy wait for the stop forever
humlet 13:530968937ccb 61 while(!mst.stop())Thread::wait(1);
humlet 13:530968937ccb 62 printf("thread %x received message (sz=%d) as i2c master: '%s'\n",Thread::gettid(),cnt,rxMsg);
humlet 7:04824382eafb 63 }
humlet 7:04824382eafb 64
humlet 13:530968937ccb 65 static void channel1(void const *args)
humlet 13:530968937ccb 66 {
humlet 13:530968937ccb 67 I2CMasterRtos mst(p9,p10,freq);
humlet 13:530968937ccb 68 I2CSlaveRtos slv(p9,p10,freq,adr);
humlet 13:530968937ccb 69 while(1) {
humlet 13:530968937ccb 70 slvRxMsg(slv);
humlet 13:530968937ccb 71 slvTxMsg(slv);
humlet 13:530968937ccb 72 Thread::wait(100);
humlet 13:530968937ccb 73 mstTxMsg(mst);
humlet 13:530968937ccb 74 Thread::wait(100);
humlet 13:530968937ccb 75 mstRxMsg(mst);
humlet 13:530968937ccb 76 }
humlet 13:530968937ccb 77 }
humlet 13:530968937ccb 78
humlet 13:530968937ccb 79 void channel2(void const *args)
humlet 13:530968937ccb 80 {
humlet 13:530968937ccb 81 I2CMasterRtos mst(p28,p27,freq);
humlet 13:530968937ccb 82 I2CSlaveRtos slv(p28,p27,freq,adr);
humlet 13:530968937ccb 83 while(1) {
humlet 13:530968937ccb 84 Thread::wait(100);
humlet 13:530968937ccb 85 mstTxMsg(mst);
humlet 13:530968937ccb 86 Thread::wait(100);
humlet 13:530968937ccb 87 mstRxMsg(mst);
humlet 13:530968937ccb 88 slvRxMsg(slv);
humlet 13:530968937ccb 89 slvTxMsg(slv);
humlet 13:530968937ccb 90 }
humlet 13:530968937ccb 91 }
humlet 7:04824382eafb 92
humlet 7:04824382eafb 93 int doit()
humlet 7:04824382eafb 94 {
humlet 13:530968937ccb 95 Thread selftalk01(channel1,0);
humlet 13:530968937ccb 96 Thread selftalk02(channel2,0);
humlet 13:530968937ccb 97 Thread::wait(5000);
humlet 7:04824382eafb 98 return 0;
humlet 7:04824382eafb 99 }
humlet 7:04824382eafb 100