blob: c2df6efd18ebcf2d3c8e54538dc9a1f9a8e8240d [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Stelian Pop2118ebb2008-05-08 18:52:25 +02002/*
3 * (C) Copyright 2007-2008
Stelian Popc9e798d2011-11-01 00:00:39 +01004 * Stelian Pop <stelian@popies.net>
Stelian Pop2118ebb2008-05-08 18:52:25 +02005 * Lead Tech Design <www.leadtechdesign.com>
Stelian Pop2118ebb2008-05-08 18:52:25 +02006 */
7
8#include <common.h>
9#include <asm/arch/at91sam9rl.h>
Wenyou Yang70341e22016-02-03 10:16:50 +080010#include <asm/arch/clk.h>
Stelian Pop2118ebb2008-05-08 18:52:25 +020011#include <asm/arch/gpio.h>
Xu, Hong21d671d2011-08-01 03:56:53 +000012#include <asm/io.h>
Stelian Pop2118ebb2008-05-08 18:52:25 +020013
Stelian Pop2118ebb2008-05-08 18:52:25 +020014void coloured_LED_init(void)
15{
Wenyou Yang70341e22016-02-03 10:16:50 +080016 at91_periph_clk_enable(ATMEL_ID_PIOD);
Stelian Pop2118ebb2008-05-08 18:52:25 +020017
Jean-Christophe PLAGNIOL-VILLARDa484b002009-03-21 21:08:00 +010018 at91_set_gpio_output(CONFIG_RED_LED, 1);
19 at91_set_gpio_output(CONFIG_GREEN_LED, 1);
20 at91_set_gpio_output(CONFIG_YELLOW_LED, 1);
Stelian Pop2118ebb2008-05-08 18:52:25 +020021
Jean-Christophe PLAGNIOL-VILLARDa484b002009-03-21 21:08:00 +010022 at91_set_gpio_value(CONFIG_RED_LED, 0);
23 at91_set_gpio_value(CONFIG_GREEN_LED, 1);
24 at91_set_gpio_value(CONFIG_YELLOW_LED, 1);
Stelian Pop2118ebb2008-05-08 18:52:25 +020025}