1/*
2 * Copyright (c) 2025 Renesas Electronics Corporation
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7
8&pinctrl {
9	pwm2_default: pwm2_default {
10		group1 {
11			/* GTIOC2A GTIOC2B */
12			psels = <RA_PSEL(RA_PSEL_GPT1, 1, 3)>,
13				<RA_PSEL(RA_PSEL_GPT1, 1, 2)>;
14		};
15	};
16};
17
18&pwm2 {
19	pinctrl-0 = <&pwm2_default>;
20	pinctrl-names = "default";
21	interrupts = <63 1>, <64 1>;
22	interrupt-names = "gtioca", "overflow";
23	status = "okay";
24};
25