hci.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /* Copyright (c) 2012 GCT Semiconductor, Inc. All rights reserved. */
  3. #ifndef _HCI_H_
  4. #define _HCI_H_
  5. #define LTE_GET_INFORMATION 0x3002
  6. #define LTE_GET_INFORMATION_RESULT 0xB003
  7. #define MAC_ADDRESS 0xA2
  8. #define LTE_LINK_ON_OFF_INDICATION 0xB133
  9. #define LTE_PDN_TABLE_IND 0xB143
  10. #define LTE_TX_SDU 0x3200
  11. #define LTE_RX_SDU 0xB201
  12. #define LTE_TX_MULTI_SDU 0x3202
  13. #define LTE_RX_MULTI_SDU 0xB203
  14. #define LTE_DL_SDU_FLOW_CONTROL 0x3305
  15. #define LTE_UL_SDU_FLOW_CONTROL 0xB306
  16. #define LTE_AT_CMD_TO_DEVICE 0x3307
  17. #define LTE_AT_CMD_FROM_DEVICE 0xB308
  18. #define LTE_SDIO_DM_SEND_PKT 0x3312
  19. #define LTE_SDIO_DM_RECV_PKT 0xB313
  20. #define LTE_NV_RESTORE_REQUEST 0xB30C
  21. #define LTE_NV_RESTORE_RESPONSE 0x330D
  22. #define LTE_NV_SAVE_REQUEST 0xB30E
  23. #define NV_TYPE_LTE_INFO 0x00
  24. #define NV_TYPE_BOARD_CONFIG 0x01
  25. #define NV_TYPE_RF_CAL 0x02
  26. #define NV_TYPE_TEMP 0x03
  27. #define NV_TYPE_NET_INFO 0x04
  28. #define NV_TYPE_SAFETY_INFO 0x05
  29. #define NV_TYPE_CDMA_CAL 0x06
  30. #define NV_TYPE_VENDOR 0x07
  31. #define NV_TYPE_ALL 0xff
  32. #define LTE_NV_SAVE_RESPONSE 0x330F
  33. #define LTE_AT_CMD_TO_DEVICE_EXT 0x3323
  34. #define LTE_AT_CMD_FROM_DEVICE_EXT 0xB324
  35. #endif /* _HCI_H_ */