Skip to content
Open
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
23 changes: 23 additions & 0 deletions samples/basic/blinky/boards/nrf54h20dk_nrf54h20_cpuppr.overlay
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
/* SPDX-License-Identifier: Apache-2.0 */

Check warning on line 1 in samples/basic/blinky/boards/nrf54h20dk_nrf54h20_cpuppr.overlay

View workflow job for this annotation

GitHub Actions / Run compliance checks on patch series (PR)

Copyright missing

samples/basic/blinky/boards/nrf54h20dk_nrf54h20_cpuppr.overlay:1 File has no SPDX-FileCopyrightText header, consider adding one.

/ {
aliases {
led0 = &led0;
};

leds {
compatible = "gpio-leds";
led0: led_0 {
gpios = < &gpio9 0x0 0x0 >;
label = "Green LED 0";
};
};
};

&gpiote130 {
status = "okay";
};

&gpio9 {
status = "okay";
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
/* SPDX-License-Identifier: Apache-2.0 */

Check warning on line 1 in tests/drivers/gpio/gpio_api_1pin/boards/nrf54h20dk_nrf54h20_cpuppr.overlay

View workflow job for this annotation

GitHub Actions / Run compliance checks on patch series (PR)

Copyright missing

tests/drivers/gpio/gpio_api_1pin/boards/nrf54h20dk_nrf54h20_cpuppr.overlay:1 File has no SPDX-FileCopyrightText header, consider adding one.

/ {
aliases {
led0 = &led0;
};

leds {
compatible = "gpio-leds";
led0: led_0 {
gpios = < &gpio9 0x0 0x0 >;
label = "Green LED 0";
};
};
};

&gpiote130 {
status = "okay";
};

&gpio9 {
status = "okay";
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
/* SPDX-License-Identifier: Apache-2.0 */

Check warning on line 1 in tests/drivers/gpio/gpio_basic_api/boards/nrf54h20dk_nrf54h20_cpuppr.overlay

View workflow job for this annotation

GitHub Actions / Run compliance checks on patch series (PR)

Copyright missing

tests/drivers/gpio/gpio_basic_api/boards/nrf54h20dk_nrf54h20_cpuppr.overlay:1 File has no SPDX-FileCopyrightText header, consider adding one.

#include "nrf54h20dk_nrf54h20_common.dtsi"

/ {
aliases {
led0 = &led0;
};

leds {
compatible = "gpio-leds";
led0: led_0 {
gpios = < &gpio9 0x0 0x0 >;
label = "Green LED 0";
};
};
};

&gpiote130 {
status = "okay";
};

&gpio9 {
status = "okay";
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
/* SPDX-License-Identifier: Apache-2.0 */

Check warning on line 1 in tests/drivers/gpio/gpio_get_direction/boards/nrf54h20dk_nrf54h20_cpuppr.overlay

View workflow job for this annotation

GitHub Actions / Run compliance checks on patch series (PR)

Copyright missing

tests/drivers/gpio/gpio_get_direction/boards/nrf54h20dk_nrf54h20_cpuppr.overlay:1 File has no SPDX-FileCopyrightText header, consider adding one.

/ {
aliases {
led0 = &led0;
};

leds {
compatible = "gpio-leds";
led0: led_0 {
gpios = < &gpio9 0x0 0x0 >;
label = "Green LED 0";
};
};
};

&gpiote130 {
status = "okay";
};

&gpio9 {
status = "okay";
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
/* SPDX-License-Identifier: Apache-2.0 */

Check warning on line 1 in tests/drivers/gpio/gpio_hogs/boards/nrf54h20dk_nrf54h20_cpuppr.overlay

View workflow job for this annotation

GitHub Actions / Run compliance checks on patch series (PR)

Copyright missing

tests/drivers/gpio/gpio_hogs/boards/nrf54h20dk_nrf54h20_cpuppr.overlay:1 File has no SPDX-FileCopyrightText header, consider adding one.

#include <zephyr/dt-bindings/gpio/gpio.h>

/ {
zephyr,user {
output-high-gpios = <&gpio0 3 GPIO_ACTIVE_LOW>;
output-low-gpios = <&gpio0 4 GPIO_ACTIVE_HIGH>;
input-gpios = <&gpio0 1 GPIO_ACTIVE_LOW>;
};
};

&gpio0 {
status = "okay";
hog1 {
gpio-hog;
gpios = <3 GPIO_ACTIVE_LOW>;
output-high;
};

hog2 {
gpio-hog;
gpios = <4 GPIO_ACTIVE_HIGH>;
output-low;
};

hog3 {
gpio-hog;
gpios = <1 GPIO_ACTIVE_LOW>;
input;
};
};

&gpiote130 {
status = "okay";
};
1 change: 1 addition & 0 deletions tests/drivers/gpio/gpio_hogs/testcase.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ tests:
- nrf52840dk/nrf52840
- nrf54l15dk/nrf54l15/cpuapp
- nrf54h20dk/nrf54h20/cpuapp
- nrf54h20dk/nrf54h20/cpuppr
- nucleo_g474re
- nrf52_bsim
- nrf5340bsim/nrf5340/cpuapp
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
/* SPDX-License-Identifier: Apache-2.0 */

Check warning on line 1 in tests/drivers/gpio/gpio_nrf/boards/nrf54h20dk_nrf54h20_cpuppr.overlay

View workflow job for this annotation

GitHub Actions / Run compliance checks on patch series (PR)

Copyright missing

tests/drivers/gpio/gpio_nrf/boards/nrf54h20dk_nrf54h20_cpuppr.overlay:1 File has no SPDX-FileCopyrightText header, consider adding one.

/ {
aliases {
led0 = &led0;
};

leds {
compatible = "gpio-leds";
led0: led_0 {
gpios = < &gpio9 0x0 0x0 >;
label = "Green LED 0";
};
};
};

&gpiote130 {
status = "okay";
};

&gpio9 {
status = "okay";
};
Loading