blob: fede59cd32666e3ad4564a4a36683a3ddee210a5 [file] [log] [blame]
Stelian Pop2118ebb2008-05-08 18:52:25 +02001/*
2 * (C) Copyright 2007-2008
Stelian Popc9e798d2011-11-01 00:00:39 +01003 * Stelian Pop <stelian@popies.net>
Stelian Pop2118ebb2008-05-08 18:52:25 +02004 * Lead Tech Design <www.leadtechdesign.com>
5 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02006 * SPDX-License-Identifier: GPL-2.0+
Stelian Pop2118ebb2008-05-08 18:52:25 +02007 */
8
9#include <common.h>
10#include <asm/arch/at91sam9rl.h>
11#include <asm/arch/at91_pmc.h>
12#include <asm/arch/gpio.h>
Xu, Hong21d671d2011-08-01 03:56:53 +000013#include <asm/io.h>
Stelian Pop2118ebb2008-05-08 18:52:25 +020014
Stelian Pop2118ebb2008-05-08 18:52:25 +020015void coloured_LED_init(void)
16{
Xu, Hong21d671d2011-08-01 03:56:53 +000017 struct at91_pmc *pmc = (struct at91_pmc *)ATMEL_BASE_PMC;
18
Stelian Pop2118ebb2008-05-08 18:52:25 +020019 /* Enable clock */
Xu, Hong21d671d2011-08-01 03:56:53 +000020 writel(ATMEL_ID_PIOD, &pmc->pcer);
Stelian Pop2118ebb2008-05-08 18:52:25 +020021
Jean-Christophe PLAGNIOL-VILLARDa484b002009-03-21 21:08:00 +010022 at91_set_gpio_output(CONFIG_RED_LED, 1);
23 at91_set_gpio_output(CONFIG_GREEN_LED, 1);
24 at91_set_gpio_output(CONFIG_YELLOW_LED, 1);
Stelian Pop2118ebb2008-05-08 18:52:25 +020025
Jean-Christophe PLAGNIOL-VILLARDa484b002009-03-21 21:08:00 +010026 at91_set_gpio_value(CONFIG_RED_LED, 0);
27 at91_set_gpio_value(CONFIG_GREEN_LED, 1);
28 at91_set_gpio_value(CONFIG_YELLOW_LED, 1);
Stelian Pop2118ebb2008-05-08 18:52:25 +020029}