cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

imx28-m28.dtsi (1045B)


      1// SPDX-License-Identifier: GPL-2.0-or-later
      2/*
      3 * Copyright (C) 2014 Marek Vasut <marex@denx.de>
      4 */
      5
      6#include "imx28.dtsi"
      7
      8/ {
      9	model = "Aries/DENX M28";
     10	compatible = "aries,m28", "denx,m28", "fsl,imx28";
     11
     12	memory@40000000 {
     13		device_type = "memory";
     14		reg = <0x40000000 0x08000000>;
     15	};
     16
     17	apb@80000000 {
     18		apbh@80000000 {
     19			nand-controller@8000c000 {
     20				#address-cells = <1>;
     21				#size-cells = <1>;
     22				pinctrl-names = "default";
     23				pinctrl-0 = <&gpmi_pins_a &gpmi_status_cfg>;
     24				status = "okay";
     25			};
     26		};
     27
     28		apbx@80040000 {
     29			i2c0: i2c@80058000 {
     30				pinctrl-names = "default";
     31				pinctrl-0 = <&i2c0_pins_a>;
     32				status = "okay";
     33
     34				rtc: rtc@68 {
     35					compatible = "st,m41t62";
     36					reg = <0x68>;
     37				};
     38			};
     39		};
     40	};
     41
     42	regulators {
     43		compatible = "simple-bus";
     44		#address-cells = <1>;
     45		#size-cells = <0>;
     46
     47		reg_3p3v: regulator@0 {
     48			compatible = "regulator-fixed";
     49			reg = <0>;
     50			regulator-name = "3P3V";
     51			regulator-min-microvolt = <3300000>;
     52			regulator-max-microvolt = <3300000>;
     53			regulator-always-on;
     54		};
     55	};
     56};