Skip to content

Commit 7547925

Browse files
committed
Move random number generation to shim
Remove any Zephyr references in the BM code. Signed-off-by: Chaitanya Tata <Chaitanya.Tata@nordicsemi.no>
1 parent 6a5a517 commit 7547925

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

nrf70_bm_lib/Kconfig

-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@ config NRF70_FIXED_MAC_ADDRESS_ENABLED
6565

6666
config NRF70_RANDOM_MAC_ADDRESS
6767
bool "Random MAC address generation at runtime"
68-
select TEST_RANDOM_GENERATOR
6968
help
7069
This option enables random MAC address generation at runtime.
7170
The random MAC address is generated using the libc srand() function.

nrf70_bm_lib/docs/source/nrf70_bm_porting_guide.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ The reference implementation of the BM Driver for the Zephyr RTOS uses build-tim
5050
* - Pseudo-Random Number Generator (PRNG)
5151
- Used to generate random numbers for the nRF70 Series random MAC address generation,
5252
(if random MAC address generation support is enabled).
53-
- NA
53+
- nrf_wifi_osal_rand8_get()
5454
- sys_rand8_get()
5555

5656

nrf70_bm_lib/source/nrf70_bm_core.c

+4-7
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,6 @@
77
/** @file
88
* @brief nRF70 Bare Metal initialization.
99
*/
10-
#ifdef CONFIG_NRF70_RANDOM_MAC_ADDRESS
11-
#include <zephyr/random/random.h>
12-
#endif /* CONFIG_NRF70_RANDOM_MAC_ADDRESS */
13-
1410
#include "nrf70_bm_lib.h"
1511
#include "nrf70_bm_core.h"
1612

@@ -508,11 +504,12 @@ int nrf70_fmac_init(void)
508504
}
509505

510506
#ifdef CONFIG_NRF70_RANDOM_MAC_ADDRESS
511-
static void generate_random_mac_address(uint8_t *mac_addr)
507+
static void generate_random_mac_address(void *opriv,
508+
uint8_t *mac_addr)
512509
{
513510
// For simplicty use Zephyr API to generate random number
514511
for (int i = 0; i < 6; i++) {
515-
mac_addr[i] = sys_rand8_get();
512+
mac_addr[i] = nrf_wifi_osal_rand8_get(opriv);
516513
}
517514

518515
// Set the locally administered bit (bit 1 of the first byte)
@@ -564,7 +561,7 @@ enum nrf_wifi_status nrf_wifi_get_mac_addr(struct nrf70_wifi_vif_bm *vif,
564561

565562
memcpy(vif->mac_addr, fixed_mac_addr, NR70_MAC_ADDR_LEN);
566563
#elif CONFIG_NRF70_RANDOM_MAC_ADDRESS
567-
generate_random_mac_address(vif->mac_addr);
564+
generate_random_mac_address(nrf70_bm_priv.fmac_priv->opriv, vif->mac_addr);
568565
#elif CONFIG_NRF70_OTP_MAC_ADDRESS
569566
status = nrf_wifi_fmac_otp_mac_addr_get(rpu_ctx,
570567
vif->vif_idx,

nrf70_zephyr_shim/Kconfig

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ DT_COMPAT_NORDIC_NRF700X_SPI := nordic,nrf700x-spi
1010
menuconfig NRF70_ZEPHYR_SHIM
1111
bool "Enable nRF70 Zephyr shim"
1212
default y if NRF70_BM_LIB
13+
# For Random MAC address generation
14+
select TEST_RANDOM_GENERATOR
1315
help
1416
Enable the nRF70 Zephyr shim.
1517

nrf70_zephyr_shim/source/os/shim.c

+2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
#include <zephyr/drivers/gpio.h>
1919
#include <zephyr/logging/log.h>
2020
#include <zephyr/sys/__assert.h>
21+
#include <zephyr/random/random.h>
2122

2223
#include "rpu_hw_if.h"
2324
#include "shim.h"
@@ -972,6 +973,7 @@ static const struct nrf_wifi_osal_ops nrf_wifi_os_zep_ops = {
972973

973974
.assert = zep_shim_assert,
974975
.strlen = zep_shim_strlen,
976+
.rand8_get = sys_rand8_get,
975977
};
976978

977979
const struct nrf_wifi_osal_ops *get_os_ops(void)

0 commit comments

Comments
 (0)