| Milo(Woogyom) Kim | c93d08f | 2013-02-05 18:01:23 +0900 | [diff] [blame] | 1 | /* |
| 2 | * LP55XX Common Driver Header |
| 3 | * |
| 4 | * Copyright (C) 2012 Texas Instruments |
| 5 | * |
| 6 | * Author: Milo(Woogyom) Kim <milo.kim@ti.com> |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or |
| 9 | * modify it under the terms of the GNU General Public License |
| 10 | * version 2 as published by the Free Software Foundation. |
| 11 | * |
| 12 | * Derived from leds-lp5521.c, leds-lp5523.c |
| 13 | */ |
| 14 | |
| 15 | #ifndef _LEDS_LP55XX_COMMON_H |
| 16 | #define _LEDS_LP55XX_COMMON_H |
| 17 | |
| Milo(Woogyom) Kim | 10c06d1 | 2013-02-05 19:17:20 +0900 | [diff] [blame] | 18 | enum lp55xx_engine_index { |
| 19 | LP55XX_ENGINE_INVALID, |
| 20 | LP55XX_ENGINE_1, |
| 21 | LP55XX_ENGINE_2, |
| 22 | LP55XX_ENGINE_3, |
| Milo Kim | 6841a91 | 2013-08-08 12:45:41 +0900 | [diff] [blame^] | 23 | LP55XX_ENGINE_MAX = LP55XX_ENGINE_3, |
| 24 | }; |
| 25 | |
| 26 | enum lp55xx_engine_mode { |
| 27 | LP55XX_ENGINE_DISABLED, |
| 28 | LP55XX_ENGINE_LOAD, |
| 29 | LP55XX_ENGINE_RUN, |
| Milo(Woogyom) Kim | 10c06d1 | 2013-02-05 19:17:20 +0900 | [diff] [blame] | 30 | }; |
| 31 | |
| Milo(Woogyom) Kim | c93d08f | 2013-02-05 18:01:23 +0900 | [diff] [blame] | 32 | struct lp55xx_led; |
| 33 | struct lp55xx_chip; |
| 34 | |
| 35 | /* |
| Milo(Woogyom) Kim | 48068d5 | 2013-02-05 18:08:49 +0900 | [diff] [blame] | 36 | * struct lp55xx_reg |
| 37 | * @addr : Register address |
| 38 | * @val : Register value |
| 39 | */ |
| 40 | struct lp55xx_reg { |
| 41 | u8 addr; |
| 42 | u8 val; |
| 43 | }; |
| 44 | |
| 45 | /* |
| 46 | * struct lp55xx_device_config |
| 47 | * @reset : Chip specific reset command |
| Milo(Woogyom) Kim | e3a700d | 2013-02-05 18:09:56 +0900 | [diff] [blame] | 48 | * @enable : Chip specific enable command |
| Milo(Woogyom) Kim | 0e20234 | 2013-02-05 19:07:34 +0900 | [diff] [blame] | 49 | * @max_channel : Maximum number of channels |
| Milo(Woogyom) Kim | ffbdccd | 2013-02-05 18:57:36 +0900 | [diff] [blame] | 50 | * @post_init_device : Chip specific initialization code |
| Milo(Woogyom) Kim | 9e9b3db | 2013-02-05 19:06:27 +0900 | [diff] [blame] | 51 | * @brightness_work_fn : Brightness work function |
| 52 | * @set_led_current : LED current set function |
| Milo(Woogyom) Kim | 10c06d1 | 2013-02-05 19:17:20 +0900 | [diff] [blame] | 53 | * @firmware_cb : Call function when the firmware is loaded |
| 54 | * @run_engine : Run internal engine for pattern |
| Milo(Woogyom) Kim | 240085e | 2013-02-05 19:20:01 +0900 | [diff] [blame] | 55 | * @dev_attr_group : Device specific attributes |
| Milo(Woogyom) Kim | 48068d5 | 2013-02-05 18:08:49 +0900 | [diff] [blame] | 56 | */ |
| 57 | struct lp55xx_device_config { |
| 58 | const struct lp55xx_reg reset; |
| Milo(Woogyom) Kim | e3a700d | 2013-02-05 18:09:56 +0900 | [diff] [blame] | 59 | const struct lp55xx_reg enable; |
| Milo(Woogyom) Kim | 0e20234 | 2013-02-05 19:07:34 +0900 | [diff] [blame] | 60 | const int max_channel; |
| Milo(Woogyom) Kim | ffbdccd | 2013-02-05 18:57:36 +0900 | [diff] [blame] | 61 | |
| 62 | /* define if the device has specific initialization process */ |
| 63 | int (*post_init_device) (struct lp55xx_chip *chip); |
| Milo(Woogyom) Kim | 9e9b3db | 2013-02-05 19:06:27 +0900 | [diff] [blame] | 64 | |
| 65 | /* access brightness register */ |
| 66 | void (*brightness_work_fn)(struct work_struct *work); |
| 67 | |
| 68 | /* current setting function */ |
| 69 | void (*set_led_current) (struct lp55xx_led *led, u8 led_current); |
| Milo(Woogyom) Kim | 10c06d1 | 2013-02-05 19:17:20 +0900 | [diff] [blame] | 70 | |
| 71 | /* access program memory when the firmware is loaded */ |
| 72 | void (*firmware_cb)(struct lp55xx_chip *chip); |
| 73 | |
| 74 | /* used for running firmware LED patterns */ |
| 75 | void (*run_engine) (struct lp55xx_chip *chip, bool start); |
| Milo(Woogyom) Kim | 240085e | 2013-02-05 19:20:01 +0900 | [diff] [blame] | 76 | |
| 77 | /* additional device specific attributes */ |
| 78 | const struct attribute_group *dev_attr_group; |
| Milo(Woogyom) Kim | 48068d5 | 2013-02-05 18:08:49 +0900 | [diff] [blame] | 79 | }; |
| 80 | |
| 81 | /* |
| Milo Kim | 6841a91 | 2013-08-08 12:45:41 +0900 | [diff] [blame^] | 82 | * struct lp55xx_engine |
| 83 | * @mode : Engine mode |
| 84 | * @led_mux : Mux bits for LED selection. Only used in LP5523 |
| 85 | */ |
| 86 | struct lp55xx_engine { |
| 87 | enum lp55xx_engine_mode mode; |
| 88 | u16 led_mux; |
| 89 | }; |
| 90 | |
| 91 | /* |
| Milo(Woogyom) Kim | c93d08f | 2013-02-05 18:01:23 +0900 | [diff] [blame] | 92 | * struct lp55xx_chip |
| 93 | * @cl : I2C communication for access registers |
| 94 | * @pdata : Platform specific data |
| 95 | * @lock : Lock for user-space interface |
| 96 | * @num_leds : Number of registered LEDs |
| Milo(Woogyom) Kim | 48068d5 | 2013-02-05 18:08:49 +0900 | [diff] [blame] | 97 | * @cfg : Device specific configuration data |
| Milo(Woogyom) Kim | 10c06d1 | 2013-02-05 19:17:20 +0900 | [diff] [blame] | 98 | * @engine_idx : Selected engine number |
| Milo Kim | 6841a91 | 2013-08-08 12:45:41 +0900 | [diff] [blame^] | 99 | * @engines : Engine structure for the device attribute R/W interface |
| Milo(Woogyom) Kim | 10c06d1 | 2013-02-05 19:17:20 +0900 | [diff] [blame] | 100 | * @fw : Firmware data for running a LED pattern |
| Milo(Woogyom) Kim | c93d08f | 2013-02-05 18:01:23 +0900 | [diff] [blame] | 101 | */ |
| 102 | struct lp55xx_chip { |
| 103 | struct i2c_client *cl; |
| Kim, Milo | 53b4192 | 2013-03-20 17:37:00 -0700 | [diff] [blame] | 104 | struct clk *clk; |
| Milo(Woogyom) Kim | c93d08f | 2013-02-05 18:01:23 +0900 | [diff] [blame] | 105 | struct lp55xx_platform_data *pdata; |
| 106 | struct mutex lock; /* lock for user-space interface */ |
| 107 | int num_leds; |
| Milo(Woogyom) Kim | 48068d5 | 2013-02-05 18:08:49 +0900 | [diff] [blame] | 108 | struct lp55xx_device_config *cfg; |
| Milo(Woogyom) Kim | 10c06d1 | 2013-02-05 19:17:20 +0900 | [diff] [blame] | 109 | enum lp55xx_engine_index engine_idx; |
| Milo Kim | 6841a91 | 2013-08-08 12:45:41 +0900 | [diff] [blame^] | 110 | struct lp55xx_engine engines[LP55XX_ENGINE_MAX]; |
| Milo(Woogyom) Kim | 10c06d1 | 2013-02-05 19:17:20 +0900 | [diff] [blame] | 111 | const struct firmware *fw; |
| Milo(Woogyom) Kim | c93d08f | 2013-02-05 18:01:23 +0900 | [diff] [blame] | 112 | }; |
| 113 | |
| 114 | /* |
| 115 | * struct lp55xx_led |
| 116 | * @chan_nr : Channel number |
| 117 | * @cdev : LED class device |
| 118 | * @led_current : Current setting at each led channel |
| 119 | * @max_current : Maximun current at each led channel |
| 120 | * @brightness_work : Workqueue for brightness control |
| 121 | * @brightness : Brightness value |
| 122 | * @chip : The lp55xx chip data |
| 123 | */ |
| 124 | struct lp55xx_led { |
| 125 | int chan_nr; |
| 126 | struct led_classdev cdev; |
| 127 | u8 led_current; |
| 128 | u8 max_current; |
| 129 | struct work_struct brightness_work; |
| 130 | u8 brightness; |
| 131 | struct lp55xx_chip *chip; |
| 132 | }; |
| 133 | |
| 134 | /* register access */ |
| 135 | extern int lp55xx_write(struct lp55xx_chip *chip, u8 reg, u8 val); |
| 136 | extern int lp55xx_read(struct lp55xx_chip *chip, u8 reg, u8 *val); |
| 137 | extern int lp55xx_update_bits(struct lp55xx_chip *chip, u8 reg, |
| 138 | u8 mask, u8 val); |
| 139 | |
| Kim, Milo | 53b4192 | 2013-03-20 17:37:00 -0700 | [diff] [blame] | 140 | /* external clock detection */ |
| 141 | extern bool lp55xx_is_extclk_used(struct lp55xx_chip *chip); |
| 142 | |
| Milo(Woogyom) Kim | 6ce6176 | 2013-02-05 19:03:02 +0900 | [diff] [blame] | 143 | /* common device init/deinit functions */ |
| Milo(Woogyom) Kim | a85908d | 2013-02-05 18:07:20 +0900 | [diff] [blame] | 144 | extern int lp55xx_init_device(struct lp55xx_chip *chip); |
| Milo(Woogyom) Kim | 6ce6176 | 2013-02-05 19:03:02 +0900 | [diff] [blame] | 145 | extern void lp55xx_deinit_device(struct lp55xx_chip *chip); |
| Milo(Woogyom) Kim | a85908d | 2013-02-05 18:07:20 +0900 | [diff] [blame] | 146 | |
| Milo(Woogyom) Kim | 9e9b3db | 2013-02-05 19:06:27 +0900 | [diff] [blame] | 147 | /* common LED class device functions */ |
| 148 | extern int lp55xx_register_leds(struct lp55xx_led *led, |
| 149 | struct lp55xx_chip *chip); |
| Milo(Woogyom) Kim | c3a68eb | 2013-02-05 19:11:18 +0900 | [diff] [blame] | 150 | extern void lp55xx_unregister_leds(struct lp55xx_led *led, |
| 151 | struct lp55xx_chip *chip); |
| Milo(Woogyom) Kim | b3b6f81 | 2013-02-05 19:15:27 +0900 | [diff] [blame] | 152 | |
| 153 | /* common device attributes functions */ |
| 154 | extern int lp55xx_register_sysfs(struct lp55xx_chip *chip); |
| Milo(Woogyom) Kim | ba6fa84 | 2013-02-05 19:23:04 +0900 | [diff] [blame] | 155 | extern void lp55xx_unregister_sysfs(struct lp55xx_chip *chip); |
| Milo(Woogyom) Kim | b3b6f81 | 2013-02-05 19:15:27 +0900 | [diff] [blame] | 156 | |
| Linus Walleij | 7542a04 | 2013-04-23 04:52:59 -0700 | [diff] [blame] | 157 | /* common device tree population function */ |
| 158 | extern int lp55xx_of_populate_pdata(struct device *dev, |
| 159 | struct device_node *np); |
| 160 | |
| Milo(Woogyom) Kim | c93d08f | 2013-02-05 18:01:23 +0900 | [diff] [blame] | 161 | #endif /* _LEDS_LP55XX_COMMON_H */ |