blob: 18a68d8c59e3a526646a4b8041449800d6e74af4 [file] [log] [blame]
Stelian Popd99a8ff2008-05-08 20:52:22 +02001/*
2 * (C) Copyright 2007-2008
Stelian Popc9e798d2011-11-01 00:00:39 +01003 * Stelian Pop <stelian@popies.net>
Stelian Popd99a8ff2008-05-08 20:52:22 +02004 * Lead Tech Design <www.leadtechdesign.com>
5 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02006 * SPDX-License-Identifier: GPL-2.0+
Stelian Popd99a8ff2008-05-08 20:52:22 +02007 */
8
9#include <common.h>
10#include <asm/arch/at91sam9261.h>
11#include <asm/arch/at91_pmc.h>
12#include <asm/arch/gpio.h>
Xu, Hongf7aea462011-07-31 22:49:00 +000013#include <asm/arch/at91_pio.h>
14#include <asm/io.h>
Stelian Popd99a8ff2008-05-08 20:52:22 +020015
Stelian Popd99a8ff2008-05-08 20:52:22 +020016void coloured_LED_init(void)
17{
Xu, Hongf7aea462011-07-31 22:49:00 +000018 struct at91_pmc *pmc = (struct at91_pmc *)ATMEL_BASE_PMC;
19
Stelian Popd99a8ff2008-05-08 20:52:22 +020020 /* Enable clock */
Xu, Hongf7aea462011-07-31 22:49:00 +000021 writel(ATMEL_ID_PIOA, &pmc->pcer);
Stelian Popd99a8ff2008-05-08 20:52:22 +020022
Jean-Christophe PLAGNIOL-VILLARDa484b002009-03-21 21:08:00 +010023 at91_set_gpio_output(CONFIG_RED_LED, 1);
24 at91_set_gpio_output(CONFIG_GREEN_LED, 1);
25 at91_set_gpio_output(CONFIG_YELLOW_LED, 1);
Stelian Popd99a8ff2008-05-08 20:52:22 +020026
Jean-Christophe PLAGNIOL-VILLARDa484b002009-03-21 21:08:00 +010027 at91_set_gpio_value(CONFIG_RED_LED, 0);
28 at91_set_gpio_value(CONFIG_GREEN_LED, 1);
29 at91_set_gpio_value(CONFIG_YELLOW_LED, 1);
Stelian Popd99a8ff2008-05-08 20:52:22 +020030}