/* Copyright 2018 The Chromium OS Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. * * TI LM3509 LED driver. */ #include "compile_time_macros.h" #include "i2c.h" #include "lm3509.h" inline int lm3509_write(uint8_t reg, uint8_t val) { return i2c_write8(I2C_PORT_KBLIGHT, LM3509_I2C_ADDR, reg, val); } inline int lm3509_read(uint8_t reg, int *val) { return i2c_read8(I2C_PORT_KBLIGHT, LM3509_I2C_ADDR, reg, val); } /* Brightness level (0.0 to 100.0%) to brightness register conversion table */ static const uint16_t lm3509_brightness[32] = { 0, 1, 6, 10, 11, 13, 16, 20, 24, 28, 31, 37, 43, 52, 62, 75, 87, 100, 125, 150, 168, 187, 225, 262, 312, 375, 437, 525, 612, 700, 875, 1000 }; static int brightness_to_bmain(int percent) { int i; int b = percent * 10; for (i = 1; i < sizeof(lm3509_brightness); i++) { int low = lm3509_brightness[i - 1]; int high = lm3509_brightness[i]; if (high < b) continue; /* rounding to the nearest */ return (b - low < high - b) ? i - 1 : i; } /* Brightness is out of range. Return the highest value. */ return i - 1; } int lm3509_power(int enable) { int ret = 0; uint8_t gp = 0, bmain = 0; if (enable) { /* * [2]= set both main and secondary current same * both control by BMAIN. * [1]= enable secondary current sink. * [0]= enable main current sink. */ gp = 0x07; /* * Brightness register * 0x00= 0% * 0x1F= 100% */ bmain = ARRAY_SIZE(lm3509_brightness) - 1; } ret |= lm3509_write(LM3509_REG_GP, gp); ret |= lm3509_write(LM3509_REG_BMAIN, bmain); return ret; } int lm3509_set_brightness(int percent) { /* We don't need to read/mask/write BMAIN because bit6 and 7 are non * functional read only bits. */ return lm3509_write(LM3509_REG_BMAIN, brightness_to_bmain(percent)); } int lm3509_get_brightness(int *percent) { int rv, val; rv = lm3509_read(LM3509_REG_BMAIN, &val); if (rv) return rv; val &= LM3509_BMAIN_MASK; *percent = lm3509_brightness[val] / 10; return EC_SUCCESS; }