hci_acts.c 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. /*
  2. * Copyright (c) 2020 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief Bluetooth hci driver
  9. */
  10. #include <errno.h>
  11. #include <kernel.h>
  12. #include <device.h>
  13. #include <init.h>
  14. #include <sys/printk.h>
  15. #include <sys/byteorder.h>
  16. #ifdef CONFIG_ACTS_BT
  17. #include <acts_bluetooth/buf.h>
  18. #include <acts_bluetooth/bluetooth.h>
  19. #include <acts_bluetooth/hci.h>
  20. #else
  21. #include <bluetooth/buf.h>
  22. #include <bluetooth/bluetooth.h>
  23. #include <bluetooth/hci.h>
  24. #endif
  25. #include <drivers/bluetooth/hci_driver.h>
  26. #include <drivers/bluetooth/bt_drv.h>
  27. static struct net_buf *buf;
  28. static uint8_t *hci_get_buf(uint8_t type, uint8_t evt, uint16_t exp_len)
  29. {
  30. switch (type) {
  31. case HCI_EVT:
  32. if (exp_len) {
  33. buf = bt_buf_get_evt_len(evt, false, K_NO_WAIT, exp_len);
  34. } else {
  35. buf = bt_buf_get_evt(evt, false, K_NO_WAIT);
  36. }
  37. break;
  38. case HCI_ACL:
  39. if (exp_len) {
  40. buf = bt_buf_get_rx_len(BT_BUF_ACL_IN, K_NO_WAIT, exp_len);
  41. } else {
  42. buf = bt_buf_get_rx(BT_BUF_ACL_IN, K_NO_WAIT);
  43. }
  44. break;
  45. case HCI_SCO:
  46. if (exp_len) {
  47. buf = bt_buf_get_rx_len(BT_BUF_SCO_IN, K_NO_WAIT, exp_len);
  48. } else {
  49. buf = bt_buf_get_rx(BT_BUF_SCO_IN, K_NO_WAIT);
  50. }
  51. break;
  52. case HCI_ISO:
  53. if (exp_len) {
  54. buf = bt_buf_get_rx_len(BT_BUF_ISO_IN, K_NO_WAIT, exp_len);
  55. } else {
  56. buf = bt_buf_get_rx(BT_BUF_ISO_IN, K_NO_WAIT);
  57. }
  58. break;
  59. default:
  60. buf = NULL;
  61. break;
  62. }
  63. if (!buf) {
  64. printk("Error to get buf!\n");
  65. return NULL;
  66. }
  67. return buf->data;
  68. }
  69. /* process hci rx buf */
  70. static int hci_recv(uint16_t len)
  71. {
  72. if (buf) {
  73. net_buf_add(buf, len);
  74. return bt_recv(buf);
  75. } else {
  76. printk("hci_recv buf NULL!\n");
  77. return -ENOMEM;
  78. }
  79. }
  80. static int acts_hci_send(struct net_buf *buf)
  81. {
  82. int err = 0;
  83. uint8_t type = 0;
  84. if (buf == NULL) {
  85. return -EINVAL;
  86. }
  87. switch (bt_buf_get_type(buf)) {
  88. case BT_BUF_CMD:
  89. type = HCI_CMD;
  90. break;
  91. case BT_BUF_ACL_OUT:
  92. type = HCI_ACL;
  93. break;
  94. case BT_BUF_SCO_OUT:
  95. type = HCI_SCO;
  96. break;
  97. case BT_BUF_ISO_OUT:
  98. type = HCI_ISO;
  99. break;
  100. default:
  101. printk("unknown buf type\n");
  102. break;
  103. }
  104. err = btdrv_send(type, buf->data, buf->len);
  105. net_buf_unref(buf); //should unref buf
  106. return err;
  107. }
  108. static const btdrv_hci_cb_t cb = {
  109. .get_buf = hci_get_buf,
  110. .recv = hci_recv,
  111. };
  112. static int acts_hci_open(void)
  113. {
  114. return btdrv_init((btdrv_hci_cb_t *)&cb);
  115. }
  116. static const struct bt_hci_driver drv = {
  117. .name = "H:ACTS",
  118. .bus = BT_HCI_DRIVER_BUS_VIRTUAL,
  119. .quirks = BT_QUIRK_NO_AUTO_DLE, /* Controller does not auto-initiate a DLE procedure */
  120. .open = acts_hci_open,
  121. .send = acts_hci_send,
  122. };
  123. static int bt_acts_init(const struct device *unused)
  124. {
  125. ARG_UNUSED(unused);
  126. printk("bt hci drv register\n");
  127. bt_hci_driver_register(&drv);
  128. return 0;
  129. }
  130. SYS_INIT(bt_acts_init, POST_KERNEL, CONFIG_KERNEL_INIT_PRIORITY_DEVICE);