pcitest.h 711 B

123456789101112131415161718192021222324
  1. /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2. /**
  3. * pcitest.h - PCI test uapi defines
  4. *
  5. * Copyright (C) 2017 Texas Instruments
  6. * Author: Kishon Vijay Abraham I <kishon@ti.com>
  7. *
  8. */
  9. #ifndef __UAPI_LINUX_PCITEST_H
  10. #define __UAPI_LINUX_PCITEST_H
  11. #define PCITEST_BAR _IO('P', 0x1)
  12. #define PCITEST_LEGACY_IRQ _IO('P', 0x2)
  13. #define PCITEST_MSI _IOW('P', 0x3, int)
  14. #define PCITEST_WRITE _IOW('P', 0x4, unsigned long)
  15. #define PCITEST_READ _IOW('P', 0x5, unsigned long)
  16. #define PCITEST_COPY _IOW('P', 0x6, unsigned long)
  17. #define PCITEST_MSIX _IOW('P', 0x7, int)
  18. #define PCITEST_SET_IRQTYPE _IOW('P', 0x8, int)
  19. #define PCITEST_GET_IRQTYPE _IO('P', 0x9)
  20. #endif /* __UAPI_LINUX_PCITEST_H */