Skip to content

Commit 4aca170

Browse files
AuroraRASsimbit18
authored andcommitted
wireless/cc1101: Make SPI burst and single frequencies configurable
This patch introduces CONFIG_CC1101_SPIFREQ_BURST and CONFIG_CC1101_SPIFREQ_SINGLE to Kconfig, allowing users to override the default SPI frequencies for the CC1101 wireless driver. Previously, these values were hardcoded to 6.5 MHz and 9.0 MHz respectively. While these are safe defaults for many setups, specific hardware designs, high routing capacitance, or platforms utilizing internal GPIO switching matrices (such as the ESP32) can suffer from signal integrity degradation at these speeds. By exposing these to Kconfig, users can easily adjust the clock speeds to match their hardware capabilities without modifying the core driver source. Impact: - Build: Adds two new Kconfig options under WL_CC1101. - Runtime: Retains 6.5 MHz / 9.0 MHz defaults. Behavior only changes if overridden via menuconfig. Testing: - Built with default values and custom Kconfig overrides. - Hardware Testing: Tested on a sub-optimal platform utilizing an internal GPIO matrix (ESP32). The CC1101 failed to load at the default 6.5/9.0 MHz due to signal integrity issues. Downclocking the frequencies to 4.0 MHz via Kconfig successfully restored signal integrity and allowed the driver to initialize and operate normally. Signed-off-by: Chip L. <chplee@gmail.com>
1 parent 9685cc5 commit 4aca170

2 files changed

Lines changed: 22 additions & 2 deletions

File tree

drivers/wireless/Kconfig

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,18 @@ config CC1101_SPIDEV
2626
Selects the SPI bus number identifying that SPI interface that
2727
connects the CC1101 to the MCU.
2828

29+
config CC1101_SPIFREQ_BURST
30+
int "SPI burst frequency"
31+
default 6500000
32+
---help---
33+
SPI burst frequency (Hz, no delay) for CC1101.
34+
35+
config CC1101_SPIFREQ_SINGLE
36+
int "SPI single access frequency"
37+
default 9000000
38+
---help---
39+
SPI single access frequency (Hz, single access only - no delay) for CC1101.
40+
2941
endif
3042

3143
config WL_CC1101_IGNORE_VERSION

drivers/wireless/cc1101.c

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,16 @@
109109
* Pre-processor Definitions
110110
****************************************************************************/
111111

112-
#define CC1101_SPIFREQ_BURST 6500000 /* Hz, no delay */
113-
#define CC1101_SPIFREQ_SINGLE 9000000 /* Hz, single access only - no delay */
112+
#ifndef CONFIG_CC1101_SPIFREQ_BURST
113+
# define CONFIG_CC1101_SPIFREQ_BURST 6500000 /* Hz, no delay */
114+
#endif
115+
116+
#ifndef CONFIG_CC1101_SPIFREQ_SINGLE
117+
# define CONFIG_CC1101_SPIFREQ_SINGLE 9000000 /* Hz, single access only - no delay */
118+
#endif
119+
120+
#define CC1101_SPIFREQ_BURST CONFIG_CC1101_SPIFREQ_BURST
121+
#define CC1101_SPIFREQ_SINGLE CONFIG_CC1101_SPIFREQ_SINGLE
114122

115123
#define CC1101_MCSM0_VALUE 0x1c
116124

0 commit comments

Comments
 (0)