summaryrefslogtreecommitdiff
path: root/firmware/target/arm/ipod/backlight-nano_video.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/arm/ipod/backlight-nano_video.c')
-rw-r--r--firmware/target/arm/ipod/backlight-nano_video.c50
1 files changed, 50 insertions, 0 deletions
diff --git a/firmware/target/arm/ipod/backlight-nano_video.c b/firmware/target/arm/ipod/backlight-nano_video.c
new file mode 100644
index 0000000000..5559709333
--- /dev/null
+++ b/firmware/target/arm/ipod/backlight-nano_video.c
@@ -0,0 +1,50 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2002 by Linus Nielsen Feltzing
11 *
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
14 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
17 *
18 ****************************************************************************/
19#include "config.h"
20#include <stdlib.h>
21#include "cpu.h"
22#include "kernel.h"
23#include "thread.h"
24#include "i2c.h"
25#include "debug.h"
26#include "rtc.h"
27#include "usb.h"
28#include "power.h"
29#include "system.h"
30#include "button.h"
31#include "timer.h"
32#include "backlight.h"
33
34inline void __backlight_on(void)
35{
36 /* set port B03 on */
37 outl(((0x100 | 1) << 3), 0x6000d824);
38
39 /* set port L07 on */
40 outl(((0x100 | 1) << 7), 0x6000d12c);
41}
42
43inline void __backlight_off(void)
44{
45 /* set port B03 off */
46 outl(((0x100 | 0) << 3), 0x6000d824);
47
48 /* set port L07 off */
49 outl(((0x100 | 0) << 7), 0x6000d12c);
50}