-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
drivers: bluetooth and wifi: siwx917: Introducing NWP init
WiFi and Bluetooth HCI driver was changed to use the nwp_init component. This component initializes the NWP based on the project configuration (BLE and/or WiFi). Later on the component can be modified to support common flash mode read/write/erase without BLE and WiFi. Coprocessor stack moved to a more suitable place (nwp_init). WiFi and Bluetooth advertising sample apps were tried to verify the change. Signed-off-by: Tibor Laczko <[email protected]>
- Loading branch information
1 parent
34597f8
commit e445271
Showing
8 changed files
with
137 additions
and
122 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
/* | ||
* Copyright (c) 2024 Silicon Laboratories Inc. | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
#include <zephyr/kernel.h> | ||
|
||
#include "sl_wifi.h" | ||
#include "sl_wifi_callback_framework.h" | ||
#if IS_ENABLED(CONFIG_BT_SIWX917) | ||
#include "rsi_ble_common_config.h" | ||
#endif | ||
|
||
/* TODO SILABS ZEPHYR: Check how to add constants to the vector table */ | ||
#define NWP_ADD_TO_VECTOR_TABLE(irq, flags, expression, arg, name) \ | ||
static Z_DECL_ALIGN(struct _isr_list) Z_GENERIC_SECTION(.intList) \ | ||
__used __isr_##name = {irq, flags, expression, arg} | ||
|
||
#if IS_ENABLED(CONFIG_WIFI_SIWX917) && IS_ENABLED(CONFIG_BT_SIWX917) | ||
#define NWP_INIT_COEX_MODE SL_SI91X_WLAN_BLE_MODE | ||
#elif IS_ENABLED(CONFIG_WIFI_SIWX917) | ||
#define NWP_INIT_COEX_MODE SL_SI91X_WLAN_ONLY_MODE | ||
#elif IS_ENABLED(CONFIG_BT_SIWX917) | ||
#define NWP_INIT_COEX_MODE SL_SI91X_BLE_MODE | ||
#else | ||
#error "Not supported configuration!" | ||
#endif | ||
|
||
static int silabs_siwx917_nwp_init(void) | ||
{ | ||
sl_wifi_device_configuration_t network_config = { | ||
.boot_option = LOAD_NWP_FW, | ||
.mac_address = NULL, | ||
.band = SL_SI91X_WIFI_BAND_2_4GHZ, | ||
.region_code = DEFAULT_REGION, | ||
.boot_config = { | ||
.oper_mode = SL_SI91X_CLIENT_MODE, | ||
.coex_mode = NWP_INIT_COEX_MODE, | ||
.feature_bit_map = SL_SI91X_FEAT_SECURITY_OPEN | SL_SI91X_FEAT_WPS_DISABLE, | ||
.tcp_ip_feature_bit_map = SL_SI91X_TCP_IP_FEAT_EXTENSION_VALID, | ||
.ext_tcp_ip_feature_bit_map = SL_SI91X_CONFIG_FEAT_EXTENSION_VALID, | ||
.config_feature_bit_map = SL_SI91X_ENABLE_ENHANCED_MAX_PSP, | ||
.custom_feature_bit_map = SL_SI91X_CUSTOM_FEAT_EXTENSION_VALID, | ||
.ext_custom_feature_bit_map = | ||
MEMORY_CONFIG | SL_SI91X_EXT_FEAT_XTAL_CLK | | ||
SL_SI91X_EXT_FEAT_FRONT_END_SWITCH_PINS_ULP_GPIO_4_5_0, | ||
}}; | ||
sl_si91x_boot_configuration_t *cfg = &network_config.boot_config; | ||
|
||
#if IS_ENABLED(CONFIG_WIFI_SIWX917) | ||
cfg->tcp_ip_feature_bit_map |= | ||
#if IS_ENABLED(CONFIG_NET_IPV6) | ||
SL_SI91X_TCP_IP_FEAT_DHCPV6_CLIENT | SL_SI91X_TCP_IP_FEAT_IPV6 | | ||
#endif | ||
SL_SI91X_TCP_IP_FEAT_DHCPV4_CLIENT | SL_SI91X_TCP_IP_FEAT_DNS_CLIENT | | ||
SL_SI91X_TCP_IP_FEAT_SSL | SL_SI91X_TCP_IP_FEAT_MDNSD | SL_SI91X_TCP_IP_FEAT_ICMP; | ||
cfg->ext_tcp_ip_feature_bit_map |= | ||
SL_SI91X_EXT_TCP_IP_WINDOW_SCALING | SL_SI91X_EXT_TCP_IP_TOTAL_SELECTS(10); | ||
#endif | ||
|
||
#if IS_ENABLED(CONFIG_BT_SIWX917) | ||
cfg->ext_custom_feature_bit_map |= SL_SI91X_EXT_FEAT_BT_CUSTOM_FEAT_ENABLE; | ||
cfg->bt_feature_bit_map |= SL_SI91X_BT_RF_TYPE | SL_SI91X_ENABLE_BLE_PROTOCOL; | ||
cfg->ble_feature_bit_map |= SL_SI91X_BLE_MAX_NBR_PERIPHERALS(RSI_BLE_MAX_NBR_PERIPHERALS) | | ||
SL_SI91X_BLE_MAX_NBR_CENTRALS(RSI_BLE_MAX_NBR_CENTRALS) | | ||
SL_SI91X_BLE_MAX_NBR_ATT_SERV(RSI_BLE_MAX_NBR_ATT_SERV) | | ||
SL_SI91X_BLE_MAX_NBR_ATT_REC(RSI_BLE_MAX_NBR_ATT_REC) | | ||
SL_SI91X_BLE_PWR_INX(RSI_BLE_PWR_INX) | | ||
SL_SI91X_BLE_PWR_SAVE_OPTIONS(RSI_BLE_PWR_SAVE_OPTIONS) | | ||
SL_SI91X_916_BLE_COMPATIBLE_FEAT_ENABLE | | ||
SL_SI91X_FEAT_BLE_CUSTOM_FEAT_EXTENSION_VALID; | ||
cfg->ble_ext_feature_bit_map |= SL_SI91X_BLE_NUM_CONN_EVENTS(RSI_BLE_NUM_CONN_EVENTS) | | ||
SL_SI91X_BLE_NUM_REC_BYTES(RSI_BLE_NUM_REC_BYTES) | | ||
SL_SI91X_BLE_ENABLE_ADV_EXTN | | ||
SL_SI91X_BLE_AE_MAX_ADV_SETS(RSI_BLE_AE_MAX_ADV_SETS); | ||
#endif | ||
|
||
return sl_wifi_init(&network_config, NULL, sl_wifi_default_event_handler); | ||
} | ||
SYS_INIT(silabs_siwx917_nwp_init, POST_KERNEL, CONFIG_KERNEL_INIT_PRIORITY_DEVICE); | ||
|
||
/* IRQn 74 is used for communication with co-processor */ | ||
Z_ISR_DECLARE(74, ISR_FLAG_DIRECT, IRQ074_Handler, 0); | ||
|
||
/* Co-processor will use value stored in IVT to store its stack. | ||
* | ||
* FIXME: We can't use Z_ISR_DECLARE() to declare this entry | ||
* FIXME: Allow to configure size of buffer | ||
*/ | ||
static uint8_t __aligned(8) nwp_stack[10 * 1024]; | ||
static Z_DECL_ALIGN(struct _isr_list) Z_GENERIC_SECTION(.intList) | ||
__used __isr_siwx917_coprocessor_stack_irq = { | ||
.irq = 30, | ||
.flags = ISR_FLAG_DIRECT, | ||
.func = &nwp_stack[sizeof(nwp_stack) - 1], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters