blob: 1deac2f1df2fd07bb0e0e89fc93d36a7ac3c5351 [file] [log] [blame]
The Android Open Source Project51704be2008-12-17 18:05:50 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
The Android Open Source Projectd6054a32008-10-21 07:00:00 -070016#include <hardware/led.h>
17
The Android Open Source Project51704be2008-12-17 18:05:50 -080018typedef int (*LedFunc)(unsigned, int, int);
19
20#ifdef CONFIG_LED_SARDINE
21extern int sardine_set_led_state(unsigned, int, int);
22# define HW_LED_FUNC sardine_set_led_state
23#endif
24
25#ifdef CONFIG_LED_TROUT
26extern int trout_set_led_state(unsigned, int, int);
27# define HW_LED_FUNC trout_set_led_state
28#endif
29
30#ifdef CONFIG_LED_QEMU
31#include "qemu.h"
32static int
33qemu_set_led_state(unsigned color, int on, int off)
34{
35 qemu_control_command( "set_led_state:%08x:%d:%d", color, on, off );
36 return 0;
37}
38#endif
39
The Android Open Source Projectd6054a32008-10-21 07:00:00 -070040int
41set_led_state(unsigned color, int on, int off)
42{
The Android Open Source Project51704be2008-12-17 18:05:50 -080043#ifdef CONFIG_LED_QEMU
44 QEMU_FALLBACK(set_led_state(color,on,off));
45#endif
46#ifdef HW_LED_FUNC
47 return HW_LED_FUNC(color, on, off);
48#else
The Android Open Source Projectd6054a32008-10-21 07:00:00 -070049 return 0;
The Android Open Source Project51704be2008-12-17 18:05:50 -080050#endif
The Android Open Source Projectd6054a32008-10-21 07:00:00 -070051}