1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * lm8323.h - Configuration for LM8323 keypad driver.
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. */
27 const unsigned short *keymap
;
29 const char *pwm_names
[LM8323_NUM_PWMS
];
31 const char *name
; /* Device name. */
34 #endif /* __LINUX_LM8323_H */