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>
|
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2008-05-08 16:52:23 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.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/at91_pmc.h>
|
|
|
|
#include <asm/arch/at91sam9263.h>
|
2008-05-08 16:52:23 +00:00
|
|
|
|
|
|
|
void coloured_LED_init(void)
|
|
|
|
{
|
|
|
|
/* Enable clock */
|
2011-06-10 21:31:26 +00:00
|
|
|
at91_pmc_t *pmc = (at91_pmc_t *) ATMEL_BASE_PMC;
|
2008-05-08 16:52:23 +00:00
|
|
|
|
2011-06-10 21:31:26 +00:00
|
|
|
writel(1 << ATMEL_ID_PIOB | 1 << ATMEL_ID_PIOCDE,
|
2010-02-03 21:47:18 +00:00
|
|
|
&pmc->pcer);
|
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
|
|
|
}
|