2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2008-05-08 16:52:23 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2007-2008
|
2011-10-31 23:00:39 +00:00
|
|
|
* Stelian Pop <stelian@popies.net>
|
2008-05-08 16:52:23 +00:00
|
|
|
* Lead Tech Design <www.leadtechdesign.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2019-11-14 19:57:11 +00:00
|
|
|
#include <status_led.h>
|
2011-06-10 21:31:26 +00:00
|
|
|
#include <asm/io.h>
|
2008-05-08 16:52:23 +00:00
|
|
|
#include <asm/arch/gpio.h>
|
2011-06-10 21:31:26 +00:00
|
|
|
#include <asm/arch/at91sam9263.h>
|
2016-02-03 02:16:50 +00:00
|
|
|
#include <asm/arch/clk.h>
|
2008-05-08 16:52:23 +00:00
|
|
|
|
|
|
|
void coloured_LED_init(void)
|
|
|
|
{
|
2016-02-03 02:16:50 +00:00
|
|
|
at91_periph_clk_enable(ATMEL_ID_PIOB);
|
|
|
|
at91_periph_clk_enable(ATMEL_ID_PIOB);
|
2008-05-08 16:52:23 +00:00
|
|
|
|
2011-06-10 21:31:26 +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);
|
2010-02-03 21:47:18 +00:00
|
|
|
|
2011-06-10 21:31:26 +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 16:52:23 +00:00
|
|
|
}
|