blob: de2041956b837b1e987156b7277f8840102e6f54 [file] [log] [blame]
Thomas Chou3e6b86b2010-04-30 11:34:14 +08001/*
2 * Status LED driver based on GPIO access conventions of Linux
3 *
4 * Copyright (C) 2010 Thomas Chou <thomas@wytron.com.tw>
Thomas Chouec3b4982010-06-09 13:32:46 +08005 * Licensed under the GPL-2 or later.
Thomas Chou3e6b86b2010-04-30 11:34:14 +08006 */
7
8#include <common.h>
9#include <status_led.h>
10#include <asm/gpio.h>
11
Thomas Chou3e6b86b2010-04-30 11:34:14 +080012void __led_init(led_id_t mask, int state)
13{
Igor Grinberg6516f812013-11-08 01:03:51 +020014 if (gpio_request(mask, "gpio_led") != 0) {
15 printf("%s: failed requesting GPIO%lu!\n", __func__, mask);
16 return;
17 }
18
Thomas Chouec3b4982010-06-09 13:32:46 +080019 gpio_direction_output(mask, state == STATUS_LED_ON);
Thomas Chou3e6b86b2010-04-30 11:34:14 +080020}
21
22void __led_set(led_id_t mask, int state)
23{
Thomas Chouec3b4982010-06-09 13:32:46 +080024 gpio_set_value(mask, state == STATUS_LED_ON);
Thomas Chou3e6b86b2010-04-30 11:34:14 +080025}
26
27void __led_toggle(led_id_t mask)
28{
29 gpio_set_value(mask, !gpio_get_value(mask));
30}