123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597 |
- /*
- * Copyright (c) 2020 Actions Technology Co., Ltd
- *
- * SPDX-License-Identifier: Apache-2.0
- */
- #include <errno.h>
- #include <string.h>
- #include <device.h>
- #include <soc.h>
- #include <drivers/ipmsg.h>
- #include <sdfs.h>
- #include <board_cfg.h>
- #include <soc_atp.h>
- #include <sys/byteorder.h>
- #define DEBUGSEL (0x40068400)
- #define DEBUGOE0 (0x40068420)
- #define HOSC_CTL_HOSCI_CAP_SHIFT 24
- #define HOSC_CTL_HOSCI_CAP(x) ((x) << HOSC_CTL_HOSCI_CAP_SHIFT)
- #define HOSC_CTL_HOSCI_CAP_MASK HOSC_CTL_HOSCI_CAP(0xff)
- #define HOSC_CTL_HOSCO_CAP_SHIFT 16
- #define HOSC_CTL_HOSCO_CAP(x) ((x) << HOSC_CTL_HOSCO_CAP_SHIFT)
- #define HOSC_CTL_HOSCO_CAP_MASK HOSC_CTL_HOSCO_CAP(0xff)
- #define HOSC_CTL_HGMC_SHIFT 8
- #define HOSC_CTL_HGMC_MASK (0x3 << HOSC_CTL_HGMC_SHIFT)
- /* CMU_MEMCLKEN1 */
- #define BT_ROM_RAM_CLK_EN BIT(16)
- /* CMU_MEMCLKSRC1 */
- #define BT_RAM_CLK_SRC BIT(16)
- /* CMU_S1CLKCTL */
- #define RC64M_S1EN BIT(2)
- #define HOSC_S1EN BIT(1)
- #define RC4M_S1EN BIT(0)
- /* CMU_S1BTCLKCTL */
- #define RC64M_S1BTEN BIT(2)
- #define HOSC_S1BTEN BIT(1)
- #define RC4M_S1BTEN BIT(0)
- /* CMU_DEVCLKEN1 */
- #define BTHUB_RC32KEN BIT(28)
- #define BTHUB_RC64MEN BIT(27)
- #define BTHUB_HOSCEN BIT(26)
- #define BTHUB_RC4MEN BIT(25)
- #define BTHUB_LOSCEN BIT(24)
- #define JTAG_CTL_BTSWEN BIT(20)
- /* DEBUGSEL */
- #define DBGSE_SHIFT 0
- #define DBGSE(x) ((x) << DBGSE_SHIFT)
- #define DBGSE_BT_CONTROLLER DBGSE(0x27)
- #if defined(CONFIG_BTC_FW_IN_NAND)
- #define BT_RF_FILE "/NAND:K/bt_rf.bin"
- #define BT_TABLE_FILE "/NAND:K/bttbl.bin"
- #define BT_PATCH_FILE "/NAND:K/bt_pth.bin"
- #elif defined(CONFIG_BTC_FW_IN_SD)
- #define BT_RF_FILE "/SD:K/bt_rf.bin"
- #define BT_TABLE_FILE "/SD:K/bttbl.bin"
- #define BT_PATCH_FILE "/SD:K/bt_pth.bin"
- #elif defined(CONFIG_BTC_FW_IN_NOR_EXT)
- #define BT_RF_FILE "/NOR:K/bt_rf.bin"
- #define BT_TABLE_FILE "/NOR:K/bttbl.bin"
- #define BT_PATCH_FILE "/NOR:K/bt_pth.bin"
- #else
- #define BT_RF_FILE "bt_rf.bin"
- #define BT_TABLE_FILE "bttbl.bin"
- #define BT_PATCH_FILE "bt_pth.bin"
- #endif
- #define BT_RAM1_ADDR (0x01208000)
- #define BT_RAM_TABLE_ADDR (0x01200000)
- #define BT_RAM_PATCH_ADDR (0x01201310)
- /* Config pos from bt_table_config.txt */
- #define BT_MAX_RF_POWER_POS_1 0x22 /* tx_max_pwr_lvl */
- #define BT_DEFAULT_TX_POWER 0x23
- #define BT_MAX_RF_POWER_POS_2 0x25 /* tws_max_pwr_lvl */
- #define BT_CFG_WAKEUP_ADVANCE_POS 0x26
- #define BT_BLE_RF_POWER_POS 0x29 /* le_tx_pwr_lvl */
- #define BT_CFG_FIX_MAX_PWR_POS 0x40
- #define BT_CFG_FIX_MAX_PWR_BIT 0x3
- #define BT_CFG_SEL_32768_POS 0x42
- #define BT_CFG_SEL_32768_BIT 0x0 /* Set to 1 */
- #define BT_CFG_FORCE_LIGHT_SLEEP_POS 0x42
- #define BT_CFG_FORCE_LIGHT_SLEEP_BIT 0x5 /* Set to 0 */
- #define BT_CFG_LE_USING_US_TIMER_POS 0x43
- #define BT_CFG_LE_USING_US_TIMER_BIT 0x1 /* Power test set to 0, normal run set to 1, default value 1 */
- #define BT_CFG_FORCE_UART_PRINT_POS 0x42
- #define BT_CFG_FORCE_UART_PRINT_BIT 0x7 /* Set to 0 */
- #define BT_CFG_TRANS_EN_POS 0x43
- #define BT_CFG_TRANS_EN_BIT 0x5 /* Set to 1 */
- #define BT_CFG_SEL_RC32K_POS 0x44
- #define BT_CFG_SEL_RC32K_BIT 0x2 /* Set to 0 */
- #define BT_CFG_UART_BAUD_RATE_POS 0x4C /* 0x4c, 0x4d,0x4e,0x4f Little-endian */
- #define BT_CFG_UART_BAUD_RATE 2000000 /* 2M */
- #define BT_CFG_EFUSE_SET_POS 0x43
- #define BT_CFG_EFUSE_SET_BIT 0x4
- #define BT_CFG_EFUSE_AVDD_IF_POS 0x50
- #define BT_CFG_EFUSE_POWER_VER_POS 0x54
- #define BT_CFG_EFUSE_RF_POS 0x58
- #define BT_DCDC_MODE 0
- #define EFUSE_POWER_VER 0
- #define EFUSE_RF 1
- #define EFUSE_AVDD_IF 2
- struct ipmsg_btc_config {
- void *mem_base;
- uint32_t mem_size;
- };
- struct ipmsg_btc_data {
- ipmsg_callback_t btc_cb;
- ipmsg_callback_t tws0_cb;
- ipmsg_callback_t tws1_cb;
- ipmsg_pm_ctrl_callback_t pm_ctrl_cb;
- };
- static ipmsg_btc_init_param_t btc_set_param;
- DEVICE_DECLARE(btc);
- #ifdef CONFIG_BT_CTRL_DEBUG
- #ifndef CONFIG_BT_CTRL_LOG
- #define BT_UART_MFP_SEL 23
- #ifdef CONFIG_BOARD_LARK_DVB_EARPHONE
- static const struct acts_pin_config btc_pin_cfg_uart[] = {
- {28, BT_UART_MFP_SEL | GPIO_CTL_PADDRV_LEVEL(1) | GPIO_CTL_PULLUP},
- {29, BT_UART_MFP_SEL | GPIO_CTL_PADDRV_LEVEL(1) | GPIO_CTL_PULLUP},
- };
- #else
- static const struct acts_pin_config btc_pin_cfg_uart[] = {
- {34, BT_UART_MFP_SEL | GPIO_CTL_PADDRV_LEVEL(1) | GPIO_CTL_PULLUP},
- {35, BT_UART_MFP_SEL | GPIO_CTL_PADDRV_LEVEL(1) | GPIO_CTL_PULLUP},
- };
- #endif
- #endif
- #ifdef CONFIG_BT_CTRL_BLE_BQB
- #define BT_ANT_SW_SEL 23
- static const struct acts_pin_config btc_pin_cfg_bqb[] = {
- {56, BT_ANT_SW_SEL | GPIO_CTL_GPIO_OUTEN},
- {57, BT_ANT_SW_SEL | GPIO_CTL_GPIO_OUTEN},
- };
- #endif
- #endif
- static void ipmsg_btc_isr(void *arg)
- {
- struct device *dev = (struct device *)arg;
- struct ipmsg_btc_data *data = dev->data;
-
- //clear irq pending
- sys_write32(1, PENDING_FROM_BT_CPU);
- if (data->btc_cb) {
- data->btc_cb(NULL, NULL);
- }
- }
- static void ipmsg_tws0_isr(void *arg)
- {
- struct device *dev = (struct device *)arg;
- struct ipmsg_btc_data *data = dev->data;
- if (data->tws0_cb) {
- data->tws0_cb(NULL, NULL);
- }
- }
- static void ipmsg_tws1_isr(void *arg)
- {
- struct device *dev = (struct device *)arg;
- struct ipmsg_btc_data *data = dev->data;
- if (data->tws1_cb) {
- data->tws1_cb(NULL, NULL);
- }
- }
- static void ipmsg_btc_init_param(struct device *dev, void *param)
- {
- memcpy(&btc_set_param, param, sizeof(btc_set_param));
- }
- static int sd_load(const char *filename, void *dst)
- {
- struct sd_file *sdf;
- int ret;
- sdf = sd_fopen(filename);
- if (!sdf) {
- return -EINVAL;
- }
- ret = sd_fread(sdf, dst, sdf->size);
- printk("%s size: %d, load: %d\n", filename, sdf->size, ret);
- if (ret == sdf->size) {
- ret = 0;
- } else {
- printk("load %s failed!\n", filename);
- ret = -EINVAL;
- }
-
- sd_fclose(sdf);
- return ret;
- }
- #ifdef CONFIG_SD_FS
- static void ipmsg_btc_update_bt_table(void *table_addr)
- {
- int err;
- uint32_t calib_val = 0;
- uint8_t *start = table_addr;
- printk("Befor set 0x42 = 0x%x 0x43 = 0x%x 0x44 = 0x%x\n", start[0x42], start[0x43], start[0x44]);
- err = soc_atp_get_rf_calib(EFUSE_AVDD_IF, &calib_val);
- if (err == 0) {
- sys_put_le32(calib_val, &start[BT_CFG_EFUSE_AVDD_IF_POS]);
- } else {
- printk("get efuse avdd if failed %d", err);
- }
- err = soc_atp_get_rf_calib(EFUSE_POWER_VER, &calib_val);
- if (err == 0) {
- sys_put_le32(calib_val, &start[BT_CFG_EFUSE_POWER_VER_POS]);
- } else {
- printk("get efuse power version failed %d", err);
- }
- err = soc_atp_get_rf_calib(EFUSE_RF, &calib_val);
- if (err == 0) {
- sys_put_le32(calib_val, &start[BT_CFG_EFUSE_RF_POS]);
- } else {
- printk("get efuse rf failed %d", err);
- }
-
- start[BT_CFG_EFUSE_SET_POS] = (start[BT_CFG_EFUSE_SET_POS] | BIT(BT_CFG_EFUSE_SET_BIT));
- #ifdef CONFIG_IPMSG_BTC_SEL_32K
- start[BT_CFG_SEL_32768_POS] = (start[BT_CFG_SEL_32768_POS] | (0x1 << BT_CFG_SEL_32768_BIT)); /* Set 1 */
- #else
- start[BT_CFG_SEL_32768_POS] = (start[BT_CFG_SEL_32768_POS] & (~(0x1 << BT_CFG_SEL_32768_BIT))); /* Set 0 */
- #endif
- start[BT_CFG_FORCE_LIGHT_SLEEP_POS] = (start[BT_CFG_FORCE_LIGHT_SLEEP_POS] & (~(0x1 << BT_CFG_FORCE_LIGHT_SLEEP_BIT))); /* Set 0 */
- #ifdef CONFIG_BT_POWER_TEST_MODE
- 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 */
- #endif
- #ifdef CONFIG_BT_CTRL_LOG
- start[BT_CFG_FORCE_UART_PRINT_POS] = (start[BT_CFG_FORCE_UART_PRINT_POS] & (~(0x1 << BT_CFG_FORCE_UART_PRINT_BIT))); /* Set 0 */
- #else
- start[BT_CFG_FORCE_UART_PRINT_POS] = (start[BT_CFG_FORCE_UART_PRINT_POS] | (0x1 << BT_CFG_FORCE_UART_PRINT_BIT)); /* Set 1 */
- #endif
- #ifdef CONFIG_BT_TRANSMIT
- start[BT_CFG_TRANS_EN_POS] = (start[BT_CFG_TRANS_EN_POS] | (0x1 << BT_CFG_TRANS_EN_BIT));
- #endif
- start[BT_CFG_SEL_RC32K_POS] = (start[BT_CFG_SEL_RC32K_POS] & (~(0x1 << BT_CFG_SEL_RC32K_BIT)));
- //start[BT_CFG_WAKEUP_ADVANCE_POS] = 0x04;
- #ifndef CONFIG_BOARD_LARK_DVB_EARPHONE
- start[BT_CFG_UART_BAUD_RATE_POS] = (uint8_t)(BT_CFG_UART_BAUD_RATE & 0xFF);
- start[BT_CFG_UART_BAUD_RATE_POS + 1] = (uint8_t)((BT_CFG_UART_BAUD_RATE >> 8) & 0xFF);
- start[BT_CFG_UART_BAUD_RATE_POS + 2] = (uint8_t)((BT_CFG_UART_BAUD_RATE >> 16) & 0xFF);
- start[BT_CFG_UART_BAUD_RATE_POS + 3] = (uint8_t)((BT_CFG_UART_BAUD_RATE >> 24) & 0xFF);
- printk("Bt uart rate %d\n", BT_CFG_UART_BAUD_RATE);
- #endif
- if (btc_set_param.set_max_rf_power) {
- start[BT_MAX_RF_POWER_POS_1] = btc_set_param.bt_max_rf_tx_power;
- start[BT_MAX_RF_POWER_POS_2] = btc_set_param.bt_max_rf_tx_power;
- printk("max rf power %d\n", btc_set_param.bt_max_rf_tx_power);
- #if 0
- /* Fixed tx power */
- #define BT_FIX_POWER_LEVEL 38 /* 8db */
- start[BT_MAX_RF_POWER_POS_1] = BT_FIX_POWER_LEVEL;
- start[BT_MAX_RF_POWER_POS_2] = BT_FIX_POWER_LEVEL;
- start[BT_DEFAULT_TX_POWER] = BT_FIX_POWER_LEVEL;
- start[BT_CFG_FIX_MAX_PWR_POS] = start[BT_CFG_FIX_MAX_PWR_POS] | (0x1 << BT_CFG_FIX_MAX_PWR_BIT);
- printk("After set 0x22 = %d 0x23 = %d 0x25 = %d\n", start[0x22], start[0x23], start[0x25]);
- printk("After set 0x40 = 0x%x\n", start[BT_CFG_FIX_MAX_PWR_POS]);
- #endif
- }
- if (btc_set_param.set_ble_rf_power) {
- start[BT_BLE_RF_POWER_POS] = btc_set_param.ble_rf_tx_power;
- printk("ble rf tx power %d\n", start[BT_BLE_RF_POWER_POS]);
- }
- printk("After set 0x42 = 0x%x 0x43 = 0x%x 0x44 = 0x%x\n", start[0x42], start[0x43], start[0x44]);
- }
- #endif
- static int ipmsg_btc_load(struct device *dev, void *data, uint32_t size)
- {
- uint32_t val;
- int err = 0;
- const struct ipmsg_btc_config *config = dev->config;
- if (size > config->mem_size) {
- return -EINVAL;
- }
- val = sys_read32(CMU_MEMCLKSRC1) & ~BT_RAM_CLK_SRC;
- sys_write32(val, CMU_MEMCLKSRC1);
- #ifdef CONFIG_SD_FS
- #ifdef CONFIG_BT_CTRL_RF_DEBUG
- err = sd_load(BT_RF_FILE, (void *)BT_RAM1_ADDR);
- if (err) {
- return -EINVAL;
- }
- #endif
- err = sd_load(BT_TABLE_FILE, (void *)BT_RAM_TABLE_ADDR); /* load bt config table */
- ipmsg_btc_update_bt_table((void *)BT_RAM_TABLE_ADDR);
- err |= sd_load(BT_PATCH_FILE, (void *)BT_RAM_PATCH_ADDR); /* load bt patch */
- #else
- memcpy(config->mem_base, data, size);
- #endif
- return err;
- }
- /* Start BT CPU */
- static inline int ipmsg_btc_start(struct device *dev, uint32_t *send_id, uint32_t *recv_id)
- {
- uint32_t val;
- volatile int loop = 400;
- ARG_UNUSED(dev);
- /* Start up not need wait */
- //sys_write32(0x00640015, HOSCLDO_CTL);
- //while(loop)loop--;
- sys_write32(0x0164000C, HOSCLDO_CTL);
- val = sys_read32(HOSC_CTL) & (HOSC_CTL_HOSCI_CAP_MASK | HOSC_CTL_HOSCO_CAP_MASK);
- val |= 0x7030;
- sys_write32(val, HOSC_CTL);
- if (btc_set_param.set_hosc_cap) {
- val = sys_read32(HOSCLDO_CTL);
- val &= 0xFFFF;
- val |= (btc_set_param.hosc_capacity << 16);
- sys_write32(val, HOSCLDO_CTL);
- while(loop)loop--;
- val |= (0x1 << 24);
- sys_write32(val, HOSCLDO_CTL); /* bit16-bit23 same to HOSC_CTL bit16-bit23 */
- val = sys_read32(HOSC_CTL) & ~(HOSC_CTL_HOSCI_CAP_MASK | HOSC_CTL_HOSCO_CAP_MASK);
- val |= HOSC_CTL_HOSCI_CAP(btc_set_param.hosc_capacity) | HOSC_CTL_HOSCO_CAP(btc_set_param.hosc_capacity);
- sys_write32(val, HOSC_CTL);
- }
- printk("HOSC_CTL = 0x%x HOSCLDO_CTL = 0x%x\n", sys_read32(HOSC_CTL), sys_read32(HOSCLDO_CTL));
- #ifdef CONFIG_BOARD_LARK_DVB_EARPHONE
- sys_write32(0x951, HOSCOK_CTL);
- #else
- val = sys_read32(LOSC_CTL) | 0x1;
- sys_write32(val, LOSC_CTL);
- #endif
- val = sys_read32(CMU_MEMCLKSRC1) | BT_RAM_CLK_SRC;
- sys_write32(val, CMU_MEMCLKSRC1);
- val = sys_read32(CMU_MEMCLKEN1) | BT_ROM_RAM_CLK_EN;
- sys_write32(val, CMU_MEMCLKEN1);
- val = sys_read32(CMU_DEVCLKEN1) | BTHUB_RC32KEN | BTHUB_RC64MEN | BTHUB_HOSCEN |
- BTHUB_RC4MEN | BTHUB_LOSCEN;
- sys_write32(val, CMU_DEVCLKEN1);
- val = sys_read32(CMU_S1CLKCTL) | RC64M_S1EN | HOSC_S1EN | RC4M_S1EN;
- sys_write32(val, CMU_S1CLKCTL);
- val = sys_read32(CMU_S1BTCLKCTL) | RC64M_S1BTEN | HOSC_S1BTEN | RC4M_S1BTEN;
- sys_write32(val, CMU_S1BTCLKCTL);
- #ifdef CONFIG_BT_CTRL_DEBUG
- #ifdef CONFIG_BT_CTRL_BQB
- extern bool bt_bqb_is_in_test(void);
- if (!bt_bqb_is_in_test())
- #endif
- {
- sys_write32(DBGSE_BT_CONTROLLER, DEBUGSEL);
- sys_write32(0x103030, DEBUGOE0);
- }
- #ifndef CONFIG_BT_CTRL_LOG
- acts_pinmux_setup_pins(btc_pin_cfg_uart, ARRAY_SIZE(btc_pin_cfg_uart));
- #endif
- #ifdef CONFIG_BT_CTRL_BLE_BQB
- acts_pinmux_setup_pins(btc_pin_cfg_bqb, ARRAY_SIZE(btc_pin_cfg_bqb));
- #endif
- #endif
- acts_reset_peripheral(RESET_ID_BT);
- irq_enable(IRQ_ID_BT);
-
- return 0;
- }
- static int ipmsg_btc_stop(struct device *dev)
- {
- ARG_UNUSED(dev);
- // disable irq
- irq_disable(IRQ_ID_BT);
- // reset btc
- acts_reset_peripheral_assert(RESET_ID_BT);
- return 0;
- }
- static int ipmsg_btc_notify(struct device *dev)
- {
- ARG_UNUSED(dev);
- volatile uint8_t i = 5;
- // send interrupt to btc
- sys_write32(0, INT_TO_BT_CPU);
- while(i--);
- sys_write32(1, INT_TO_BT_CPU);
- return 0;
- }
- static void ipmsg_btc_register_callback(struct device *dev,
- ipmsg_callback_t cb, void *context)
- {
- struct ipmsg_btc_data *data = dev->data;
- uint8_t irq = *((uint8_t *)context);
- switch (irq) {
- case IPMSG_BTC_IRQ:
- data->btc_cb = cb;
- break;
- case IPMSG_TWS0_IRQ:
- data->tws0_cb = cb;
- break;
- case IPMSG_TWS1_IRQ:
- data->tws1_cb = cb;
- break;
- case IPMSG_REG_PW_CTRL:
- data->pm_ctrl_cb = (ipmsg_pm_ctrl_callback_t)cb;
- break;
- default:
- printk("Unknown irq %d\n", irq);
- break;
- }
- }
- static void ipmsg_btc_clear_irq_pending(int32_t irq)
- {
- if (irq < 32) {
- sys_write32((0x1 << irq), NVIC_ICPR0);
- } else {
- sys_write32((0x1 << (irq - 32)), NVIC_ICPR1);
- }
- }
- static void ipmsg_btc_irq_enable(struct device *dev, uint8_t irq)
- {
- switch (irq) {
- case IPMSG_BTC_IRQ:
- irq_enable(IRQ_ID_BT);
- break;
- case IPMSG_TWS0_IRQ:
- ipmsg_btc_clear_irq_pending(IRQ_ID_TWS);
- irq_enable(IRQ_ID_TWS);
- break;
- case IPMSG_TWS1_IRQ:
- ipmsg_btc_clear_irq_pending(IRQ_ID_TWS1);
- irq_enable(IRQ_ID_TWS1);
- break;
- }
- }
- static void ipmsg_btc_irq_disable(struct device *dev, uint8_t irq)
- {
- switch (irq) {
- case IPMSG_BTC_IRQ:
- irq_disable(IRQ_ID_BT);
- break;
- case IPMSG_TWS0_IRQ:
- irq_disable(IRQ_ID_TWS);
- break;
- case IPMSG_TWS1_IRQ:
- irq_disable(IRQ_ID_TWS1);
- break;
- }
- }
- static int ipmsg_btc_init(const struct device *dev)
- {
- ARG_UNUSED(dev);
- /* btc irq init */
- IRQ_CONNECT(IRQ_ID_BT, CONFIG_BTC_IRQ_PRI,
- ipmsg_btc_isr, DEVICE_GET(btc), 0);
- /* tws irq init */
- IRQ_CONNECT(IRQ_ID_TWS, CONFIG_TWS_IRQ_PRI,
- ipmsg_tws0_isr, DEVICE_GET(btc), 0);
- IRQ_CONNECT(IRQ_ID_TWS1, CONFIG_TWS_IRQ_PRI,
- ipmsg_tws1_isr, DEVICE_GET(btc), 0);
- return 0;
- }
- #ifdef CONFIG_PM_DEVICE
- int ipmsg_btc_pm_control(const struct device *device, enum pm_device_action action)
- {
- int ret;
- uint32_t val;
- struct ipmsg_btc_data *data = device->data;
- if (data && data->pm_ctrl_cb) {
- data->pm_ctrl_cb(0, action);
- }
- switch (action) {
- case PM_DEVICE_ACTION_RESUME:
- val = sys_read32(HOSC_CTL) & (~(HOSC_CTL_HGMC_MASK));
- sys_write32(val, HOSC_CTL);
- printk("ACTIVE_STATE HOSC_CTL = 0x%x\n", sys_read32(HOSC_CTL));
- break;
- case PM_DEVICE_ACTION_SUSPEND:
- val = sys_read32(HOSC_CTL) & (~(HOSC_CTL_HGMC_MASK));
- val |= (0x3 << HOSC_CTL_HGMC_SHIFT);
- sys_write32(val, HOSC_CTL);
- printk("SUSPEND_STATE HOSC_CTL = 0x%x\n", sys_read32(HOSC_CTL));
- break;
- case PM_DEVICE_ACTION_EARLY_SUSPEND:
- break;
- case PM_DEVICE_ACTION_LATE_RESUME:
- break;
- default:
- ret = -EINVAL;
- }
- return 0;
- }
- #else
- #define ipmsg_btc_pm_control NULL
- #endif
- static const struct ipmsg_driver_api ipmsg_btc_driver_api = {
- .init_param = ipmsg_btc_init_param,
- .load = ipmsg_btc_load,
- .start = ipmsg_btc_start,
- .stop = ipmsg_btc_stop,
- .notify = ipmsg_btc_notify,
- .register_callback = ipmsg_btc_register_callback,
- .enable = ipmsg_btc_irq_enable,
- .disable = ipmsg_btc_irq_disable,
- };
- static const struct ipmsg_btc_config ipmsg_btc_cfg = {
- .mem_base = (void *)BTC_REG_BASE,
- .mem_size = 0x40000,
- };
- static struct ipmsg_btc_data ipmsg_btc_dat;
- DEVICE_DEFINE(btc, CONFIG_BTC_NAME,
- &ipmsg_btc_init, ipmsg_btc_pm_control,
- &ipmsg_btc_dat, &ipmsg_btc_cfg,
- POST_KERNEL, CONFIG_KERNEL_INIT_PRIORITY_DEFAULT,
- &ipmsg_btc_driver_api);
|