/* * Copyright (c) 2021 Nordic Semiconductor ASA * SPDX-License-Identifier: Apache-2.0 */ / { test_device: test_device@0 { compatible = "vnd,pinctrl-device"; reg = <0x0 0x1>; pinctrl-0 = <&test_device_default>; pinctrl-names = "default"; }; }; &pinctrl { test_device_default: test_device_default { /* Note: the groups are just meant for testing if properties and pins are parsed correctly, but do not necessarily represent a feasible combination */ group1 { psels = , , ; }; group2 { psels = ; nordic,drive-mode = ; }; group3 { psels = ; bias-pull-up; }; group4 { psels = ; bias-pull-down; }; group5 { psels = ; low-power-enable; }; }; };