Linux Audio

Check our new training course

Linux debugging, profiling, tracing and performance analysis training

Apr 14-17, 2025
Register
Loading...
v4.17
 
 1/*
 2 * Broadcom BCM470X / BCM5301X ARM platform code.
 3 * DTS for BCM47081 SoC.
 4 *
 5 * Copyright © 2014 Rafał Miłecki <zajec5@gmail.com>
 6 *
 7 * Permission to use, copy, modify, and/or distribute this software for any
 8 * purpose with or without fee is hereby granted, provided that the above
 9 * copyright notice and this permission notice appear in all copies.
10 *
11 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
12 * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
13 * AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
14 * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
15 * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
16 * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
17 * PERFORMANCE OF THIS SOFTWARE.
18 */
19
20#include "bcm5301x.dtsi"
21
22/ {
23	compatible = "brcm,bcm47081";
24
25	aliases {
26		serial0 = &uart0;
27	};
28
29	chosen {
30		stdout-path = "serial0:115200n8";
31	};
32
33	cpus {
34		#address-cells = <1>;
35		#size-cells = <0>;
36
37		cpu@0 {
38			device_type = "cpu";
39			compatible = "arm,cortex-a9";
40			next-level-cache = <&L2>;
41			reg = <0x0>;
42		};
43	};
44};
45
46&uart0 {
47	status = "okay";
48};
v5.4
 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};