xref: /freebsd-src/sys/contrib/device-tree/src/arm/nxp/vf/vf610m4-colibri.dts (revision f126890ac5386406dadf7c4cfa9566cbb56537c5)
1*f126890aSEmmanuel Vadot// SPDX-License-Identifier: GPL-2.0+ OR MIT
2*f126890aSEmmanuel Vadot/*
3*f126890aSEmmanuel Vadot * Device tree for Colibri VF61 Cortex-M4 support
4*f126890aSEmmanuel Vadot *
5*f126890aSEmmanuel Vadot * Copyright (C) 2015 Stefan Agner
6*f126890aSEmmanuel Vadot */
7*f126890aSEmmanuel Vadot
8*f126890aSEmmanuel Vadot/dts-v1/;
9*f126890aSEmmanuel Vadot#include "vf610m4.dtsi"
10*f126890aSEmmanuel Vadot
11*f126890aSEmmanuel Vadot/ {
12*f126890aSEmmanuel Vadot	model = "VF610 Cortex-M4";
13*f126890aSEmmanuel Vadot	compatible = "fsl,vf610m4";
14*f126890aSEmmanuel Vadot
15*f126890aSEmmanuel Vadot	chosen {
16*f126890aSEmmanuel Vadot		bootargs = "clk_ignore_unused init=/linuxrc rw";
17*f126890aSEmmanuel Vadot		stdout-path = "serial2:115200";
18*f126890aSEmmanuel Vadot	};
19*f126890aSEmmanuel Vadot
20*f126890aSEmmanuel Vadot	memory@8c000000 {
21*f126890aSEmmanuel Vadot		device_type = "memory";
22*f126890aSEmmanuel Vadot		reg = <0x8c000000 0x3000000>;
23*f126890aSEmmanuel Vadot	};
24*f126890aSEmmanuel Vadot};
25*f126890aSEmmanuel Vadot
26*f126890aSEmmanuel Vadot&gpio0 {
27*f126890aSEmmanuel Vadot	status = "disabled";
28*f126890aSEmmanuel Vadot};
29*f126890aSEmmanuel Vadot
30*f126890aSEmmanuel Vadot&gpio1 {
31*f126890aSEmmanuel Vadot	status = "disabled";
32*f126890aSEmmanuel Vadot};
33*f126890aSEmmanuel Vadot
34*f126890aSEmmanuel Vadot&gpio2 {
35*f126890aSEmmanuel Vadot	status = "disabled";
36*f126890aSEmmanuel Vadot};
37*f126890aSEmmanuel Vadot
38*f126890aSEmmanuel Vadot&gpio3 {
39*f126890aSEmmanuel Vadot	status = "disabled";
40*f126890aSEmmanuel Vadot};
41*f126890aSEmmanuel Vadot
42*f126890aSEmmanuel Vadot&gpio4 {
43*f126890aSEmmanuel Vadot	status = "disabled";
44*f126890aSEmmanuel Vadot};
45*f126890aSEmmanuel Vadot
46*f126890aSEmmanuel Vadot&uart2 {
47*f126890aSEmmanuel Vadot	pinctrl-names = "default";
48*f126890aSEmmanuel Vadot	pinctrl-0 = <&pinctrl_uart2>;
49*f126890aSEmmanuel Vadot	status = "okay";
50*f126890aSEmmanuel Vadot};
51*f126890aSEmmanuel Vadot
52*f126890aSEmmanuel Vadot&iomuxc {
53*f126890aSEmmanuel Vadot	vf610-colibri {
54*f126890aSEmmanuel Vadot		pinctrl_uart2: uart2grp {
55*f126890aSEmmanuel Vadot			fsl,pins = <
56*f126890aSEmmanuel Vadot				VF610_PAD_PTD0__UART2_TX		0x21a2
57*f126890aSEmmanuel Vadot				VF610_PAD_PTD1__UART2_RX		0x21a1
58*f126890aSEmmanuel Vadot				VF610_PAD_PTD2__UART2_RTS		0x21a2
59*f126890aSEmmanuel Vadot				VF610_PAD_PTD3__UART2_CTS		0x21a1
60*f126890aSEmmanuel Vadot			>;
61*f126890aSEmmanuel Vadot		};
62*f126890aSEmmanuel Vadot	};
63*f126890aSEmmanuel Vadot};
64