blob: e47a58adbfc0d37caf04ce78e8f7a6f35f5e86c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
/***************************************************************************
* __________ __ ___.
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
* \/ \/ \/ \/ \/
* $Id$
*
* Copyright (C) 2002 by Linus Nielsen Feltzing
*
* All files in this archive are subject to the GNU General Public License.
* See the file COPYING in the source tree root for full license agreement.
*
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
* KIND, either express or implied.
*
****************************************************************************/
#include "config.h"
#include <stdlib.h>
#include "sh7034.h"
#include "kernel.h"
#include "thread.h"
#include "i2c.h"
#include "debug.h"
#include "rtc.h"
#define BACKLIGHT_ON 1
#define BACKLIGHT_OFF 2
static void backlight_thread(void);
static char backlight_stack[0x100];
static struct event_queue backlight_queue;
static int backlight_timer;
static int backlight_timeout = 5;
void backlight_thread(void)
{
struct event ev;
while(1)
{
queue_wait(&backlight_queue, &ev);
switch(ev.id)
{
case BACKLIGHT_ON:
backlight_timer = HZ*backlight_timeout;
if(backlight_timer)
{
#ifdef HAVE_RTC
rtc_write(0x13, 0x10);
#else
PADR |= 0x40;
#endif
}
break;
case BACKLIGHT_OFF:
#ifdef HAVE_RTC
rtc_write(0x13, 0x00);
#else
PADR &= ~0x40;
#endif
break;
}
}
}
void backlight_on(void)
{
queue_post(&backlight_queue, BACKLIGHT_ON, NULL);
}
void backlight_off(void)
{
queue_post(&backlight_queue, BACKLIGHT_OFF, NULL);
}
void backlight_time(int seconds)
{
backlight_timeout = seconds;
backlight_on();
}
void backlight_tick(void)
{
if(backlight_timer)
{
backlight_timer--;
if(backlight_timer == 0)
{
backlight_off();
}
}
}
void backlight_init(void)
{
queue_init(&backlight_queue);
create_thread(backlight_thread, backlight_stack, sizeof(backlight_stack));
backlight_on();
}
|