handoff_s10.h 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  1. /* SPDX-License-Identifier: GPL-2.0
  2. *
  3. * Copyright (C) 2016-2018 Intel Corporation <www.intel.com>
  4. *
  5. */
  6. #ifndef _HANDOFF_S10_H_
  7. #define _HANDOFF_S10_H_
  8. /*
  9. * Offset for HW handoff from Quartus tools
  10. */
  11. #define S10_HANDOFF_BASE 0xFFE3F000
  12. #define S10_HANDOFF_MUX (S10_HANDOFF_BASE + 0x10)
  13. #define S10_HANDOFF_IOCTL (S10_HANDOFF_BASE + 0x1A0)
  14. #define S10_HANDOFF_FPGA (S10_HANDOFF_BASE + 0x330)
  15. #define S10_HANODFF_DELAY (S10_HANDOFF_BASE + 0x3F0)
  16. #define S10_HANDOFF_CLOCK (S10_HANDOFF_BASE + 0x580)
  17. #define S10_HANDOFF_MISC (S10_HANDOFF_BASE + 0x610)
  18. #define S10_HANDOFF_MAGIC_MUX 0x504D5558
  19. #define S10_HANDOFF_MAGIC_IOCTL 0x494F4354
  20. #define S10_HANDOFF_MAGIC_FPGA 0x46504741
  21. #define S10_HANDOFF_MAGIC_DELAY 0x444C4159
  22. #define S10_HANDOFF_MAGIC_CLOCK 0x434C4B53
  23. #define S10_HANDOFF_MAGIC_MISC 0x4D495343
  24. #define S10_HANDOFF_OFFSET_LENGTH 0x4
  25. #define S10_HANDOFF_OFFSET_DATA 0x10
  26. #define S10_HANDOFF_CLOCK_OSC (S10_HANDOFF_BASE + 0x608)
  27. #define S10_HANDOFF_CLOCK_FPGA (S10_HANDOFF_BASE + 0x60C)
  28. #define S10_HANDOFF_SIZE 4096
  29. #endif /* _HANDOFF_S10_H_ */