| 1 | /* |
| 2 | * (C) Copyright 2007 OpenMoko, Inc. |
| 3 | * Author: xiangfu liu <xiangfu@openmoko.org> |
| 4 | * |
| 5 | * Configuation settings for the FIC Neo GTA02 Linux GSM phone |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or |
| 8 | * modify it under the terms of the GNU General Public License as |
| 9 | * published by the Free Software Foundation; either version 2 of |
| 10 | * the License, or (at your option) any later version. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | * GNU General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License |
| 18 | * along with this program; if not, write to the Free Software |
| 19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 20 | * MA 02111-1307 USA |
| 21 | */ |
| 22 | |
| 23 | #ifndef __BLINK_LED_H |
| 24 | #define __BLINK_LED_H |
| 25 | |
| 26 | #define GPBCON (*(volatile unsigned *)0x56000010) |
| 27 | #define GPBDAT (*(volatile unsigned *)0x56000014) |
| 28 | #define GPBDW (*(volatile unsigned *)0x56000018) |
| 29 | #define ORANGE_OFF() (GPBDAT &= ~(0x1)) |
| 30 | #define BLUE_OFF() (GPBDAT &= ~(0x2)) |
| 31 | #define ORANGE_ON() (GPBDAT |= (0x1)) |
| 32 | #define BLUE_ON() (GPBDAT |= (0x2)) |
| 33 | |
| 34 | int orange_on(int times); |
| 35 | int blue_on(int times); |
| 36 | int blink_led(void); |
| 37 | int delay(int time); |
| 38 | |
| 39 | #endif /* __BLINK_LED_H */ |
| 40 | |