hsi_char.h 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2. /*
  3. * Part of the HSI character device driver.
  4. *
  5. * Copyright (C) 2010 Nokia Corporation. All rights reserved.
  6. *
  7. * Contact: Andras Domokos <andras.domokos at nokia.com>
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License
  11. * version 2 as published by the Free Software Foundation.
  12. *
  13. * This program is distributed in the hope that it will be useful, but
  14. * WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  21. * 02110-1301 USA
  22. */
  23. #ifndef __HSI_CHAR_H
  24. #define __HSI_CHAR_H
  25. #include <linux/types.h>
  26. #define HSI_CHAR_MAGIC 'k'
  27. #define HSC_IOW(num, dtype) _IOW(HSI_CHAR_MAGIC, num, dtype)
  28. #define HSC_IOR(num, dtype) _IOR(HSI_CHAR_MAGIC, num, dtype)
  29. #define HSC_IOWR(num, dtype) _IOWR(HSI_CHAR_MAGIC, num, dtype)
  30. #define HSC_IO(num) _IO(HSI_CHAR_MAGIC, num)
  31. #define HSC_RESET HSC_IO(16)
  32. #define HSC_SET_PM HSC_IO(17)
  33. #define HSC_SEND_BREAK HSC_IO(18)
  34. #define HSC_SET_RX HSC_IOW(19, struct hsc_rx_config)
  35. #define HSC_GET_RX HSC_IOW(20, struct hsc_rx_config)
  36. #define HSC_SET_TX HSC_IOW(21, struct hsc_tx_config)
  37. #define HSC_GET_TX HSC_IOW(22, struct hsc_tx_config)
  38. #define HSC_PM_DISABLE 0
  39. #define HSC_PM_ENABLE 1
  40. #define HSC_MODE_STREAM 1
  41. #define HSC_MODE_FRAME 2
  42. #define HSC_FLOW_SYNC 0
  43. #define HSC_ARB_RR 0
  44. #define HSC_ARB_PRIO 1
  45. struct hsc_rx_config {
  46. __u32 mode;
  47. __u32 flow;
  48. __u32 channels;
  49. };
  50. struct hsc_tx_config {
  51. __u32 mode;
  52. __u32 channels;
  53. __u32 speed;
  54. __u32 arb_mode;
  55. };
  56. #endif /* __HSI_CHAR_H */