blob: 55fb80dc8d73ad974084bc1e304e1496df55fdf6 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Stelian Pop69c925f2008-05-08 18:52:23 +02002/*
3 * (C) Copyright 2007-2008
Stelian Pop5ee0c7f2011-11-01 00:00:39 +01004 * Stelian Pop <stelian@popies.net>
Stelian Pop69c925f2008-05-08 18:52:23 +02005 * Lead Tech Design <www.leadtechdesign.com>
Stelian Pop69c925f2008-05-08 18:52:23 +02006 */
7
8#include <common.h>
Xu, Hong504e4e12011-06-10 21:31:26 +00009#include <asm/io.h>
Stelian Pop69c925f2008-05-08 18:52:23 +020010#include <asm/arch/gpio.h>
Xu, Hong504e4e12011-06-10 21:31:26 +000011#include <asm/arch/at91sam9263.h>
Wenyou Yang78f89762016-02-03 10:16:50 +080012#include <asm/arch/clk.h>
Stelian Pop69c925f2008-05-08 18:52:23 +020013
Stelian Pop69c925f2008-05-08 18:52:23 +020014void coloured_LED_init(void)
15{
Wenyou Yang78f89762016-02-03 10:16:50 +080016 at91_periph_clk_enable(ATMEL_ID_PIOB);
17 at91_periph_clk_enable(ATMEL_ID_PIOB);
Jens Scharsigc3c10ea2010-02-03 22:47:18 +010018
Xu, Hong504e4e12011-06-10 21:31:26 +000019 at91_set_gpio_output(CONFIG_RED_LED, 1);
20 at91_set_gpio_output(CONFIG_GREEN_LED, 1);
21 at91_set_gpio_output(CONFIG_YELLOW_LED, 1);
Stelian Pop69c925f2008-05-08 18:52:23 +020022
Xu, Hong504e4e12011-06-10 21:31:26 +000023 at91_set_gpio_value(CONFIG_RED_LED, 0);
24 at91_set_gpio_value(CONFIG_GREEN_LED, 1);
25 at91_set_gpio_value(CONFIG_YELLOW_LED, 1);
Stelian Pop69c925f2008-05-08 18:52:23 +020026}