wcd_spi_ctl_v01.h 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /* Copyright (c) 2018-2019, The Linux Foundation. All rights reserved.
  2. *
  3. * This program is free software; you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License version 2 and
  5. * only version 2 as published by the Free Software Foundation.
  6. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. *
  12. */
  13. #ifndef WCD_SPI_CTL_V01_H
  14. #define WCD_SPI_CTL_V01_H
  15. #define WCD_SPI_CTL_SERVICE_ID_V01 0x421
  16. #define WCD_SPI_CTL_SERVICE_VERS_V01 0x01
  17. #define WCD_SPI_BUFF_RESP_V01 0x0022
  18. #define WCD_SPI_REL_ACCESS_RESP_V01 0x0021
  19. #define WCD_SPI_REQ_ACCESS_MSG_V01 0x0020
  20. #define WCD_SPI_BUFF_MSG_V01 0x0022
  21. #define WCD_SPI_REL_ACCESS_MSG_V01 0x0021
  22. #define WCD_SPI_REQ_ACCESS_RESP_V01 0x0020
  23. #define WCD_SPI_BUFF_CHANNELS_MAX_V01 0x08
  24. #define WCD_SPI_REQ_DATA_TRANSFER_V01 ((u64)0x01ULL)
  25. #define WCD_SPI_REQ_CONCURRENCY_V01 ((u64)0x02ULL)
  26. #define WCD_SPI_REQ_REMOTE_DOWN_V01 ((u64)0x04ULL)
  27. struct wcd_spi_req_access_msg_v01 {
  28. u8 reason_valid;
  29. u64 reason;
  30. };
  31. #define WCD_SPI_REQ_ACCESS_MSG_V01_MAX_MSG_LEN 11
  32. extern struct elem_info wcd_spi_req_access_msg_v01_ei[];
  33. struct wcd_spi_req_access_resp_v01 {
  34. struct qmi_response_type_v01 resp;
  35. };
  36. #define WCD_SPI_REQ_ACCESS_RESP_V01_MAX_MSG_LEN 7
  37. extern struct elem_info wcd_spi_req_access_resp_v01_ei[];
  38. struct wcd_spi_rel_access_msg_v01 {
  39. char placeholder;
  40. };
  41. #define WCD_SPI_REL_ACCESS_MSG_V01_MAX_MSG_LEN 0
  42. extern struct elem_info wcd_spi_rel_access_msg_v01_ei[];
  43. struct wcd_spi_rel_access_resp_v01 {
  44. struct qmi_response_type_v01 resp;
  45. };
  46. #define WCD_SPI_REL_ACCESS_RESP_V01_MAX_MSG_LEN 7
  47. extern struct elem_info wcd_spi_rel_access_resp_v01_ei[];
  48. struct wcd_spi_buff_msg_v01 {
  49. u32 buff_addr_1[WCD_SPI_BUFF_CHANNELS_MAX_V01];
  50. u8 buff_addr_2_valid;
  51. u32 buff_addr_2[WCD_SPI_BUFF_CHANNELS_MAX_V01];
  52. };
  53. #define WCD_SPI_BUFF_MSG_V01_MAX_MSG_LEN 70
  54. extern struct elem_info wcd_spi_buff_msg_v01_ei[];
  55. struct wcd_spi_buff_resp_v01 {
  56. struct qmi_response_type_v01 resp;
  57. };
  58. #define WCD_SPI_BUFF_RESP_V01_MAX_MSG_LEN 7
  59. extern struct elem_info wcd_spi_buff_resp_v01_ei[];
  60. #endif