1/*
2 * Copyright (c) 2024 Renesas Electronics Corporation
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7#include <zephyr/dt-bindings/pwm/pwm.h>
8#include <zephyr/dt-bindings/pwm/renesas_rz_pwm.h>
9
10/ {
11	pwm_loopback_0 {
12		compatible = "test-pwm-loopback";
13		pwms = <&pwm3 RZ_PWM_GPT_IO_A 0 PWM_POLARITY_NORMAL>,
14		       <&pwm6 RZ_PWM_GPT_IO_A 0 PWM_POLARITY_NORMAL>;
15	};
16};
17
18&gpt32e3 {
19	pwm3: pwm {
20		status = "okay";
21		pinctrl-0 = <&gpt3_pins>;
22		pinctrl-names = "default";
23	};
24};
25
26&gpt32e6 {
27	pwm6: pwm {
28		status = "okay";
29		pinctrl-0 = <&gpt6_pins>;
30		pinctrl-names = "default";
31	};
32};
33