summaryrefslogtreecommitdiff
path: root/firmware/target/arm/imx233
diff options
context:
space:
mode:
authorAmaury Pouly <amaury.pouly@gmail.com>2012-05-19 18:03:27 +0200
committerAmaury Pouly <amaury.pouly@gmail.com>2012-05-19 18:04:25 +0200
commite4016834822e3211ff0693691c456f3d620cad0a (patch)
treef6e5bd8a60828f3a91fdd69a2964b6b290353b8a /firmware/target/arm/imx233
parent4f5efac9e5ae326f666d30a8b93cab5a7c18eb4e (diff)
downloadrockbox-e4016834822e3211ff0693691c456f3d620cad0a.tar.gz
rockbox-e4016834822e3211ff0693691c456f3d620cad0a.zip
zenxfi3&stfm1000: implement fmradio i2c and debug screen
Change-Id: I83dbdee13185d9adcf590dc213da5a8c97adb2ba
Diffstat (limited to 'firmware/target/arm/imx233')
-rw-r--r--firmware/target/arm/imx233/creative-zenxfi3/fmradio-i2c-zenxfi3.c40
-rw-r--r--firmware/target/arm/imx233/system-imx233.c3
2 files changed, 42 insertions, 1 deletions
diff --git a/firmware/target/arm/imx233/creative-zenxfi3/fmradio-i2c-zenxfi3.c b/firmware/target/arm/imx233/creative-zenxfi3/fmradio-i2c-zenxfi3.c
new file mode 100644
index 0000000000..58ac8e6a08
--- /dev/null
+++ b/firmware/target/arm/imx233/creative-zenxfi3/fmradio-i2c-zenxfi3.c
@@ -0,0 +1,40 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2012 by Amaury Pouly
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
16 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
19 *
20 ****************************************************************************/
21
22#include "config.h"
23#include "system.h"
24#include "fmradio_i2c.h"
25#include "pinctrl-imx233.h"
26#include "i2c.h"
27
28void fmradio_i2c_init(void)
29{
30}
31
32int fmradio_i2c_write(unsigned char address, const unsigned char* buf, int count)
33{
34 return i2c_write(address, buf, count);
35}
36
37int fmradio_i2c_read(unsigned char address, unsigned char* buf, int count)
38{
39 return i2c_read(address, buf, count);
40}
diff --git a/firmware/target/arm/imx233/system-imx233.c b/firmware/target/arm/imx233/system-imx233.c
index 5ef52c7957..a24927f9a5 100644
--- a/firmware/target/arm/imx233/system-imx233.c
+++ b/firmware/target/arm/imx233/system-imx233.c
@@ -110,7 +110,8 @@ void system_init(void)
110 imx233_pwm_init(); 110 imx233_pwm_init();
111 imx233_lradc_init(); 111 imx233_lradc_init();
112 imx233_i2c_init(); 112 imx233_i2c_init();
113#if defined(SANSA_FUZEPLUS) && !defined(BOOTLOADER) 113#if !defined(BOOTLOADER) && \
114 (defined(SANSA_FUZEPLUS) || defined(CREATIVE_ZENXFI3))
114 fmradio_i2c_init(); 115 fmradio_i2c_init();
115#endif 116#endif
116} 117}