Skip to content

Commit 7d4290f

Browse files
leewkb4567carlescufi
authored andcommitted
gzll: nRF5340 network core support
GZLL support for nRF5340 network core. Signed-off-by: Bernard Lee <bernard.lee@nordicsemi.no>
1 parent ef886fe commit 7d4290f

File tree

4 files changed

+28
-1
lines changed

4 files changed

+28
-1
lines changed

gzll/Kconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66

77
config GZLL
88
bool "Enable Gazell Link Layer"
9-
depends on SOC_SERIES_NRF52X
9+
depends on SOC_SERIES_NRF52X || SOC_SERIES_NRF53X

gzll/include/nrf_gzll_constants.h

+11
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ extern "C" {
4242
/*
4343
* PPI configuration
4444
*/
45+
#if defined(PPI_PRESENT) || defined(DOXYGEN)
4546
#define NRF_GZLL_PPI_EEP0 (*nrf_gzll_ppi_eep0) ///< Gazell PPI event endpoint 0
4647
#define NRF_GZLL_PPI_TEP0 (*nrf_gzll_ppi_tep0) ///< Gazell PPI task endpoint 0
4748
#define NRF_GZLL_PPI_EEP1 (*nrf_gzll_ppi_eep1) ///< Gazell PPI event endpoint 1
@@ -51,6 +52,16 @@ extern "C" {
5152

5253
#define NRF_GZLL_PPI_CHEN_MSK_0_AND_1 (nrf_gzll_ppi_chen_msk_0_and_1) ///< Channel enable/disable mask for PPI endpoint 0 and 1.
5354
#define NRF_GZLL_PPI_CHEN_MSK_2 (nrf_gzll_ppi_chen_msk_2) ///< Channel enable/disable mask for PPI endpoint 2.
55+
#endif
56+
57+
#if defined(DPPI_PRESENT) || defined(DOXYGEN)
58+
#define NRF_GZLL_DPPI_CH0 (nrf_gzll_dppi_ch0) ///< Gazell DPPI channel 0
59+
#define NRF_GZLL_DPPI_CH1 (nrf_gzll_dppi_ch1) ///< Gazell DPPI channel 1
60+
#define NRF_GZLL_DPPI_CH2 (nrf_gzll_dppi_ch2) ///< Gazell DPPI channel 2
61+
62+
#define NRF_GZLL_DPPI_CHEN_MSK_0_AND_1 (nrf_gzll_dppi_chen_msk_0_and_1) ///< Channel enable/disable mask for DPPI channel 0 and 1.
63+
#define NRF_GZLL_DPPI_CHEN_MSK_2 (nrf_gzll_dppi_chen_msk_2) ///< Channel enable/disable mask for DPPI channel 2.
64+
#endif
5465
/** @} */
5566

5667
/*****************************************************************************/

gzll/include/nrf_gzll_glue.h

+16
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
*/
1616

1717
#include <nrf.h>
18+
#include <nrf_peripherals.h>
1819

1920
#ifdef __cplusplus
2021
extern "C" {
@@ -38,6 +39,7 @@ extern IRQn_Type const nrf_gzll_timer_irqn;
3839
/** Interrupt number for the software interrupt. */
3940
extern IRQn_Type const nrf_gzll_swi_irqn;
4041

42+
#if defined(PPI_PRESENT) || defined(DOXYGEN)
4143
/** Gazell PPI event endpoint 0 register address. */
4244
extern __IOM uint32_t * nrf_gzll_ppi_eep0;
4345
/** Gazell PPI task endpoint 0 register address. */
@@ -54,6 +56,20 @@ extern __IOM uint32_t * nrf_gzll_ppi_tep2;
5456
extern uint32_t nrf_gzll_ppi_chen_msk_0_and_1;
5557
/** Channel enable/disable mask for PPI endpoint 2. */
5658
extern uint32_t nrf_gzll_ppi_chen_msk_2;
59+
#endif
60+
61+
#if defined(DPPI_PRESENT) || defined(DOXYGEN)
62+
/** Gazell DPPI channel index 0. */
63+
extern uint8_t nrf_gzll_dppi_ch0;
64+
/** Gazell DPPI channel index 1. */
65+
extern uint8_t nrf_gzll_dppi_ch1;
66+
/** Gazell DPPI channel index 2. */
67+
extern uint8_t nrf_gzll_dppi_ch2;
68+
/** Channel enable/disable mask for DPPI channel 0 and 1. */
69+
extern uint32_t nrf_gzll_dppi_chen_msk_0_and_1;
70+
/** Channel enable/disable mask for DPPI channel 2. */
71+
extern uint32_t nrf_gzll_dppi_chen_msk_2;
72+
#endif
5773

5874

5975
/**
85.4 KB
Binary file not shown.

0 commit comments

Comments
 (0)