2009-06-12 19:20:39 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2007-2008
|
2011-10-31 23:00:39 +00:00
|
|
|
* Stelian Pop <stelian@popies.net>
|
2009-06-12 19:20:39 +00:00
|
|
|
* Lead Tech Design <www.leadtechdesign.com>
|
|
|
|
* Ilko Iliev <www.ronetix.at>
|
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2009-06-12 19:20:39 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2013-11-29 11:13:46 +00:00
|
|
|
#include <asm/gpio.h>
|
2016-02-03 02:16:50 +00:00
|
|
|
#include <asm/arch/clk.h>
|
2011-07-26 04:48:41 +00:00
|
|
|
#include <asm/arch/gpio.h>
|
2009-06-12 19:20:39 +00:00
|
|
|
|
|
|
|
void coloured_LED_init(void)
|
|
|
|
{
|
2016-02-03 02:16:50 +00:00
|
|
|
at91_periph_clk_enable(ATMEL_ID_PIOC);
|
2009-06-12 19:20:39 +00:00
|
|
|
|
2013-11-29 11:13:46 +00:00
|
|
|
gpio_direction_output(CONFIG_RED_LED, 1);
|
|
|
|
gpio_direction_output(CONFIG_GREEN_LED, 1);
|
|
|
|
gpio_direction_output(CONFIG_YELLOW_LED, 1);
|
2009-06-12 19:20:39 +00:00
|
|
|
|
2013-11-29 11:13:46 +00:00
|
|
|
gpio_set_value(CONFIG_RED_LED, 0);
|
|
|
|
gpio_set_value(CONFIG_GREEN_LED, 1);
|
|
|
|
gpio_set_value(CONFIG_YELLOW_LED, 1);
|
2009-06-12 19:20:39 +00:00
|
|
|
}
|