From d4942cc74c82c465ea395637c77ed06565b8b497 Mon Sep 17 00:00:00 2001 From: Solomon Peachy Date: Fri, 29 Jun 2018 16:09:28 -0400 Subject: Add Xuelin iHIFI 770/770C/800 support Taken from the xvortex fork (Roman Stolyarov) Ported, rebased, and cleaned up by myself. Change-Id: I7b2bca2d29502f2e4544e42f3d122786dd4b7978 --- firmware/SOURCES | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'firmware/SOURCES') diff --git a/firmware/SOURCES b/firmware/SOURCES index 33d59fa429..16ae4cc350 100644 --- a/firmware/SOURCES +++ b/firmware/SOURCES @@ -442,6 +442,8 @@ drivers/audio/audiohw-swcodec.c #if (CONFIG_PLATFORM & PLATFORM_NATIVE) && !defined(BOOTLOADER) #if defined(HAVE_UDA1380) drivers/audio/uda1380.c +#elif defined(HAVE_WM8740) +drivers/audio/wm8740.c #elif defined(HAVE_WM8751) \ || defined(HAVE_WM8750) drivers/audio/wm8751.c @@ -481,6 +483,8 @@ drivers/audio/df1704.c drivers/audio/pcm1792.c #elif defined (HAVE_CS4398) drivers/audio/cs4398.c +#elif defined (HAVE_ES9018) +drivers/audio/es9018.c #endif /* defined(HAVE_*) */ #else /* PLATFORM_HOSTED */ #if defined(SAMSUNG_YPR0) && defined(HAVE_AS3514) @@ -791,6 +795,12 @@ target/arm/s3c2440/lcd-s3c2440.c target/arm/rk27xx/ma/lcd-ma.c #elif CONFIG_LCD == LCD_IHIFI target/arm/rk27xx/ihifi/lcd-ihifi.c +#elif CONFIG_LCD == LCD_IHIFI770 +target/arm/rk27xx/ihifi2/lcd-ihifi770.c +#elif CONFIG_LCD == LCD_IHIFI770C +target/arm/rk27xx/ihifi2/lcd-ihifi770c.c +#elif CONFIG_LCD == LCD_IHIFI800 +target/arm/rk27xx/ihifi2/lcd-ihifi800.c #endif /* USB Stack */ @@ -1904,6 +1914,21 @@ target/arm/rk27xx/ihifi/powermgmt-ihifi960.c #endif #endif +#if defined(IHIFI770) || defined(IHIFI770C) || defined(IHIFI800) +target/arm/rk27xx/ihifi2/button-ihifi.c +target/arm/rk27xx/ihifi2/power-ihifi.c +#if defined(IHIFI770) +target/arm/rk27xx/ihifi2/powermgmt-ihifi770.c +target/arm/rk27xx/ihifi2/audio-ihifi770.c +#elif defined(IHIFI770C) +target/arm/rk27xx/ihifi2/powermgmt-ihifi770c.c +target/arm/rk27xx/ihifi2/audio-ihifi770.c +#elif defined(IHIFI800) +target/arm/rk27xx/ihifi2/powermgmt-ihifi800.c +target/arm/rk27xx/ihifi2/audio-ihifi800.c +#endif +#endif + #if (CONFIG_PLATFORM & PLATFORM_ANDROID) target/hosted/kernel-unix.c target/hosted/filesystem-unix.c -- cgit v1.2.3