summaryrefslogtreecommitdiff
path: root/firmware/target/mips/ingenic_x1000/erosqnative/backlight-erosqnative.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/mips/ingenic_x1000/erosqnative/backlight-erosqnative.c')
-rw-r--r--firmware/target/mips/ingenic_x1000/erosqnative/backlight-erosqnative.c63
1 files changed, 63 insertions, 0 deletions
diff --git a/firmware/target/mips/ingenic_x1000/erosqnative/backlight-erosqnative.c b/firmware/target/mips/ingenic_x1000/erosqnative/backlight-erosqnative.c
new file mode 100644
index 0000000000..2c86a995db
--- /dev/null
+++ b/firmware/target/mips/ingenic_x1000/erosqnative/backlight-erosqnative.c
@@ -0,0 +1,63 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2021 Aidan MacDonald, Dana Conrad
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
16 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
19 *
20 ****************************************************************************/
21
22#include "backlight.h"
23#include "backlight-target.h"
24#include "lcd.h"
25#include "pwm-x1000.h"
26
27#define BL_LCD_CHN 0
28#define BL_LCD_PERIOD 30000
29
30static int backlight_calc_duty(int period, int min_duty, int brightness)
31{
32 return min_duty + (period - min_duty) * brightness / MAX_BRIGHTNESS_SETTING;
33}
34
35bool backlight_hw_init(void)
36{
37 pwm_init(BL_LCD_CHN);
38 pwm_enable(BL_LCD_CHN);
39 backlight_hw_brightness(MAX_BRIGHTNESS_SETTING);
40 return true;
41}
42
43void backlight_hw_on(void)
44{
45 pwm_enable(BL_LCD_CHN);
46#ifdef HAVE_LCD_ENABLE
47 lcd_enable(true);
48#endif
49}
50
51void backlight_hw_off(void)
52{
53 pwm_disable(BL_LCD_CHN);
54#ifdef HAVE_LCD_ENABLE
55 lcd_enable(false);
56#endif
57}
58
59void backlight_hw_brightness(int brightness)
60{
61 int duty_ns = backlight_calc_duty(BL_LCD_PERIOD, 0, brightness);
62 pwm_set_period(BL_LCD_CHN, BL_LCD_PERIOD, duty_ns);
63}