mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-17 02:36:21 +00:00
f702475b83
The Raspberry Pi firmware handles clocks on all BCM2835-derived SoCs. It is currently defined identically in both bcm2711-rpi.dtsi and bcm2835-rpi-common.dtsi. Move the definitions to the common bcm2835-rpi.dtsi file. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Dave Stevenson <dave.stevenson@raspberrypi.com> Link: https://lore.kernel.org/r/20240402000424.4650-6-laurent.pinchart@ideasonboard.com Signed-off-by: Florian Fainelli <florian.fainelli@broadcom.com>
23 lines
471 B
Plaintext
23 lines
471 B
Plaintext
// 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>
|
|
|
|
&hdmi {
|
|
clocks = <&firmware_clocks 9>,
|
|
<&firmware_clocks 13>;
|
|
clock-names = "pixel", "hdmi";
|
|
};
|
|
|
|
&v3d {
|
|
power-domains = <&power RPI_POWER_DOMAIN_V3D>;
|
|
};
|
|
|
|
&vec {
|
|
clocks = <&firmware_clocks 15>;
|
|
};
|