* Realtek JPEG Processing Unit

The JPEG processing unit (JPU) incorporates the MJPEG codec with an encoding
and decoding function conforming to the MJPEG baseline process, so that the JPU
can encode image data and decode JPEG data quickly.

Required properties:
- compatible: Should be "realtek,rts3915-jpucodec"
- reg: Address and length of the register set for the device
- interrupt-parent: Phandle of the parent interrupt controller
- interrupts: Should contain the MJPEG interrupt number
- clocks: List of clock for MJPEG controller
- clock-names: List of clock name strings sorted in the same order as
the clocks property
- resets: List of phandle and reset specifier pairs, one pair for
each reset signal that affects the device
- reset-names: List of reset signal name strings sorted in the same order as
the resets property
- status: Either "ok" or "disabled"

Example:
	rts_jpucodec@0x18e00000 {
			compatible = "realtek,rts3915-jpucodec";
			reg = <0x18e00000 0x00002000>;
			interrupt-parent = <&vecintc>;
			interrupts = <BSP_IRQ_H265>;
			clocks = <&clks RLX_CLK_JPEG_CK>, \
				 <&clks RLX_CLK_JPEGDRAM>;
			clock-names = "jpeg_ck", "jpegdram_ck";
			resets = <&reset FORCE_RESET_JPG>, \
				<&sysmem SYS_MEM_SD_JPEG>;
			reset-names = "jpu-rst", "jpeg-sysmem-up";
			status = "disabled";
		};
