mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-17 02:36:21 +00:00
19c48f2789
The serial console settings in the chosen node are device-specific, not SoC-specific. Move the chosen node out of bcm21664.dtsi and into the only DTS that uses it, bcm21664-garnet.dts. Signed-off-by: Artur Weber <aweber.kernel@gmail.com> Link: https://lore.kernel.org/r/20240729-bcm21664-common-v2-1-ebc21a89bf63@gmail.com Signed-off-by: Florian Fainelli <florian.fainelli@broadcom.com>
52 lines
733 B
Plaintext
52 lines
733 B
Plaintext
// SPDX-License-Identifier: GPL-2.0-only
|
|
// Copyright (C) 2014 Broadcom Corporation
|
|
|
|
/dts-v1/;
|
|
|
|
#include <dt-bindings/gpio/gpio.h>
|
|
|
|
#include "bcm21664.dtsi"
|
|
|
|
/ {
|
|
model = "BCM21664 Garnet board";
|
|
compatible = "brcm,bcm21664-garnet", "brcm,bcm21664";
|
|
|
|
chosen {
|
|
bootargs = "console=ttyS0,115200n8";
|
|
};
|
|
|
|
memory@80000000 {
|
|
device_type = "memory";
|
|
reg = <0x80000000 0x40000000>; /* 1 GB */
|
|
};
|
|
};
|
|
|
|
&sdio1 {
|
|
max-frequency = <48000000>;
|
|
status = "okay";
|
|
};
|
|
|
|
&sdio2 {
|
|
non-removable;
|
|
max-frequency = <48000000>;
|
|
status = "okay";
|
|
};
|
|
|
|
&sdio4 {
|
|
max-frequency = <48000000>;
|
|
cd-gpios = <&gpio 91 GPIO_ACTIVE_LOW>;
|
|
status = "okay";
|
|
};
|
|
|
|
&uartb {
|
|
status = "okay";
|
|
};
|
|
|
|
&usbotg {
|
|
status = "okay";
|
|
};
|
|
|
|
&usbphy {
|
|
status = "okay";
|
|
};
|