Silent warning when we compile without debug.
[bertos.git] / bertos / cpu / cortex-m3 / drv / i2c_lm3s.c
index c581b71a92442a0ce88bfd0d8911e3d1ffbc4323..fd2f5905d4abe74a1ab802feda478b0806f35012 100644 (file)
@@ -32,6 +32,8 @@
  *
  * \brief Driver for the LM3S I2C (implementation)
  *
+ * \author Daniele Basile <asterix@develer.com>
+ *
  */
 
 #include "cfg/cfg_i2c.h"
 
 #include <cfg/debug.h>
 #include <cfg/macros.h> // BV()
-#include <cfg/module.h>
 
 #include <cpu/detect.h>
 #include <cpu/irq.h>
+#include <cpu/types.h>
+#include <cpu/power.h>
 
-#include <io/cm3_types.h>
 #include <io/lm3s.h>
 
 #include <drv/timer.h>
 #include <drv/clock_lm3s.h>
 
 
-#define I2C     I2C0_MASTER_BASE
-
-/**
- * Send START condition on the bus.
- *
- * \return true on success, false otherwise.
- */
-static bool i2c_builtin_start(void)
+struct I2cHardware
 {
-       return true;
-}
-
-
-/**
- * Send START condition and select slave for write.
- * \c id is the device id comprehensive of address left shifted by 1.
- * The LSB of \c id is ignored and reset to 0 for write operation.
- *
- * \return true on success, false otherwise.
+       uint32_t base;
+       uint32_t sys_cntl;
+       uint32_t sys_gpio;
+       uint32_t pin_mask;
+       uint32_t gpio_base;
+       bool first_xtranf;
+};
+
+#define WAIT_BUSY(base) \
+       do { \
+               while (HWREG(base + I2C_O_MCS) & I2C_MCS_BUSY ) \
+                       cpu_relax(); \
+       } while (0);
+
+
+/*
+ * The start is not performed when we call the start function
+ * because the hardware should know the first data byte to send.
+ * Generally to perform a byte send we should write the slave address
+ * in slave address register and the first byte to send in data registry.
+ * After then we can perform the start write procedure, and send really
+ * the our data. To use common bertos i2c api the really start will be
+ * performed when the user "put" or "send" its data. These tricks are hide
+ * from the driver implementation.
  */
-bool i2c_builtin_start_w(uint8_t id)
+static void i2c_lm3s_start(struct I2c *i2c, uint16_t slave_addr)
 {
+       i2c->hw->first_xtranf = true;
 
-       HWREG(I2C + I2C_O_MSA) = (id << 1) | BV(I2C_MSA_ADDS);
-
-       return true;
+       if (I2C_TEST_START(i2c->flags) == I2C_START_W)
+               HWREG(i2c->hw->base + I2C_O_MSA) = slave_addr & ~BV(0);
+       else /* (I2C_TEST_START(i2c->flags) == I2C_START_R) */
+               HWREG(i2c->hw->base + I2C_O_MSA) = slave_addr | BV(0);
 }
 
-
-/**
- * Send START condition and select slave for read.
- * \c id is the device id comprehensive of address left shifted by 1.
- * The LSB of \c id is ignored and set to 1 for read operation.
- *
- * \return true on success, false otherwise.
- */
-bool i2c_builtin_start_r(uint8_t id)
-{
-       HWREG(I2C + I2C_O_MSA) = (id << 1) | BV(I2C_MSA_ADDR);
-
-       return true;
-}
-
-
-/**
- * Send STOP condition.
- */
-void i2c_builtin_stop(void)
+INLINE bool wait_addrAck(I2c *i2c, uint32_t mode_mask)
 {
+       ticks_t start = timer_clock();
+       while (1)
+       {
+               uint32_t status = HWREG(i2c->hw->base + I2C_O_MCS);
 
-}
+               if (timer_clock() - start > ms_to_ticks(CONFIG_I2C_START_TIMEOUT))
+                       return false;
 
+               if(status & I2C_MCS_ADRACK)
+               {
+                       HWREG(i2c->hw->base + I2C_O_MCS) = mode_mask;
+                       WAIT_BUSY(i2c->hw->base);
+               }
+               else
+                       break;
 
-/**
- * Put a single byte in master transmitter mode
- * to the selected slave device through the TWI bus.
- *
- * \return true on success, false on error.
- */
-bool i2c_builtin_put(const uint8_t data)
-{
+               cpu_relax();
+       }
        return true;
 }
 
