Skip to content

Commit 108d431

Browse files
cvinayakcarlescufi
authored andcommitted
Bluetooth: controller: nRF52811: Errata Id 164 not applicable
nRF52840 Engineering A Errata Id 164 is not applicable to nRF52811 SoC. Signed-off-by: Vinayak Kariappa Chettimada <[email protected]>
1 parent 7097e17 commit 108d431

File tree

1 file changed

+0
-18
lines changed

1 file changed

+0
-18
lines changed

subsys/bluetooth/controller/ll_sw/nordic/hal/nrf5/radio/radio_nrf52811.h

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -412,22 +412,10 @@ static inline uint32_t hal_radio_phy_mode_get(uint8_t phy, uint8_t flags)
412412
case BIT(0):
413413
default:
414414
mode = RADIO_MODE_MODE_Ble_1Mbit;
415-
416-
#if defined(CONFIG_BT_CTLR_PHY_CODED)
417-
/* Workaround: nRF52811 Engineering A Errata ID 164 */
418-
*(volatile uint32_t *)0x4000173c &= ~0x80000000;
419-
#endif /* CONFIG_BT_CTLR_PHY_CODED */
420-
421415
break;
422416

423417
case BIT(1):
424418
mode = RADIO_MODE_MODE_Ble_2Mbit;
425-
426-
#if defined(CONFIG_BT_CTLR_PHY_CODED)
427-
/* Workaround: nRF52811 Engineering A Errata ID 164 */
428-
*(volatile uint32_t *)0x4000173c &= ~0x80000000;
429-
#endif /* CONFIG_BT_CTLR_PHY_CODED */
430-
431419
break;
432420

433421
#if defined(CONFIG_BT_CTLR_PHY_CODED)
@@ -437,12 +425,6 @@ static inline uint32_t hal_radio_phy_mode_get(uint8_t phy, uint8_t flags)
437425
} else {
438426
mode = RADIO_MODE_MODE_Ble_LR500Kbit;
439427
}
440-
441-
/* Workaround: nRF52811 Engineering A Errata ID 164 */
442-
*(volatile uint32_t *)0x4000173c |= 0x80000000;
443-
*(volatile uint32_t *)0x4000173c =
444-
((*(volatile uint32_t *)0x4000173c) & 0xFFFFFF00) |
445-
0x5C;
446428
break;
447429
#endif /* CONFIG_BT_CTLR_PHY_CODED */
448430
}

0 commit comments

Comments
 (0)