Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Ilko Iliev | 61fdb73 | 2009-06-12 21:20:39 +0200 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2007-2008 |
Stelian Pop | 5ee0c7f | 2011-11-01 00:00:39 +0100 | [diff] [blame] | 4 | * Stelian Pop <stelian@popies.net> |
Ilko Iliev | 61fdb73 | 2009-06-12 21:20:39 +0200 | [diff] [blame] | 5 | * Lead Tech Design <www.leadtechdesign.com> |
| 6 | * Ilko Iliev <www.ronetix.at> |
Ilko Iliev | 61fdb73 | 2009-06-12 21:20:39 +0200 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include <common.h> |
Andreas Bießmann | 30263a2 | 2013-11-29 12:13:46 +0100 | [diff] [blame] | 10 | #include <asm/gpio.h> |
Wenyou Yang | 78f8976 | 2016-02-03 10:16:50 +0800 | [diff] [blame] | 11 | #include <asm/arch/clk.h> |
Asen Dimov | 6a59514 | 2011-07-26 04:48:41 +0000 | [diff] [blame] | 12 | #include <asm/arch/gpio.h> |
Ilko Iliev | 61fdb73 | 2009-06-12 21:20:39 +0200 | [diff] [blame] | 13 | |
| 14 | void coloured_LED_init(void) |
| 15 | { |
Wenyou Yang | 78f8976 | 2016-02-03 10:16:50 +0800 | [diff] [blame] | 16 | at91_periph_clk_enable(ATMEL_ID_PIOC); |
Ilko Iliev | 61fdb73 | 2009-06-12 21:20:39 +0200 | [diff] [blame] | 17 | |
Andreas Bießmann | 30263a2 | 2013-11-29 12:13:46 +0100 | [diff] [blame] | 18 | gpio_direction_output(CONFIG_RED_LED, 1); |
| 19 | gpio_direction_output(CONFIG_GREEN_LED, 1); |
| 20 | gpio_direction_output(CONFIG_YELLOW_LED, 1); |
Ilko Iliev | 61fdb73 | 2009-06-12 21:20:39 +0200 | [diff] [blame] | 21 | |
Andreas Bießmann | 30263a2 | 2013-11-29 12:13:46 +0100 | [diff] [blame] | 22 | gpio_set_value(CONFIG_RED_LED, 0); |
| 23 | gpio_set_value(CONFIG_GREEN_LED, 1); |
| 24 | gpio_set_value(CONFIG_YELLOW_LED, 1); |
Ilko Iliev | 61fdb73 | 2009-06-12 21:20:39 +0200 | [diff] [blame] | 25 | } |