-/**
- * Get 1 byte from slave in master transmitter mode
- * to the selected slave device through the I2C bus.
- * If \a ack is true issue a ACK after getting the byte,
- * otherwise a NACK is issued.
- *
- * \return the byte read if ok, EOF on errors.
- */
-int i2c_builtin_get(bool ack)
+static void i2c_lm3s_putc(I2c *i2c, const uint8_t data)
 {
+       HWREG(i2c->hw->base + I2C_O_MDR) = data;
 
-       if (ack)
+       if (i2c->hw->first_xtranf)
        {
+               HWREG(i2c->hw->base + I2C_O_MCS) = I2C_MCS_RUN | I2C_MCS_START;
+               while( HWREG(i2c->hw->base + I2C_O_MCS) & I2C_MCS_BUSY );
+
+               if (!wait_addrAck(i2c, I2C_MCS_RUN | I2C_MCS_START))
+               {
+                       LOG_ERR("Start timeout\n");
+                       i2c->errors |= I2C_START_TIMEOUT;
+                       HWREG(i2c->hw->base + I2C_O_MCS) = I2C_MCS_STOP;
+                       WAIT_BUSY(i2c->hw->base);
+                       return;
+               }
 
+               i2c->hw->first_xtranf = false;
        }
        else
        {
-
+               HWREG(i2c->hw->base + I2C_O_MCS) = I2C_MCS_RUN;
+               WAIT_BUSY(i2c->hw->base);
        }
 
-       /* avoid sign extension */
-       return 0;
-}
-
-
-INLINE bool check_i2cStatus(uint32_t base)
-{
-       ticks_t start = timer_clock();
-
-       while (true)
+       if ((i2c->xfer_size == 1) && (I2C_TEST_STOP(i2c->flags) == I2C_STOP))
        {
-               while(true)
-               {
-                       uint32_t status = HWREG(base + I2C_O_MCS);
-
-                       if (status & I2C_MCS_ADRACK)
-                               if (timer_clock() - start > ms_to_ticks(CONFIG_I2C_START_TIMEOUT))
-                               {
-                                       LOG_ERR("Timeout on I2C_START\n");
-                                               break;
-                               }
-
-                       if (status & I2C_MCS_BUSY)
-                               continue;
-                       else
-                               return true;
-               }
+               HWREG(i2c->hw->base + I2C_O_MCS) = I2C_MCS_STOP;
+               WAIT_BUSY(i2c->hw->base);
        }
-
-       return false;
 }
 
-bool i2c_send(const void *_buf, size_t count)
+static uint8_t i2c_lm3s_getc(I2c *i2c)
 {
-       const uint8_t *buf = (const uint8_t *)_buf;
-
-       if (count == 1)
+       uint8_t data;
+       if (i2c->hw->first_xtranf)
        {
-               HWREG(I2C + I2C_O_MDR) = *buf++;
-
-               HWREG(I2C + I2C_O_MCS) = I2C_MASTER_CMD_SINGLE_SEND;
-
-               if ( !check_i2cStatus(I2C) )
-                       return false;
-
-               count--;
-       }
-
-       if (count > 1)
-       {
-               HWREG(I2C + I2C_O_MDR) = *buf++;
-               count--;
-
-               HWREG(I2C + I2C_O_MCS) = I2C_MASTER_CMD_BURST_SEND_START;
-
-               if ( !check_i2cStatus(I2C) )
-                       return false;
-
-               while(count)
+               uint32_t start_mode;
+               if (i2c->xfer_size == 1)
+                       start_mode = I2C_MCS_RUN | I2C_MCS_START;
+               else
+                       start_mode = I2C_MCS_ACK | I2C_MCS_RUN | I2C_MCS_START;
+
+               HWREG(i2c->hw->base + I2C_O_MCS) = start_mode;
+               WAIT_BUSY(i2c->hw->base);
+               if (!wait_addrAck(i2c, start_mode))
                {
-                       HWREG(I2C + I2C_O_MDR) = *buf++;
-                       HWREG(I2C + I2C_O_MCS) = I2C_MASTER_CMD_BURST_SEND_CONT;
-
-                       if ( !check_i2cStatus(I2C) )
-                               return false;
-
-                       count--;
+                       LOG_ERR("Start timeout\n");
+                       i2c->errors |= I2C_START_TIMEOUT;
+                       HWREG(i2c->hw->base + I2C_O_MCS) = I2C_MCS_STOP;
+                       WAIT_BUSY(i2c->hw->base);
+                       return 0xFF;
                }
 
-               HWREG(I2C + I2C_O_MCS) = I2C_MASTER_CMD_BURST_SEND_FINISH;
-
-               if ( !check_i2cStatus(I2C) )
-                       return false;
-
+               data = HWREG(i2c->hw->base + I2C_O_MDR);
+               i2c->hw->first_xtranf = false;
        }
-
-       return true;
-}
-
-/**
- * In order to read bytes from the i2c we should make some tricks.
- * This because the silicon manage automatically the NACK on last byte, so to read
- * one, two or three byte we should manage separately these cases.
- */
-bool i2c_recv(void *_buf, size_t count)
-{
-       uint8_t *buf = (const uint8_t *)_buf;
-
-       if (count == 1)
+       else
        {
-               HWREG(I2C + I2C_O_MCS) = I2C_MASTER_CMD_SINGLE_RECEIVE;
+               if (i2c->xfer_size > 1)
+                       HWREG(i2c->hw->base + I2C_O_MCS) = I2C_MCS_ACK | I2C_MCS_RUN;
+               else
+                       HWREG(i2c->hw->base + I2C_O_MCS) = I2C_MCS_RUN;
 
-               if ( !check_i2cStatus(I2C) )
-                       return false;
-
-               *buf++ = HWREGB(I2C + I2C_O_MDR);
-               count--;
+               WAIT_BUSY(i2c->hw->base);
+               data = HWREG(i2c->hw->base + I2C_O_MDR);
        }
 
-       if (count > 1)
+       if ((i2c->xfer_size == 1) && (I2C_TEST_STOP(i2c->flags) == I2C_STOP))
        {
-               HWREG(I2C + I2C_O_MCS) = I2C_MASTER_CMD_BURST_RECEIVE_START;
-
-               if ( !check_i2cStatus(I2C) )
-                       return false;
-
-               while(count)
-               {
-                       *buf++ = HWREGB(I2C + I2C_O_MDR);
-
-                       HWREG(I2C + I2C_O_MCS) = I2C_MASTER_CMD_BURST_RECEIVE_CONT;
-
-                       if ( !check_i2cStatus(I2C) )
-                               return false;
-
-                       count--;
-               }
-
-               HWREG(I2C + I2C_O_MCS) = I2C_MASTER_CMD_BURST_RECEIVE_FINISH;
-
-               if ( !check_i2cStatus(I2C) )
-                       return false;
-
-               *buf++ = HWREGB(I2C + I2C_O_MDR);
-               count--;
+               HWREG(i2c->hw->base + I2C_O_MCS) = I2C_MCS_STOP;
+               WAIT_BUSY(i2c->hw->base);
        }
-
-       return true;
+       return data;
 }
