stm.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*
  2. * System Trace Module (STM) userspace interfaces
  3. * Copyright (c) 2014, Intel Corporation.
  4. *
  5. * This program is free software; you can redistribute it and/or modify it
  6. * under the terms and conditions of the GNU General Public License,
  7. * version 2, as published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope it will be useful, but WITHOUT
  10. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  12. * more details.
  13. *
  14. * STM class implements generic infrastructure for System Trace Module devices
  15. * as defined in MIPI STPv2 specification.
  16. */
  17. #ifndef _UAPI_LINUX_STM_H
  18. #define _UAPI_LINUX_STM_H
  19. #include <linux/types.h>
  20. /**
  21. * struct stp_policy_id - identification for the STP policy
  22. * @size: size of the structure including real id[] length
  23. * @master: assigned master
  24. * @channel: first assigned channel
  25. * @width: number of requested channels
  26. * @id: identification string
  27. *
  28. * User must calculate the total size of the structure and put it into
  29. * @size field, fill out the @id and desired @width. In return, kernel
  30. * fills out @master, @channel and @width.
  31. */
  32. struct stp_policy_id {
  33. __u32 size;
  34. __u16 master;
  35. __u16 channel;
  36. __u16 width;
  37. /* padding */
  38. __u16 __reserved_0;
  39. __u32 __reserved_1;
  40. char id[0];
  41. };
  42. #define STP_POLICY_ID_SET _IOWR('%', 0, struct stp_policy_id)
  43. #define STP_POLICY_ID_GET _IOR('%', 1, struct stp_policy_id)
  44. #define STP_SET_OPTIONS _IOW('%', 2, __u64)
  45. #endif /* _UAPI_LINUX_STM_H */