2008-12-08 19:32:05 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
2008-12-16 22:58:47 +00:00
|
|
|
* Copyright (C) 2008 by Bertrik Sikken
|
2008-12-08 19:32:05 +00:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/*
|
|
|
|
This is the fmradio_i2c interface, used by the radio driver
|
|
|
|
to communicate with the radio tuner chip.
|
2009-03-03 18:00:17 +00:00
|
|
|
|
2008-12-08 19:32:05 +00:00
|
|
|
It is implemented using the generic i2c driver, which does "bit-banged"
|
|
|
|
I2C with a couple of GPIO pins.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "as3525.h"
|
2010-06-21 21:41:07 +00:00
|
|
|
#include "system.h"
|
2008-12-08 19:32:05 +00:00
|
|
|
#include "generic_i2c.h"
|
|
|
|
#include "fmradio_i2c.h"
|
|
|
|
|
2009-04-26 21:28:34 +00:00
|
|
|
#if defined(SANSA_CLIP) || defined(SANSA_C200V2)
|
2010-05-05 02:27:18 +00:00
|
|
|
#define I2C_SCL_GPIO(x) GPIOB_PIN(x)
|
|
|
|
#define I2C_SDA_GPIO(x) GPIOB_PIN(x)
|
|
|
|
#define I2C_SCL_GPIO_DIR GPIOB_DIR
|
|
|
|
#define I2C_SDA_GPIO_DIR GPIOB_DIR
|
2008-12-08 19:32:05 +00:00
|
|
|
#define I2C_SCL_PIN 4
|
|
|
|
#define I2C_SDA_PIN 5
|
|
|
|
|
2010-03-15 00:36:13 +00:00
|
|
|
#elif defined(SANSA_CLIPV2) || defined(SANSA_CLIPPLUS)
|
2010-05-05 02:27:18 +00:00
|
|
|
#define I2C_SCL_GPIO(x) GPIOB_PIN(x)
|
|
|
|
#define I2C_SDA_GPIO(x) GPIOB_PIN(x)
|
|
|
|
#define I2C_SCL_GPIO_DIR GPIOB_DIR
|
|
|
|
#define I2C_SDA_GPIO_DIR GPIOB_DIR
|
2009-12-31 19:15:20 +00:00
|
|
|
#define I2C_SCL_PIN 6
|
|
|
|
#define I2C_SDA_PIN 7
|
|
|
|
|
2008-12-09 17:21:16 +00:00
|
|
|
#elif defined(SANSA_M200V4)
|
2010-05-05 02:27:18 +00:00
|
|
|
#define I2C_SCL_GPIO(x) GPIOD_PIN(x)
|
|
|
|
#define I2C_SDA_GPIO(x) GPIOD_PIN(x)
|
|
|
|
#define I2C_SCL_GPIO_DIR GPIOD_DIR
|
|
|
|
#define I2C_SDA_GPIO_DIR GPIOD_DIR
|
2008-12-09 17:21:16 +00:00
|
|
|
#define I2C_SCL_PIN 7
|
|
|
|
#define I2C_SDA_PIN 6
|
|
|
|
|
2008-12-16 22:58:47 +00:00
|
|
|
#elif defined(SANSA_FUZE) || defined(SANSA_E200V2)
|
2010-05-05 02:27:18 +00:00
|
|
|
#define I2C_SCL_GPIO(x) GPIOA_PIN(x)
|
|
|
|
#define I2C_SDA_GPIO(x) GPIOA_PIN(x)
|
|
|
|
#define I2C_SCL_GPIO_DIR GPIOA_DIR
|
|
|
|
#define I2C_SDA_GPIO_DIR GPIOA_DIR
|
2008-12-16 22:58:47 +00:00
|
|
|
#define I2C_SCL_PIN 6
|
|
|
|
#define I2C_SDA_PIN 7
|
|
|
|
|
2010-05-05 04:06:44 +00:00
|
|
|
#elif defined(SANSA_FUZEV2)
|
|
|
|
#define I2C_SCL_GPIO(x) GPIOB_PIN(x)
|
|
|
|
#define I2C_SDA_GPIO(x) GPIOA_PIN(x)
|
|
|
|
#define I2C_SCL_GPIO_DIR GPIOB_DIR
|
|
|
|
#define I2C_SDA_GPIO_DIR GPIOA_DIR
|
|
|
|
#define I2C_SCL_PIN 1
|
|
|
|
#define I2C_SDA_PIN 0
|
|
|
|
|
2009-11-03 21:20:02 +00:00
|
|
|
#else
|
2008-12-09 17:21:16 +00:00
|
|
|
#error no FM I2C GPIOPIN defines
|
|
|
|
#endif
|
|
|
|
|
2009-03-03 18:00:17 +00:00
|
|
|
static int fm_i2c_bus;
|
|
|
|
|
2010-06-21 21:41:07 +00:00
|
|
|
static void fm_scl_dir(bool out)
|
2008-12-08 19:32:05 +00:00
|
|
|
{
|
2010-06-21 21:41:07 +00:00
|
|
|
if (out) {
|
|
|
|
I2C_SCL_GPIO_DIR |= 1 << I2C_SCL_PIN;
|
|
|
|
} else {
|
|
|
|
I2C_SCL_GPIO_DIR &= ~(1 << I2C_SCL_PIN);
|
|
|
|
}
|
2008-12-08 19:32:05 +00:00
|
|
|
}
|
|
|
|
|
2010-06-21 21:41:07 +00:00
|
|
|
static void fm_sda_dir(bool out)
|
2008-12-08 19:32:05 +00:00
|
|
|
{
|
2010-06-21 21:41:07 +00:00
|
|
|
if (out) {
|
|
|
|
I2C_SDA_GPIO_DIR |= 1 << I2C_SDA_PIN;
|
|
|
|
} else {
|
|
|
|
I2C_SDA_GPIO_DIR &= ~(1 << I2C_SDA_PIN);
|
|
|
|
}
|
2008-12-08 19:32:05 +00:00
|
|
|
}
|
|
|
|
|
2010-06-21 21:41:07 +00:00
|
|
|
static void fm_scl_out(bool level)
|
2008-12-08 19:32:05 +00:00
|
|
|
{
|
2010-06-21 21:41:07 +00:00
|
|
|
if (level) {
|
|
|
|
I2C_SCL_GPIO(I2C_SCL_PIN) = 1 << I2C_SCL_PIN;
|
|
|
|
} else {
|
|
|
|
I2C_SCL_GPIO(I2C_SCL_PIN) = 0;
|
|
|
|
}
|
2008-12-08 19:32:05 +00:00
|
|
|
}
|
|
|
|
|
2010-06-21 21:41:07 +00:00
|
|
|
static void fm_sda_out(bool level)
|
2008-12-08 19:32:05 +00:00
|
|
|
{
|
2010-06-21 21:41:07 +00:00
|
|
|
if (level) {
|
|
|
|
I2C_SDA_GPIO(I2C_SDA_PIN) = 1 << I2C_SDA_PIN;
|
|
|
|
} else {
|
|
|
|
I2C_SDA_GPIO(I2C_SDA_PIN) = 0;
|
|
|
|
}
|
2008-12-08 19:32:05 +00:00
|
|
|
}
|
|
|
|
|
2010-06-21 21:41:07 +00:00
|
|
|
static bool fm_scl_in(void)
|
2008-12-08 19:32:05 +00:00
|
|
|
{
|
2010-06-21 21:41:07 +00:00
|
|
|
return I2C_SCL_GPIO(I2C_SCL_PIN);
|
2008-12-08 19:32:05 +00:00
|
|
|
}
|
|
|
|
|
2010-06-21 21:41:07 +00:00
|
|
|
static bool fm_sda_in(void)
|
2008-12-08 19:32:05 +00:00
|
|
|
{
|
2010-05-05 02:27:18 +00:00
|
|
|
return I2C_SDA_GPIO(I2C_SDA_PIN);
|
2008-12-08 19:32:05 +00:00
|
|
|
}
|
|
|
|
|
2010-06-21 21:41:07 +00:00
|
|
|
static void fm_delay(int delay)
|
2008-12-08 19:32:05 +00:00
|
|
|
{
|
2010-06-21 21:41:07 +00:00
|
|
|
if (delay != 0) {
|
|
|
|
udelay(delay);
|
2008-12-08 19:32:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* interface towards the generic i2c driver */
|
2009-03-03 18:00:17 +00:00
|
|
|
static const struct i2c_interface fm_i2c_interface = {
|
2010-06-21 21:41:07 +00:00
|
|
|
.scl_out = fm_scl_out,
|
|
|
|
.scl_dir = fm_scl_dir,
|
|
|
|
.sda_out = fm_sda_out,
|
|
|
|
.sda_dir = fm_sda_dir,
|
|
|
|
.sda_in = fm_sda_in,
|
|
|
|
.scl_in = fm_scl_in,
|
|
|
|
.delay = fm_delay,
|
|
|
|
|
|
|
|
.delay_hd_sta = 1,
|
|
|
|
.delay_hd_dat = 0,
|
|
|
|
.delay_su_dat = 1,
|
|
|
|
.delay_su_sto = 1,
|
|
|
|
.delay_su_sta = 1,
|
|
|
|
.delay_thigh = 2
|
2008-12-08 19:32:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* initialise i2c for fmradio */
|
|
|
|
void fmradio_i2c_init(void)
|
|
|
|
{
|
2009-03-03 18:00:17 +00:00
|
|
|
fm_i2c_bus = i2c_add_node(&fm_i2c_interface);
|
2008-12-08 19:32:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int fmradio_i2c_write(unsigned char address, const unsigned char* buf, int count)
|
|
|
|
{
|
2010-05-05 04:06:44 +00:00
|
|
|
#ifdef SANSA_FUZEV2
|
|
|
|
CCU_IO &= ~(1<<12);
|
|
|
|
#endif
|
|
|
|
int ret = i2c_write_data(fm_i2c_bus, address, -1, buf, count);
|
|
|
|
#ifdef SANSA_FUZEV2
|
|
|
|
CCU_IO |= 1<<12;
|
|
|
|
#endif
|
|
|
|
return ret;
|
2008-12-08 19:32:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int fmradio_i2c_read(unsigned char address, unsigned char* buf, int count)
|
|
|
|
{
|
2010-05-05 04:06:44 +00:00
|
|
|
#ifdef SANSA_FUZEV2
|
|
|
|
CCU_IO &= ~(1<<12);
|
|
|
|
#endif
|
|
|
|
int ret = i2c_read_data(fm_i2c_bus, address, -1, buf, count);
|
|
|
|
#ifdef SANSA_FUZEV2
|
|
|
|
CCU_IO |= 1<<12;
|
|
|
|
#endif
|
|
|
|
return ret;
|
2008-12-08 19:32:05 +00:00
|
|
|
}
|