Skip to content

Commit 4a029e2

Browse files
mif1-nordicmasz-nordic
authored andcommitted
applications: sdp: mspi: Frequency max out
Enable transmission in frequencies up to 64MHz Signed-off-by: Michal Frankiewicz <michal.frankiewicz@nordicsemi.no>
1 parent 6c3c53b commit 4a029e2

File tree

1 file changed

+17
-0
lines changed
  • applications/sdp/mspi/src

1 file changed

+17
-0
lines changed

applications/sdp/mspi/src/main.c

+17
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@
2424
#define DATA_PINS_MAX 8
2525
#define VIO_COUNT 11
2626

27+
#define STD_PAD_BIAS_CNT0_THRESHOLD 1
28+
29+
#define PAD_BIAS_VALUE 1
30+
2731
#define MAX_SHIFT_COUNT 63
2832

2933
#define CE_PIN_UNUSED UINT8_MAX
@@ -35,6 +39,12 @@
3539
#define VEVIF_IRQN(vevif) VEVIF_IRQN_1(vevif)
3640
#define VEVIF_IRQN_1(vevif) VPRCLIC_##vevif##_IRQn
3741

42+
#ifdef CONFIG_SOC_NRF54L15
43+
#define NRF_GPIOHSPADCTRL ((NRF_GPIOHSPADCTRL_Type *)NRF_P2_S_BASE)
44+
#else
45+
#error "Unsupported SoC for SDP MSPI"
46+
#endif
47+
3848
BUILD_ASSERT(CONFIG_SDP_MSPI_MAX_RESPONSE_SIZE > 0, "Response max size should be greater that 0");
3949

4050
static const uint8_t pin_to_vio_map[VIO_COUNT] = {
@@ -443,6 +453,13 @@ static void ep_recv(const void *data, size_t len, void *priv)
443453
nrfe_mspi_xfer_config = xfer_config->xfer_config;
444454
#endif
445455
configure_clock(nrfe_mspi_devices[nrfe_mspi_xfer_config_ptr->device_index].cpp);
456+
457+
/* Tune up pad bias for frequencies above 32MHz */
458+
if (nrfe_mspi_devices[nrfe_mspi_xfer_config_ptr->device_index].cnt0_value <=
459+
STD_PAD_BIAS_CNT0_THRESHOLD) {
460+
NRF_GPIOHSPADCTRL->BIAS = PAD_BIAS_VALUE;
461+
}
462+
446463
break;
447464
}
448465
case NRFE_MSPI_TX:

0 commit comments

Comments
 (0)