Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions scripts/quarantine.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,12 @@
- nrf7120dk/nrf7120/cpuapp
comment: "https://nordicsemi.atlassian.net/browse/NCSDK-39364"

- scenarios:
- nrf.extended.drivers.clock.nrf_clock_control
platforms:
- nrf9251dk@0.1.0/nrf9251/cpuapp
comment: "https://nordicsemi.atlassian.net/browse/NRFX-9455"

- scenarios:
- nrf.extended.sample.ipc.icmsg.nrf54h_nrf92_no_multithreading
- drivers.grtc.test_mcuboot_grtc_no_uninit
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#
# Copyright (c) 2026 Nordic Semiconductor ASA
#
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
#

cmake_minimum_required(VERSION 3.20.0)

find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
project(nrf_clock_control)

target_sources(app PRIVATE ${ZEPHYR_BASE}/tests/drivers/clock_control/nrf_clock_control/src/main.c)
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
source "tests/drivers/clock_control/nrf_clock_control/Kconfig"
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
This test extends the same-named Zephyr test to verify it with Nordic development kits.

Source code and basic configuration files can be found in the corresponding folder structure in zephyr/tests/drivers/clock_control/nrf_clock_control.
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
CONFIG_TEST_FLL16M=y
CONFIG_TEST_HSFLL_APP=y
CONFIG_TEST_DVFS_INIT=y
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
/*
* Copyright (c) 2026 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
*/

&fll16m {
status = "okay";
};

&hsfll120 {
status = "okay";
};

&lfclk {
status = "okay";
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
CONFIG_ZTEST=y

CONFIG_CLOCK_CONTROL=y
CONFIG_LOG=y
CONFIG_CLOCK_CONTROL_LOG_LEVEL_DBG=y
CONFIG_LOCAL_DOMAIN_DVFS_LIB_LOG_LEVEL_DBG=y
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
tests:
nrf.extended.drivers.clock.nrf_clock_control:
tags:
- drivers
- clock_control
- ci_tests_zephyr_drivers_clock_control
platform_allow:
- nrf9251dk/nrf9251/cpuapp
2 changes: 1 addition & 1 deletion west.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ manifest:
# https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/zephyr/guides/modules.html
- name: zephyr
repo-path: sdk-zephyr
revision: a965c4190fa910792484ec8acffecec02bf862b7
revision: cea63b3906540b754e4392f178b6edf73dd34251
import:
# In addition to the zephyr repository itself, NCS also
# imports the contents of zephyr/west.yml at the above
Expand Down
Loading