blob: 432e74125c6828614701a1173975d2cd1fbcd823 [file] [log] [blame]
Tom Rix2c155132009-06-28 12:52:30 -05001/*
2 * Copyright (c) 2009 Wind River Systems, Inc.
3 * Tom Rix <Tom.Rix at windriver.com>
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Tom Rix2c155132009-06-28 12:52:30 -05006 *
7 * twl4030_led_init is from cpu/omap3/common.c, power_init_r
8 *
9 * (C) Copyright 2004-2008
10 * Texas Instruments, <www.ti.com>
11 *
12 * Author :
13 * Sunil Kumar <sunilsaini05 at gmail.com>
14 * Shashi Ranjan <shashiranjanmca05 at gmail.com>
15 *
16 * Derived from Beagle Board and 3430 SDP code by
17 * Richard Woodruff <r-woodruff2 at ti.com>
18 * Syed Mohammed Khasim <khasim at ti.com>
Tom Rix2c155132009-06-28 12:52:30 -050019 */
20
21#include <twl4030.h>
22
Grazvydas Ignotasead39d72009-12-10 17:10:21 +020023void twl4030_led_init(unsigned char ledon_mask)
Tom Rix2c155132009-06-28 12:52:30 -050024{
Grazvydas Ignotasead39d72009-12-10 17:10:21 +020025 /* LEDs need to have corresponding PWMs enabled */
26 if (ledon_mask & TWL4030_LED_LEDEN_LEDAON)
27 ledon_mask |= TWL4030_LED_LEDEN_LEDAPWM;
28 if (ledon_mask & TWL4030_LED_LEDEN_LEDBON)
29 ledon_mask |= TWL4030_LED_LEDEN_LEDBPWM;
Tom Rix2c155132009-06-28 12:52:30 -050030
Nishanth Menon0208aaf2013-03-26 05:20:49 +000031 twl4030_i2c_write_u8(TWL4030_CHIP_LED, TWL4030_LED_LEDEN,
32 ledon_mask);
Tom Rix2c155132009-06-28 12:52:30 -050033
34}