testmode_i.h 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /*
  2. * Copyright (c) 2014 Qualcomm Atheros, Inc.
  3. *
  4. * Permission to use, copy, modify, and/or distribute this software for any
  5. * purpose with or without fee is hereby granted, provided that the above
  6. * copyright notice and this permission notice appear in all copies.
  7. *
  8. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  9. * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  10. * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  11. * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  12. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  13. * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  14. * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  15. */
  16. /* "API" level of the ath10k testmode interface. Bump it after every
  17. * incompatible interface change.
  18. */
  19. #define ATH10K_TESTMODE_VERSION_MAJOR 1
  20. /* Bump this after every _compatible_ interface change, for example
  21. * addition of a new command or an attribute.
  22. */
  23. #define ATH10K_TESTMODE_VERSION_MINOR 0
  24. #define ATH10K_TM_DATA_MAX_LEN 5000
  25. enum ath10k_tm_attr {
  26. __ATH10K_TM_ATTR_INVALID = 0,
  27. ATH10K_TM_ATTR_CMD = 1,
  28. ATH10K_TM_ATTR_DATA = 2,
  29. ATH10K_TM_ATTR_WMI_CMDID = 3,
  30. ATH10K_TM_ATTR_VERSION_MAJOR = 4,
  31. ATH10K_TM_ATTR_VERSION_MINOR = 5,
  32. /* keep last */
  33. __ATH10K_TM_ATTR_AFTER_LAST,
  34. ATH10K_TM_ATTR_MAX = __ATH10K_TM_ATTR_AFTER_LAST - 1,
  35. };
  36. /* All ath10k testmode interface commands specified in
  37. * ATH10K_TM_ATTR_CMD
  38. */
  39. enum ath10k_tm_cmd {
  40. /* Returns the supported ath10k testmode interface version in
  41. * ATH10K_TM_ATTR_VERSION. Always guaranteed to work. User space
  42. * uses this to verify it's using the correct version of the
  43. * testmode interface
  44. */
  45. ATH10K_TM_CMD_GET_VERSION = 0,
  46. /* Boots the UTF firmware, the netdev interface must be down at the
  47. * time.
  48. */
  49. ATH10K_TM_CMD_UTF_START = 1,
  50. /* Shuts down the UTF firmware and puts the driver back into OFF
  51. * state.
  52. */
  53. ATH10K_TM_CMD_UTF_STOP = 2,
  54. /* The command used to transmit a WMI command to the firmware and
  55. * the event to receive WMI events from the firmware. Without
  56. * struct wmi_cmd_hdr header, only the WMI payload. Command id is
  57. * provided with ATH10K_TM_ATTR_WMI_CMDID and payload in
  58. * ATH10K_TM_ATTR_DATA.
  59. */
  60. ATH10K_TM_CMD_WMI = 3,
  61. };