1/*
2 * Copyright (c) 2022, TOKITA Hiroshi <tokita.hiroshi@gmail.com>
3 * SPDX-License-Identifier: Apache-2.0
4 */
5
6#include <dt-bindings/pinctrl/gd32f405z(e-g-k)xx-pinctrl.h>
7
8&pinctrl {
9	usart0_default: usart0_default {
10		group1 {
11			pinmux = <USART0_TX_PB6>, <USART0_RX_PB7>;
12		};
13	};
14
15	pwm2_default: pwm2_default {
16		group1 {
17			pinmux = <TIMER2_CH0_PC6>;
18		};
19	};
20};
21