Linux Audio

Check our new training course

Loading...
Note: File does not exist in v3.1.
 1// SPDX-License-Identifier: GPL-2.0
 2/*
 3 * This include file covers the common peripherals and configuration between
 4 * bcm2835, bcm2836 and bcm2837 implementations that interact with RPi's
 5 * firmware interface.
 6 */
 7
 8#include <dt-bindings/power/raspberrypi-power.h>
 9
10&firmware {
11	firmware_clocks: clocks {
12		compatible = "raspberrypi,firmware-clocks";
13		#clock-cells = <1>;
14	};
15};
16
17&hdmi {
18	clocks = <&firmware_clocks 9>,
19		 <&firmware_clocks 13>;
20	clock-names = "pixel", "hdmi";
21};
22
23&v3d {
24	power-domains = <&power RPI_POWER_DOMAIN_V3D>;
25};
26
27&vec {
28	clocks = <&firmware_clocks 15>;
29};