Add support for more i2c devices.
[bertos.git] / bertos / drv / i2c.h
index 93ba3dfc58739be09e6abf97fac926cff026dd54..75fb54a51ed1b2e7e1cec744c3afdc10cb9b8dbe 100644 (file)
 
 #include "cfg/cfg_i2c.h"
 
+#define LOG_LEVEL  I2C_LOG_LEVEL
+#define LOG_FORMAT I2C_LOG_FORMAT
+
+#include <cfg/log.h>
+
 #include <cfg/compiler.h>
 #include <cfg/macros.h>
 #include <cfg/debug.h>
@@ -134,10 +139,13 @@ bool i2c_recv(void *_buf, size_t count);
  *
  */
 #define I2C_OK               0
-#define I2C_START_ERR     BV(0)
+#define I2C_ERR           BV(3)
+#define I2C_ARB_LOST      BV(2)
+#define I2C_START_TIMEOUT BV(0)
 #define I2C_NO_ACK        BV(1)
 
 
+
 #define I2C_NOSTOP           0
 #define I2C_STOP          BV(0)
 #define I2C_START_R       BV(1)
@@ -145,6 +153,7 @@ bool i2c_recv(void *_buf, size_t count);
 
 
 #define I2C_TEST_START(flag)  ((flag) & I2C_START_R)
+#define I2C_TEST_STOP(flag)   ((flag) & I2C_STOP)
 
 struct I2cHardware;
 struct I2c;
@@ -176,11 +185,16 @@ typedef struct I2c
 
 #include CPU_HEADER(i2c)
 
+void i2c_swSend(struct I2c *i2c, const void *_buf, size_t count);
+void i2c_swRecv(struct I2c *i2c, void *_buf, size_t count);
+
 INLINE void i2c_start(I2c *i2c, uint16_t slave_addr, size_t size)
 {
        ASSERT(i2c->vt);
        ASSERT(i2c->vt->start);
-       ASSERT(i2c->xfer_size == 0);
+
+       if (!i2c->errors)
+               ASSERT(i2c->xfer_size == 0);
 
        i2c->errors = 0;
        i2c->xfer_size = size;
@@ -192,14 +206,14 @@ INLINE void i2c_start_r(I2c *i2c, uint16_t slave_addr, size_t size, int flags)
 {
        ASSERT(i2c);
        i2c->flags = flags | I2C_START_R;
-       i2c_start(i2c, slave_addr)
+       i2c_start(i2c, slave_addr, size);
 }
 
 INLINE void i2c_start_w(I2c *i2c, uint16_t slave_addr, size_t size, int flags)
 {
        ASSERT(i2c);
        i2c->flags = flags & ~I2C_START_R;
-       i2c_start(i2c, slave_addr);
+       i2c_start(i2c, slave_addr, size);
 }
 
 INLINE uint8_t i2c_get(I2c *i2c)
@@ -208,12 +222,16 @@ INLINE uint8_t i2c_get(I2c *i2c)
        ASSERT(i2c->vt);
        ASSERT(i2c->vt->get);
 
-       ASSERT(i2c->xfer_size >=  1);
+       ASSERT(i2c->xfer_size);
 
        ASSERT(I2C_TEST_START(i2c->flags) == I2C_START_R);
 
        if (!i2c->errors)
-               return i2c->vt->get(i2c);
+       {
+               uint8_t data = i2c->vt->get(i2c);
+               i2c->xfer_size--;
+               return data;
+       }
        else
                return 0xFF;
 }
@@ -224,12 +242,15 @@ INLINE void i2c_put(I2c *i2c, uint8_t data)
        ASSERT(i2c->vt);
        ASSERT(i2c->vt->put);
 
-       ASSERT(i2c->xfer_size >=  1);
+       ASSERT(i2c->xfer_size);
 
        ASSERT(I2C_TEST_START(i2c->flags) == I2C_START_W);
 
        if (!i2c->errors)
+       {
                i2c->vt->put(i2c, data);
+               i2c->xfer_size--;
+       }
 }
 
 INLINE void i2c_send(I2c *i2c, const void *_buf, size_t count)
@@ -270,6 +291,12 @@ INLINE int i2c_error(I2c *i2c)
        ASSERT(i2c);
        int err = i2c->errors;
        i2c->errors = 0;
+
+       LOG_ERRB(
+               if (err)
+                       LOG_ERR("err[%02x]\n", err);
+       );
+
        return err;
 }