drm/atomic-helper: document drm_atomic_helper_check() restrictions
[drm/drm-misc.git] / include / linux / platform_data / lm8323.h
blob311999260614bc7a095bccd5ce0df4ab9f060a46
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3 * lm8323.h - Configuration for LM8323 keypad driver.
4 */
6 #ifndef __LINUX_LM8323_H
7 #define __LINUX_LM8323_H
9 #include <linux/types.h>
12 * Largest keycode that the chip can send, plus one,
13 * so keys can be mapped directly at the index of the
14 * LM8323 keycode instead of subtracting one.
16 #define LM8323_KEYMAP_SIZE (0x7f + 1)
18 #define LM8323_NUM_PWMS 3
20 struct lm8323_platform_data {
21 int debounce_time; /* Time to watch for key bouncing, in ms. */
22 int active_time; /* Idle time until sleep, in ms. */
24 int size_x;
25 int size_y;
26 bool repeat;
27 const unsigned short *keymap;
29 const char *pwm_names[LM8323_NUM_PWMS];
31 const char *name; /* Device name. */
34 #endif /* __LINUX_LM8323_H */