mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-30 03:56:44 +07:00
657eee7d25
This patch depends on "genalloc: add devres support, allow to find a managed pool by device", which provides the of_get_named_gen_pool and dev_get_gen_pool functions. Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de> Acked-by: Javier Martin <javier.martin@vista-silicon.com> Acked-by: Grant Likely <grant.likely@secretlab.ca> Cc: Michal Simek <monstr@monstr.eu> Cc: Dong Aisheng <dong.aisheng@linaro.org> Cc: Fabio Estevam <fabio.estevam@freescale.com> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Cc: Huang Shijie <shijie8@gmail.com> Cc: Matt Porter <mporter@ti.com> Cc: Paul Gortmaker <paul.gortmaker@windriver.com> Cc: Rob Herring <rob.herring@calxeda.com> Cc: Shawn Guo <shawn.guo@linaro.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
31 lines
1002 B
Plaintext
31 lines
1002 B
Plaintext
Chips&Media Coda multi-standard codec IP
|
|
========================================
|
|
|
|
Coda codec IPs are present in i.MX SoCs in various versions,
|
|
called VPU (Video Processing Unit).
|
|
|
|
Required properties:
|
|
- compatible : should be "fsl,<chip>-src" for i.MX SoCs:
|
|
(a) "fsl,imx27-vpu" for CodaDx6 present in i.MX27
|
|
(b) "fsl,imx53-vpu" for CODA7541 present in i.MX53
|
|
(c) "fsl,imx6q-vpu" for CODA960 present in i.MX6q
|
|
- reg: should be register base and length as documented in the
|
|
SoC reference manual
|
|
- interrupts : Should contain the VPU interrupt. For CODA960,
|
|
a second interrupt is needed for the MJPEG unit.
|
|
- clocks : Should contain the ahb and per clocks, in the order
|
|
determined by the clock-names property.
|
|
- clock-names : Should be "ahb", "per"
|
|
- iram : phandle pointing to the SRAM device node
|
|
|
|
Example:
|
|
|
|
vpu: vpu@63ff4000 {
|
|
compatible = "fsl,imx53-vpu";
|
|
reg = <0x63ff4000 0x1000>;
|
|
interrupts = <9>;
|
|
clocks = <&clks 63>, <&clks 63>;
|
|
clock-names = "ahb", "per";
|
|
iram = <&ocram>;
|
|
};
|