blob: 1e40e9bb884f57ea1d1bee80e272ef08d680d022 [file] [log] [blame]
Marcin Bukat28d54c62010-04-26 21:40:16 +00001/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
Marcin Bukat082c7d32010-10-22 12:28:43 +00008 * $Id$
Marcin Bukat28d54c62010-04-26 21:40:16 +00009 *
10 * Copyright (C) 2010 Marcin Bukat
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 "config.h"
23#include "cpu.h"
24#include "kernel.h"
25#include "system.h"
26#include "backlight.h"
27#include "backlight-target.h"
28#include "lcd.h"
29
Marcin Bukat572ac532010-04-30 13:59:00 +000030static bool _backlight_on = true;
Marcin Bukat28d54c62010-04-26 21:40:16 +000031static int _brightness = DEFAULT_BRIGHTNESS_SETTING;
32
33/* Returns the current state of the backlight (true=ON, false=OFF). */
34bool _backlight_init(void)
35{
Marcin Bukat572ac532010-04-30 13:59:00 +000036#ifdef BOOTLOADER
Marcin Bukat28d54c62010-04-26 21:40:16 +000037 and_l(~(1<<28),&GPIO_OUT);
Marcin Bukat572ac532010-04-30 13:59:00 +000038#endif
Marcin Bukat28d54c62010-04-26 21:40:16 +000039 or_l((1<<28),&GPIO_FUNCTION);
40 or_l((1<<28),&GPIO_ENABLE);
41 return true;
42}
43
44void _backlight_hw_on(void)
45{
Marcin Bukat5ad4d132010-05-04 11:14:59 +000046#ifndef BOOTLOADER
Marcin Bukat28d54c62010-04-26 21:40:16 +000047 if (_backlight_on)
48 return;
Marcin Bukat5ad4d132010-05-04 11:14:59 +000049#endif
Marcin Bukat28d54c62010-04-26 21:40:16 +000050
51 _backlight_set_brightness(_brightness);
52 _backlight_on = true;
53
54}
55
56void _backlight_hw_off(void)
57{
58 /* GPIO28 low */
59 and_l(~(1<<28),&GPIO_OUT);
60 _backlight_on = false;
61}
62
63void _backlight_set_brightness(int val)
64{
65 unsigned char i;
66
Marcin Bukat5ad4d132010-05-04 11:14:59 +000067#ifndef BOOTLOADER
Marcin Bukat572ac532010-04-30 13:59:00 +000068 if( _brightness == val && _backlight_on == true )
69 return;
Marcin Bukat5ad4d132010-05-04 11:14:59 +000070#endif
Marcin Bukat572ac532010-04-30 13:59:00 +000071
Marcin Bukat28d54c62010-04-26 21:40:16 +000072 and_l(~(1<<28),&GPIO_OUT);
73 sleep(4);
74
75 for (i=0;i<val;i++)
76 {
77 or_l((1<<28),&GPIO_OUT);
78 and_l(~(1<<28),&GPIO_OUT);
79 }
80
81 or_l((1<<28),&GPIO_OUT);
82
83 _brightness = val;
84}
85
86void _remote_backlight_on(void)
87{
88 /* I don't have remote to play with */
89}
90
91void _remote_backlight_off(void)
92{
93 /* I don't have remote to play with */
94}