zx_vga_regs.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. /*
  2. * Copyright (C) 2017 Sanechips Technology Co., Ltd.
  3. * Copyright 2017 Linaro Ltd.
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. */
  9. #ifndef __ZX_VGA_REGS_H__
  10. #define __ZX_VGA_REGS_H__
  11. #define VGA_CMD_CFG 0x04
  12. #define VGA_CMD_TRANS BIT(6)
  13. #define VGA_CMD_COMBO BIT(5)
  14. #define VGA_CMD_RW BIT(4)
  15. #define VGA_SUB_ADDR 0x0c
  16. #define VGA_DEVICE_ADDR 0x10
  17. #define VGA_CLK_DIV_FS 0x14
  18. #define VGA_RXF_CTRL 0x20
  19. #define VGA_RX_FIFO_CLEAR BIT(7)
  20. #define VGA_DATA 0x24
  21. #define VGA_I2C_STATUS 0x28
  22. #define VGA_DEVICE_DISCONNECTED BIT(7)
  23. #define VGA_DEVICE_CONNECTED BIT(6)
  24. #define VGA_CLEAR_IRQ BIT(4)
  25. #define VGA_TRANS_DONE BIT(0)
  26. #define VGA_RXF_STATUS 0x30
  27. #define VGA_RXF_COUNT_SHIFT 2
  28. #define VGA_RXF_COUNT_MASK GENMASK(7, 2)
  29. #define VGA_AUTO_DETECT_PARA 0x34
  30. #define VGA_AUTO_DETECT_SEL 0x38
  31. #define VGA_DETECT_SEL_HAS_DEVICE BIT(1)
  32. #define VGA_DETECT_SEL_NO_DEVICE BIT(0)
  33. #endif /* __ZX_VGA_REGS_H__ */