mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 10:00:17 +00:00
media: dt-bindings: media: Add binding for the Raspberry PI HEVC decoder
Adds a binding for the HEVC decoder found on the BCM2711 / Raspberry Pi 4. Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
This commit is contained in:
committed by
Dom Cobley
parent
25db41a181
commit
7994c2e5b0
72
Documentation/devicetree/bindings/media/rpivid_hevc.yaml
Normal file
72
Documentation/devicetree/bindings/media/rpivid_hevc.yaml
Normal file
@@ -0,0 +1,72 @@
|
|||||||
|
# SPDX-License-Identifier: GPL-2.0-only
|
||||||
|
%YAML 1.2
|
||||||
|
---
|
||||||
|
$id: http://devicetree.org/schemas/media/rpivid_hevc.yaml#
|
||||||
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
||||||
|
|
||||||
|
title: Raspberry Pi HEVC Decoder
|
||||||
|
|
||||||
|
maintainers:
|
||||||
|
- Raspberry Pi <kernel-list@raspberrypi.com>
|
||||||
|
|
||||||
|
description: |-
|
||||||
|
The Camera Adaptation Layer (CAL) is a key component for image capture
|
||||||
|
applications. The capture module provides the system interface and the
|
||||||
|
processing capability to connect CSI2 image-sensor modules to the
|
||||||
|
DRA72x device.
|
||||||
|
|
||||||
|
properties:
|
||||||
|
compatible:
|
||||||
|
enum:
|
||||||
|
- raspberrypi,rpivid-vid-decoder
|
||||||
|
|
||||||
|
reg:
|
||||||
|
minItems: 2
|
||||||
|
items:
|
||||||
|
- description: The HEVC main register region
|
||||||
|
- description: The Interrupt controller register region
|
||||||
|
|
||||||
|
reg-names:
|
||||||
|
minItems: 2
|
||||||
|
items:
|
||||||
|
- const: hevc
|
||||||
|
- const: intc
|
||||||
|
|
||||||
|
interrupts:
|
||||||
|
maxItems: 1
|
||||||
|
|
||||||
|
clocks:
|
||||||
|
items:
|
||||||
|
- description: The HEVC block clock
|
||||||
|
|
||||||
|
clock-names:
|
||||||
|
items:
|
||||||
|
- const: hevc
|
||||||
|
|
||||||
|
required:
|
||||||
|
- compatible
|
||||||
|
- reg
|
||||||
|
- reg-names
|
||||||
|
- interrupts
|
||||||
|
- clocks
|
||||||
|
|
||||||
|
additionalProperties: false
|
||||||
|
|
||||||
|
examples:
|
||||||
|
- |
|
||||||
|
#include <dt-bindings/interrupt-controller/arm-gic.h>
|
||||||
|
|
||||||
|
video-codec@7eb10000 {
|
||||||
|
compatible = "raspberrypi,rpivid-vid-decoder";
|
||||||
|
reg = <0x0 0x7eb10000 0x1000>, /* INTC */
|
||||||
|
<0x0 0x7eb00000 0x10000>; /* HEVC */
|
||||||
|
reg-names = "intc",
|
||||||
|
"hevc";
|
||||||
|
|
||||||
|
interrupts = <GIC_SPI 98 IRQ_TYPE_LEVEL_HIGH>;
|
||||||
|
|
||||||
|
clocks = <&clk 0>;
|
||||||
|
clock-names = "hevc";
|
||||||
|
};
|
||||||
|
|
||||||
|
...
|
||||||
@@ -4777,6 +4777,13 @@ S: Maintained
|
|||||||
F: Documentation/devicetree/bindings/media/brcm,bcm2835-unicam.yaml
|
F: Documentation/devicetree/bindings/media/brcm,bcm2835-unicam.yaml
|
||||||
F: drivers/media/platform/broadcom/bcm2835-unicam*
|
F: drivers/media/platform/broadcom/bcm2835-unicam*
|
||||||
|
|
||||||
|
BROADCOM BCM2711 HEVC DECODER
|
||||||
|
M: Raspberry Pi Kernel Maintenance <kernel-list@raspberrypi.com>
|
||||||
|
L: linux-media@vger.kernel.org
|
||||||
|
S: Maintained
|
||||||
|
F: Documentation/devicetree/bindings/media/rpivid_hevc.jaml
|
||||||
|
F: drivers/staging/media/rpivid
|
||||||
|
|
||||||
BROADCOM BCM47XX MIPS ARCHITECTURE
|
BROADCOM BCM47XX MIPS ARCHITECTURE
|
||||||
M: Hauke Mehrtens <hauke@hauke-m.de>
|
M: Hauke Mehrtens <hauke@hauke-m.de>
|
||||||
M: Rafał Miłecki <zajec5@gmail.com>
|
M: Rafał Miłecki <zajec5@gmail.com>
|
||||||
|
|||||||
Reference in New Issue
Block a user