-MOD_DEFINE(i2c);
+
+static const I2cVT i2c_lm3s_vt =
+{
+       .start = i2c_lm3s_start,
+       .getc = i2c_lm3s_getc,
+       .putc = i2c_lm3s_putc,
+       .write = i2c_genericWrite,
+       .read = i2c_genericRead,
+};
+
+static struct I2cHardware i2c_lm3s_hw[] =
+{
+       { /* I2C0 */
+               .base = I2C0_MASTER_BASE,
+               .sys_cntl = SYSCTL_RCGC1_I2C0,
+               .sys_gpio = SYSCTL_RCGC2_GPIOB,
+               .pin_mask = (GPIO_I2C0_SCL_PIN | GPIO_I2C0_SDA_PIN),
+               .gpio_base = GPIO_PORTB_BASE,
+       },
+       { /* I2C1 */
+               .base = I2C1_MASTER_BASE,
+               .sys_cntl = SYSCTL_RCGC1_I2C1,
+               .sys_gpio = SYSCTL_RCGC2_GPIOA,
+               .pin_mask = (GPIO_I2C1_SCL_PIN | GPIO_I2C1_SDA_PIN),
+               .gpio_base = GPIO_PORTA_BASE,
+       },
+};
 
 /**
  * Initialize I2C module.
  */
-void i2c_builtin_init(void)
+void i2c_hw_init(I2c *i2c, int dev, uint32_t clock)
 {
+       i2c->hw = &i2c_lm3s_hw[dev];
+       i2c->vt = &i2c_lm3s_vt;
 
        /* Enable the peripheral clock */
-       SYSCTL_RCGC1_R |= SYSCTL_RCGC1_I2C0;
-       SYSCTL_RCGC2_R |= SYSCTL_RCGC2_GPIOB;
-
+       SYSCTL_RCGC1_R |= i2c->hw->sys_cntl;
+       SYSCTL_RCGC2_R |= i2c->hw->sys_gpio;
 
        /* Configure GPIO pins to work as I2C pins */
-       lm3s_gpioPinConfig(GPIO_PORTB_BASE, GPIO_I2C0_SCL_PIN | GPIO_I2C0_SDA_PIN,
-                       GPIO_DIR_MODE_HW, GPIO_STRENGTH_2MA, GPIO_PIN_TYPE_OD);
+       lm3s_gpioPinConfig(i2c->hw->gpio_base, i2c->hw->pin_mask,
+               GPIO_DIR_MODE_HW, GPIO_STRENGTH_2MA, GPIO_PIN_TYPE_OD_WPU);
+       /*
+        * Note: to set correctly the i2c speed we shold before enable the i2c
+        * device and then set in master time period the correct value
+        */
 
-       //Enable I2C in master mode
-       HWREG(I2C + I2C_O_MCR) |= I2C_MCR_MFE;
+       /* Enable i2c device */
+       HWREG(i2c->hw->base + I2C_O_MCR) |= I2C_MCR_MFE;
 
     /*
         * Compute the clock divider that achieves the fastest speed less than or
@@ -296,7 +252,5 @@ void i2c_builtin_init(void)
      * clock divider so that the resulting clock is always less than or equal
      * to the desired clock, never greater.
         */
-    HWREG(I2C + I2C_O_MTPR) = ((CPU_FREQ + (2 * 10 * CONFIG_I2C_FREQ) - 1) / (2 * 10 * CONFIG_I2C_FREQ)) - 1;
-
-       MOD_INIT(i2c);
+    HWREG(i2c->hw->base + I2C_O_MTPR) = ((CPU_FREQ + (2 * 10 * clock) - 1) / (2 * 10 * clock)) - 1;
 }