arm: rpi: Sync rpi dts files from Linux
Sync these files, obtained from Linux v5.15. This adds a devicetree file for rpi_4 which was not there before. Testing shows no change so far as I can see: - boots to U-Boot prompt on rpi0, rpi2 - boots to distro on rpi3 - boots to distro on rpi4 I am assuming that syncing with Linux is safe, but the maintainer should know for sure. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
@@ -1077,7 +1077,8 @@ dtb-$(CONFIG_ARCH_BCM283X) += \
|
|||||||
bcm2837-rpi-3-a-plus.dtb \
|
bcm2837-rpi-3-a-plus.dtb \
|
||||||
bcm2837-rpi-3-b.dtb \
|
bcm2837-rpi-3-b.dtb \
|
||||||
bcm2837-rpi-3-b-plus.dtb \
|
bcm2837-rpi-3-b-plus.dtb \
|
||||||
bcm2837-rpi-cm3-io3.dtb
|
bcm2837-rpi-cm3-io3.dtb \
|
||||||
|
bcm2711-rpi-4-b.dtb
|
||||||
|
|
||||||
dtb-$(CONFIG_ARCH_BCM63158) += \
|
dtb-$(CONFIG_ARCH_BCM63158) += \
|
||||||
bcm963158.dtb
|
bcm963158.dtb
|
||||||
|
262
arch/arm/dts/bcm2711-rpi-4-b.dts
Normal file
262
arch/arm/dts/bcm2711-rpi-4-b.dts
Normal file
@@ -0,0 +1,262 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-2.0
|
||||||
|
/dts-v1/;
|
||||||
|
#include "bcm2711.dtsi"
|
||||||
|
#include "bcm2711-rpi.dtsi"
|
||||||
|
#include "bcm283x-rpi-usb-peripheral.dtsi"
|
||||||
|
|
||||||
|
/ {
|
||||||
|
compatible = "raspberrypi,4-model-b", "brcm,bcm2711";
|
||||||
|
model = "Raspberry Pi 4 Model B";
|
||||||
|
|
||||||
|
chosen {
|
||||||
|
/* 8250 auxiliary UART instead of pl011 */
|
||||||
|
stdout-path = "serial1:115200n8";
|
||||||
|
};
|
||||||
|
|
||||||
|
leds {
|
||||||
|
led-act {
|
||||||
|
gpios = <&gpio 42 GPIO_ACTIVE_HIGH>;
|
||||||
|
};
|
||||||
|
|
||||||
|
led-pwr {
|
||||||
|
label = "PWR";
|
||||||
|
gpios = <&expgpio 2 GPIO_ACTIVE_LOW>;
|
||||||
|
default-state = "keep";
|
||||||
|
linux,default-trigger = "default-on";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
wifi_pwrseq: wifi-pwrseq {
|
||||||
|
compatible = "mmc-pwrseq-simple";
|
||||||
|
reset-gpios = <&expgpio 1 GPIO_ACTIVE_LOW>;
|
||||||
|
};
|
||||||
|
|
||||||
|
sd_io_1v8_reg: sd_io_1v8_reg {
|
||||||
|
compatible = "regulator-gpio";
|
||||||
|
regulator-name = "vdd-sd-io";
|
||||||
|
regulator-min-microvolt = <1800000>;
|
||||||
|
regulator-max-microvolt = <3300000>;
|
||||||
|
regulator-boot-on;
|
||||||
|
regulator-always-on;
|
||||||
|
regulator-settling-time-us = <5000>;
|
||||||
|
gpios = <&expgpio 4 GPIO_ACTIVE_HIGH>;
|
||||||
|
states = <1800000 0x1>,
|
||||||
|
<3300000 0x0>;
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
sd_vcc_reg: sd_vcc_reg {
|
||||||
|
compatible = "regulator-fixed";
|
||||||
|
regulator-name = "vcc-sd";
|
||||||
|
regulator-min-microvolt = <3300000>;
|
||||||
|
regulator-max-microvolt = <3300000>;
|
||||||
|
regulator-boot-on;
|
||||||
|
enable-active-high;
|
||||||
|
gpio = <&expgpio 6 GPIO_ACTIVE_HIGH>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
&ddc0 {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&ddc1 {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&expgpio {
|
||||||
|
gpio-line-names = "BT_ON",
|
||||||
|
"WL_ON",
|
||||||
|
"PWR_LED_OFF",
|
||||||
|
"GLOBAL_RESET",
|
||||||
|
"VDD_SD_IO_SEL",
|
||||||
|
"CAM_GPIO",
|
||||||
|
"SD_PWR_ON",
|
||||||
|
"";
|
||||||
|
};
|
||||||
|
|
||||||
|
&gpio {
|
||||||
|
/*
|
||||||
|
* Parts taken from rpi_SCH_4b_4p0_reduced.pdf and
|
||||||
|
* the official GPU firmware DT blob.
|
||||||
|
*
|
||||||
|
* Legend:
|
||||||
|
* "FOO" = GPIO line named "FOO" on the schematic
|
||||||
|
* "FOO_N" = GPIO line named "FOO" on schematic, active low
|
||||||
|
*/
|
||||||
|
gpio-line-names = "ID_SDA",
|
||||||
|
"ID_SCL",
|
||||||
|
"SDA1",
|
||||||
|
"SCL1",
|
||||||
|
"GPIO_GCLK",
|
||||||
|
"GPIO5",
|
||||||
|
"GPIO6",
|
||||||
|
"SPI_CE1_N",
|
||||||
|
"SPI_CE0_N",
|
||||||
|
"SPI_MISO",
|
||||||
|
"SPI_MOSI",
|
||||||
|
"SPI_SCLK",
|
||||||
|
"GPIO12",
|
||||||
|
"GPIO13",
|
||||||
|
/* Serial port */
|
||||||
|
"TXD1",
|
||||||
|
"RXD1",
|
||||||
|
"GPIO16",
|
||||||
|
"GPIO17",
|
||||||
|
"GPIO18",
|
||||||
|
"GPIO19",
|
||||||
|
"GPIO20",
|
||||||
|
"GPIO21",
|
||||||
|
"GPIO22",
|
||||||
|
"GPIO23",
|
||||||
|
"GPIO24",
|
||||||
|
"GPIO25",
|
||||||
|
"GPIO26",
|
||||||
|
"GPIO27",
|
||||||
|
"RGMII_MDIO",
|
||||||
|
"RGMIO_MDC",
|
||||||
|
/* Used by BT module */
|
||||||
|
"CTS0",
|
||||||
|
"RTS0",
|
||||||
|
"TXD0",
|
||||||
|
"RXD0",
|
||||||
|
/* Used by Wifi */
|
||||||
|
"SD1_CLK",
|
||||||
|
"SD1_CMD",
|
||||||
|
"SD1_DATA0",
|
||||||
|
"SD1_DATA1",
|
||||||
|
"SD1_DATA2",
|
||||||
|
"SD1_DATA3",
|
||||||
|
/* Shared with SPI flash */
|
||||||
|
"PWM0_MISO",
|
||||||
|
"PWM1_MOSI",
|
||||||
|
"STATUS_LED_G_CLK",
|
||||||
|
"SPIFLASH_CE_N",
|
||||||
|
"SDA0",
|
||||||
|
"SCL0",
|
||||||
|
"RGMII_RXCLK",
|
||||||
|
"RGMII_RXCTL",
|
||||||
|
"RGMII_RXD0",
|
||||||
|
"RGMII_RXD1",
|
||||||
|
"RGMII_RXD2",
|
||||||
|
"RGMII_RXD3",
|
||||||
|
"RGMII_TXCLK",
|
||||||
|
"RGMII_TXCTL",
|
||||||
|
"RGMII_TXD0",
|
||||||
|
"RGMII_TXD1",
|
||||||
|
"RGMII_TXD2",
|
||||||
|
"RGMII_TXD3";
|
||||||
|
};
|
||||||
|
|
||||||
|
&hdmi0 {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&hdmi1 {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&pixelvalve0 {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&pixelvalve1 {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&pixelvalve2 {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&pixelvalve4 {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&pwm1 {
|
||||||
|
pinctrl-names = "default";
|
||||||
|
pinctrl-0 = <&pwm1_0_gpio40 &pwm1_1_gpio41>;
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
/* SDHCI is used to control the SDIO for wireless */
|
||||||
|
&sdhci {
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <0>;
|
||||||
|
pinctrl-names = "default";
|
||||||
|
pinctrl-0 = <&emmc_gpio34>;
|
||||||
|
bus-width = <4>;
|
||||||
|
non-removable;
|
||||||
|
mmc-pwrseq = <&wifi_pwrseq>;
|
||||||
|
status = "okay";
|
||||||
|
|
||||||
|
brcmf: wifi@1 {
|
||||||
|
reg = <1>;
|
||||||
|
compatible = "brcm,bcm4329-fmac";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
/* EMMC2 is used to drive the SD card */
|
||||||
|
&emmc2 {
|
||||||
|
vqmmc-supply = <&sd_io_1v8_reg>;
|
||||||
|
vmmc-supply = <&sd_vcc_reg>;
|
||||||
|
broken-cd;
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&genet {
|
||||||
|
phy-handle = <&phy1>;
|
||||||
|
phy-mode = "rgmii-rxid";
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&genet_mdio {
|
||||||
|
phy1: ethernet-phy@1 {
|
||||||
|
/* No PHY interrupt */
|
||||||
|
reg = <0x1>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
&pcie0 {
|
||||||
|
pci@0,0 {
|
||||||
|
device_type = "pci";
|
||||||
|
#address-cells = <3>;
|
||||||
|
#size-cells = <2>;
|
||||||
|
ranges;
|
||||||
|
|
||||||
|
reg = <0 0 0 0 0>;
|
||||||
|
|
||||||
|
usb@0,0 {
|
||||||
|
reg = <0 0 0 0 0>;
|
||||||
|
resets = <&reset RASPBERRYPI_FIRMWARE_RESET_ID_USB>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
/* uart0 communicates with the BT module */
|
||||||
|
&uart0 {
|
||||||
|
pinctrl-names = "default";
|
||||||
|
pinctrl-0 = <&uart0_ctsrts_gpio30 &uart0_gpio32>;
|
||||||
|
uart-has-rtscts;
|
||||||
|
status = "okay";
|
||||||
|
|
||||||
|
bluetooth {
|
||||||
|
compatible = "brcm,bcm43438-bt";
|
||||||
|
max-speed = <2000000>;
|
||||||
|
shutdown-gpios = <&expgpio 0 GPIO_ACTIVE_HIGH>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
/* uart1 is mapped to the pin header */
|
||||||
|
&uart1 {
|
||||||
|
pinctrl-names = "default";
|
||||||
|
pinctrl-0 = <&uart1_gpio14>;
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&vc4 {
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&vec {
|
||||||
|
status = "disabled";
|
||||||
|
};
|
74
arch/arm/dts/bcm2711-rpi.dtsi
Normal file
74
arch/arm/dts/bcm2711-rpi.dtsi
Normal file
@@ -0,0 +1,74 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-2.0
|
||||||
|
#include "bcm2835-rpi.dtsi"
|
||||||
|
|
||||||
|
#include <dt-bindings/reset/raspberrypi,firmware-reset.h>
|
||||||
|
|
||||||
|
/ {
|
||||||
|
/* Will be filled by the bootloader */
|
||||||
|
memory@0 {
|
||||||
|
device_type = "memory";
|
||||||
|
reg = <0 0 0>;
|
||||||
|
};
|
||||||
|
|
||||||
|
aliases {
|
||||||
|
emmc2bus = &emmc2bus;
|
||||||
|
ethernet0 = &genet;
|
||||||
|
pcie0 = &pcie0;
|
||||||
|
blconfig = &blconfig;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
&firmware {
|
||||||
|
firmware_clocks: clocks {
|
||||||
|
compatible = "raspberrypi,firmware-clocks";
|
||||||
|
#clock-cells = <1>;
|
||||||
|
};
|
||||||
|
|
||||||
|
expgpio: gpio {
|
||||||
|
compatible = "raspberrypi,firmware-gpio";
|
||||||
|
gpio-controller;
|
||||||
|
#gpio-cells = <2>;
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
reset: reset {
|
||||||
|
compatible = "raspberrypi,firmware-reset";
|
||||||
|
#reset-cells = <1>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
&hdmi0 {
|
||||||
|
clocks = <&firmware_clocks 13>, <&firmware_clocks 14>, <&dvp 0>, <&clk_27MHz>;
|
||||||
|
clock-names = "hdmi", "bvb", "audio", "cec";
|
||||||
|
wifi-2.4ghz-coexistence;
|
||||||
|
};
|
||||||
|
|
||||||
|
&hdmi1 {
|
||||||
|
clocks = <&firmware_clocks 13>, <&firmware_clocks 14>, <&dvp 1>, <&clk_27MHz>;
|
||||||
|
clock-names = "hdmi", "bvb", "audio", "cec";
|
||||||
|
wifi-2.4ghz-coexistence;
|
||||||
|
};
|
||||||
|
|
||||||
|
&hvs {
|
||||||
|
clocks = <&firmware_clocks 4>;
|
||||||
|
};
|
||||||
|
|
||||||
|
&rmem {
|
||||||
|
/*
|
||||||
|
* RPi4's co-processor will copy the board's bootloader configuration
|
||||||
|
* into memory for the OS to consume. It'll also update this node with
|
||||||
|
* its placement information.
|
||||||
|
*/
|
||||||
|
blconfig: nvram@0 {
|
||||||
|
compatible = "raspberrypi,bootloader-config", "nvmem-rmem";
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <1>;
|
||||||
|
reg = <0x0 0x0 0x0>;
|
||||||
|
no-map;
|
||||||
|
status = "disabled";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
&vchiq {
|
||||||
|
interrupts = <GIC_SPI 34 IRQ_TYPE_LEVEL_HIGH>;
|
||||||
|
};
|
1100
arch/arm/dts/bcm2711.dtsi
Normal file
1100
arch/arm/dts/bcm2711.dtsi
Normal file
File diff suppressed because it is too large
Load Diff
207
arch/arm/dts/bcm2835-common.dtsi
Normal file
207
arch/arm/dts/bcm2835-common.dtsi
Normal file
@@ -0,0 +1,207 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-2.0
|
||||||
|
|
||||||
|
/* This include file covers the common peripherals and configuration between
|
||||||
|
* bcm2835, bcm2836 and bcm2837 implementations.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/ {
|
||||||
|
interrupt-parent = <&intc>;
|
||||||
|
|
||||||
|
soc {
|
||||||
|
dma: dma@7e007000 {
|
||||||
|
compatible = "brcm,bcm2835-dma";
|
||||||
|
reg = <0x7e007000 0xf00>;
|
||||||
|
interrupts = <1 16>,
|
||||||
|
<1 17>,
|
||||||
|
<1 18>,
|
||||||
|
<1 19>,
|
||||||
|
<1 20>,
|
||||||
|
<1 21>,
|
||||||
|
<1 22>,
|
||||||
|
<1 23>,
|
||||||
|
<1 24>,
|
||||||
|
<1 25>,
|
||||||
|
<1 26>,
|
||||||
|
/* dma channel 11-14 share one irq */
|
||||||
|
<1 27>,
|
||||||
|
<1 27>,
|
||||||
|
<1 27>,
|
||||||
|
<1 27>,
|
||||||
|
/* unused shared irq for all channels */
|
||||||
|
<1 28>;
|
||||||
|
interrupt-names = "dma0",
|
||||||
|
"dma1",
|
||||||
|
"dma2",
|
||||||
|
"dma3",
|
||||||
|
"dma4",
|
||||||
|
"dma5",
|
||||||
|
"dma6",
|
||||||
|
"dma7",
|
||||||
|
"dma8",
|
||||||
|
"dma9",
|
||||||
|
"dma10",
|
||||||
|
"dma11",
|
||||||
|
"dma12",
|
||||||
|
"dma13",
|
||||||
|
"dma14",
|
||||||
|
"dma-shared-all";
|
||||||
|
#dma-cells = <1>;
|
||||||
|
brcm,dma-channel-mask = <0x7f35>;
|
||||||
|
};
|
||||||
|
|
||||||
|
intc: interrupt-controller@7e00b200 {
|
||||||
|
compatible = "brcm,bcm2835-armctrl-ic";
|
||||||
|
reg = <0x7e00b200 0x200>;
|
||||||
|
interrupt-controller;
|
||||||
|
#interrupt-cells = <2>;
|
||||||
|
};
|
||||||
|
|
||||||
|
pm: watchdog@7e100000 {
|
||||||
|
compatible = "brcm,bcm2835-pm", "brcm,bcm2835-pm-wdt";
|
||||||
|
#power-domain-cells = <1>;
|
||||||
|
#reset-cells = <1>;
|
||||||
|
reg = <0x7e100000 0x114>,
|
||||||
|
<0x7e00a000 0x24>;
|
||||||
|
clocks = <&clocks BCM2835_CLOCK_V3D>,
|
||||||
|
<&clocks BCM2835_CLOCK_PERI_IMAGE>,
|
||||||
|
<&clocks BCM2835_CLOCK_H264>,
|
||||||
|
<&clocks BCM2835_CLOCK_ISP>;
|
||||||
|
clock-names = "v3d", "peri_image", "h264", "isp";
|
||||||
|
system-power-controller;
|
||||||
|
};
|
||||||
|
|
||||||
|
rng@7e104000 {
|
||||||
|
compatible = "brcm,bcm2835-rng";
|
||||||
|
reg = <0x7e104000 0x10>;
|
||||||
|
interrupts = <2 29>;
|
||||||
|
};
|
||||||
|
|
||||||
|
pixelvalve@7e206000 {
|
||||||
|
compatible = "brcm,bcm2835-pixelvalve0";
|
||||||
|
reg = <0x7e206000 0x100>;
|
||||||
|
interrupts = <2 13>; /* pwa0 */
|
||||||
|
};
|
||||||
|
|
||||||
|
pixelvalve@7e207000 {
|
||||||
|
compatible = "brcm,bcm2835-pixelvalve1";
|
||||||
|
reg = <0x7e207000 0x100>;
|
||||||
|
interrupts = <2 14>; /* pwa1 */
|
||||||
|
};
|
||||||
|
|
||||||
|
thermal: thermal@7e212000 {
|
||||||
|
compatible = "brcm,bcm2835-thermal";
|
||||||
|
reg = <0x7e212000 0x8>;
|
||||||
|
clocks = <&clocks BCM2835_CLOCK_TSENS>;
|
||||||
|
#thermal-sensor-cells = <0>;
|
||||||
|
status = "disabled";
|
||||||
|
};
|
||||||
|
|
||||||
|
i2c2: i2c@7e805000 {
|
||||||
|
compatible = "brcm,bcm2835-i2c";
|
||||||
|
reg = <0x7e805000 0x1000>;
|
||||||
|
interrupts = <2 21>;
|
||||||
|
clocks = <&clocks BCM2835_CLOCK_VPU>;
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <0>;
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
vec: vec@7e806000 {
|
||||||
|
compatible = "brcm,bcm2835-vec";
|
||||||
|
reg = <0x7e806000 0x1000>;
|
||||||
|
clocks = <&clocks BCM2835_CLOCK_VEC>;
|
||||||
|
interrupts = <2 27>;
|
||||||
|
status = "disabled";
|
||||||
|
};
|
||||||
|
|
||||||
|
pixelvalve@7e807000 {
|
||||||
|
compatible = "brcm,bcm2835-pixelvalve2";
|
||||||
|
reg = <0x7e807000 0x100>;
|
||||||
|
interrupts = <2 10>; /* pixelvalve */
|
||||||
|
};
|
||||||
|
|
||||||
|
hdmi: hdmi@7e902000 {
|
||||||
|
compatible = "brcm,bcm2835-hdmi";
|
||||||
|
reg = <0x7e902000 0x600>,
|
||||||
|
<0x7e808000 0x100>;
|
||||||
|
interrupts = <2 8>, <2 9>;
|
||||||
|
ddc = <&i2c2>;
|
||||||
|
clocks = <&clocks BCM2835_PLLH_PIX>,
|
||||||
|
<&clocks BCM2835_CLOCK_HSM>;
|
||||||
|
clock-names = "pixel", "hdmi";
|
||||||
|
dmas = <&dma 17>;
|
||||||
|
dma-names = "audio-rx";
|
||||||
|
status = "disabled";
|
||||||
|
};
|
||||||
|
|
||||||
|
v3d: v3d@7ec00000 {
|
||||||
|
compatible = "brcm,bcm2835-v3d";
|
||||||
|
reg = <0x7ec00000 0x1000>;
|
||||||
|
interrupts = <1 10>;
|
||||||
|
};
|
||||||
|
|
||||||
|
vc4: gpu {
|
||||||
|
compatible = "brcm,bcm2835-vc4";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
&cpu_thermal {
|
||||||
|
thermal-sensors = <&thermal>;
|
||||||
|
};
|
||||||
|
|
||||||
|
&gpio {
|
||||||
|
i2c_slave_gpio18: i2c_slave_gpio18 {
|
||||||
|
brcm,pins = <18 19 20 21>;
|
||||||
|
brcm,function = <BCM2835_FSEL_ALT3>;
|
||||||
|
};
|
||||||
|
|
||||||
|
jtag_gpio4: jtag_gpio4 {
|
||||||
|
brcm,pins = <4 5 6 12 13>;
|
||||||
|
brcm,function = <BCM2835_FSEL_ALT5>;
|
||||||
|
};
|
||||||
|
|
||||||
|
pwm0_gpio12: pwm0_gpio12 {
|
||||||
|
brcm,pins = <12>;
|
||||||
|
brcm,function = <BCM2835_FSEL_ALT0>;
|
||||||
|
};
|
||||||
|
pwm0_gpio18: pwm0_gpio18 {
|
||||||
|
brcm,pins = <18>;
|
||||||
|
brcm,function = <BCM2835_FSEL_ALT5>;
|
||||||
|
};
|
||||||
|
pwm0_gpio40: pwm0_gpio40 {
|
||||||
|
brcm,pins = <40>;
|
||||||
|
brcm,function = <BCM2835_FSEL_ALT0>;
|
||||||
|
};
|
||||||
|
pwm1_gpio13: pwm1_gpio13 {
|
||||||
|
brcm,pins = <13>;
|
||||||
|
brcm,function = <BCM2835_FSEL_ALT0>;
|
||||||
|
};
|
||||||
|
pwm1_gpio19: pwm1_gpio19 {
|
||||||
|
brcm,pins = <19>;
|
||||||
|
brcm,function = <BCM2835_FSEL_ALT5>;
|
||||||
|
};
|
||||||
|
pwm1_gpio41: pwm1_gpio41 {
|
||||||
|
brcm,pins = <41>;
|
||||||
|
brcm,function = <BCM2835_FSEL_ALT0>;
|
||||||
|
};
|
||||||
|
pwm1_gpio45: pwm1_gpio45 {
|
||||||
|
brcm,pins = <45>;
|
||||||
|
brcm,function = <BCM2835_FSEL_ALT0>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
&i2s {
|
||||||
|
dmas = <&dma 2>, <&dma 3>;
|
||||||
|
dma-names = "tx", "rx";
|
||||||
|
};
|
||||||
|
|
||||||
|
&sdhost {
|
||||||
|
dmas = <&dma 13>;
|
||||||
|
dma-names = "rx-tx";
|
||||||
|
};
|
||||||
|
|
||||||
|
&spi {
|
||||||
|
dmas = <&dma 6>, <&dma 7>;
|
||||||
|
dma-names = "tx", "rx";
|
||||||
|
};
|
@@ -8,12 +8,17 @@
|
|||||||
compatible = "raspberrypi,model-a-plus", "brcm,bcm2835";
|
compatible = "raspberrypi,model-a-plus", "brcm,bcm2835";
|
||||||
model = "Raspberry Pi Model A+";
|
model = "Raspberry Pi Model A+";
|
||||||
|
|
||||||
|
memory@0 {
|
||||||
|
device_type = "memory";
|
||||||
|
reg = <0 0x10000000>;
|
||||||
|
};
|
||||||
|
|
||||||
leds {
|
leds {
|
||||||
act {
|
led-act {
|
||||||
gpios = <&gpio 47 GPIO_ACTIVE_HIGH>;
|
gpios = <&gpio 47 GPIO_ACTIVE_HIGH>;
|
||||||
};
|
};
|
||||||
|
|
||||||
pwr {
|
led-pwr {
|
||||||
label = "PWR";
|
label = "PWR";
|
||||||
gpios = <&gpio 35 GPIO_ACTIVE_HIGH>;
|
gpios = <&gpio 35 GPIO_ACTIVE_HIGH>;
|
||||||
default-state = "keep";
|
default-state = "keep";
|
||||||
@@ -99,6 +104,8 @@
|
|||||||
|
|
||||||
&hdmi {
|
&hdmi {
|
||||||
hpd-gpios = <&gpio 46 GPIO_ACTIVE_LOW>;
|
hpd-gpios = <&gpio 46 GPIO_ACTIVE_LOW>;
|
||||||
|
power-domains = <&power RPI_POWER_DOMAIN_HDMI>;
|
||||||
|
status = "okay";
|
||||||
};
|
};
|
||||||
|
|
||||||
&pwm {
|
&pwm {
|
||||||
@@ -107,6 +114,13 @@
|
|||||||
status = "okay";
|
status = "okay";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
&sdhost {
|
||||||
|
pinctrl-names = "default";
|
||||||
|
pinctrl-0 = <&sdhost_gpio48>;
|
||||||
|
bus-width = <4>;
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
&uart0 {
|
&uart0 {
|
||||||
pinctrl-names = "default";
|
pinctrl-names = "default";
|
||||||
pinctrl-0 = <&uart0_gpio14>;
|
pinctrl-0 = <&uart0_gpio14>;
|
||||||
|
@@ -8,8 +8,13 @@
|
|||||||
compatible = "raspberrypi,model-a", "brcm,bcm2835";
|
compatible = "raspberrypi,model-a", "brcm,bcm2835";
|
||||||
model = "Raspberry Pi Model A";
|
model = "Raspberry Pi Model A";
|
||||||
|
|
||||||
|
memory@0 {
|
||||||
|
device_type = "memory";
|
||||||
|
reg = <0 0x10000000>;
|
||||||
|
};
|
||||||
|
|
||||||
leds {
|
leds {
|
||||||
act {
|
led-act {
|
||||||
gpios = <&gpio 16 GPIO_ACTIVE_LOW>;
|
gpios = <&gpio 16 GPIO_ACTIVE_LOW>;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
@@ -94,6 +99,8 @@
|
|||||||
|
|
||||||
&hdmi {
|
&hdmi {
|
||||||
hpd-gpios = <&gpio 46 GPIO_ACTIVE_HIGH>;
|
hpd-gpios = <&gpio 46 GPIO_ACTIVE_HIGH>;
|
||||||
|
power-domains = <&power RPI_POWER_DOMAIN_HDMI>;
|
||||||
|
status = "okay";
|
||||||
};
|
};
|
||||||
|
|
||||||
&pwm {
|
&pwm {
|
||||||
@@ -102,6 +109,13 @@
|
|||||||
status = "okay";
|
status = "okay";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
&sdhost {
|
||||||
|
pinctrl-names = "default";
|
||||||
|
pinctrl-0 = <&sdhost_gpio48>;
|
||||||
|
bus-width = <4>;
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
&uart0 {
|
&uart0 {
|
||||||
pinctrl-names = "default";
|
pinctrl-names = "default";
|
||||||
pinctrl-0 = <&uart0_gpio14>;
|
pinctrl-0 = <&uart0_gpio14>;
|
||||||
|
@@ -9,12 +9,17 @@
|
|||||||
compatible = "raspberrypi,model-b-plus", "brcm,bcm2835";
|
compatible = "raspberrypi,model-b-plus", "brcm,bcm2835";
|
||||||
model = "Raspberry Pi Model B+";
|
model = "Raspberry Pi Model B+";
|
||||||
|
|
||||||
|
memory@0 {
|
||||||
|
device_type = "memory";
|
||||||
|
reg = <0 0x20000000>;
|
||||||
|
};
|
||||||
|
|
||||||
leds {
|
leds {
|
||||||
act {
|
led-act {
|
||||||
gpios = <&gpio 47 GPIO_ACTIVE_HIGH>;
|
gpios = <&gpio 47 GPIO_ACTIVE_HIGH>;
|
||||||
};
|
};
|
||||||
|
|
||||||
pwr {
|
led-pwr {
|
||||||
label = "PWR";
|
label = "PWR";
|
||||||
gpios = <&gpio 35 GPIO_ACTIVE_HIGH>;
|
gpios = <&gpio 35 GPIO_ACTIVE_HIGH>;
|
||||||
default-state = "keep";
|
default-state = "keep";
|
||||||
@@ -101,6 +106,8 @@
|
|||||||
|
|
||||||
&hdmi {
|
&hdmi {
|
||||||
hpd-gpios = <&gpio 46 GPIO_ACTIVE_LOW>;
|
hpd-gpios = <&gpio 46 GPIO_ACTIVE_LOW>;
|
||||||
|
power-domains = <&power RPI_POWER_DOMAIN_HDMI>;
|
||||||
|
status = "okay";
|
||||||
};
|
};
|
||||||
|
|
||||||
&pwm {
|
&pwm {
|
||||||
@@ -109,6 +116,13 @@
|
|||||||
status = "okay";
|
status = "okay";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
&sdhost {
|
||||||
|
pinctrl-names = "default";
|
||||||
|
pinctrl-0 = <&sdhost_gpio48>;
|
||||||
|
bus-width = <4>;
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
&uart0 {
|
&uart0 {
|
||||||
pinctrl-names = "default";
|
pinctrl-names = "default";
|
||||||
pinctrl-0 = <&uart0_gpio14>;
|
pinctrl-0 = <&uart0_gpio14>;
|
||||||
|
@@ -9,8 +9,13 @@
|
|||||||
compatible = "raspberrypi,model-b-rev2", "brcm,bcm2835";
|
compatible = "raspberrypi,model-b-rev2", "brcm,bcm2835";
|
||||||
model = "Raspberry Pi Model B rev2";
|
model = "Raspberry Pi Model B rev2";
|
||||||
|
|
||||||
|
memory@0 {
|
||||||
|
device_type = "memory";
|
||||||
|
reg = <0 0x10000000>;
|
||||||
|
};
|
||||||
|
|
||||||
leds {
|
leds {
|
||||||
act {
|
led-act {
|
||||||
gpios = <&gpio 16 GPIO_ACTIVE_LOW>;
|
gpios = <&gpio 16 GPIO_ACTIVE_LOW>;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
@@ -94,6 +99,8 @@
|
|||||||
|
|
||||||
&hdmi {
|
&hdmi {
|
||||||
hpd-gpios = <&gpio 46 GPIO_ACTIVE_HIGH>;
|
hpd-gpios = <&gpio 46 GPIO_ACTIVE_HIGH>;
|
||||||
|
power-domains = <&power RPI_POWER_DOMAIN_HDMI>;
|
||||||
|
status = "okay";
|
||||||
};
|
};
|
||||||
|
|
||||||
&pwm {
|
&pwm {
|
||||||
@@ -102,6 +109,13 @@
|
|||||||
status = "okay";
|
status = "okay";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
&sdhost {
|
||||||
|
pinctrl-names = "default";
|
||||||
|
pinctrl-0 = <&sdhost_gpio48>;
|
||||||
|
bus-width = <4>;
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
&uart0 {
|
&uart0 {
|
||||||
pinctrl-names = "default";
|
pinctrl-names = "default";
|
||||||
pinctrl-0 = <&uart0_gpio14>;
|
pinctrl-0 = <&uart0_gpio14>;
|
||||||
|
@@ -9,8 +9,13 @@
|
|||||||
compatible = "raspberrypi,model-b", "brcm,bcm2835";
|
compatible = "raspberrypi,model-b", "brcm,bcm2835";
|
||||||
model = "Raspberry Pi Model B";
|
model = "Raspberry Pi Model B";
|
||||||
|
|
||||||
|
memory@0 {
|
||||||
|
device_type = "memory";
|
||||||
|
reg = <0 0x10000000>;
|
||||||
|
};
|
||||||
|
|
||||||
leds {
|
leds {
|
||||||
act {
|
led-act {
|
||||||
gpios = <&gpio 16 GPIO_ACTIVE_LOW>;
|
gpios = <&gpio 16 GPIO_ACTIVE_LOW>;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
@@ -89,6 +94,8 @@
|
|||||||
|
|
||||||
&hdmi {
|
&hdmi {
|
||||||
hpd-gpios = <&gpio 46 GPIO_ACTIVE_HIGH>;
|
hpd-gpios = <&gpio 46 GPIO_ACTIVE_HIGH>;
|
||||||
|
power-domains = <&power RPI_POWER_DOMAIN_HDMI>;
|
||||||
|
status = "okay";
|
||||||
};
|
};
|
||||||
|
|
||||||
&pwm {
|
&pwm {
|
||||||
@@ -97,6 +104,13 @@
|
|||||||
status = "okay";
|
status = "okay";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
&sdhost {
|
||||||
|
pinctrl-names = "default";
|
||||||
|
pinctrl-0 = <&sdhost_gpio48>;
|
||||||
|
bus-width = <4>;
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
&uart0 {
|
&uart0 {
|
||||||
pinctrl-names = "default";
|
pinctrl-names = "default";
|
||||||
pinctrl-0 = <&uart0_gpio14>;
|
pinctrl-0 = <&uart0_gpio14>;
|
||||||
|
@@ -79,6 +79,15 @@
|
|||||||
|
|
||||||
&hdmi {
|
&hdmi {
|
||||||
hpd-gpios = <&gpio 46 GPIO_ACTIVE_LOW>;
|
hpd-gpios = <&gpio 46 GPIO_ACTIVE_LOW>;
|
||||||
|
power-domains = <&power RPI_POWER_DOMAIN_HDMI>;
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&sdhost {
|
||||||
|
pinctrl-names = "default";
|
||||||
|
pinctrl-0 = <&sdhost_gpio48>;
|
||||||
|
bus-width = <4>;
|
||||||
|
status = "okay";
|
||||||
};
|
};
|
||||||
|
|
||||||
&uart0 {
|
&uart0 {
|
||||||
|
@@ -5,11 +5,16 @@
|
|||||||
|
|
||||||
/ {
|
/ {
|
||||||
leds {
|
leds {
|
||||||
act {
|
led-act {
|
||||||
gpios = <&gpio 47 GPIO_ACTIVE_LOW>;
|
gpios = <&gpio 47 GPIO_ACTIVE_LOW>;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
memory@0 {
|
||||||
|
device_type = "memory";
|
||||||
|
reg = <0 0x20000000>;
|
||||||
|
};
|
||||||
|
|
||||||
reg_3v3: fixed-regulator {
|
reg_3v3: fixed-regulator {
|
||||||
compatible = "regulator-fixed";
|
compatible = "regulator-fixed";
|
||||||
regulator-name = "3V3";
|
regulator-name = "3V3";
|
||||||
|
12
arch/arm/dts/bcm2835-rpi-common.dtsi
Normal file
12
arch/arm/dts/bcm2835-rpi-common.dtsi
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-2.0
|
||||||
|
/*
|
||||||
|
* This include file covers the common peripherals and configuration between
|
||||||
|
* bcm2835, bcm2836 and bcm2837 implementations that interact with RPi's
|
||||||
|
* firmware interface.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <dt-bindings/power/raspberrypi-power.h>
|
||||||
|
|
||||||
|
&v3d {
|
||||||
|
power-domains = <&power RPI_POWER_DOMAIN_V3D>;
|
||||||
|
};
|
@@ -12,14 +12,19 @@
|
|||||||
compatible = "raspberrypi,model-zero-w", "brcm,bcm2835";
|
compatible = "raspberrypi,model-zero-w", "brcm,bcm2835";
|
||||||
model = "Raspberry Pi Zero W";
|
model = "Raspberry Pi Zero W";
|
||||||
|
|
||||||
|
memory@0 {
|
||||||
|
device_type = "memory";
|
||||||
|
reg = <0 0x20000000>;
|
||||||
|
};
|
||||||
|
|
||||||
chosen {
|
chosen {
|
||||||
/* 8250 auxiliary UART instead of pl011 */
|
/* 8250 auxiliary UART instead of pl011 */
|
||||||
stdout-path = "serial1:115200n8";
|
stdout-path = "serial1:115200n8";
|
||||||
};
|
};
|
||||||
|
|
||||||
leds {
|
leds {
|
||||||
act {
|
led-act {
|
||||||
gpios = <&gpio 47 GPIO_ACTIVE_HIGH>;
|
gpios = <&gpio 47 GPIO_ACTIVE_LOW>;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -100,12 +105,16 @@
|
|||||||
|
|
||||||
&hdmi {
|
&hdmi {
|
||||||
hpd-gpios = <&gpio 46 GPIO_ACTIVE_LOW>;
|
hpd-gpios = <&gpio 46 GPIO_ACTIVE_LOW>;
|
||||||
|
power-domains = <&power RPI_POWER_DOMAIN_HDMI>;
|
||||||
|
status = "okay";
|
||||||
};
|
};
|
||||||
|
|
||||||
&sdhci {
|
&sdhci {
|
||||||
#address-cells = <1>;
|
#address-cells = <1>;
|
||||||
#size-cells = <0>;
|
#size-cells = <0>;
|
||||||
|
pinctrl-names = "default";
|
||||||
pinctrl-0 = <&emmc_gpio34 &gpclk2_gpio43>;
|
pinctrl-0 = <&emmc_gpio34 &gpclk2_gpio43>;
|
||||||
|
bus-width = <4>;
|
||||||
mmc-pwrseq = <&wifi_pwrseq>;
|
mmc-pwrseq = <&wifi_pwrseq>;
|
||||||
non-removable;
|
non-removable;
|
||||||
status = "okay";
|
status = "okay";
|
||||||
@@ -116,6 +125,13 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
&sdhost {
|
||||||
|
pinctrl-names = "default";
|
||||||
|
pinctrl-0 = <&sdhost_gpio48>;
|
||||||
|
bus-width = <4>;
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
&uart0 {
|
&uart0 {
|
||||||
pinctrl-names = "default";
|
pinctrl-names = "default";
|
||||||
pinctrl-0 = <&uart0_gpio32 &uart0_ctsrts_gpio30>;
|
pinctrl-0 = <&uart0_gpio32 &uart0_ctsrts_gpio30>;
|
||||||
|
@@ -12,8 +12,13 @@
|
|||||||
compatible = "raspberrypi,model-zero", "brcm,bcm2835";
|
compatible = "raspberrypi,model-zero", "brcm,bcm2835";
|
||||||
model = "Raspberry Pi Zero";
|
model = "Raspberry Pi Zero";
|
||||||
|
|
||||||
|
memory@0 {
|
||||||
|
device_type = "memory";
|
||||||
|
reg = <0 0x20000000>;
|
||||||
|
};
|
||||||
|
|
||||||
leds {
|
leds {
|
||||||
act {
|
led-act {
|
||||||
gpios = <&gpio 47 GPIO_ACTIVE_HIGH>;
|
gpios = <&gpio 47 GPIO_ACTIVE_HIGH>;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
@@ -96,6 +101,15 @@
|
|||||||
|
|
||||||
&hdmi {
|
&hdmi {
|
||||||
hpd-gpios = <&gpio 46 GPIO_ACTIVE_LOW>;
|
hpd-gpios = <&gpio 46 GPIO_ACTIVE_LOW>;
|
||||||
|
power-domains = <&power RPI_POWER_DOMAIN_HDMI>;
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&sdhost {
|
||||||
|
pinctrl-names = "default";
|
||||||
|
pinctrl-0 = <&sdhost_gpio48>;
|
||||||
|
bus-width = <4>;
|
||||||
|
status = "okay";
|
||||||
};
|
};
|
||||||
|
|
||||||
&uart0 {
|
&uart0 {
|
||||||
|
@@ -1,15 +1,10 @@
|
|||||||
#include <dt-bindings/power/raspberrypi-power.h>
|
#include <dt-bindings/power/raspberrypi-power.h>
|
||||||
|
|
||||||
/ {
|
/ {
|
||||||
memory@0 {
|
|
||||||
device_type = "memory";
|
|
||||||
reg = <0 0x10000000>;
|
|
||||||
};
|
|
||||||
|
|
||||||
leds {
|
leds {
|
||||||
compatible = "gpio-leds";
|
compatible = "gpio-leds";
|
||||||
|
|
||||||
act {
|
led-act {
|
||||||
label = "ACT";
|
label = "ACT";
|
||||||
default-state = "keep";
|
default-state = "keep";
|
||||||
linux,default-trigger = "heartbeat";
|
linux,default-trigger = "heartbeat";
|
||||||
@@ -18,8 +13,12 @@
|
|||||||
|
|
||||||
soc {
|
soc {
|
||||||
firmware: firmware {
|
firmware: firmware {
|
||||||
compatible = "raspberrypi,bcm2835-firmware", "simple-bus";
|
compatible = "raspberrypi,bcm2835-firmware", "simple-mfd";
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <1>;
|
||||||
|
|
||||||
mboxes = <&mailbox>;
|
mboxes = <&mailbox>;
|
||||||
|
dma-ranges;
|
||||||
};
|
};
|
||||||
|
|
||||||
power: power {
|
power: power {
|
||||||
@@ -64,32 +63,10 @@
|
|||||||
clock-frequency = <100000>;
|
clock-frequency = <100000>;
|
||||||
};
|
};
|
||||||
|
|
||||||
&i2c2 {
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&sdhci {
|
|
||||||
pinctrl-names = "default";
|
|
||||||
pinctrl-0 = <&emmc_gpio48>;
|
|
||||||
bus-width = <4>;
|
|
||||||
};
|
|
||||||
|
|
||||||
&sdhost {
|
|
||||||
pinctrl-names = "default";
|
|
||||||
pinctrl-0 = <&sdhost_gpio48>;
|
|
||||||
status = "okay";
|
|
||||||
bus-width = <4>;
|
|
||||||
};
|
|
||||||
|
|
||||||
&usb {
|
&usb {
|
||||||
power-domains = <&power RPI_POWER_DOMAIN_USB>;
|
power-domains = <&power RPI_POWER_DOMAIN_USB>;
|
||||||
};
|
};
|
||||||
|
|
||||||
&hdmi {
|
|
||||||
power-domains = <&power RPI_POWER_DOMAIN_HDMI>;
|
|
||||||
status = "okay";
|
|
||||||
};
|
|
||||||
|
|
||||||
&vec {
|
&vec {
|
||||||
power-domains = <&power RPI_POWER_DOMAIN_VEC>;
|
power-domains = <&power RPI_POWER_DOMAIN_VEC>;
|
||||||
status = "okay";
|
status = "okay";
|
||||||
|
@@ -1,5 +1,7 @@
|
|||||||
// SPDX-License-Identifier: GPL-2.0
|
// SPDX-License-Identifier: GPL-2.0
|
||||||
#include "bcm283x.dtsi"
|
#include "bcm283x.dtsi"
|
||||||
|
#include "bcm2835-common.dtsi"
|
||||||
|
#include "bcm2835-rpi-common.dtsi"
|
||||||
|
|
||||||
/ {
|
/ {
|
||||||
compatible = "brcm,bcm2835";
|
compatible = "brcm,bcm2835";
|
||||||
|
@@ -10,15 +10,16 @@
|
|||||||
model = "Raspberry Pi 2 Model B";
|
model = "Raspberry Pi 2 Model B";
|
||||||
|
|
||||||
memory@0 {
|
memory@0 {
|
||||||
|
device_type = "memory";
|
||||||
reg = <0 0x40000000>;
|
reg = <0 0x40000000>;
|
||||||
};
|
};
|
||||||
|
|
||||||
leds {
|
leds {
|
||||||
act {
|
led-act {
|
||||||
gpios = <&gpio 47 GPIO_ACTIVE_HIGH>;
|
gpios = <&gpio 47 GPIO_ACTIVE_HIGH>;
|
||||||
};
|
};
|
||||||
|
|
||||||
pwr {
|
led-pwr {
|
||||||
label = "PWR";
|
label = "PWR";
|
||||||
gpios = <&gpio 35 GPIO_ACTIVE_HIGH>;
|
gpios = <&gpio 35 GPIO_ACTIVE_HIGH>;
|
||||||
default-state = "keep";
|
default-state = "keep";
|
||||||
@@ -105,6 +106,8 @@
|
|||||||
|
|
||||||
&hdmi {
|
&hdmi {
|
||||||
hpd-gpios = <&gpio 46 GPIO_ACTIVE_LOW>;
|
hpd-gpios = <&gpio 46 GPIO_ACTIVE_LOW>;
|
||||||
|
power-domains = <&power RPI_POWER_DOMAIN_HDMI>;
|
||||||
|
status = "okay";
|
||||||
};
|
};
|
||||||
|
|
||||||
&pwm {
|
&pwm {
|
||||||
@@ -113,6 +116,13 @@
|
|||||||
status = "okay";
|
status = "okay";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
&sdhost {
|
||||||
|
pinctrl-names = "default";
|
||||||
|
pinctrl-0 = <&sdhost_gpio48>;
|
||||||
|
bus-width = <4>;
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
&uart0 {
|
&uart0 {
|
||||||
pinctrl-names = "default";
|
pinctrl-names = "default";
|
||||||
pinctrl-0 = <&uart0_gpio14>;
|
pinctrl-0 = <&uart0_gpio14>;
|
||||||
|
@@ -1,5 +1,7 @@
|
|||||||
// SPDX-License-Identifier: GPL-2.0
|
// SPDX-License-Identifier: GPL-2.0
|
||||||
#include "bcm283x.dtsi"
|
#include "bcm283x.dtsi"
|
||||||
|
#include "bcm2835-common.dtsi"
|
||||||
|
#include "bcm2835-rpi-common.dtsi"
|
||||||
|
|
||||||
/ {
|
/ {
|
||||||
compatible = "brcm,bcm2836";
|
compatible = "brcm,bcm2836";
|
||||||
|
@@ -14,17 +14,20 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
memory@0 {
|
memory@0 {
|
||||||
|
device_type = "memory";
|
||||||
reg = <0 0x20000000>;
|
reg = <0 0x20000000>;
|
||||||
};
|
};
|
||||||
|
|
||||||
leds {
|
leds {
|
||||||
act {
|
led-act {
|
||||||
gpios = <&gpio 29 GPIO_ACTIVE_HIGH>;
|
gpios = <&gpio 29 GPIO_ACTIVE_HIGH>;
|
||||||
};
|
};
|
||||||
|
|
||||||
pwr {
|
led-pwr {
|
||||||
label = "PWR";
|
label = "PWR";
|
||||||
gpios = <&expgpio 2 GPIO_ACTIVE_LOW>;
|
gpios = <&expgpio 2 GPIO_ACTIVE_LOW>;
|
||||||
|
default-state = "keep";
|
||||||
|
linux,default-trigger = "default-on";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
@@ -117,6 +120,8 @@
|
|||||||
|
|
||||||
&hdmi {
|
&hdmi {
|
||||||
hpd-gpios = <&gpio 28 GPIO_ACTIVE_LOW>;
|
hpd-gpios = <&gpio 28 GPIO_ACTIVE_LOW>;
|
||||||
|
power-domains = <&power RPI_POWER_DOMAIN_HDMI>;
|
||||||
|
status = "okay";
|
||||||
};
|
};
|
||||||
|
|
||||||
&pwm {
|
&pwm {
|
||||||
|
@@ -15,17 +15,20 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
memory@0 {
|
memory@0 {
|
||||||
|
device_type = "memory";
|
||||||
reg = <0 0x40000000>;
|
reg = <0 0x40000000>;
|
||||||
};
|
};
|
||||||
|
|
||||||
leds {
|
leds {
|
||||||
act {
|
led-act {
|
||||||
gpios = <&gpio 29 GPIO_ACTIVE_HIGH>;
|
gpios = <&gpio 29 GPIO_ACTIVE_HIGH>;
|
||||||
};
|
};
|
||||||
|
|
||||||
pwr {
|
led-pwr {
|
||||||
label = "PWR";
|
label = "PWR";
|
||||||
gpios = <&expgpio 2 GPIO_ACTIVE_LOW>;
|
gpios = <&expgpio 2 GPIO_ACTIVE_LOW>;
|
||||||
|
default-state = "keep";
|
||||||
|
linux,default-trigger = "default-on";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -124,6 +127,8 @@
|
|||||||
|
|
||||||
&hdmi {
|
&hdmi {
|
||||||
hpd-gpios = <&gpio 28 GPIO_ACTIVE_LOW>;
|
hpd-gpios = <&gpio 28 GPIO_ACTIVE_LOW>;
|
||||||
|
power-domains = <&power RPI_POWER_DOMAIN_HDMI>;
|
||||||
|
status = "okay";
|
||||||
};
|
};
|
||||||
|
|
||||||
&pwm {
|
&pwm {
|
||||||
|
@@ -15,11 +15,12 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
memory@0 {
|
memory@0 {
|
||||||
|
device_type = "memory";
|
||||||
reg = <0 0x40000000>;
|
reg = <0 0x40000000>;
|
||||||
};
|
};
|
||||||
|
|
||||||
leds {
|
leds {
|
||||||
act {
|
led-act {
|
||||||
gpios = <&expgpio 2 GPIO_ACTIVE_HIGH>;
|
gpios = <&expgpio 2 GPIO_ACTIVE_HIGH>;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
@@ -125,6 +126,8 @@
|
|||||||
|
|
||||||
&hdmi {
|
&hdmi {
|
||||||
hpd-gpios = <&expgpio 4 GPIO_ACTIVE_LOW>;
|
hpd-gpios = <&expgpio 4 GPIO_ACTIVE_LOW>;
|
||||||
|
power-domains = <&power RPI_POWER_DOMAIN_HDMI>;
|
||||||
|
status = "okay";
|
||||||
};
|
};
|
||||||
|
|
||||||
/* uart0 communicates with the BT module */
|
/* uart0 communicates with the BT module */
|
||||||
|
@@ -78,6 +78,15 @@
|
|||||||
|
|
||||||
&hdmi {
|
&hdmi {
|
||||||
hpd-gpios = <&expgpio 1 GPIO_ACTIVE_LOW>;
|
hpd-gpios = <&expgpio 1 GPIO_ACTIVE_LOW>;
|
||||||
|
power-domains = <&power RPI_POWER_DOMAIN_HDMI>;
|
||||||
|
status = "okay";
|
||||||
|
};
|
||||||
|
|
||||||
|
&sdhost {
|
||||||
|
pinctrl-names = "default";
|
||||||
|
pinctrl-0 = <&sdhost_gpio48>;
|
||||||
|
bus-width = <4>;
|
||||||
|
status = "okay";
|
||||||
};
|
};
|
||||||
|
|
||||||
&uart0 {
|
&uart0 {
|
||||||
|
@@ -5,9 +5,18 @@
|
|||||||
|
|
||||||
/ {
|
/ {
|
||||||
memory@0 {
|
memory@0 {
|
||||||
|
device_type = "memory";
|
||||||
reg = <0 0x40000000>;
|
reg = <0 0x40000000>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
leds {
|
||||||
|
/*
|
||||||
|
* Since there is no upstream GPIO driver yet,
|
||||||
|
* remove the incomplete node.
|
||||||
|
*/
|
||||||
|
/delete-node/ led-act;
|
||||||
|
};
|
||||||
|
|
||||||
reg_3v3: fixed-regulator {
|
reg_3v3: fixed-regulator {
|
||||||
compatible = "regulator-fixed";
|
compatible = "regulator-fixed";
|
||||||
regulator-name = "3V3";
|
regulator-name = "3V3";
|
||||||
|
@@ -1,4 +1,6 @@
|
|||||||
#include "bcm283x.dtsi"
|
#include "bcm283x.dtsi"
|
||||||
|
#include "bcm2835-common.dtsi"
|
||||||
|
#include "bcm2835-rpi-common.dtsi"
|
||||||
|
|
||||||
/ {
|
/ {
|
||||||
compatible = "brcm,bcm2837";
|
compatible = "brcm,bcm2837";
|
||||||
|
7
arch/arm/dts/bcm283x-rpi-usb-peripheral.dtsi
Normal file
7
arch/arm/dts/bcm283x-rpi-usb-peripheral.dtsi
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-2.0
|
||||||
|
&usb {
|
||||||
|
dr_mode = "peripheral";
|
||||||
|
g-rx-fifo-size = <256>;
|
||||||
|
g-np-tx-fifo-size = <32>;
|
||||||
|
g-tx-fifo-size = <256 256 512 512 512 768 768>;
|
||||||
|
};
|
@@ -18,7 +18,6 @@
|
|||||||
/ {
|
/ {
|
||||||
compatible = "brcm,bcm2835";
|
compatible = "brcm,bcm2835";
|
||||||
model = "BCM2835";
|
model = "BCM2835";
|
||||||
interrupt-parent = <&intc>;
|
|
||||||
#address-cells = <1>;
|
#address-cells = <1>;
|
||||||
#size-cells = <1>;
|
#size-cells = <1>;
|
||||||
|
|
||||||
@@ -31,16 +30,27 @@
|
|||||||
stdout-path = "serial0:115200n8";
|
stdout-path = "serial0:115200n8";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
rmem: reserved-memory {
|
||||||
|
#address-cells = <1>;
|
||||||
|
#size-cells = <1>;
|
||||||
|
ranges;
|
||||||
|
|
||||||
|
cma: linux,cma {
|
||||||
|
compatible = "shared-dma-pool";
|
||||||
|
size = <0x4000000>; /* 64MB */
|
||||||
|
reusable;
|
||||||
|
linux,cma-default;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
thermal-zones {
|
thermal-zones {
|
||||||
cpu_thermal: cpu-thermal {
|
cpu_thermal: cpu-thermal {
|
||||||
polling-delay-passive = <0>;
|
polling-delay-passive = <0>;
|
||||||
polling-delay = <1000>;
|
polling-delay = <1000>;
|
||||||
|
|
||||||
thermal-sensors = <&thermal>;
|
|
||||||
|
|
||||||
trips {
|
trips {
|
||||||
cpu-crit {
|
cpu-crit {
|
||||||
temperature = <80000>;
|
temperature = <90000>;
|
||||||
hysteresis = <0>;
|
hysteresis = <0>;
|
||||||
type = "critical";
|
type = "critical";
|
||||||
};
|
};
|
||||||
@@ -56,7 +66,7 @@
|
|||||||
#address-cells = <1>;
|
#address-cells = <1>;
|
||||||
#size-cells = <1>;
|
#size-cells = <1>;
|
||||||
|
|
||||||
timer@7e003000 {
|
system_timer: timer@7e003000 {
|
||||||
compatible = "brcm,bcm2835-system-timer";
|
compatible = "brcm,bcm2835-system-timer";
|
||||||
reg = <0x7e003000 0x1000>;
|
reg = <0x7e003000 0x1000>;
|
||||||
interrupts = <1 0>, <1 1>, <1 2>, <1 3>;
|
interrupts = <1 0>, <1 1>, <1 2>, <1 3>;
|
||||||
@@ -67,74 +77,12 @@
|
|||||||
clock-frequency = <1000000>;
|
clock-frequency = <1000000>;
|
||||||
};
|
};
|
||||||
|
|
||||||
txp@7e004000 {
|
txp: txp@7e004000 {
|
||||||
compatible = "brcm,bcm2835-txp";
|
compatible = "brcm,bcm2835-txp";
|
||||||
reg = <0x7e004000 0x20>;
|
reg = <0x7e004000 0x20>;
|
||||||
interrupts = <1 11>;
|
interrupts = <1 11>;
|
||||||
};
|
};
|
||||||
|
|
||||||
dma: dma@7e007000 {
|
|
||||||
compatible = "brcm,bcm2835-dma";
|
|
||||||
reg = <0x7e007000 0xf00>;
|
|
||||||
interrupts = <1 16>,
|
|
||||||
<1 17>,
|
|
||||||
<1 18>,
|
|
||||||
<1 19>,
|
|
||||||
<1 20>,
|
|
||||||
<1 21>,
|
|
||||||
<1 22>,
|
|
||||||
<1 23>,
|
|
||||||
<1 24>,
|
|
||||||
<1 25>,
|
|
||||||
<1 26>,
|
|
||||||
/* dma channel 11-14 share one irq */
|
|
||||||
<1 27>,
|
|
||||||
<1 27>,
|
|
||||||
<1 27>,
|
|
||||||
<1 27>,
|
|
||||||
/* unused shared irq for all channels */
|
|
||||||
<1 28>;
|
|
||||||
interrupt-names = "dma0",
|
|
||||||
"dma1",
|
|
||||||
"dma2",
|
|
||||||
"dma3",
|
|
||||||
"dma4",
|
|
||||||
"dma5",
|
|
||||||
"dma6",
|
|
||||||
"dma7",
|
|
||||||
"dma8",
|
|
||||||
"dma9",
|
|
||||||
"dma10",
|
|
||||||
"dma11",
|
|
||||||
"dma12",
|
|
||||||
"dma13",
|
|
||||||
"dma14",
|
|
||||||
"dma-shared-all";
|
|
||||||
#dma-cells = <1>;
|
|
||||||
brcm,dma-channel-mask = <0x7f35>;
|
|
||||||
};
|
|
||||||
|
|
||||||
intc: interrupt-controller@7e00b200 {
|
|
||||||
compatible = "brcm,bcm2835-armctrl-ic";
|
|
||||||
reg = <0x7e00b200 0x200>;
|
|
||||||
interrupt-controller;
|
|
||||||
#interrupt-cells = <2>;
|
|
||||||
};
|
|
||||||
|
|
||||||
pm: watchdog@7e100000 {
|
|
||||||
compatible = "brcm,bcm2835-pm", "brcm,bcm2835-pm-wdt";
|
|
||||||
#power-domain-cells = <1>;
|
|
||||||
#reset-cells = <1>;
|
|
||||||
reg = <0x7e100000 0x114>,
|
|
||||||
<0x7e00a000 0x24>;
|
|
||||||
clocks = <&clocks BCM2835_CLOCK_V3D>,
|
|
||||||
<&clocks BCM2835_CLOCK_PERI_IMAGE>,
|
|
||||||
<&clocks BCM2835_CLOCK_H264>,
|
|
||||||
<&clocks BCM2835_CLOCK_ISP>;
|
|
||||||
clock-names = "v3d", "peri_image", "h264", "isp";
|
|
||||||
system-power-controller;
|
|
||||||
};
|
|
||||||
|
|
||||||
clocks: cprman@7e101000 {
|
clocks: cprman@7e101000 {
|
||||||
compatible = "brcm,bcm2835-cprman";
|
compatible = "brcm,bcm2835-cprman";
|
||||||
#clock-cells = <1>;
|
#clock-cells = <1>;
|
||||||
@@ -149,12 +97,6 @@
|
|||||||
<&dsi1 0>, <&dsi1 1>, <&dsi1 2>;
|
<&dsi1 0>, <&dsi1 1>, <&dsi1 2>;
|
||||||
};
|
};
|
||||||
|
|
||||||
rng@7e104000 {
|
|
||||||
compatible = "brcm,bcm2835-rng";
|
|
||||||
reg = <0x7e104000 0x10>;
|
|
||||||
interrupts = <2 29>;
|
|
||||||
};
|
|
||||||
|
|
||||||
mailbox: mailbox@7e00b880 {
|
mailbox: mailbox@7e00b880 {
|
||||||
compatible = "brcm,bcm2835-mbox";
|
compatible = "brcm,bcm2835-mbox";
|
||||||
reg = <0x7e00b880 0x40>;
|
reg = <0x7e00b880 0x40>;
|
||||||
@@ -184,8 +126,7 @@
|
|||||||
interrupt-controller;
|
interrupt-controller;
|
||||||
#interrupt-cells = <2>;
|
#interrupt-cells = <2>;
|
||||||
|
|
||||||
/* Defines pin muxing groups according to
|
/* Defines common pin muxing groups
|
||||||
* BCM2835-ARM-Peripherals.pdf page 102.
|
|
||||||
*
|
*
|
||||||
* While each pin can have its mux selected
|
* While each pin can have its mux selected
|
||||||
* for various functions individually, some
|
* for various functions individually, some
|
||||||
@@ -263,15 +204,7 @@
|
|||||||
brcm,pins = <44 45>;
|
brcm,pins = <44 45>;
|
||||||
brcm,function = <BCM2835_FSEL_ALT2>;
|
brcm,function = <BCM2835_FSEL_ALT2>;
|
||||||
};
|
};
|
||||||
i2c_slave_gpio18: i2c_slave_gpio18 {
|
|
||||||
brcm,pins = <18 19 20 21>;
|
|
||||||
brcm,function = <BCM2835_FSEL_ALT3>;
|
|
||||||
};
|
|
||||||
|
|
||||||
jtag_gpio4: jtag_gpio4 {
|
|
||||||
brcm,pins = <4 5 6 12 13>;
|
|
||||||
brcm,function = <BCM2835_FSEL_ALT5>;
|
|
||||||
};
|
|
||||||
jtag_gpio22: jtag_gpio22 {
|
jtag_gpio22: jtag_gpio22 {
|
||||||
brcm,pins = <22 23 24 25 26 27>;
|
brcm,pins = <22 23 24 25 26 27>;
|
||||||
brcm,function = <BCM2835_FSEL_ALT4>;
|
brcm,function = <BCM2835_FSEL_ALT4>;
|
||||||
@@ -286,35 +219,6 @@
|
|||||||
brcm,function = <BCM2835_FSEL_ALT2>;
|
brcm,function = <BCM2835_FSEL_ALT2>;
|
||||||
};
|
};
|
||||||
|
|
||||||
pwm0_gpio12: pwm0_gpio12 {
|
|
||||||
brcm,pins = <12>;
|
|
||||||
brcm,function = <BCM2835_FSEL_ALT0>;
|
|
||||||
};
|
|
||||||
pwm0_gpio18: pwm0_gpio18 {
|
|
||||||
brcm,pins = <18>;
|
|
||||||
brcm,function = <BCM2835_FSEL_ALT5>;
|
|
||||||
};
|
|
||||||
pwm0_gpio40: pwm0_gpio40 {
|
|
||||||
brcm,pins = <40>;
|
|
||||||
brcm,function = <BCM2835_FSEL_ALT0>;
|
|
||||||
};
|
|
||||||
pwm1_gpio13: pwm1_gpio13 {
|
|
||||||
brcm,pins = <13>;
|
|
||||||
brcm,function = <BCM2835_FSEL_ALT0>;
|
|
||||||
};
|
|
||||||
pwm1_gpio19: pwm1_gpio19 {
|
|
||||||
brcm,pins = <19>;
|
|
||||||
brcm,function = <BCM2835_FSEL_ALT5>;
|
|
||||||
};
|
|
||||||
pwm1_gpio41: pwm1_gpio41 {
|
|
||||||
brcm,pins = <41>;
|
|
||||||
brcm,function = <BCM2835_FSEL_ALT0>;
|
|
||||||
};
|
|
||||||
pwm1_gpio45: pwm1_gpio45 {
|
|
||||||
brcm,pins = <45>;
|
|
||||||
brcm,function = <BCM2835_FSEL_ALT0>;
|
|
||||||
};
|
|
||||||
|
|
||||||
sdhost_gpio48: sdhost_gpio48 {
|
sdhost_gpio48: sdhost_gpio48 {
|
||||||
brcm,pins = <48 49 50 51 52 53>;
|
brcm,pins = <48 49 50 51 52 53>;
|
||||||
brcm,function = <BCM2835_FSEL_ALT0>;
|
brcm,function = <BCM2835_FSEL_ALT0>;
|
||||||
@@ -396,8 +300,8 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
uart0: serial@7e201000 {
|
uart0: serial@7e201000 {
|
||||||
compatible = "brcm,bcm2835-pl011", "arm,pl011", "arm,primecell";
|
compatible = "arm,pl011", "arm,primecell";
|
||||||
reg = <0x7e201000 0x1000>;
|
reg = <0x7e201000 0x200>;
|
||||||
interrupts = <2 25>;
|
interrupts = <2 25>;
|
||||||
clocks = <&clocks BCM2835_CLOCK_UART>,
|
clocks = <&clocks BCM2835_CLOCK_UART>,
|
||||||
<&clocks BCM2835_CLOCK_VPU>;
|
<&clocks BCM2835_CLOCK_VPU>;
|
||||||
@@ -410,8 +314,6 @@
|
|||||||
reg = <0x7e202000 0x100>;
|
reg = <0x7e202000 0x100>;
|
||||||
interrupts = <2 24>;
|
interrupts = <2 24>;
|
||||||
clocks = <&clocks BCM2835_CLOCK_VPU>;
|
clocks = <&clocks BCM2835_CLOCK_VPU>;
|
||||||
dmas = <&dma 13>;
|
|
||||||
dma-names = "rx-tx";
|
|
||||||
status = "disabled";
|
status = "disabled";
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -419,16 +321,12 @@
|
|||||||
compatible = "brcm,bcm2835-i2s";
|
compatible = "brcm,bcm2835-i2s";
|
||||||
reg = <0x7e203000 0x24>;
|
reg = <0x7e203000 0x24>;
|
||||||
clocks = <&clocks BCM2835_CLOCK_PCM>;
|
clocks = <&clocks BCM2835_CLOCK_PCM>;
|
||||||
|
|
||||||
dmas = <&dma 2>,
|
|
||||||
<&dma 3>;
|
|
||||||
dma-names = "tx", "rx";
|
|
||||||
status = "disabled";
|
status = "disabled";
|
||||||
};
|
};
|
||||||
|
|
||||||
spi: spi@7e204000 {
|
spi: spi@7e204000 {
|
||||||
compatible = "brcm,bcm2835-spi";
|
compatible = "brcm,bcm2835-spi";
|
||||||
reg = <0x7e204000 0x1000>;
|
reg = <0x7e204000 0x200>;
|
||||||
interrupts = <2 22>;
|
interrupts = <2 22>;
|
||||||
clocks = <&clocks BCM2835_CLOCK_VPU>;
|
clocks = <&clocks BCM2835_CLOCK_VPU>;
|
||||||
#address-cells = <1>;
|
#address-cells = <1>;
|
||||||
@@ -438,7 +336,7 @@
|
|||||||
|
|
||||||
i2c0: i2c@7e205000 {
|
i2c0: i2c@7e205000 {
|
||||||
compatible = "brcm,bcm2835-i2c";
|
compatible = "brcm,bcm2835-i2c";
|
||||||
reg = <0x7e205000 0x1000>;
|
reg = <0x7e205000 0x200>;
|
||||||
interrupts = <2 21>;
|
interrupts = <2 21>;
|
||||||
clocks = <&clocks BCM2835_CLOCK_VPU>;
|
clocks = <&clocks BCM2835_CLOCK_VPU>;
|
||||||
#address-cells = <1>;
|
#address-cells = <1>;
|
||||||
@@ -446,18 +344,6 @@
|
|||||||
status = "disabled";
|
status = "disabled";
|
||||||
};
|
};
|
||||||
|
|
||||||
pixelvalve@7e206000 {
|
|
||||||
compatible = "brcm,bcm2835-pixelvalve0";
|
|
||||||
reg = <0x7e206000 0x100>;
|
|
||||||
interrupts = <2 13>; /* pwa0 */
|
|
||||||
};
|
|
||||||
|
|
||||||
pixelvalve@7e207000 {
|
|
||||||
compatible = "brcm,bcm2835-pixelvalve1";
|
|
||||||
reg = <0x7e207000 0x100>;
|
|
||||||
interrupts = <2 14>; /* pwa1 */
|
|
||||||
};
|
|
||||||
|
|
||||||
dpi: dpi@7e208000 {
|
dpi: dpi@7e208000 {
|
||||||
compatible = "brcm,bcm2835-dpi";
|
compatible = "brcm,bcm2835-dpi";
|
||||||
reg = <0x7e208000 0x8c>;
|
reg = <0x7e208000 0x8c>;
|
||||||
@@ -486,13 +372,6 @@
|
|||||||
"dsi0_ddr2",
|
"dsi0_ddr2",
|
||||||
"dsi0_ddr";
|
"dsi0_ddr";
|
||||||
|
|
||||||
};
|
|
||||||
|
|
||||||
thermal: thermal@7e212000 {
|
|
||||||
compatible = "brcm,bcm2835-thermal";
|
|
||||||
reg = <0x7e212000 0x8>;
|
|
||||||
clocks = <&clocks BCM2835_CLOCK_TSENS>;
|
|
||||||
#thermal-sensor-cells = <0>;
|
|
||||||
status = "disabled";
|
status = "disabled";
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -541,7 +420,7 @@
|
|||||||
status = "disabled";
|
status = "disabled";
|
||||||
};
|
};
|
||||||
|
|
||||||
sdhci: sdhci@7e300000 {
|
sdhci: mmc@7e300000 {
|
||||||
compatible = "brcm,bcm2835-sdhci";
|
compatible = "brcm,bcm2835-sdhci";
|
||||||
reg = <0x7e300000 0x100>;
|
reg = <0x7e300000 0x100>;
|
||||||
interrupts = <2 30>;
|
interrupts = <2 30>;
|
||||||
@@ -585,44 +464,6 @@
|
|||||||
status = "disabled";
|
status = "disabled";
|
||||||
};
|
};
|
||||||
|
|
||||||
i2c2: i2c@7e805000 {
|
|
||||||
compatible = "brcm,bcm2835-i2c";
|
|
||||||
reg = <0x7e805000 0x1000>;
|
|
||||||
interrupts = <2 21>;
|
|
||||||
clocks = <&clocks BCM2835_CLOCK_VPU>;
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <0>;
|
|
||||||
status = "disabled";
|
|
||||||
};
|
|
||||||
|
|
||||||
vec: vec@7e806000 {
|
|
||||||
compatible = "brcm,bcm2835-vec";
|
|
||||||
reg = <0x7e806000 0x1000>;
|
|
||||||
clocks = <&clocks BCM2835_CLOCK_VEC>;
|
|
||||||
interrupts = <2 27>;
|
|
||||||
status = "disabled";
|
|
||||||
};
|
|
||||||
|
|
||||||
pixelvalve@7e807000 {
|
|
||||||
compatible = "brcm,bcm2835-pixelvalve2";
|
|
||||||
reg = <0x7e807000 0x100>;
|
|
||||||
interrupts = <2 10>; /* pixelvalve */
|
|
||||||
};
|
|
||||||
|
|
||||||
hdmi: hdmi@7e902000 {
|
|
||||||
compatible = "brcm,bcm2835-hdmi";
|
|
||||||
reg = <0x7e902000 0x600>,
|
|
||||||
<0x7e808000 0x100>;
|
|
||||||
interrupts = <2 8>, <2 9>;
|
|
||||||
ddc = <&i2c2>;
|
|
||||||
clocks = <&clocks BCM2835_PLLH_PIX>,
|
|
||||||
<&clocks BCM2835_CLOCK_HSM>;
|
|
||||||
clock-names = "pixel", "hdmi";
|
|
||||||
dmas = <&dma 17>;
|
|
||||||
dma-names = "audio-rx";
|
|
||||||
status = "disabled";
|
|
||||||
};
|
|
||||||
|
|
||||||
usb: usb@7e980000 {
|
usb: usb@7e980000 {
|
||||||
compatible = "brcm,bcm2835-usb";
|
compatible = "brcm,bcm2835-usb";
|
||||||
reg = <0x7e980000 0x10000>;
|
reg = <0x7e980000 0x10000>;
|
||||||
@@ -634,36 +475,19 @@
|
|||||||
phys = <&usbphy>;
|
phys = <&usbphy>;
|
||||||
phy-names = "usb2-phy";
|
phy-names = "usb2-phy";
|
||||||
};
|
};
|
||||||
|
|
||||||
v3d: v3d@7ec00000 {
|
|
||||||
compatible = "brcm,bcm2835-v3d";
|
|
||||||
reg = <0x7ec00000 0x1000>;
|
|
||||||
interrupts = <1 10>;
|
|
||||||
power-domains = <&pm BCM2835_POWER_DOMAIN_GRAFX_V3D>;
|
|
||||||
};
|
|
||||||
|
|
||||||
vc4: gpu {
|
|
||||||
compatible = "brcm,bcm2835-vc4";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
clocks {
|
clocks {
|
||||||
compatible = "simple-bus";
|
|
||||||
#address-cells = <1>;
|
|
||||||
#size-cells = <0>;
|
|
||||||
|
|
||||||
/* The oscillator is the root of the clock tree. */
|
/* The oscillator is the root of the clock tree. */
|
||||||
clk_osc: clock@3 {
|
clk_osc: clk-osc {
|
||||||
compatible = "fixed-clock";
|
compatible = "fixed-clock";
|
||||||
reg = <3>;
|
|
||||||
#clock-cells = <0>;
|
#clock-cells = <0>;
|
||||||
clock-output-names = "osc";
|
clock-output-names = "osc";
|
||||||
clock-frequency = <19200000>;
|
clock-frequency = <19200000>;
|
||||||
};
|
};
|
||||||
|
|
||||||
clk_usb: clock@4 {
|
clk_usb: clk-usb {
|
||||||
compatible = "fixed-clock";
|
compatible = "fixed-clock";
|
||||||
reg = <4>;
|
|
||||||
#clock-cells = <0>;
|
#clock-cells = <0>;
|
||||||
clock-output-names = "otg";
|
clock-output-names = "otg";
|
||||||
clock-frequency = <480000000>;
|
clock-frequency = <480000000>;
|
||||||
|
@@ -4,6 +4,7 @@ CONFIG_SYS_TEXT_BASE=0x00008000
|
|||||||
CONFIG_SYS_MALLOC_F_LEN=0x2000
|
CONFIG_SYS_MALLOC_F_LEN=0x2000
|
||||||
CONFIG_TARGET_RPI_4_32B=y
|
CONFIG_TARGET_RPI_4_32B=y
|
||||||
CONFIG_ENV_SIZE=0x4000
|
CONFIG_ENV_SIZE=0x4000
|
||||||
|
CONFIG_DEFAULT_DEVICE_TREE="bcm2711-rpi-4-b"
|
||||||
CONFIG_DISTRO_DEFAULTS=y
|
CONFIG_DISTRO_DEFAULTS=y
|
||||||
CONFIG_SYS_LOAD_ADDR=0x1000000
|
CONFIG_SYS_LOAD_ADDR=0x1000000
|
||||||
CONFIG_OF_BOARD_SETUP=y
|
CONFIG_OF_BOARD_SETUP=y
|
||||||
|
@@ -4,6 +4,7 @@ CONFIG_SYS_TEXT_BASE=0x00080000
|
|||||||
CONFIG_SYS_MALLOC_F_LEN=0x2000
|
CONFIG_SYS_MALLOC_F_LEN=0x2000
|
||||||
CONFIG_TARGET_RPI_4=y
|
CONFIG_TARGET_RPI_4=y
|
||||||
CONFIG_ENV_SIZE=0x4000
|
CONFIG_ENV_SIZE=0x4000
|
||||||
|
CONFIG_DEFAULT_DEVICE_TREE="bcm2711-rpi-4-b"
|
||||||
CONFIG_DISTRO_DEFAULTS=y
|
CONFIG_DISTRO_DEFAULTS=y
|
||||||
CONFIG_SYS_LOAD_ADDR=0x1000000
|
CONFIG_SYS_LOAD_ADDR=0x1000000
|
||||||
CONFIG_OF_BOARD_SETUP=y
|
CONFIG_OF_BOARD_SETUP=y
|
||||||
|
@@ -4,6 +4,7 @@ CONFIG_SYS_TEXT_BASE=0x00080000
|
|||||||
CONFIG_SYS_MALLOC_F_LEN=0x2000
|
CONFIG_SYS_MALLOC_F_LEN=0x2000
|
||||||
CONFIG_TARGET_RPI_ARM64=y
|
CONFIG_TARGET_RPI_ARM64=y
|
||||||
CONFIG_ENV_SIZE=0x4000
|
CONFIG_ENV_SIZE=0x4000
|
||||||
|
CONFIG_DEFAULT_DEVICE_TREE="bcm2711-rpi-4-b"
|
||||||
CONFIG_DISTRO_DEFAULTS=y
|
CONFIG_DISTRO_DEFAULTS=y
|
||||||
CONFIG_SYS_LOAD_ADDR=0x1000000
|
CONFIG_SYS_LOAD_ADDR=0x1000000
|
||||||
CONFIG_OF_BOARD_SETUP=y
|
CONFIG_OF_BOARD_SETUP=y
|
||||||
|
@@ -58,3 +58,5 @@
|
|||||||
#define BCM2835_CLOCK_DSI1E 48
|
#define BCM2835_CLOCK_DSI1E 48
|
||||||
#define BCM2835_CLOCK_DSI0P 49
|
#define BCM2835_CLOCK_DSI0P 49
|
||||||
#define BCM2835_CLOCK_DSI1P 50
|
#define BCM2835_CLOCK_DSI1P 50
|
||||||
|
|
||||||
|
#define BCM2711_CLOCK_EMMC2 51
|
||||||
|
Reference in New Issue
Block a user