Skip to content

Commit c8f41cb

Browse files
committed
[Telink] Added W91 v2.1 board configuration
1 parent e103352 commit c8f41cb

File tree

7 files changed

+83
-45
lines changed

7 files changed

+83
-45
lines changed

config/telink/chip-module/Kconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ config CHIP_IPV4
180180

181181
config CHIP_BUTTON_MANAGER_IRQ_MODE
182182
bool "Use GPIO in an IRQ mode instead of polling the GPIO"
183-
default PM
183+
default y if BOARD_TLSR9118BDK40D_V2
184184
help
185185
Use GPIO in an IRQ mode to avoid button polling loop and extend the battery lifetime by waking up by GPIO event.
186186
GPIO events are working only with GPIO IRQ. This option changes button matrix configuration.

config/telink/chip-module/Kconfig.defaults

+3-2
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,8 @@ config PWM
180180
endif
181181

182182
# Board non-retention config
183-
if BOARD_TLSR9118BDK40D || BOARD_TLSR9528A || BOARD_TLSR9258A || BOARD_TLSR9518ADK80D
183+
if BOARD_TLSR9118BDK40D_V1 || BOARD_TLSR9118BDK40D_V2 || \
184+
BOARD_TLSR9528A || BOARD_TLSR9258A || BOARD_TLSR9518ADK80D
184185
config PWM
185186
default y
186187
endif
@@ -292,7 +293,7 @@ config NET_CONFIG_INIT_TIMEOUT
292293

293294
config CHIP_WIFI
294295
bool "Enable Telink Wi-Fi support"
295-
default y if BOARD_TLSR9118BDK40D
296+
default y if BOARD_TLSR9118BDK40D_V1 || BOARD_TLSR9118BDK40D_V2
296297
select WIFI_W91
297298
select WIFI
298299
select NET_STATISTICS

examples/platform/telink/common.cmake

+7-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
string(REPLACE "_retention" "" BASE_BOARD ${BOARD})
1717

1818
if(NOT FLASH_SIZE)
19-
if(${BASE_BOARD} MATCHES "tlsr9118bdk40d")
19+
if(${BASE_BOARD} MATCHES "tlsr9118bdk40d" OR ${BASE_BOARD} MATCHES "tlsr9118bdk40d_v1"
20+
OR ${BASE_BOARD} MATCHES "tlsr9118bdk40d_v2")
2021
set(FLASH_SIZE "3m")
2122
else()
2223
set(FLASH_SIZE "2m")
@@ -96,7 +97,11 @@ endif()
9697

9798
set(FLASH_DTC_OVERLAY_FILE "${CHIP_ROOT}/src/platform/telink/${BASE_BOARD}_${FLASH_SIZE}_flash.overlay")
9899
if(NOT EXISTS "${FLASH_DTC_OVERLAY_FILE}")
99-
message(FATAL_ERROR "${FLASH_DTC_OVERLAY_FILE} doesn't exist")
100+
if(${BASE_BOARD} MATCHES "tlsr9118bdk40d_v1" OR ${BASE_BOARD} MATCHES "tlsr9118bdk40d_v2")
101+
set(FLASH_DTC_OVERLAY_FILE "${CHIP_ROOT}/src/platform/telink/tlsr9118bdk40d_${FLASH_SIZE}_flash.overlay")
102+
else()
103+
message(FATAL_ERROR "${FLASH_DTC_OVERLAY_FILE} doesn't exist")
104+
endif()
100105
endif()
101106

102107
if(DTC_OVERLAY_FILE)

examples/platform/telink/common/src/AppTaskCommon.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,8 @@ void AppTaskCommon::InitPwms()
414414

415415
void AppTaskCommon::LinkPwms(PwmManager & pwmManager)
416416
{
417-
#if CONFIG_BOARD_TLSR9118BDK40D // TLSR9118BDK40D EVK supports only 1 PWM channel connected to LED
417+
#if CONFIG_BOARD_TLSR9118BDK40D_V1 || CONFIG_BOARD_TLSR9118BDK40D_v2
418+
// TLSR9118BDK40D EVK supports only 1 PWM channel connected to LED
418419
pwmManager.linkPwm(PwmManager::EAppPwm_Red, 0);
419420
#elif CONFIG_WS2812_STRIP
420421
pwmManager.linkPwm(PwmManager::EAppPwm_Red, 0);

src/platform/telink/tlsr9118bdk40d.overlay

-39
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
tlsr9118bdk40d_v2.overlay
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
/ {
2+
/* Short TL_Key1 (J20 pin 11) to ground (J20 pin 25-35) */
3+
key_pool {
4+
compatible = "gpio-keys";
5+
6+
inp {
7+
gpios = <&gpio0 16 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>,
8+
<&gpio0 15 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>;
9+
};
10+
};
11+
12+
key_matrix {
13+
compatible = "gpio-keys";
14+
15+
col {
16+
gpios = <&gpio0 18 GPIO_ACTIVE_HIGH>,
17+
<&gpio0 17 GPIO_ACTIVE_HIGH>;
18+
};
19+
20+
row {
21+
gpios = <&gpio0 16 (GPIO_PULL_DOWN | GPIO_ACTIVE_HIGH)>,
22+
<&gpio0 15 (GPIO_PULL_DOWN | GPIO_ACTIVE_HIGH)>;
23+
};
24+
};
25+
26+
led_pool{
27+
compatible = "gpio-leds";
28+
29+
out {
30+
gpios = <&gpio0 19 GPIO_ACTIVE_HIGH>;
31+
};
32+
};
33+
pwm_pool {
34+
compatible = "pwm-leds";
35+
out {
36+
pwms = <&pwm0 4 PWM_MSEC(1) PWM_POLARITY_NORMAL>;
37+
};
38+
};
39+
};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
2+
/* TLSR9118BDK40D V2.1 */
3+
4+
/ {
5+
key_pool {
6+
compatible = "gpio-keys";
7+
8+
inp {
9+
gpios = <&gpio0 4 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>,
10+
<&gpio0 5 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>,
11+
<&gpio0 6 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>,
12+
<&gpio0 7 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>;
13+
};
14+
};
15+
16+
led_pool{
17+
compatible = "gpio-leds";
18+
19+
out {
20+
gpios = <&gpio0 15 GPIO_ACTIVE_HIGH>;
21+
};
22+
};
23+
24+
pwm_pool {
25+
compatible = "pwm-leds";
26+
out {
27+
pwms = <&pwm0 3 PWM_MSEC(1) PWM_POLARITY_NORMAL>;
28+
};
29+
};
30+
};

0 commit comments

Comments
 (0)