summaryrefslogtreecommitdiff
path: root/firmware/SOURCES
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2011-12-24 11:56:46 +0000
committerThomas Martitz <kugel@rockbox.org>2011-12-24 11:56:46 +0000
commit249bba03f1051f4984538f66b9e7d36674c61e5c (patch)
treeb9a0d78e05269ed2043521ab0dfdad83aeaf2aff /firmware/SOURCES
parent567e0ad93ef3048f2266932b10dcdb309b1a77c9 (diff)
downloadrockbox-249bba03f1051f4984538f66b9e7d36674c61e5c.tar.gz
rockbox-249bba03f1051f4984538f66b9e7d36674c61e5c.zip
Initial commit of the Samsung YP-R0 port.
This port is a hybrid native/RaaA port. It runs on a embedded linux system, but is the only application. It therefore can implement lots of stuff that native targets also implement, while leveraging the underlying linux kernel. The port is quite advanced. User interface, audio playback, plugins work mostly fine. Missing is e.g. power mangement and USB (see SamsungYPR0 wiki page). Included in utils/ypr0tools are scripts and programs required to generate a patched firmware. The patched firmware has the rootfs modified to load Rockbox. It includes a early/safe USB mode. This port needs a new toolchain, one that includes glibc headers and libraries. rockboxdev.sh can generate it, but e.g. codesourcey and distro packages may also work. Most of the initial effort is done by Lorenzo Miori and others (on ABI), including reverse engineering and patching of the original firmware, initial drivers, and more. Big thanks to you. Flyspray: FS#12348 Author: Lorenzo Miori, myself Merry christmas to ypr0 owners! :) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31415 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/SOURCES')
-rw-r--r--firmware/SOURCES29
1 files changed, 28 insertions, 1 deletions
diff --git a/firmware/SOURCES b/firmware/SOURCES
index 7053358bee..f59475e27a 100644
--- a/firmware/SOURCES
+++ b/firmware/SOURCES
@@ -14,8 +14,10 @@ target/hosted/cpuinfo-linux.c
14#endif 14#endif
15 15
16target/hosted/powermgmt.c 16target/hosted/powermgmt.c
17#ifndef SAMSUNG_YPR0 /* uses as3514 rtc */
17target/hosted/rtc.c 18target/hosted/rtc.c
18#endif 19#endif
20#endif
19system.c 21system.c
20usb.c 22usb.c
21#ifdef ROCKBOX_HAS_LOGF 23#ifdef ROCKBOX_HAS_LOGF
@@ -62,6 +64,26 @@ target/hosted/sdl/app/button-application.c
62#endif 64#endif
63#endif 65#endif
64 66
67#ifdef SAMSUNG_YPR0
68#if (CONFIG_RTC == RTC_AS3514)
69drivers/rtc/rtc_as3514.c
70#else
71target/hosted/rtc.c
72#endif
73target/hosted/ypr0/button-ypr0.c
74target/hosted/ypr0/kernel-ypr0.c
75target/hosted/ypr0/lcd-ypr0.c
76target/hosted/ypr0/system-ypr0.c
77target/hosted/ypr0/fs-ypr0.c
78target/hosted/ypr0/lc-ypr0.c
79thread.c
80#ifdef HAVE_BACKLIGHT
81target/hosted/ypr0/backlight-ypr0.c
82#endif
83target/hosted/ypr0/ascodec-ypr0.c
84target/hosted/ypr0/powermgmt-ypr0.c
85#endif
86
65/* Maemo specific files */ 87/* Maemo specific files */
66#if (CONFIG_PLATFORM & PLATFORM_MAEMO) 88#if (CONFIG_PLATFORM & PLATFORM_MAEMO)
67target/hosted/maemo/maemo-thread.c 89target/hosted/maemo/maemo-thread.c
@@ -368,6 +390,10 @@ drivers/audio/aic3x.c
368#elif defined (HAVE_DUMMY_CODEC) 390#elif defined (HAVE_DUMMY_CODEC)
369drivers/audio/dummy_codec.c 391drivers/audio/dummy_codec.c
370#endif /* defined(HAVE_*) */ 392#endif /* defined(HAVE_*) */
393#else /* PLATFORM_HOSTED */
394#if defined(SAMSUNG_YPR0) && defined(HAVE_AS3514)
395drivers/audio/as3514.c
396target/hosted/pcm-alsa.c
371#elif defined(HAVE_SDL_AUDIO) 397#elif defined(HAVE_SDL_AUDIO)
372drivers/audio/sdl.c 398drivers/audio/sdl.c
373#if CONFIG_CODEC == SWCODEC 399#if CONFIG_CODEC == SWCODEC
@@ -377,6 +403,7 @@ target/hosted/maemo/pcm-gstreamer.c
377target/hosted/sdl/pcm-sdl.c 403target/hosted/sdl/pcm-sdl.c
378#endif /* (CONFIG_PLATFORM & PLATFORM_MAEMO) */ 404#endif /* (CONFIG_PLATFORM & PLATFORM_MAEMO) */
379#endif /* CONFIG_CODEC == SWCODEC */ 405#endif /* CONFIG_CODEC == SWCODEC */
406#endif
380#endif /* (CONFIG_PLATFORM & PLATFORM_NATIVE) && !defined(BOOTLOADER) */ 407#endif /* (CONFIG_PLATFORM & PLATFORM_NATIVE) && !defined(BOOTLOADER) */
381 408
382/* CPU Specific - By class then particular chip if applicable */ 409/* CPU Specific - By class then particular chip if applicable */
@@ -722,7 +749,7 @@ target/arm/ascodec-pp.c
722# endif 749# endif
723# if !defined(BOOTLOADER) || defined(CPU_PP) 750# if !defined(BOOTLOADER) || defined(CPU_PP)
724target/arm/adc-as3514.c 751target/arm/adc-as3514.c
725# ifndef SANSA_M200V4 752# if !defined(SANSA_M200V4) && !defined(SAMSUNG_YPR0)
726target/arm/powermgmt-ascodec.c 753target/arm/powermgmt-ascodec.c
727# endif 754# endif
728# endif 755# endif