diff options
| author | Lorenzo Miori <memoryS60@gmail.com> | 2013-09-10 22:48:34 +0200 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2014-02-05 09:56:21 +0100 |
| commit | e876f4df6d240bd2e319b1e63be95a625f049a97 (patch) | |
| tree | ce2fe1b24650e3be7a6cd2d346d29090a5422a8c /firmware/SOURCES | |
| parent | b828b9d99bff2acc0e1f543f3176fd4b632cba68 (diff) | |
| download | rockbox-e876f4df6d240bd2e319b1e63be95a625f049a97.zip rockbox-e876f4df6d240bd2e319b1e63be95a625f049a97.tar.gz rockbox-e876f4df6d240bd2e319b1e63be95a625f049a97.tar.bz2 rockbox-e876f4df6d240bd2e319b1e63be95a625f049a97.tar.xz | |
Samsung YP-R1 target port
This is the basic port to the new target Samsung
YP-R1, which runs on a similar platform as YP-R0.
Port is usable, although there are still
some optimizations that have to be done.
Change-Id: If83a8e386369e413581753780c159026d9e41f04
Diffstat (limited to 'firmware/SOURCES')
| -rw-r--r-- | firmware/SOURCES | 28 |
1 files changed, 27 insertions, 1 deletions
diff --git a/firmware/SOURCES b/firmware/SOURCES index 15f42a4..f062a01 100644 --- a/firmware/SOURCES +++ b/firmware/SOURCES @@ -101,6 +101,29 @@ target/hosted/samsungypr/radio-ypr.c #endif #endif +#ifdef SAMSUNG_YPR1 +drivers/lcd-memframe.c +target/hosted/kernel-unix.c +target/hosted/filesystem-unix.c +target/hosted/lc-unix.c +target/hosted/samsungypr/ypr1/mcs5000-ypr1.c +target/hosted/samsungypr/ypr1/button-ypr1.c +target/hosted/samsungypr/lcd-ypr.c +target/hosted/samsungypr/ypr1/system-ypr1.c +thread.c +#ifdef HAVE_BACKLIGHT +target/hosted/samsungypr/ypr1/backlight-ypr1.c +#endif +target/hosted/samsungypr/ypr1/powermgmt-ypr1.c +target/hosted/samsungypr/gpio_ypr.c +target/hosted/samsungypr/ypr1/audio-ypr1.c +target/hosted/samsungypr/ypr1/pmu-ypr1.c +target/hosted/samsungypr/ypr1/wmcodec-ypr1.c +#if CONFIG_TUNER +target/hosted/samsungypr/radio-ypr.c +#endif +#endif + /* Maemo specific files */ #if (CONFIG_PLATFORM & PLATFORM_MAEMO) target/hosted/maemo/maemo-thread.c @@ -318,7 +341,7 @@ drivers/rtc/rtc_imx233.c /* Tuner */ #if CONFIG_TUNER tuner.c -#if ((CONFIG_PLATFORM & PLATFORM_NATIVE) || defined(SAMSUNG_YPR0)) +#if ((CONFIG_PLATFORM & PLATFORM_NATIVE) || defined(SAMSUNG_YPR0) || defined(SAMSUNG_YPR1)) #if (CONFIG_TUNER & LV24020LP) drivers/tuner/lv24020lp.c #endif /* (CONFIG_TUNER & LV24020LP) */ @@ -417,6 +440,9 @@ drivers/audio/pcm1792.c #if defined(SAMSUNG_YPR0) && defined(HAVE_AS3514) drivers/audio/as3514.c target/hosted/pcm-alsa.c +#elif defined(SAMSUNG_YPR1) && defined(HAVE_WM8978) +drivers/audio/wm8978.c +target/hosted/pcm-alsa.c #elif defined(HAVE_SDL_AUDIO) drivers/audio/sdl.c #if CONFIG_CODEC == SWCODEC |