2008-05-08 18:52:22 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2007-2008
|
2011-10-31 23:00:39 +00:00
|
|
|
* Stelian Pop <stelian@popies.net>
|
2008-05-08 18:52:22 +00:00
|
|
|
* Lead Tech Design <www.leadtechdesign.com>
|
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2008-05-08 18:52:22 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <asm/arch/at91sam9261.h>
|
|
|
|
#include <asm/arch/gpio.h>
|
2011-07-31 22:49:00 +00:00
|
|
|
#include <asm/arch/at91_pio.h>
|
2016-02-03 02:16:50 +00:00
|
|
|
#include <asm/arch/clk.h>
|
2011-07-31 22:49:00 +00:00
|
|
|
#include <asm/io.h>
|
2008-05-08 18:52:22 +00:00
|
|
|
|
|
|
|
void coloured_LED_init(void)
|
|
|
|
{
|
|
|
|
/* Enable clock */
|
2016-02-03 02:16:50 +00:00
|
|
|
at91_periph_clk_enable(ATMEL_ID_PIOA);
|
2008-05-08 18:52:22 +00:00
|
|
|
|
2009-03-21 20:08:00 +00:00
|
|
|
at91_set_gpio_output(CONFIG_RED_LED, 1);
|
|
|
|
at91_set_gpio_output(CONFIG_GREEN_LED, 1);
|
|
|
|
at91_set_gpio_output(CONFIG_YELLOW_LED, 1);
|
2008-05-08 18:52:22 +00:00
|
|
|
|
2009-03-21 20:08:00 +00:00
|
|
|
at91_set_gpio_value(CONFIG_RED_LED, 0);
|
|
|
|
at91_set_gpio_value(CONFIG_GREEN_LED, 1);
|
|
|
|
at91_set_gpio_value(CONFIG_YELLOW_LED, 1);
|
2008-05-08 18:52:22 +00:00
|
|
|
}
|