xref: /freebsd/sys/contrib/device-tree/src/arm/nxp/mxs/imx28-eukrea-mbmx283lc.dts (revision aa1a8ff2d6dbc51ef058f46f3db5a8bb77967145)
1*f126890aSEmmanuel Vadot// SPDX-License-Identifier: GPL-2.0-or-later
2*f126890aSEmmanuel Vadot/*
3*f126890aSEmmanuel Vadot * Copyright 2013 Eukréa Electromatique <eric@eukrea.com>
4*f126890aSEmmanuel Vadot * Copyright 2013 Eukréa Electromatique <denis@eukrea.com>
5*f126890aSEmmanuel Vadot */
6*f126890aSEmmanuel Vadot
7*f126890aSEmmanuel Vadot/*
8*f126890aSEmmanuel Vadot * Module contains : i.MX282 + 64MB DDR2 + NAND + Ethernet PHY + RTC
9*f126890aSEmmanuel Vadot */
10*f126890aSEmmanuel Vadot
11*f126890aSEmmanuel Vadot/dts-v1/;
12*f126890aSEmmanuel Vadot#include "imx28-eukrea-mbmx28lc.dtsi"
13*f126890aSEmmanuel Vadot
14*f126890aSEmmanuel Vadot/ {
15*f126890aSEmmanuel Vadot	model = "Eukrea Electromatique MBMX283LC";
16*f126890aSEmmanuel Vadot	compatible = "eukrea,mbmx283lc", "eukrea,mbmx28lc", "fsl,imx28";
17*f126890aSEmmanuel Vadot
18*f126890aSEmmanuel Vadot	memory@40000000 {
19*f126890aSEmmanuel Vadot		device_type = "memory";
20*f126890aSEmmanuel Vadot		reg = <0x40000000 0x04000000>;
21*f126890aSEmmanuel Vadot	};
22*f126890aSEmmanuel Vadot};
23*f126890aSEmmanuel Vadot
24*f126890aSEmmanuel Vadot&gpmi {
25*f126890aSEmmanuel Vadot	pinctrl-names = "default";
26*f126890aSEmmanuel Vadot	pinctrl-0 = <&gpmi_pins_a>;
27*f126890aSEmmanuel Vadot	status = "okay";
28*f126890aSEmmanuel Vadot};
29*f126890aSEmmanuel Vadot
30*f126890aSEmmanuel Vadot&i2c0 {
31*f126890aSEmmanuel Vadot	pinctrl-names = "default";
32*f126890aSEmmanuel Vadot	pinctrl-0 = <&i2c0_pins_a>;
33*f126890aSEmmanuel Vadot	status = "okay";
34*f126890aSEmmanuel Vadot
35*f126890aSEmmanuel Vadot	pcf8563: rtc@51 {
36*f126890aSEmmanuel Vadot		compatible = "nxp,pcf8563";
37*f126890aSEmmanuel Vadot		reg = <0x51>;
38*f126890aSEmmanuel Vadot	};
39*f126890aSEmmanuel Vadot};
40*f126890aSEmmanuel Vadot
41*f126890aSEmmanuel Vadot
42*f126890aSEmmanuel Vadot&mac0 {
43*f126890aSEmmanuel Vadot	phy-mode = "rmii";
44*f126890aSEmmanuel Vadot	pinctrl-names = "default";
45*f126890aSEmmanuel Vadot	pinctrl-0 = <&mac0_pins_a>;
46*f126890aSEmmanuel Vadot	phy-reset-gpios = <&gpio4 13 GPIO_ACTIVE_LOW>;
47*f126890aSEmmanuel Vadot	status = "okay";
48*f126890aSEmmanuel Vadot};
49*f126890aSEmmanuel Vadot
50*f126890aSEmmanuel Vadot&pinctrl {
51*f126890aSEmmanuel Vadot	pinctrl-names = "default";
52*f126890aSEmmanuel Vadot	pinctrl-0 = <&hog_pins_cpuimx283>;
53*f126890aSEmmanuel Vadot
54*f126890aSEmmanuel Vadot	hog_pins_cpuimx283: hog-cpuimx283@0 {
55*f126890aSEmmanuel Vadot		reg = <0>;
56*f126890aSEmmanuel Vadot		fsl,pinmux-ids = <
57*f126890aSEmmanuel Vadot			MX28_PAD_ENET0_RX_CLK__GPIO_4_13
58*f126890aSEmmanuel Vadot			MX28_PAD_ENET0_TX_CLK__GPIO_4_5
59*f126890aSEmmanuel Vadot		>;
60*f126890aSEmmanuel Vadot		fsl,drive-strength = <MXS_DRIVE_4mA>;
61*f126890aSEmmanuel Vadot		fsl,voltage = <MXS_VOLTAGE_HIGH>;
62*f126890aSEmmanuel Vadot		fsl,pull-up = <MXS_PULL_ENABLE>;
63*f126890aSEmmanuel Vadot	};
64*f126890aSEmmanuel Vadot};
65