summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLorenzo Miori <memorys60@gmail.com>2013-02-23 16:59:49 +0100
committerThomas Martitz <kugel@rockbox.org>2013-03-06 00:21:22 +0100
commit60592165ca998875e4bc46c4396c5a123a7e9dbb (patch)
tree60b53e6b733fd49bef249761789e97a4bedbef03
parent3e4be68f8b596cf3467f993dc9a210a3d901ca1c (diff)
downloadrockbox-60592165ca998875e4bc46c4396c5a123a7e9dbb.tar.gz
rockbox-60592165ca998875e4bc46c4396c5a123a7e9dbb.zip
Samsung YP-R0 hosted target code refactoring
As per title this patch aims at splitting common target code and specific target code in a better way to support future ports within the same environment (e.g. Samsung YP-R1 where the Linux and the SoC are the same, with differences in hardware devices handling) Change-Id: I67b4918c46403b184d3d8f42ab5aae7d01037fd0 Reviewed-on: http://gerrit.rockbox.org/409 Reviewed-by: Thomas Martitz <kugel@rockbox.org> Tested-by: Thomas Martitz <kugel@rockbox.org>
-rw-r--r--firmware/SOURCES18
-rw-r--r--firmware/export/config/samsungypr0.h13
-rw-r--r--firmware/target/hosted/samsungypr/adc-target.h (renamed from firmware/target/hosted/ypr0/adc-target.h)0
-rw-r--r--firmware/target/hosted/samsungypr/backlight-target.h (renamed from firmware/target/hosted/ypr0/backlight-target.h)2
-rw-r--r--firmware/target/hosted/samsungypr/dir-target.h (renamed from firmware/target/hosted/ypr0/dir-target.h)0
-rw-r--r--firmware/target/hosted/samsungypr/gpio_ypr.c (renamed from firmware/target/hosted/ypr0/gpio_ypr0.c)2
-rw-r--r--firmware/target/hosted/samsungypr/lcd-target.h (renamed from firmware/target/hosted/ypr0/lcd-target.h)0
-rw-r--r--firmware/target/hosted/samsungypr/lcd-ypr.c (renamed from firmware/target/hosted/ypr0/lcd-ypr0.c)0
-rw-r--r--firmware/target/hosted/samsungypr/radio-ypr.c (renamed from firmware/target/hosted/ypr0/radio-ypr0.c)5
-rw-r--r--firmware/target/hosted/samsungypr/radio-ypr.h (renamed from firmware/target/hosted/ypr0/radio-ypr0.h)0
-rw-r--r--firmware/target/hosted/samsungypr/si4709.h (renamed from firmware/target/hosted/ypr0/si4709.h)0
-rw-r--r--firmware/target/hosted/samsungypr/system-target.h (renamed from firmware/target/hosted/ypr0/system-target.h)0
-rw-r--r--firmware/target/hosted/samsungypr/ypr0/ascodec-ypr0.c (renamed from firmware/target/hosted/ypr0/ascodec-ypr0.c)26
-rw-r--r--firmware/target/hosted/samsungypr/ypr0/audio-ypr0.c (renamed from firmware/target/hosted/ypr0/audio-ypr0.c)0
-rw-r--r--firmware/target/hosted/samsungypr/ypr0/backlight-ypr0.c (renamed from firmware/target/hosted/ypr0/backlight-ypr0.c)0
-rw-r--r--firmware/target/hosted/samsungypr/ypr0/button-target.h (renamed from firmware/target/hosted/ypr0/button-target.h)0
-rw-r--r--firmware/target/hosted/samsungypr/ypr0/button-ypr0.c (renamed from firmware/target/hosted/ypr0/button-ypr0.c)2
-rw-r--r--firmware/target/hosted/samsungypr/ypr0/gpio-target.h (renamed from firmware/target/hosted/ypr0/gpio_ypr0.h)0
-rw-r--r--firmware/target/hosted/samsungypr/ypr0/powermgmt-ypr0.c (renamed from firmware/target/hosted/ypr0/powermgmt-ypr0.c)3
-rw-r--r--firmware/target/hosted/samsungypr/ypr0/r0GPIOIoctl.h (renamed from firmware/target/hosted/ypr0/r0GPIOIoctl.h)0
-rw-r--r--firmware/target/hosted/samsungypr/ypr0/sc900776.h (renamed from firmware/target/hosted/ypr0/sc900776.h)0
-rw-r--r--firmware/target/hosted/samsungypr/ypr0/system-ypr0.c (renamed from firmware/target/hosted/ypr0/system-ypr0.c)6
-rw-r--r--firmware/target/hosted/samsungypr/ypr0/ypr0.make (renamed from firmware/target/hosted/ypr0/ypr0.make)0
-rwxr-xr-xtools/configure4
-rw-r--r--tools/root.make2
25 files changed, 45 insertions, 38 deletions
diff --git a/firmware/SOURCES b/firmware/SOURCES
index 887445b53c..8ba45af533 100644
--- a/firmware/SOURCES
+++ b/firmware/SOURCES
@@ -82,19 +82,19 @@ target/hosted/rtc.c
82target/hosted/kernel-unix.c 82target/hosted/kernel-unix.c
83target/hosted/filesystem-unix.c 83target/hosted/filesystem-unix.c
84target/hosted/lc-unix.c 84target/hosted/lc-unix.c
85target/hosted/ypr0/button-ypr0.c 85target/hosted/samsungypr/ypr0/button-ypr0.c
86target/hosted/ypr0/lcd-ypr0.c 86target/hosted/samsungypr/lcd-ypr.c
87target/hosted/ypr0/system-ypr0.c 87target/hosted/samsungypr/ypr0/system-ypr0.c
88thread.c 88thread.c
89#ifdef HAVE_BACKLIGHT 89#ifdef HAVE_BACKLIGHT
90target/hosted/ypr0/backlight-ypr0.c 90target/hosted/samsungypr/ypr0/backlight-ypr0.c
91#endif 91#endif
92target/hosted/ypr0/ascodec-ypr0.c 92target/hosted/samsungypr/ypr0/ascodec-ypr0.c
93target/hosted/ypr0/powermgmt-ypr0.c 93target/hosted/samsungypr/ypr0/powermgmt-ypr0.c
94target/hosted/ypr0/gpio_ypr0.c 94target/hosted/samsungypr/gpio_ypr.c
95target/hosted/ypr0/audio-ypr0.c 95target/hosted/samsungypr/ypr0/audio-ypr0.c
96#if CONFIG_TUNER 96#if CONFIG_TUNER
97target/hosted/ypr0/radio-ypr0.c 97target/hosted/samsungypr/radio-ypr.c
98#endif 98#endif
99#endif 99#endif
100 100
diff --git a/firmware/export/config/samsungypr0.h b/firmware/export/config/samsungypr0.h
index debe9a3f80..c81fc645bb 100644
--- a/firmware/export/config/samsungypr0.h
+++ b/firmware/export/config/samsungypr0.h
@@ -12,9 +12,6 @@
12 12
13#define MODEL_NAME "Samsung YP-R0" 13#define MODEL_NAME "Samsung YP-R0"
14 14
15/* Indeed to check that */
16/*TODO: R0 should charge battery automatically, no software stuff to manage that. Just to know about some as3543 registers, that should be set after loading samsung's afe.ko module
17 */
18/*TODO: implement USB data transfer management -> see safe mode script and think a way to implemtent it in the code */ 15/*TODO: implement USB data transfer management -> see safe mode script and think a way to implemtent it in the code */
19#define USB_NONE 16#define USB_NONE
20 17
@@ -94,20 +91,26 @@
94#define HAVE_AS3514 91#define HAVE_AS3514
95#define HAVE_AS3543 92#define HAVE_AS3543
96 93
94/* We don't have hardware controls */
97#define HAVE_SW_TONE_CONTROLS 95#define HAVE_SW_TONE_CONTROLS
98 96
97/* We have the Si4709, which supports RDS */
99#define CONFIG_TUNER SI4700 98#define CONFIG_TUNER SI4700
100#define HAVE_TUNER_PWR_CTRL 99#define HAVE_TUNER_PWR_CTRL
101
102#define HAVE_RDS_CAP 100#define HAVE_RDS_CAP
103 101
104/* Define this for FM radio input available */ 102/* Define this for FM radio input available */
105#define HAVE_FMRADIO_IN 103#define HAVE_FMRADIO_IN
106#define INPUT_SRC_CAPS SRC_CAP_FMRADIO 104#define INPUT_SRC_CAPS SRC_CAP_FMRADIO
107 105
108/* We have a GPIO that detects it */ 106/* We have a GPIO pin that detects this */
109#define HAVE_HEADPHONE_DETECTION 107#define HAVE_HEADPHONE_DETECTION
110 108
109/* FIXME
110 * Lot of people reports bad battery life and funny charging times.
111 * Check what's going on...
112 */
113
111#define BATTERY_CAPACITY_DEFAULT 600 /* default battery capacity */ 114#define BATTERY_CAPACITY_DEFAULT 600 /* default battery capacity */
112#define BATTERY_CAPACITY_MIN 600 /* min. capacity selectable */ 115#define BATTERY_CAPACITY_MIN 600 /* min. capacity selectable */
113#define BATTERY_CAPACITY_MAX 600 /* max. capacity selectable */ 116#define BATTERY_CAPACITY_MAX 600 /* max. capacity selectable */
diff --git a/firmware/target/hosted/ypr0/adc-target.h b/firmware/target/hosted/samsungypr/adc-target.h
index e69de29bb2..e69de29bb2 100644
--- a/firmware/target/hosted/ypr0/adc-target.h
+++ b/firmware/target/hosted/samsungypr/adc-target.h
diff --git a/firmware/target/hosted/ypr0/backlight-target.h b/firmware/target/hosted/samsungypr/backlight-target.h
index 561e159e8c..21db75c8c9 100644
--- a/firmware/target/hosted/ypr0/backlight-target.h
+++ b/firmware/target/hosted/samsungypr/backlight-target.h
@@ -5,7 +5,7 @@
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < 5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ 6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/ 7 * \/ \/ \/ \/ \/
8 * $Id: backlight-target.h 19322 2008-12-04 04:16:53Z jethead71 $ 8 * $Id$
9 * 9 *
10 * Copyright (C) 2011 by Lorenzo Miori 10 * Copyright (C) 2011 by Lorenzo Miori
11 * 11 *
diff --git a/firmware/target/hosted/ypr0/dir-target.h b/firmware/target/hosted/samsungypr/dir-target.h
index 7df9554e92..7df9554e92 100644
--- a/firmware/target/hosted/ypr0/dir-target.h
+++ b/firmware/target/hosted/samsungypr/dir-target.h
diff --git a/firmware/target/hosted/ypr0/gpio_ypr0.c b/firmware/target/hosted/samsungypr/gpio_ypr.c
index 3ee371d562..0d4a7eceae 100644
--- a/firmware/target/hosted/ypr0/gpio_ypr0.c
+++ b/firmware/target/hosted/samsungypr/gpio_ypr.c
@@ -23,7 +23,7 @@
23#include <stdio.h> 23#include <stdio.h>
24#include <unistd.h> 24#include <unistd.h>
25#include <fcntl.h> 25#include <fcntl.h>
26#include <gpio_ypr0.h> /* includes r0GPIOioctl.h */ 26#include <gpio-target.h> /* includes common ioctl device definitions */
27#include <sys/ioctl.h> 27#include <sys/ioctl.h>
28 28
29static int r0_gpio_dev = 0; 29static int r0_gpio_dev = 0;
diff --git a/firmware/target/hosted/ypr0/lcd-target.h b/firmware/target/hosted/samsungypr/lcd-target.h
index c8a6de74f9..c8a6de74f9 100644
--- a/firmware/target/hosted/ypr0/lcd-target.h
+++ b/firmware/target/hosted/samsungypr/lcd-target.h
diff --git a/firmware/target/hosted/ypr0/lcd-ypr0.c b/firmware/target/hosted/samsungypr/lcd-ypr.c
index 40528c298a..40528c298a 100644
--- a/firmware/target/hosted/ypr0/lcd-ypr0.c
+++ b/firmware/target/hosted/samsungypr/lcd-ypr.c
diff --git a/firmware/target/hosted/ypr0/radio-ypr0.c b/firmware/target/hosted/samsungypr/radio-ypr.c
index 14d56826c1..1929bb7c90 100644
--- a/firmware/target/hosted/ypr0/radio-ypr0.c
+++ b/firmware/target/hosted/samsungypr/radio-ypr.c
@@ -6,7 +6,8 @@
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ 6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/ 7 * \/ \/ \/ \/ \/
8 * 8 *
9 * Module wrapper for SI4709 FM Radio Chip, using /dev/si470x (si4709.ko) of Samsung YP-R0 9 * Module wrapper for SI4709 FM Radio Chip, using /dev/si470x (si4709.ko)
10 * Samsung YP-R0 & Samsung YP-R1
10 * 11 *
11 * Copyright (c) 2012 Lorenzo Miori 12 * Copyright (c) 2012 Lorenzo Miori
12 * 13 *
@@ -27,7 +28,7 @@
27#include "string.h" 28#include "string.h"
28#include "kernel.h" 29#include "kernel.h"
29 30
30#include "radio-ypr0.h" 31#include "radio-ypr.h"
31#include "rds.h" 32#include "rds.h"
32#include "si4700.h" 33#include "si4700.h"
33#include "power.h" 34#include "power.h"
diff --git a/firmware/target/hosted/ypr0/radio-ypr0.h b/firmware/target/hosted/samsungypr/radio-ypr.h
index 13bcb6dc72..13bcb6dc72 100644
--- a/firmware/target/hosted/ypr0/radio-ypr0.h
+++ b/firmware/target/hosted/samsungypr/radio-ypr.h
diff --git a/firmware/target/hosted/ypr0/si4709.h b/firmware/target/hosted/samsungypr/si4709.h
index c27472e856..c27472e856 100644
--- a/firmware/target/hosted/ypr0/si4709.h
+++ b/firmware/target/hosted/samsungypr/si4709.h
diff --git a/firmware/target/hosted/ypr0/system-target.h b/firmware/target/hosted/samsungypr/system-target.h
index 1ef8b9aeda..1ef8b9aeda 100644
--- a/firmware/target/hosted/ypr0/system-target.h
+++ b/firmware/target/hosted/samsungypr/system-target.h
diff --git a/firmware/target/hosted/ypr0/ascodec-ypr0.c b/firmware/target/hosted/samsungypr/ypr0/ascodec-ypr0.c
index cc923842df..24362af0c0 100644
--- a/firmware/target/hosted/ypr0/ascodec-ypr0.c
+++ b/firmware/target/hosted/samsungypr/ypr0/ascodec-ypr0.c
@@ -5,10 +5,10 @@
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < 5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ 6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/ 7 * \/ \/ \/ \/ \/
8 * 8 *
9 * Module wrapper for AS3543 audio codec, using /dev/afe (afe.ko) of Samsung YP-R0 9 * Module wrapper for AS3543 audio codec, using /dev/afe (afe.ko) of Samsung YP-R0
10 * 10 *
11 * Copyright (c) 2011 Lorenzo Miori 11 * Copyright (c) 2011-2013 Lorenzo Miori
12 * 12 *
13 * This program is free software; you can redistribute it and/or 13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License 14 * modify it under the terms of the GNU General Public License
@@ -29,11 +29,10 @@
29 29
30#include "ascodec.h" 30#include "ascodec.h"
31 31
32int afe_dev = -1; 32static int afe_dev = -1;
33 33
34/* ioctl parameter struct */ 34/* Structure used for ioctl module call */
35struct codec_req_struct { 35struct codec_req_struct {
36/* This works for every kind of afe.ko module requests */
37 unsigned char reg; /* Main register address */ 36 unsigned char reg; /* Main register address */
38 unsigned char subreg; /* Set this only if you are reading/writing a PMU register*/ 37 unsigned char subreg; /* Set this only if you are reading/writing a PMU register*/
39 unsigned char value; /* To be read if reading a register; to be set if writing to a register */ 38 unsigned char value; /* To be read if reading a register; to be set if writing to a register */
@@ -49,28 +48,31 @@ struct codec_req_struct {
49/* Read from a PMU register */ 48/* Read from a PMU register */
50#define IOCTL_SUBREG_READ 0x80034103 49#define IOCTL_SUBREG_READ 0x80034103
51 50
52 51/* Open device */
53void ascodec_init(void) 52void ascodec_init(void)
54{ 53{
55 afe_dev = open("/dev/afe", O_RDWR); 54 afe_dev = open("/dev/afe", O_RDWR);
56} 55}
57 56
57/* Close device */
58void ascodec_close(void) 58void ascodec_close(void)
59{ 59{
60 if (afe_dev >= 0) { 60 if (afe_dev >= 0)
61 close(afe_dev); 61 close(afe_dev);
62 }
63} 62}
64 63
65/* Read functions returns -1 if fail, otherwise the register's value if success */ 64/* Write register.
66/* Write functions return >= 0 if success, otherwise -1 if fail */ 65 * Returns >= 0 if success, -1 if fail
67 66 */
68int ascodec_write(unsigned int reg, unsigned int value) 67int ascodec_write(unsigned int reg, unsigned int value)
69{ 68{
70 struct codec_req_struct r = { .reg = reg, .value = value }; 69 struct codec_req_struct r = { .reg = reg, .value = value };
71 return ioctl(afe_dev, IOCTL_REG_WRITE, &r); 70 return ioctl(afe_dev, IOCTL_REG_WRITE, &r);
72} 71}
73 72
73/* Read register.
74 * Returns -1 if fail, otherwise the register's value if success
75 */
74int ascodec_read(unsigned int reg) 76int ascodec_read(unsigned int reg)
75{ 77{
76 struct codec_req_struct r = { .reg = reg }; 78 struct codec_req_struct r = { .reg = reg };
@@ -81,6 +83,7 @@ int ascodec_read(unsigned int reg)
81 return retval; 83 return retval;
82} 84}
83 85
86/* Write PMU register */
84void ascodec_write_pmu(unsigned int index, unsigned int subreg, 87void ascodec_write_pmu(unsigned int index, unsigned int subreg,
85 unsigned int value) 88 unsigned int value)
86{ 89{
@@ -88,6 +91,7 @@ void ascodec_write_pmu(unsigned int index, unsigned int subreg,
88 ioctl(afe_dev, IOCTL_SUBREG_WRITE, &r); 91 ioctl(afe_dev, IOCTL_SUBREG_WRITE, &r);
89} 92}
90 93
94/* Read PMU register */
91int ascodec_read_pmu(unsigned int index, unsigned int subreg) 95int ascodec_read_pmu(unsigned int index, unsigned int subreg)
92{ 96{
93 struct codec_req_struct r = { .reg = index, .subreg = subreg, }; 97 struct codec_req_struct r = { .reg = index, .subreg = subreg, };
diff --git a/firmware/target/hosted/ypr0/audio-ypr0.c b/firmware/target/hosted/samsungypr/ypr0/audio-ypr0.c
index dfd63ef5cd..dfd63ef5cd 100644
--- a/firmware/target/hosted/ypr0/audio-ypr0.c
+++ b/firmware/target/hosted/samsungypr/ypr0/audio-ypr0.c
diff --git a/firmware/target/hosted/ypr0/backlight-ypr0.c b/firmware/target/hosted/samsungypr/ypr0/backlight-ypr0.c
index 551b386f19..551b386f19 100644
--- a/firmware/target/hosted/ypr0/backlight-ypr0.c
+++ b/firmware/target/hosted/samsungypr/ypr0/backlight-ypr0.c
diff --git a/firmware/target/hosted/ypr0/button-target.h b/firmware/target/hosted/samsungypr/ypr0/button-target.h
index 3a3866932a..3a3866932a 100644
--- a/firmware/target/hosted/ypr0/button-target.h
+++ b/firmware/target/hosted/samsungypr/ypr0/button-target.h
diff --git a/firmware/target/hosted/ypr0/button-ypr0.c b/firmware/target/hosted/samsungypr/ypr0/button-ypr0.c
index e66ca22737..e3ad309187 100644
--- a/firmware/target/hosted/ypr0/button-ypr0.c
+++ b/firmware/target/hosted/samsungypr/ypr0/button-ypr0.c
@@ -24,7 +24,7 @@
24#include "kernel.h" 24#include "kernel.h"
25#include "system.h" 25#include "system.h"
26#include "button-target.h" 26#include "button-target.h"
27#include <gpio_ypr0.h> /* For headphones sense and buttons */ 27#include <gpio-target.h> /* For headphones sense and buttons */
28 28
29int button_read_device(void) 29int button_read_device(void)
30{ 30{
diff --git a/firmware/target/hosted/ypr0/gpio_ypr0.h b/firmware/target/hosted/samsungypr/ypr0/gpio-target.h
index 3c2033baff..3c2033baff 100644
--- a/firmware/target/hosted/ypr0/gpio_ypr0.h
+++ b/firmware/target/hosted/samsungypr/ypr0/gpio-target.h
diff --git a/firmware/target/hosted/ypr0/powermgmt-ypr0.c b/firmware/target/hosted/samsungypr/ypr0/powermgmt-ypr0.c
index 347e5fa146..6e04d25f58 100644
--- a/firmware/target/hosted/ypr0/powermgmt-ypr0.c
+++ b/firmware/target/hosted/samsungypr/ypr0/powermgmt-ypr0.c
@@ -5,7 +5,6 @@
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < 5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ 6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/ 7 * \/ \/ \/ \/ \/
8 * $Id: powermgmt-sim.c 29543 2011-03-08 19:33:30Z thomasjfox $
9 * 8 *
10 * This program is free software; you can redistribute it and/or 9 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License 10 * modify it under the terms of the GNU General Public License
@@ -24,7 +23,7 @@
24#include "file.h" 23#include "file.h"
25#include "adc.h" 24#include "adc.h"
26#include "sc900776.h" 25#include "sc900776.h"
27#include "radio-ypr0.h" 26#include "radio-ypr.h"
28 27
29const unsigned short battery_level_dangerous[BATTERY_TYPES_COUNT] = 28const unsigned short battery_level_dangerous[BATTERY_TYPES_COUNT] =
30{ 29{
diff --git a/firmware/target/hosted/ypr0/r0GPIOIoctl.h b/firmware/target/hosted/samsungypr/ypr0/r0GPIOIoctl.h
index e77f35fbb7..e77f35fbb7 100644
--- a/firmware/target/hosted/ypr0/r0GPIOIoctl.h
+++ b/firmware/target/hosted/samsungypr/ypr0/r0GPIOIoctl.h
diff --git a/firmware/target/hosted/ypr0/sc900776.h b/firmware/target/hosted/samsungypr/ypr0/sc900776.h
index 32eb90f797..32eb90f797 100644
--- a/firmware/target/hosted/ypr0/sc900776.h
+++ b/firmware/target/hosted/samsungypr/ypr0/sc900776.h
diff --git a/firmware/target/hosted/ypr0/system-ypr0.c b/firmware/target/hosted/samsungypr/ypr0/system-ypr0.c
index 11275c7809..7ee2697a24 100644
--- a/firmware/target/hosted/ypr0/system-ypr0.c
+++ b/firmware/target/hosted/samsungypr/ypr0/system-ypr0.c
@@ -5,9 +5,8 @@
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < 5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ 6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/ 7 * \/ \/ \/ \/ \/
8 * $Id: system-sdl.c 29925 2011-05-25 20:11:03Z thomasjfox $
9 * 8 *
10 * Copyright (C) 2006 by Daniel Everton <dan@iocaine.org> 9 * Copyright (C) 2011-2013 by Lorenzo Miori
11 * 10 *
12 * This program is free software; you can redistribute it and/or 11 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License 12 * modify it under the terms of the GNU General Public License
@@ -31,7 +30,7 @@
31#endif 30#endif
32 31
33#include "ascodec.h" 32#include "ascodec.h"
34#include "gpio_ypr0.h" 33#include "gpio-target.h"
35 34
36void power_off(void) 35void power_off(void)
37{ 36{
@@ -52,6 +51,7 @@ void system_init(void)
52#if defined(HAVE_SDL_AUDIO) || defined(HAVE_SDL_THREADS) || defined(HAVE_SDL) 51#if defined(HAVE_SDL_AUDIO) || defined(HAVE_SDL_THREADS) || defined(HAVE_SDL)
53 SDL_Init(0); /* need this if using any SDL subsystem */ 52 SDL_Init(0); /* need this if using any SDL subsystem */
54#endif 53#endif
54
55 /* Here begins our platform specific initilization for various things */ 55 /* Here begins our platform specific initilization for various things */
56 ascodec_init(); 56 ascodec_init();
57 gpio_init(); 57 gpio_init();
diff --git a/firmware/target/hosted/ypr0/ypr0.make b/firmware/target/hosted/samsungypr/ypr0/ypr0.make
index 67ff326de0..67ff326de0 100644
--- a/firmware/target/hosted/ypr0/ypr0.make
+++ b/firmware/target/hosted/samsungypr/ypr0/ypr0.make
diff --git a/tools/configure b/tools/configure
index 442b23899b..353b991b04 100755
--- a/tools/configure
+++ b/tools/configure
@@ -3347,8 +3347,8 @@ fi
3347 swcodec="yes" 3347 swcodec="yes"
3348 # architecture, manufacturer and model for the target-tree build 3348 # architecture, manufacturer and model for the target-tree build
3349 t_cpu="hosted" 3349 t_cpu="hosted"
3350 t_manufacturer="ypr0" 3350 t_manufacturer="samsungypr"
3351 t_model="app" 3351 t_model="ypr0"
3352 ;; 3352 ;;
3353 3353
3354 206|androidmips) 3354 206|androidmips)
diff --git a/tools/root.make b/tools/root.make
index c8c4eb4f89..b62cb4d589 100644
--- a/tools/root.make
+++ b/tools/root.make
@@ -120,7 +120,7 @@ else
120 endif 120 endif
121 121
122 ifneq (,$(findstring ypr0,$(APP_TYPE))) 122 ifneq (,$(findstring ypr0,$(APP_TYPE)))
123 include $(ROOTDIR)/firmware/target/hosted/ypr0/ypr0.make 123 include $(ROOTDIR)/firmware/target/hosted/samsungypr/ypr0/ypr0.make
124 endif 124 endif
125 125
126 ifneq (,$(findstring android, $(APP_TYPE))) 126 ifneq (,$(findstring android, $(APP_TYPE)))