2002-03-28 15:09:10 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 by Alan Korr
|
|
|
|
*
|
2008-06-28 18:10:04 +00:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
2002-03-28 15:09:10 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
2004-11-02 21:42:39 +00:00
|
|
|
#include "config.h"
|
2002-05-13 12:29:34 +00:00
|
|
|
#include <stdbool.h>
|
2004-11-02 21:42:39 +00:00
|
|
|
#include "cpu.h"
|
2002-04-26 09:05:36 +00:00
|
|
|
#include "led.h"
|
2003-11-06 01:34:50 +00:00
|
|
|
#include "system.h"
|
2005-02-19 00:34:15 +00:00
|
|
|
#include "kernel.h"
|
|
|
|
|
2007-02-18 05:07:19 +00:00
|
|
|
#if (CONFIG_LED == LED_REAL)
|
2004-06-22 10:52:39 +00:00
|
|
|
|
2014-06-14 17:47:37 +00:00
|
|
|
#if defined(SAMSUNG_YH920) || defined(SAMSUNG_YH925)
|
|
|
|
|
|
|
|
#define LED_ON GPIO_CLEAR_BITWISE(GPIOF_OUTPUT_VAL, 0x20)
|
|
|
|
#define LED_OFF GPIO_SET_BITWISE(GPIOF_OUTPUT_VAL, 0x20)
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#define LED_ON or_b(0x40, &PBDRL)
|
|
|
|
#define LED_OFF and_b(~0x40, &PBDRL)
|
|
|
|
|
|
|
|
#endif /* SAMSUNG_YH920 || SAMSUNG_YH925 */
|
|
|
|
|
2005-11-24 00:10:14 +00:00
|
|
|
void led(bool on)
|
2002-04-20 13:25:58 +00:00
|
|
|
{
|
2005-11-24 00:10:14 +00:00
|
|
|
if ( on )
|
|
|
|
{
|
2014-06-14 17:47:37 +00:00
|
|
|
LED_ON;
|
2005-11-24 00:10:14 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-06-14 17:47:37 +00:00
|
|
|
LED_OFF;
|
2005-11-20 01:02:14 +00:00
|
|
|
}
|
2002-04-20 13:25:58 +00:00
|
|
|
}
|
2004-06-22 10:52:39 +00:00
|
|
|
|
2007-02-18 05:07:19 +00:00
|
|
|
#elif (CONFIG_LED == LED_VIRTUAL) || defined(HAVE_REMOTE_LCD)
|
2005-11-24 00:10:14 +00:00
|
|
|
|
|
|
|
static bool current;
|
|
|
|
static long last_on; /* timestamp of switching off */
|
|
|
|
|
2004-09-10 12:55:55 +00:00
|
|
|
void led(bool on)
|
|
|
|
{
|
2005-11-24 00:10:14 +00:00
|
|
|
if (current && !on) /* switching off */
|
|
|
|
{
|
|
|
|
last_on = current_tick; /* remember for off delay */
|
|
|
|
}
|
|
|
|
current = on;
|
2004-09-10 12:55:55 +00:00
|
|
|
}
|
|
|
|
|
2005-11-24 00:10:14 +00:00
|
|
|
bool led_read(int delayticks) /* read by status bar update */
|
2005-02-19 00:34:15 +00:00
|
|
|
{
|
2005-02-19 14:44:31 +00:00
|
|
|
/* reading "off" is delayed by user-supplied monoflop value */
|
2005-11-24 00:10:14 +00:00
|
|
|
return (current || TIME_BEFORE(current_tick, last_on+delayticks));
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
void led(bool on)
|
|
|
|
{
|
|
|
|
(void)on;
|
2004-09-10 12:55:55 +00:00
|
|
|
}
|
2005-11-24 00:10:14 +00:00
|
|
|
#endif /* CONFIG_LED, HAVE_REMOTE_LCD */
|