2011-07-03 15:22:09 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2011 by amaury Pouly
|
|
|
|
*
|
|
|
|
* Based on Rockbox iriver bootloader by Linus Nielsen Feltzing
|
|
|
|
* and the ipodlinux bootloader by Daniel Palffy and Bernard Leach
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
#include "config.h"
|
|
|
|
#include "system.h"
|
|
|
|
#include "kernel.h"
|
|
|
|
#include "dma-imx233.h"
|
|
|
|
#include "i2c-imx233.h"
|
|
|
|
#include "pinctrl-imx233.h"
|
2012-08-18 13:38:43 +00:00
|
|
|
#include "string.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Driver Architecture:
|
|
|
|
* The driver has two interfaces: the good'n'old i2c_* api and a more
|
|
|
|
* advanced one specific to the imx233 dma architecture. The i2c_* api is
|
|
|
|
* implemented with the imx233_i2c_* one.
|
|
|
|
* Since each i2c transfer must be split into several dma transfers and we
|
|
|
|
* cannot do dynamic allocation, we allow for at most I2C_NR_STAGES stages.
|
|
|
|
* A typical read memory transfer will require 3 stages thus 4 is safe:
|
|
|
|
* - one with start, device address and memory address
|
|
|
|
* - one with repeated start and device address
|
|
|
|
* - one with data read and stop
|
|
|
|
* To make the interface easier to use and to handle the DMA/cache related
|
|
|
|
* issues, all the data transfers are done in a statically allocated buffer
|
|
|
|
* which is managed by the driver. The driver will ensure that all transfers
|
|
|
|
* are cache aligned and will copy back the data to user buffers at the end.
|
|
|
|
* The I2C_BUFFER_SIZE define controls the size of the buffer. All transfers
|
|
|
|
* should probably fit within 512 bytes.
|
|
|
|
*/
|
2011-07-03 15:22:09 +00:00
|
|
|
|
|
|
|
/* Used for DMA */
|
|
|
|
struct i2c_dma_command_t
|
|
|
|
{
|
|
|
|
struct apb_dma_command_t dma;
|
|
|
|
/* PIO words */
|
|
|
|
uint32_t ctrl0;
|
2012-08-18 13:38:43 +00:00
|
|
|
/* copy buffer copy */
|
|
|
|
void *src;
|
|
|
|
void *dst;
|
2012-05-19 23:23:17 +00:00
|
|
|
/* padded to next multiple of cache line size (32 bytes) */
|
2012-08-18 13:38:43 +00:00
|
|
|
uint32_t pad[2];
|
2012-05-19 23:23:17 +00:00
|
|
|
} __attribute__((packed)) CACHEALIGN_ATTR;
|
|
|
|
|
|
|
|
__ENSURE_STRUCT_CACHE_FRIENDLY(struct i2c_dma_command_t)
|
2011-07-03 15:22:09 +00:00
|
|
|
|
|
|
|
#define I2C_NR_STAGES 4
|
2012-08-18 13:38:43 +00:00
|
|
|
#define I2C_BUFFER_SIZE 512
|
2011-07-03 15:22:09 +00:00
|
|
|
/* Current transfer */
|
|
|
|
static int i2c_nr_stages;
|
|
|
|
static struct i2c_dma_command_t i2c_stage[I2C_NR_STAGES];
|
|
|
|
static struct mutex i2c_mutex;
|
|
|
|
static struct semaphore i2c_sema;
|
2012-08-18 13:38:43 +00:00
|
|
|
static uint8_t i2c_buffer[I2C_BUFFER_SIZE] CACHEALIGN_ATTR;
|
|
|
|
static uint32_t i2c_buffer_end; /* current end */
|
2011-07-03 15:22:09 +00:00
|
|
|
|
|
|
|
void INT_I2C_DMA(void)
|
|
|
|
{
|
|
|
|
/* reset dma channel on error */
|
|
|
|
if(imx233_dma_is_channel_error_irq(APB_I2C))
|
|
|
|
imx233_dma_reset_channel(APB_I2C);
|
|
|
|
/* clear irq flags */
|
|
|
|
imx233_dma_clear_channel_interrupt(APB_I2C);
|
|
|
|
semaphore_release(&i2c_sema);
|
|
|
|
}
|
|
|
|
|
2012-03-15 13:59:20 +00:00
|
|
|
void imx233_i2c_init(void)
|
2011-07-03 15:22:09 +00:00
|
|
|
{
|
2012-05-19 11:35:15 +00:00
|
|
|
//imx233_reset_block(&HW_I2C_CTRL0);
|
|
|
|
__REG_SET(HW_I2C_CTRL0) = __BLOCK_SFTRST;
|
2011-07-03 15:22:09 +00:00
|
|
|
/* setup pins (must be done when shutdown) */
|
2012-05-09 22:08:03 +00:00
|
|
|
imx233_pinctrl_acquire_pin(0, 30, "i2c");
|
|
|
|
imx233_pinctrl_acquire_pin(0, 31, "i2c");
|
2011-07-03 15:22:09 +00:00
|
|
|
imx233_set_pin_function(0, 30, PINCTRL_FUNCTION_MAIN);
|
|
|
|
imx233_set_pin_function(0, 31, PINCTRL_FUNCTION_MAIN);
|
|
|
|
/* clear softreset */
|
|
|
|
__REG_CLR(HW_I2C_CTRL0) = __BLOCK_SFTRST | __BLOCK_CLKGATE;
|
|
|
|
/* Errata:
|
|
|
|
* When RETAIN_CLOCK is set, the ninth clock pulse (ACK) is not generated. However, the SDA
|
|
|
|
* line is read at the proper timing interval. If RETAIN_CLOCK is cleared, the ninth clock pulse is
|
|
|
|
* generated.
|
|
|
|
* HW_I2C_CTRL1[ACK_MODE] has default value of 0. It should be set to 1 to enable the fix for
|
|
|
|
* this issue.
|
|
|
|
*/
|
|
|
|
__REG_SET(HW_I2C_CTRL1) = HW_I2C_CTRL1__ACK_MODE;
|
|
|
|
__REG_SET(HW_I2C_CTRL0) = __BLOCK_CLKGATE;
|
|
|
|
/* Fast-mode @ 400K */
|
|
|
|
HW_I2C_TIMING0 = 0x000F0007; /* tHIGH=0.6us, read at 0.3us */
|
|
|
|
HW_I2C_TIMING1 = 0x001F000F; /* tLOW=1.3us, write at 0.6us */
|
|
|
|
HW_I2C_TIMING2 = 0x0015000D;
|
|
|
|
|
|
|
|
mutex_init(&i2c_mutex);
|
|
|
|
semaphore_init(&i2c_sema, 1, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void imx233_i2c_begin(void)
|
|
|
|
{
|
|
|
|
mutex_lock(&i2c_mutex);
|
|
|
|
/* wakeup */
|
|
|
|
__REG_CLR(HW_I2C_CTRL0) = __BLOCK_CLKGATE;
|
|
|
|
i2c_nr_stages = 0;
|
2012-08-18 13:38:43 +00:00
|
|
|
i2c_buffer_end = 0;
|
2011-07-03 15:22:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
enum imx233_i2c_error_t imx233_i2c_add(bool start, bool transmit, void *buffer, unsigned size, bool stop)
|
|
|
|
{
|
|
|
|
if(i2c_nr_stages == I2C_NR_STAGES)
|
|
|
|
return I2C_ERROR;
|
2012-08-18 13:38:43 +00:00
|
|
|
/* align buffer end on cache boundary */
|
|
|
|
uint32_t start_off = CACHEALIGN_UP(i2c_buffer_end);
|
|
|
|
uint32_t end_off = start_off + size;
|
|
|
|
if(end_off > I2C_BUFFER_SIZE)
|
|
|
|
{
|
|
|
|
panicf("die");
|
|
|
|
return I2C_BUFFER_FULL;
|
|
|
|
}
|
|
|
|
i2c_buffer_end = end_off;
|
|
|
|
if(transmit)
|
|
|
|
{
|
|
|
|
/* copy data to buffer */
|
|
|
|
memcpy(i2c_buffer + start_off, buffer, size);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* record pointers for finalization */
|
|
|
|
i2c_stage[i2c_nr_stages].src = i2c_buffer + start_off;
|
|
|
|
i2c_stage[i2c_nr_stages].dst = buffer;
|
|
|
|
}
|
|
|
|
|
2011-07-03 15:22:09 +00:00
|
|
|
if(i2c_nr_stages > 0)
|
|
|
|
{
|
|
|
|
i2c_stage[i2c_nr_stages - 1].dma.next = &i2c_stage[i2c_nr_stages].dma;
|
|
|
|
i2c_stage[i2c_nr_stages - 1].dma.cmd |= HW_APB_CHx_CMD__CHAIN;
|
|
|
|
if(!start)
|
|
|
|
i2c_stage[i2c_nr_stages - 1].ctrl0 |= HW_I2C_CTRL0__RETAIN_CLOCK;
|
|
|
|
}
|
2012-08-18 13:38:43 +00:00
|
|
|
i2c_stage[i2c_nr_stages].dma.buffer = i2c_buffer + start_off;
|
2011-07-03 15:22:09 +00:00
|
|
|
i2c_stage[i2c_nr_stages].dma.next = NULL;
|
|
|
|
i2c_stage[i2c_nr_stages].dma.cmd =
|
|
|
|
(transmit ? HW_APB_CHx_CMD__COMMAND__READ : HW_APB_CHx_CMD__COMMAND__WRITE) |
|
|
|
|
HW_APB_CHx_CMD__WAIT4ENDCMD |
|
|
|
|
1 << HW_APB_CHx_CMD__CMDWORDS_BP |
|
|
|
|
size << HW_APB_CHx_CMD__XFER_COUNT_BP;
|
|
|
|
/* assume that any read is final (send nak on last) */
|
|
|
|
i2c_stage[i2c_nr_stages].ctrl0 = size |
|
|
|
|
(transmit ? HW_I2C_CTRL0__TRANSMIT : HW_I2C_CTRL0__SEND_NAK_ON_LAST) |
|
|
|
|
(start ? HW_I2C_CTRL0__PRE_SEND_START : 0) |
|
|
|
|
(stop ? HW_I2C_CTRL0__POST_SEND_STOP : 0) |
|
|
|
|
HW_I2C_CTRL0__MASTER_MODE;
|
|
|
|
i2c_nr_stages++;
|
|
|
|
return I2C_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2012-08-18 13:38:43 +00:00
|
|
|
static enum imx233_i2c_error_t imx233_i2c_finalize(void)
|
|
|
|
{
|
|
|
|
discard_dcache_range(i2c_buffer, I2C_BUFFER_SIZE);
|
|
|
|
for(int i = 0; i < i2c_nr_stages; i++)
|
|
|
|
{
|
|
|
|
struct i2c_dma_command_t *c = &i2c_stage[i];
|
|
|
|
if(__XTRACT_EX(c->dma.cmd, HW_APB_CHx_CMD__COMMAND) == HW_APB_CHx_CMD__COMMAND__WRITE)
|
|
|
|
memcpy(c->dst, c->src, __XTRACT_EX(c->dma.cmd, HW_APB_CHx_CMD__XFER_COUNT));
|
|
|
|
}
|
|
|
|
return I2C_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2011-07-03 15:22:09 +00:00
|
|
|
enum imx233_i2c_error_t imx233_i2c_end(unsigned timeout)
|
|
|
|
{
|
|
|
|
if(i2c_nr_stages == 0)
|
|
|
|
return I2C_ERROR;
|
|
|
|
i2c_stage[i2c_nr_stages - 1].dma.cmd |= HW_APB_CHx_CMD__SEMAPHORE | HW_APB_CHx_CMD__IRQONCMPLT;
|
|
|
|
|
|
|
|
__REG_CLR(HW_I2C_CTRL1) = HW_I2C_CTRL1__ALL_IRQ;
|
2012-05-19 11:35:15 +00:00
|
|
|
imx233_dma_reset_channel(APB_I2C);
|
2012-05-19 11:23:17 +00:00
|
|
|
imx233_icoll_enable_interrupt(INT_SRC_I2C_DMA, true);
|
2011-07-03 15:22:09 +00:00
|
|
|
imx233_dma_enable_channel_interrupt(APB_I2C, true);
|
|
|
|
imx233_dma_start_command(APB_I2C, &i2c_stage[0].dma);
|
|
|
|
|
2012-05-19 11:35:15 +00:00
|
|
|
enum imx233_i2c_error_t ret;
|
2011-07-03 15:22:09 +00:00
|
|
|
if(semaphore_wait(&i2c_sema, timeout) == OBJ_WAIT_TIMEDOUT)
|
|
|
|
{
|
|
|
|
imx233_dma_reset_channel(APB_I2C);
|
|
|
|
ret = I2C_TIMEOUT;
|
|
|
|
}
|
|
|
|
else if(HW_I2C_CTRL1 & HW_I2C_CTRL1__MASTER_LOSS_IRQ)
|
|
|
|
ret = I2C_MASTER_LOSS;
|
|
|
|
else if(HW_I2C_CTRL1 & HW_I2C_CTRL1__NO_SLAVE_ACK_IRQ)
|
|
|
|
ret= I2C_NO_SLAVE_ACK;
|
|
|
|
else if(HW_I2C_CTRL1 & HW_I2C_CTRL1__EARLY_TERM_IRQ)
|
|
|
|
ret = I2C_SLAVE_NAK;
|
|
|
|
else
|
2012-08-18 13:38:43 +00:00
|
|
|
ret = imx233_i2c_finalize();
|
2011-07-03 15:22:09 +00:00
|
|
|
/* sleep */
|
|
|
|
__REG_SET(HW_I2C_CTRL0) = __BLOCK_CLKGATE;
|
|
|
|
mutex_unlock(&i2c_mutex);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2012-03-15 13:59:20 +00:00
|
|
|
void i2c_init(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2011-07-03 15:22:09 +00:00
|
|
|
int i2c_write(int device, const unsigned char* buf, int count)
|
|
|
|
{
|
|
|
|
uint8_t addr = device;
|
|
|
|
imx233_i2c_begin();
|
2012-08-18 13:38:43 +00:00
|
|
|
imx233_i2c_add(true, true, &addr, 1, false); /* start + dev addr */
|
2011-07-03 15:22:09 +00:00
|
|
|
imx233_i2c_add(false, true, (void *)buf, count, true); /* data + stop */
|
|
|
|
return imx233_i2c_end(TIMEOUT_BLOCK);
|
|
|
|
}
|
|
|
|
|
|
|
|
int i2c_read(int device, unsigned char* buf, int count)
|
|
|
|
{
|
|
|
|
uint8_t addr = device | 1;
|
|
|
|
imx233_i2c_begin();
|
2012-08-18 13:38:43 +00:00
|
|
|
imx233_i2c_add(true, true, &addr, 1, false); /* start + dev addr */
|
2011-07-03 15:22:09 +00:00
|
|
|
imx233_i2c_add(false, false, buf, count, true); /* data + stop */
|
|
|
|
return imx233_i2c_end(TIMEOUT_BLOCK);
|
|
|
|
}
|
|
|
|
|
|
|
|
int i2c_readmem(int device, int address, unsigned char* buf, int count)
|
|
|
|
{
|
|
|
|
uint8_t start[2] = {device, address};
|
|
|
|
uint8_t addr_rd = device | 1;
|
|
|
|
imx233_i2c_begin();
|
2012-08-18 13:38:43 +00:00
|
|
|
imx233_i2c_add(true, true, start, 2, false); /* start + dev addr + addr */
|
|
|
|
imx233_i2c_add(true, true, &addr_rd, 1, false); /* start + dev addr */
|
2011-07-03 15:22:09 +00:00
|
|
|
imx233_i2c_add(false, false, buf, count, true); /* data + stop */
|
|
|
|
return imx233_i2c_end(TIMEOUT_BLOCK);
|
|
|
|
}
|
|
|
|
|
|
|
|
int i2c_writemem(int device, int address, const unsigned char* buf, int count)
|
|
|
|
{
|
|
|
|
uint8_t start[2] = {device, address};
|
|
|
|
imx233_i2c_begin();
|
2012-08-18 13:38:43 +00:00
|
|
|
imx233_i2c_add(true, true, start, 2, false); /* start + dev addr + addr */
|
2011-07-03 15:22:09 +00:00
|
|
|
imx233_i2c_add(false, true, (void *)buf, count, true); /* data + stop */
|
|
|
|
return imx233_i2c_end(TIMEOUT_BLOCK);
|
|
|
|
}
|