~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/include/linux/platform_data/leds-lm355x.h

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0-only */
  2 /*
  3  * Copyright (C) 2012 Texas Instruments
  4  *
  5  * Simple driver for Texas Instruments LM355x LED driver chip
  6  *
  7  * Author: G.Shark Jeong <gshark.jeong@gmail.com>
  8  *         Daniel Jeong <daniel.jeong@ti.com>
  9  */
 10 
 11 #define LM355x_NAME "leds-lm355x"
 12 #define LM3554_NAME "leds-lm3554"
 13 #define LM3556_NAME "leds-lm3556"
 14 
 15 /* lm3554 : strobe def. on */
 16 enum lm355x_strobe {
 17         LM355x_PIN_STROBE_DISABLE = 0x00,
 18         LM355x_PIN_STROBE_ENABLE = 0x01,
 19 };
 20 
 21 enum lm355x_torch {
 22         LM355x_PIN_TORCH_DISABLE = 0,
 23         LM3554_PIN_TORCH_ENABLE = 0x80,
 24         LM3556_PIN_TORCH_ENABLE = 0x10,
 25 };
 26 
 27 enum lm355x_tx2 {
 28         LM355x_PIN_TX_DISABLE = 0,
 29         LM3554_PIN_TX_ENABLE = 0x20,
 30         LM3556_PIN_TX_ENABLE = 0x40,
 31 };
 32 
 33 enum lm355x_ntc {
 34         LM355x_PIN_NTC_DISABLE = 0,
 35         LM3554_PIN_NTC_ENABLE = 0x08,
 36         LM3556_PIN_NTC_ENABLE = 0x80,
 37 };
 38 
 39 enum lm355x_pmode {
 40         LM355x_PMODE_DISABLE = 0,
 41         LM355x_PMODE_ENABLE = 0x04,
 42 };
 43 
 44 /*
 45  * struct lm3554_platform_data
 46  * @pin_strobe: strobe input
 47  * @pin_torch : input pin
 48  *              lm3554-tx1/torch/gpio1
 49  *              lm3556-torch
 50  * @pin_tx2   : input pin
 51  *              lm3554-envm/tx2/gpio2
 52  *              lm3556-tx pin
 53  * @ntc_pin  : output pin
 54  *              lm3554-ledi/ntc
 55  *              lm3556-temp pin
 56  * @pass_mode : pass mode
 57  */
 58 struct lm355x_platform_data {
 59         enum lm355x_strobe pin_strobe;
 60         enum lm355x_torch pin_tx1;
 61         enum lm355x_tx2 pin_tx2;
 62         enum lm355x_ntc ntc_pin;
 63 
 64         enum lm355x_pmode pass_mode;
 65 };
 66 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php