diff options
| author | Bertrik Sikken <bertrik@sikken.nl> | 2008-12-08 19:32:05 +0000 |
|---|---|---|
| committer | Bertrik Sikken <bertrik@sikken.nl> | 2008-12-08 19:32:05 +0000 |
| commit | ed96b2a4ddf39b91621e125a95380d3a23a1cc73 (patch) | |
| tree | 7d657aa129f826e05c3f51a4b21eac119fb2094f | |
| parent | bbb1f8904359e3e399bb2fd99c3ffc9e42c78216 (diff) | |
| download | rockbox-ed96b2a4ddf39b91621e125a95380d3a23a1cc73.zip rockbox-ed96b2a4ddf39b91621e125a95380d3a23a1cc73.tar.gz rockbox-ed96b2a4ddf39b91621e125a95380d3a23a1cc73.tar.bz2 rockbox-ed96b2a4ddf39b91621e125a95380d3a23a1cc73.tar.xz | |
Sansa Clip: implement the fmradio_i2c interface using generic_i2c
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19366 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/export/fmradio_i2c.h | 1 | ||||
| -rw-r--r-- | firmware/target/arm/as3525/sansa-clip/fmradio-i2c-clip.c | 137 |
2 files changed, 138 insertions, 0 deletions
diff --git a/firmware/export/fmradio_i2c.h b/firmware/export/fmradio_i2c.h index e97ad0d..5d12527 100644 --- a/firmware/export/fmradio_i2c.h +++ b/firmware/export/fmradio_i2c.h @@ -22,6 +22,7 @@ #ifndef FMRADIO_I2C_H #define FMRADIO_I2C_H +void fmradio_i2c_init(void); int fmradio_i2c_write(unsigned char address, const unsigned char* buf, int count); int fmradio_i2c_read(unsigned char address, unsigned char* buf, int count); diff --git a/firmware/target/arm/as3525/sansa-clip/fmradio-i2c-clip.c b/firmware/target/arm/as3525/sansa-clip/fmradio-i2c-clip.c new file mode 100644 index 0000000..e3444b8 --- /dev/null +++ b/firmware/target/arm/as3525/sansa-clip/fmradio-i2c-clip.c @@ -0,0 +1,137 @@ +/*************************************************************************** + * __________ __ ___. + * Open \______ \ ____ ____ | | _\_ |__ _______ ___ + * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / + * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < + * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ + * \/ \/ \/ \/ \/ + * $Id$ + * + * Copyright (C) 2006 by Bertrik Sikken + * + * 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. + + It is implemented using the generic i2c driver, which does "bit-banged" + I2C with a couple of GPIO pins. + */ + +#include "as3525.h" +#include "generic_i2c.h" +#include "fmradio_i2c.h" + +#define I2C_SCL_PIN 4 +#define I2C_SDA_PIN 5 + +static void fm_scl_hi(void) +{ + GPIOB_PIN(I2C_SCL_PIN) = 1 << I2C_SCL_PIN; +} + +static void fm_scl_lo(void) +{ + GPIOB_PIN(I2C_SCL_PIN) = 0; +} + +static void fm_sda_hi(void) +{ + GPIOB_PIN(I2C_SDA_PIN) = 1 << I2C_SDA_PIN; +} + +static void fm_sda_lo(void) +{ + GPIOB_PIN(I2C_SDA_PIN) = 0; +} + +static void fm_sda_input(void) +{ + GPIOB_DIR &= ~(1 << I2C_SDA_PIN); +} + +static void fm_sda_output(void) +{ + GPIOB_DIR |= 1 << I2C_SDA_PIN; +} + +static void fm_scl_input(void) +{ + GPIOB_DIR &= ~(1 << I2C_SCL_PIN); +} + +static void fm_scl_output(void) +{ + GPIOB_DIR |= 1 << I2C_SCL_PIN; +} + +static int fm_sda(void) +{ + return GPIOB_PIN(I2C_SDA_PIN); +} + +static int fm_scl(void) +{ + return GPIOB_PIN(I2C_SCL_PIN); +} + +/* simple and crude delay, used for all delays in the generic i2c driver */ +static void fm_delay(void) +{ + volatile int i; + + /* this loop is uncalibrated and could use more sophistication */ + for (i = 0; i < 100; i++) { + } +} + +/* interface towards the generic i2c driver */ +static struct i2c_interface fm_i2c_interface = { + .address = 0x10 << 1, + + .scl_hi = fm_scl_hi, + .scl_lo = fm_scl_lo, + .sda_hi = fm_sda_hi, + .sda_lo = fm_sda_lo, + .sda_input = fm_sda_input, + .sda_output = fm_sda_output, + .scl_input = fm_scl_input, + .scl_output = fm_scl_output, + .scl = fm_scl, + .sda = fm_sda, + + .delay_hd_sta = fm_delay, + .delay_hd_dat = fm_delay, + .delay_su_dat = fm_delay, + .delay_su_sto = fm_delay, + .delay_su_sta = fm_delay, + .delay_thigh = fm_delay +}; + +/* initialise i2c for fmradio */ +void fmradio_i2c_init(void) +{ + i2c_add_node(&fm_i2c_interface); +} + +int fmradio_i2c_write(unsigned char address, const unsigned char* buf, int count) +{ + return i2c_write_data(address, -1, buf, count); +} + +int fmradio_i2c_read(unsigned char address, unsigned char* buf, int count) +{ + return i2c_read_data(address, -1, buf, count); +} + + + |