summaryrefslogtreecommitdiff
path: root/firmware/drivers
diff options
context:
space:
mode:
authorMarcin Bukat <marcin.bukat@gmail.com>2017-04-27 11:36:40 +0200
committerMarcin Bukat <marcin.bukat@gmail.com>2018-06-12 10:31:14 +0200
commitd55680993df9b6743506814d98b5cc1859828f8a (patch)
tree054dc45425fa1a6863f154b484036f26cc3ac13f /firmware/drivers
parentbeef52c5f0832e2c36bb1523b51eb8721f851db5 (diff)
downloadrockbox-d55680993df9b6743506814d98b5cc1859828f8a.tar.gz
rockbox-d55680993df9b6743506814d98b5cc1859828f8a.zip
Agptek Rocker: Initial commit
Change-Id: I26b51106c7b1c36a603fba6d521e917d79b5a95b
Diffstat (limited to 'firmware/drivers')
-rw-r--r--firmware/drivers/audio/rocker_codec.c77
-rw-r--r--firmware/drivers/lcd-24bit.c3
2 files changed, 79 insertions, 1 deletions
diff --git a/firmware/drivers/audio/rocker_codec.c b/firmware/drivers/audio/rocker_codec.c
new file mode 100644
index 0000000000..23541a4ddb
--- /dev/null
+++ b/firmware/drivers/audio/rocker_codec.c
@@ -0,0 +1,77 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 *
11 * Copyright (c) 2018 Marcin Bukat
12 *
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License
15 * as published by the Free Software Foundation; either version 2
16 * of the License, or (at your option) any later version.
17 *
18 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19 * KIND, either express or implied.
20 *
21 ****************************************************************************/
22
23#include "config.h"
24#include "audio.h"
25#include "audiohw.h"
26#include "system.h"
27#include "panic.h"
28#include "alsa-controls.h"
29
30static int fd_hw;
31
32static void hw_open(void)
33{
34 fd_hw = open("/dev/snd/controlC0", O_RDWR);
35 if(fd_hw < 0)
36 panicf("Cannot open '/dev/snd/controlC0'");
37}
38
39static void hw_close(void)
40{
41 close(fd_hw);
42}
43
44void audiohw_preinit(void)
45{
46 long int hp = 2;
47
48 alsa_controls_init();
49 hw_open();
50
51 /* Output port switch set to Headphones */
52 alsa_controls_set_ints("Output Port Switch", 1, &hp);
53}
54
55void audiohw_postinit(void)
56{
57}
58
59void audiohw_close(void)
60{
61 hw_close();
62 alsa_controls_close();
63}
64
65void audiohw_set_frequency(int fsel)
66{
67 (void)fsel;
68}
69
70void audiohw_set_volume(int vol_l, int vol_r)
71{
72 long int vol_l_hw = -vol_l/5;
73 long int vol_r_hw = -vol_r/5;
74
75 alsa_controls_set_ints("Left Playback Volume", 1, &vol_l_hw);
76 alsa_controls_set_ints("Right Playback Volume", 1, &vol_r_hw);
77}
diff --git a/firmware/drivers/lcd-24bit.c b/firmware/drivers/lcd-24bit.c
index 092ed9d576..0585cfb7a0 100644
--- a/firmware/drivers/lcd-24bit.c
+++ b/firmware/drivers/lcd-24bit.c
@@ -189,7 +189,8 @@ void lcd_fillrect(int x, int y, int width, int height)
189 enum fill_opt fillopt = OPT_NONE; 189 enum fill_opt fillopt = OPT_NONE;
190 fb_data *dst, *dst_end; 190 fb_data *dst, *dst_end;
191 int len, step; 191 int len, step;
192 fb_data bits = { 0, 0, 0 }; 192 fb_data bits; // = { 0, 0, 0 };
193 memset(&bits, 0, sizeof(fb_data));
193 194
194 /******************** In viewport clipping **********************/ 195 /******************** In viewport clipping **********************/
195 /* nothing to draw? */ 196 /* nothing to draw? */