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

bcm47081.dtsi (552B)


      1// SPDX-License-Identifier: GPL-2.0-or-later OR MIT
      2/*
      3 * Broadcom BCM470X / BCM5301X ARM platform code.
      4 * DTS for BCM47081 SoC.
      5 *
      6 * Copyright © 2014 Rafał Miłecki <zajec5@gmail.com>
      7 */
      8
      9#include "bcm5301x.dtsi"
     10
     11/ {
     12	compatible = "brcm,bcm47081";
     13
     14	aliases {
     15		serial0 = &uart0;
     16	};
     17
     18	chosen {
     19		stdout-path = "serial0:115200n8";
     20	};
     21
     22	cpus {
     23		#address-cells = <1>;
     24		#size-cells = <0>;
     25
     26		cpu@0 {
     27			device_type = "cpu";
     28			compatible = "arm,cortex-a9";
     29			next-level-cache = <&L2>;
     30			reg = <0x0>;
     31		};
     32	};
     33};
     34
     35&uart0 {
     36	status = "okay";
     37};