ipmsg_btc.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597
  1. /*
  2. * Copyright (c) 2020 Actions Technology Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <errno.h>
  7. #include <string.h>
  8. #include <device.h>
  9. #include <soc.h>
  10. #include <drivers/ipmsg.h>
  11. #include <sdfs.h>
  12. #include <board_cfg.h>
  13. #include <soc_atp.h>
  14. #include <sys/byteorder.h>
  15. #define DEBUGSEL (0x40068400)
  16. #define DEBUGOE0 (0x40068420)
  17. #define HOSC_CTL_HOSCI_CAP_SHIFT 24
  18. #define HOSC_CTL_HOSCI_CAP(x) ((x) << HOSC_CTL_HOSCI_CAP_SHIFT)
  19. #define HOSC_CTL_HOSCI_CAP_MASK HOSC_CTL_HOSCI_CAP(0xff)
  20. #define HOSC_CTL_HOSCO_CAP_SHIFT 16
  21. #define HOSC_CTL_HOSCO_CAP(x) ((x) << HOSC_CTL_HOSCO_CAP_SHIFT)
  22. #define HOSC_CTL_HOSCO_CAP_MASK HOSC_CTL_HOSCO_CAP(0xff)
  23. #define HOSC_CTL_HGMC_SHIFT 8
  24. #define HOSC_CTL_HGMC_MASK (0x3 << HOSC_CTL_HGMC_SHIFT)
  25. /* CMU_MEMCLKEN1 */
  26. #define BT_ROM_RAM_CLK_EN BIT(16)
  27. /* CMU_MEMCLKSRC1 */
  28. #define BT_RAM_CLK_SRC BIT(16)
  29. /* CMU_S1CLKCTL */
  30. #define RC64M_S1EN BIT(2)
  31. #define HOSC_S1EN BIT(1)
  32. #define RC4M_S1EN BIT(0)
  33. /* CMU_S1BTCLKCTL */
  34. #define RC64M_S1BTEN BIT(2)
  35. #define HOSC_S1BTEN BIT(1)
  36. #define RC4M_S1BTEN BIT(0)
  37. /* CMU_DEVCLKEN1 */
  38. #define BTHUB_RC32KEN BIT(28)
  39. #define BTHUB_RC64MEN BIT(27)
  40. #define BTHUB_HOSCEN BIT(26)
  41. #define BTHUB_RC4MEN BIT(25)
  42. #define BTHUB_LOSCEN BIT(24)
  43. #define JTAG_CTL_BTSWEN BIT(20)
  44. /* DEBUGSEL */
  45. #define DBGSE_SHIFT 0
  46. #define DBGSE(x) ((x) << DBGSE_SHIFT)
  47. #define DBGSE_BT_CONTROLLER DBGSE(0x27)
  48. #if defined(CONFIG_BTC_FW_IN_NAND)
  49. #define BT_RF_FILE "/NAND:K/bt_rf.bin"
  50. #define BT_TABLE_FILE "/NAND:K/bttbl.bin"
  51. #define BT_PATCH_FILE "/NAND:K/bt_pth.bin"
  52. #elif defined(CONFIG_BTC_FW_IN_SD)
  53. #define BT_RF_FILE "/SD:K/bt_rf.bin"
  54. #define BT_TABLE_FILE "/SD:K/bttbl.bin"
  55. #define BT_PATCH_FILE "/SD:K/bt_pth.bin"
  56. #elif defined(CONFIG_BTC_FW_IN_NOR_EXT)
  57. #define BT_RF_FILE "/NOR:K/bt_rf.bin"
  58. #define BT_TABLE_FILE "/NOR:K/bttbl.bin"
  59. #define BT_PATCH_FILE "/NOR:K/bt_pth.bin"
  60. #else
  61. #define BT_RF_FILE "bt_rf.bin"
  62. #define BT_TABLE_FILE "bttbl.bin"
  63. #define BT_PATCH_FILE "bt_pth.bin"
  64. #endif
  65. #define BT_RAM1_ADDR (0x01208000)
  66. #define BT_RAM_TABLE_ADDR (0x01200000)
  67. #define BT_RAM_PATCH_ADDR (0x01201310)
  68. /* Config pos from bt_table_config.txt */
  69. #define BT_MAX_RF_POWER_POS_1 0x22 /* tx_max_pwr_lvl */
  70. #define BT_DEFAULT_TX_POWER 0x23
  71. #define BT_MAX_RF_POWER_POS_2 0x25 /* tws_max_pwr_lvl */
  72. #define BT_CFG_WAKEUP_ADVANCE_POS 0x26
  73. #define BT_BLE_RF_POWER_POS 0x29 /* le_tx_pwr_lvl */
  74. #define BT_CFG_FIX_MAX_PWR_POS 0x40
  75. #define BT_CFG_FIX_MAX_PWR_BIT 0x3
  76. #define BT_CFG_SEL_32768_POS 0x42
  77. #define BT_CFG_SEL_32768_BIT 0x0 /* Set to 1 */
  78. #define BT_CFG_FORCE_LIGHT_SLEEP_POS 0x42
  79. #define BT_CFG_FORCE_LIGHT_SLEEP_BIT 0x5 /* Set to 0 */
  80. #define BT_CFG_LE_USING_US_TIMER_POS 0x43
  81. #define BT_CFG_LE_USING_US_TIMER_BIT 0x1 /* Power test set to 0, normal run set to 1, default value 1 */
  82. #define BT_CFG_FORCE_UART_PRINT_POS 0x42
  83. #define BT_CFG_FORCE_UART_PRINT_BIT 0x7 /* Set to 0 */
  84. #define BT_CFG_TRANS_EN_POS 0x43
  85. #define BT_CFG_TRANS_EN_BIT 0x5 /* Set to 1 */
  86. #define BT_CFG_SEL_RC32K_POS 0x44
  87. #define BT_CFG_SEL_RC32K_BIT 0x2 /* Set to 0 */
  88. #define BT_CFG_UART_BAUD_RATE_POS 0x4C /* 0x4c, 0x4d,0x4e,0x4f Little-endian */
  89. #define BT_CFG_UART_BAUD_RATE 2000000 /* 2M */
  90. #define BT_CFG_EFUSE_SET_POS 0x43
  91. #define BT_CFG_EFUSE_SET_BIT 0x4
  92. #define BT_CFG_EFUSE_AVDD_IF_POS 0x50
  93. #define BT_CFG_EFUSE_POWER_VER_POS 0x54
  94. #define BT_CFG_EFUSE_RF_POS 0x58
  95. #define BT_DCDC_MODE 0
  96. #define EFUSE_POWER_VER 0
  97. #define EFUSE_RF 1
  98. #define EFUSE_AVDD_IF 2
  99. struct ipmsg_btc_config {
  100. void *mem_base;
  101. uint32_t mem_size;
  102. };
  103. struct ipmsg_btc_data {
  104. ipmsg_callback_t btc_cb;
  105. ipmsg_callback_t tws0_cb;
  106. ipmsg_callback_t tws1_cb;
  107. ipmsg_pm_ctrl_callback_t pm_ctrl_cb;
  108. };
  109. static ipmsg_btc_init_param_t btc_set_param;
  110. DEVICE_DECLARE(btc);
  111. #ifdef CONFIG_BT_CTRL_DEBUG
  112. #ifndef CONFIG_BT_CTRL_LOG
  113. #define BT_UART_MFP_SEL 23
  114. #ifdef CONFIG_BOARD_LARK_DVB_EARPHONE
  115. static const struct acts_pin_config btc_pin_cfg_uart[] = {
  116. {28, BT_UART_MFP_SEL | GPIO_CTL_PADDRV_LEVEL(1) | GPIO_CTL_PULLUP},
  117. {29, BT_UART_MFP_SEL | GPIO_CTL_PADDRV_LEVEL(1) | GPIO_CTL_PULLUP},
  118. };
  119. #else
  120. static const struct acts_pin_config btc_pin_cfg_uart[] = {
  121. {34, BT_UART_MFP_SEL | GPIO_CTL_PADDRV_LEVEL(1) | GPIO_CTL_PULLUP},
  122. {35, BT_UART_MFP_SEL | GPIO_CTL_PADDRV_LEVEL(1) | GPIO_CTL_PULLUP},
  123. };
  124. #endif
  125. #endif
  126. #ifdef CONFIG_BT_CTRL_BLE_BQB
  127. #define BT_ANT_SW_SEL 23
  128. static const struct acts_pin_config btc_pin_cfg_bqb[] = {
  129. {56, BT_ANT_SW_SEL | GPIO_CTL_GPIO_OUTEN},
  130. {57, BT_ANT_SW_SEL | GPIO_CTL_GPIO_OUTEN},
  131. };
  132. #endif
  133. #endif
  134. static void ipmsg_btc_isr(void *arg)
  135. {
  136. struct device *dev = (struct device *)arg;
  137. struct ipmsg_btc_data *data = dev->data;
  138. //clear irq pending
  139. sys_write32(1, PENDING_FROM_BT_CPU);
  140. if (data->btc_cb) {
  141. data->btc_cb(NULL, NULL);
  142. }
  143. }
  144. static void ipmsg_tws0_isr(void *arg)
  145. {
  146. struct device *dev = (struct device *)arg;
  147. struct ipmsg_btc_data *data = dev->data;
  148. if (data->tws0_cb) {
  149. data->tws0_cb(NULL, NULL);
  150. }
  151. }
  152. static void ipmsg_tws1_isr(void *arg)
  153. {
  154. struct device *dev = (struct device *)arg;
  155. struct ipmsg_btc_data *data = dev->data;
  156. if (data->tws1_cb) {
  157. data->tws1_cb(NULL, NULL);
  158. }
  159. }
  160. static void ipmsg_btc_init_param(struct device *dev, void *param)
  161. {
  162. memcpy(&btc_set_param, param, sizeof(btc_set_param));
  163. }
  164. static int sd_load(const char *filename, void *dst)
  165. {
  166. struct sd_file *sdf;
  167. int ret;
  168. sdf = sd_fopen(filename);
  169. if (!sdf) {
  170. return -EINVAL;
  171. }
  172. ret = sd_fread(sdf, dst, sdf->size);
  173. printk("%s size: %d, load: %d\n", filename, sdf->size, ret);
  174. if (ret == sdf->size) {
  175. ret = 0;
  176. } else {
  177. printk("load %s failed!\n", filename);
  178. ret = -EINVAL;
  179. }
  180. sd_fclose(sdf);
  181. return ret;
  182. }
  183. #ifdef CONFIG_SD_FS
  184. static void ipmsg_btc_update_bt_table(void *table_addr)
  185. {
  186. int err;
  187. uint32_t calib_val = 0;
  188. uint8_t *start = table_addr;
  189. printk("Befor set 0x42 = 0x%x 0x43 = 0x%x 0x44 = 0x%x\n", start[0x42], start[0x43], start[0x44]);
  190. err = soc_atp_get_rf_calib(EFUSE_AVDD_IF, &calib_val);
  191. if (err == 0) {
  192. sys_put_le32(calib_val, &start[BT_CFG_EFUSE_AVDD_IF_POS]);
  193. } else {
  194. printk("get efuse avdd if failed %d", err);
  195. }
  196. err = soc_atp_get_rf_calib(EFUSE_POWER_VER, &calib_val);
  197. if (err == 0) {
  198. sys_put_le32(calib_val, &start[BT_CFG_EFUSE_POWER_VER_POS]);
  199. } else {
  200. printk("get efuse power version failed %d", err);
  201. }
  202. err = soc_atp_get_rf_calib(EFUSE_RF, &calib_val);
  203. if (err == 0) {
  204. sys_put_le32(calib_val, &start[BT_CFG_EFUSE_RF_POS]);
  205. } else {
  206. printk("get efuse rf failed %d", err);
  207. }
  208. start[BT_CFG_EFUSE_SET_POS] = (start[BT_CFG_EFUSE_SET_POS] | BIT(BT_CFG_EFUSE_SET_BIT));
  209. #ifdef CONFIG_IPMSG_BTC_SEL_32K
  210. start[BT_CFG_SEL_32768_POS] = (start[BT_CFG_SEL_32768_POS] | (0x1 << BT_CFG_SEL_32768_BIT)); /* Set 1 */
  211. #else
  212. start[BT_CFG_SEL_32768_POS] = (start[BT_CFG_SEL_32768_POS] & (~(0x1 << BT_CFG_SEL_32768_BIT))); /* Set 0 */
  213. #endif
  214. start[BT_CFG_FORCE_LIGHT_SLEEP_POS] = (start[BT_CFG_FORCE_LIGHT_SLEEP_POS] & (~(0x1 << BT_CFG_FORCE_LIGHT_SLEEP_BIT))); /* Set 0 */
  215. #ifdef CONFIG_BT_POWER_TEST_MODE
  216. start[BT_CFG_LE_USING_US_TIMER_POS] = (start[BT_CFG_LE_USING_US_TIMER_POS] & (~(0x1 << BT_CFG_LE_USING_US_TIMER_BIT))); /* Set 0 */
  217. #endif
  218. #ifdef CONFIG_BT_CTRL_LOG
  219. start[BT_CFG_FORCE_UART_PRINT_POS] = (start[BT_CFG_FORCE_UART_PRINT_POS] & (~(0x1 << BT_CFG_FORCE_UART_PRINT_BIT))); /* Set 0 */
  220. #else
  221. start[BT_CFG_FORCE_UART_PRINT_POS] = (start[BT_CFG_FORCE_UART_PRINT_POS] | (0x1 << BT_CFG_FORCE_UART_PRINT_BIT)); /* Set 1 */
  222. #endif
  223. #ifdef CONFIG_BT_TRANSMIT
  224. start[BT_CFG_TRANS_EN_POS] = (start[BT_CFG_TRANS_EN_POS] | (0x1 << BT_CFG_TRANS_EN_BIT));
  225. #endif
  226. start[BT_CFG_SEL_RC32K_POS] = (start[BT_CFG_SEL_RC32K_POS] & (~(0x1 << BT_CFG_SEL_RC32K_BIT)));
  227. //start[BT_CFG_WAKEUP_ADVANCE_POS] = 0x04;
  228. #ifndef CONFIG_BOARD_LARK_DVB_EARPHONE
  229. start[BT_CFG_UART_BAUD_RATE_POS] = (uint8_t)(BT_CFG_UART_BAUD_RATE & 0xFF);
  230. start[BT_CFG_UART_BAUD_RATE_POS + 1] = (uint8_t)((BT_CFG_UART_BAUD_RATE >> 8) & 0xFF);
  231. start[BT_CFG_UART_BAUD_RATE_POS + 2] = (uint8_t)((BT_CFG_UART_BAUD_RATE >> 16) & 0xFF);
  232. start[BT_CFG_UART_BAUD_RATE_POS + 3] = (uint8_t)((BT_CFG_UART_BAUD_RATE >> 24) & 0xFF);
  233. printk("Bt uart rate %d\n", BT_CFG_UART_BAUD_RATE);
  234. #endif
  235. if (btc_set_param.set_max_rf_power) {
  236. start[BT_MAX_RF_POWER_POS_1] = btc_set_param.bt_max_rf_tx_power;
  237. start[BT_MAX_RF_POWER_POS_2] = btc_set_param.bt_max_rf_tx_power;
  238. printk("max rf power %d\n", btc_set_param.bt_max_rf_tx_power);
  239. #if 0
  240. /* Fixed tx power */
  241. #define BT_FIX_POWER_LEVEL 38 /* 8db */
  242. start[BT_MAX_RF_POWER_POS_1] = BT_FIX_POWER_LEVEL;
  243. start[BT_MAX_RF_POWER_POS_2] = BT_FIX_POWER_LEVEL;
  244. start[BT_DEFAULT_TX_POWER] = BT_FIX_POWER_LEVEL;
  245. start[BT_CFG_FIX_MAX_PWR_POS] = start[BT_CFG_FIX_MAX_PWR_POS] | (0x1 << BT_CFG_FIX_MAX_PWR_BIT);
  246. printk("After set 0x22 = %d 0x23 = %d 0x25 = %d\n", start[0x22], start[0x23], start[0x25]);
  247. printk("After set 0x40 = 0x%x\n", start[BT_CFG_FIX_MAX_PWR_POS]);
  248. #endif
  249. }
  250. if (btc_set_param.set_ble_rf_power) {
  251. start[BT_BLE_RF_POWER_POS] = btc_set_param.ble_rf_tx_power;
  252. printk("ble rf tx power %d\n", start[BT_BLE_RF_POWER_POS]);
  253. }
  254. printk("After set 0x42 = 0x%x 0x43 = 0x%x 0x44 = 0x%x\n", start[0x42], start[0x43], start[0x44]);
  255. }
  256. #endif
  257. static int ipmsg_btc_load(struct device *dev, void *data, uint32_t size)
  258. {
  259. uint32_t val;
  260. int err = 0;
  261. const struct ipmsg_btc_config *config = dev->config;
  262. if (size > config->mem_size) {
  263. return -EINVAL;
  264. }
  265. val = sys_read32(CMU_MEMCLKSRC1) & ~BT_RAM_CLK_SRC;
  266. sys_write32(val, CMU_MEMCLKSRC1);
  267. #ifdef CONFIG_SD_FS
  268. #ifdef CONFIG_BT_CTRL_RF_DEBUG
  269. err = sd_load(BT_RF_FILE, (void *)BT_RAM1_ADDR);
  270. if (err) {
  271. return -EINVAL;
  272. }
  273. #endif
  274. err = sd_load(BT_TABLE_FILE, (void *)BT_RAM_TABLE_ADDR); /* load bt config table */
  275. ipmsg_btc_update_bt_table((void *)BT_RAM_TABLE_ADDR);
  276. err |= sd_load(BT_PATCH_FILE, (void *)BT_RAM_PATCH_ADDR); /* load bt patch */
  277. #else
  278. memcpy(config->mem_base, data, size);
  279. #endif
  280. return err;
  281. }
  282. /* Start BT CPU */
  283. static inline int ipmsg_btc_start(struct device *dev, uint32_t *send_id, uint32_t *recv_id)
  284. {
  285. uint32_t val;
  286. volatile int loop = 400;
  287. ARG_UNUSED(dev);
  288. /* Start up not need wait */
  289. //sys_write32(0x00640015, HOSCLDO_CTL);
  290. //while(loop)loop--;
  291. sys_write32(0x0164000C, HOSCLDO_CTL);
  292. val = sys_read32(HOSC_CTL) & (HOSC_CTL_HOSCI_CAP_MASK | HOSC_CTL_HOSCO_CAP_MASK);
  293. val |= 0x7030;
  294. sys_write32(val, HOSC_CTL);
  295. if (btc_set_param.set_hosc_cap) {
  296. val = sys_read32(HOSCLDO_CTL);
  297. val &= 0xFFFF;
  298. val |= (btc_set_param.hosc_capacity << 16);
  299. sys_write32(val, HOSCLDO_CTL);
  300. while(loop)loop--;
  301. val |= (0x1 << 24);
  302. sys_write32(val, HOSCLDO_CTL); /* bit16-bit23 same to HOSC_CTL bit16-bit23 */
  303. val = sys_read32(HOSC_CTL) & ~(HOSC_CTL_HOSCI_CAP_MASK | HOSC_CTL_HOSCO_CAP_MASK);
  304. val |= HOSC_CTL_HOSCI_CAP(btc_set_param.hosc_capacity) | HOSC_CTL_HOSCO_CAP(btc_set_param.hosc_capacity);
  305. sys_write32(val, HOSC_CTL);
  306. }
  307. printk("HOSC_CTL = 0x%x HOSCLDO_CTL = 0x%x\n", sys_read32(HOSC_CTL), sys_read32(HOSCLDO_CTL));
  308. #ifdef CONFIG_BOARD_LARK_DVB_EARPHONE
  309. sys_write32(0x951, HOSCOK_CTL);
  310. #else
  311. val = sys_read32(LOSC_CTL) | 0x1;
  312. sys_write32(val, LOSC_CTL);
  313. #endif
  314. val = sys_read32(CMU_MEMCLKSRC1) | BT_RAM_CLK_SRC;
  315. sys_write32(val, CMU_MEMCLKSRC1);
  316. val = sys_read32(CMU_MEMCLKEN1) | BT_ROM_RAM_CLK_EN;
  317. sys_write32(val, CMU_MEMCLKEN1);
  318. val = sys_read32(CMU_DEVCLKEN1) | BTHUB_RC32KEN | BTHUB_RC64MEN | BTHUB_HOSCEN |
  319. BTHUB_RC4MEN | BTHUB_LOSCEN;
  320. sys_write32(val, CMU_DEVCLKEN1);
  321. val = sys_read32(CMU_S1CLKCTL) | RC64M_S1EN | HOSC_S1EN | RC4M_S1EN;
  322. sys_write32(val, CMU_S1CLKCTL);
  323. val = sys_read32(CMU_S1BTCLKCTL) | RC64M_S1BTEN | HOSC_S1BTEN | RC4M_S1BTEN;
  324. sys_write32(val, CMU_S1BTCLKCTL);
  325. #ifdef CONFIG_BT_CTRL_DEBUG
  326. #ifdef CONFIG_BT_CTRL_BQB
  327. extern bool bt_bqb_is_in_test(void);
  328. if (!bt_bqb_is_in_test())
  329. #endif
  330. {
  331. sys_write32(DBGSE_BT_CONTROLLER, DEBUGSEL);
  332. sys_write32(0x103030, DEBUGOE0);
  333. }
  334. #ifndef CONFIG_BT_CTRL_LOG
  335. acts_pinmux_setup_pins(btc_pin_cfg_uart, ARRAY_SIZE(btc_pin_cfg_uart));
  336. #endif
  337. #ifdef CONFIG_BT_CTRL_BLE_BQB
  338. acts_pinmux_setup_pins(btc_pin_cfg_bqb, ARRAY_SIZE(btc_pin_cfg_bqb));
  339. #endif
  340. #endif
  341. acts_reset_peripheral(RESET_ID_BT);
  342. irq_enable(IRQ_ID_BT);
  343. return 0;
  344. }
  345. static int ipmsg_btc_stop(struct device *dev)
  346. {
  347. ARG_UNUSED(dev);
  348. // disable irq
  349. irq_disable(IRQ_ID_BT);
  350. // reset btc
  351. acts_reset_peripheral_assert(RESET_ID_BT);
  352. return 0;
  353. }
  354. static int ipmsg_btc_notify(struct device *dev)
  355. {
  356. ARG_UNUSED(dev);
  357. volatile uint8_t i = 5;
  358. // send interrupt to btc
  359. sys_write32(0, INT_TO_BT_CPU);
  360. while(i--);
  361. sys_write32(1, INT_TO_BT_CPU);
  362. return 0;
  363. }
  364. static void ipmsg_btc_register_callback(struct device *dev,
  365. ipmsg_callback_t cb, void *context)
  366. {
  367. struct ipmsg_btc_data *data = dev->data;
  368. uint8_t irq = *((uint8_t *)context);
  369. switch (irq) {
  370. case IPMSG_BTC_IRQ:
  371. data->btc_cb = cb;
  372. break;
  373. case IPMSG_TWS0_IRQ:
  374. data->tws0_cb = cb;
  375. break;
  376. case IPMSG_TWS1_IRQ:
  377. data->tws1_cb = cb;
  378. break;
  379. case IPMSG_REG_PW_CTRL:
  380. data->pm_ctrl_cb = (ipmsg_pm_ctrl_callback_t)cb;
  381. break;
  382. default:
  383. printk("Unknown irq %d\n", irq);
  384. break;
  385. }
  386. }
  387. static void ipmsg_btc_clear_irq_pending(int32_t irq)
  388. {
  389. if (irq < 32) {
  390. sys_write32((0x1 << irq), NVIC_ICPR0);
  391. } else {
  392. sys_write32((0x1 << (irq - 32)), NVIC_ICPR1);
  393. }
  394. }
  395. static void ipmsg_btc_irq_enable(struct device *dev, uint8_t irq)
  396. {
  397. switch (irq) {
  398. case IPMSG_BTC_IRQ:
  399. irq_enable(IRQ_ID_BT);
  400. break;
  401. case IPMSG_TWS0_IRQ:
  402. ipmsg_btc_clear_irq_pending(IRQ_ID_TWS);
  403. irq_enable(IRQ_ID_TWS);
  404. break;
  405. case IPMSG_TWS1_IRQ:
  406. ipmsg_btc_clear_irq_pending(IRQ_ID_TWS1);
  407. irq_enable(IRQ_ID_TWS1);
  408. break;
  409. }
  410. }
  411. static void ipmsg_btc_irq_disable(struct device *dev, uint8_t irq)
  412. {
  413. switch (irq) {
  414. case IPMSG_BTC_IRQ:
  415. irq_disable(IRQ_ID_BT);
  416. break;
  417. case IPMSG_TWS0_IRQ:
  418. irq_disable(IRQ_ID_TWS);
  419. break;
  420. case IPMSG_TWS1_IRQ:
  421. irq_disable(IRQ_ID_TWS1);
  422. break;
  423. }
  424. }
  425. static int ipmsg_btc_init(const struct device *dev)
  426. {
  427. ARG_UNUSED(dev);
  428. /* btc irq init */
  429. IRQ_CONNECT(IRQ_ID_BT, CONFIG_BTC_IRQ_PRI,
  430. ipmsg_btc_isr, DEVICE_GET(btc), 0);
  431. /* tws irq init */
  432. IRQ_CONNECT(IRQ_ID_TWS, CONFIG_TWS_IRQ_PRI,
  433. ipmsg_tws0_isr, DEVICE_GET(btc), 0);
  434. IRQ_CONNECT(IRQ_ID_TWS1, CONFIG_TWS_IRQ_PRI,
  435. ipmsg_tws1_isr, DEVICE_GET(btc), 0);
  436. return 0;
  437. }
  438. #ifdef CONFIG_PM_DEVICE
  439. int ipmsg_btc_pm_control(const struct device *device, enum pm_device_action action)
  440. {
  441. int ret;
  442. uint32_t val;
  443. struct ipmsg_btc_data *data = device->data;
  444. if (data && data->pm_ctrl_cb) {
  445. data->pm_ctrl_cb(0, action);
  446. }
  447. switch (action) {
  448. case PM_DEVICE_ACTION_RESUME:
  449. val = sys_read32(HOSC_CTL) & (~(HOSC_CTL_HGMC_MASK));
  450. sys_write32(val, HOSC_CTL);
  451. printk("ACTIVE_STATE HOSC_CTL = 0x%x\n", sys_read32(HOSC_CTL));
  452. break;
  453. case PM_DEVICE_ACTION_SUSPEND:
  454. val = sys_read32(HOSC_CTL) & (~(HOSC_CTL_HGMC_MASK));
  455. val |= (0x3 << HOSC_CTL_HGMC_SHIFT);
  456. sys_write32(val, HOSC_CTL);
  457. printk("SUSPEND_STATE HOSC_CTL = 0x%x\n", sys_read32(HOSC_CTL));
  458. break;
  459. case PM_DEVICE_ACTION_EARLY_SUSPEND:
  460. break;
  461. case PM_DEVICE_ACTION_LATE_RESUME:
  462. break;
  463. default:
  464. ret = -EINVAL;
  465. }
  466. return 0;
  467. }
  468. #else
  469. #define ipmsg_btc_pm_control NULL
  470. #endif
  471. static const struct ipmsg_driver_api ipmsg_btc_driver_api = {
  472. .init_param = ipmsg_btc_init_param,
  473. .load = ipmsg_btc_load,
  474. .start = ipmsg_btc_start,
  475. .stop = ipmsg_btc_stop,
  476. .notify = ipmsg_btc_notify,
  477. .register_callback = ipmsg_btc_register_callback,
  478. .enable = ipmsg_btc_irq_enable,
  479. .disable = ipmsg_btc_irq_disable,
  480. };
  481. static const struct ipmsg_btc_config ipmsg_btc_cfg = {
  482. .mem_base = (void *)BTC_REG_BASE,
  483. .mem_size = 0x40000,
  484. };
  485. static struct ipmsg_btc_data ipmsg_btc_dat;
  486. DEVICE_DEFINE(btc, CONFIG_BTC_NAME,
  487. &ipmsg_btc_init, ipmsg_btc_pm_control,
  488. &ipmsg_btc_dat, &ipmsg_btc_cfg,
  489. POST_KERNEL, CONFIG_KERNEL_INIT_PRIORITY_DEFAULT,
  490. &ipmsg_btc_driver_api);