1/*
2 * Copyright (c) 2024 Microchip Technology Inc.
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7/* Microchip MEC5 MEC174x, MEC540x, MEC175x, and MEC550x add two more UART's
8 * in the 176-pin (LJ) package.
9 * Include this file in the soc {} section in the above chip DTSI files.
10 */
11uart2: uart@400f2c00 {
12	reg = <0x400f2c00 0x400>;
13	interrupts = <183 1>;
14	clock-frequency = <1843200>;
15	current-speed = <38400>;
16	status = "disabled";
17};
18
19uart3: uart@400f3000 {
20	reg = <0x400f3000 0x400>;
21	interrupts = <184 1>;
22	clock-frequency = <1843200>;
23	current-speed = <38400>;
24	status = "disabled";
25};
26