blob: fe9872396293601b9299190b6b15a2be82d0f782 [file] [log] [blame]
Sedji Gaouaou22ee6472009-07-09 10:16:29 +02001/*
2 * (C) Copyright 2007-2008
Stelian Popc9e798d2011-11-01 00:00:39 +01003 * Stelian Pop <stelian@popies.net>
Sedji Gaouaou22ee6472009-07-09 10:16:29 +02004 * Lead Tech Design <www.leadtechdesign.com>
5 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02006 * SPDX-License-Identifier: GPL-2.0+
Sedji Gaouaou22ee6472009-07-09 10:16:29 +02007 */
8
9#include <common.h>
Thomas Petazzoni5cfeec52011-08-04 11:08:50 +000010#include <asm/io.h>
Sedji Gaouaou22ee6472009-07-09 10:16:29 +020011#include <asm/arch/at91sam9g45.h>
12#include <asm/arch/at91_pmc.h>
13#include <asm/arch/gpio.h>
Sedji Gaouaou22ee6472009-07-09 10:16:29 +020014
15void coloured_LED_init(void)
16{
Thomas Petazzoni5cfeec52011-08-04 11:08:50 +000017 struct at91_pmc *pmc = (struct at91_pmc *)ATMEL_BASE_PMC;
18
Sedji Gaouaou22ee6472009-07-09 10:16:29 +020019 /* Enable clock */
Thomas Petazzoni5cfeec52011-08-04 11:08:50 +000020 writel(1 << ATMEL_ID_PIODE, &pmc->pcer);
Sedji Gaouaou22ee6472009-07-09 10:16:29 +020021
22 at91_set_gpio_output(CONFIG_RED_LED, 1);
23 at91_set_gpio_output(CONFIG_GREEN_LED, 1);
24
25 at91_set_gpio_value(CONFIG_RED_LED, 0);
26 at91_set_gpio_value(CONFIG_GREEN_LED, 1);
27}