impd1.h 405 B

12345678910111213141516
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #define IMPD1_LEDS 0x0c
  3. #define IMPD1_INT 0x10
  4. #define IMPD1_SW 0x14
  5. #define IMPD1_CTRL 0x18
  6. #define IMPD1_CTRL_DISP_LCD (0 << 0)
  7. #define IMPD1_CTRL_DISP_VGA (1 << 0)
  8. #define IMPD1_CTRL_DISP_LCD1 (2 << 0)
  9. #define IMPD1_CTRL_DISP_ENABLE (1 << 2)
  10. #define IMPD1_CTRL_DISP_MASK (7 << 0)
  11. struct device;
  12. void impd1_tweak_control(struct device *dev, u32 mask, u32 val);