arch/arm/boot/dts/renesas/r8a7742-iwg21d-q7-dbcm-ov7725-single.dtsi

Source file repositories/reference/linux-study-clean/arch/arm/boot/dts/renesas/r8a7742-iwg21d-q7-dbcm-ov7725-single.dtsi

File Facts

System
Linux kernel
Corpus path
arch/arm/boot/dts/renesas/r8a7742-iwg21d-q7-dbcm-ov7725-single.dtsi
Extension
.dtsi
Size
621 bytes
Lines
32
Domain
Architecture Layer
Bucket
arch/arm
Inferred role
Architecture Layer: configuration, schema, or hardware description
Status
atlas-only

Why This File Exists

CPU and platform-specific kernel glue: boot entry, traps, syscall entry, interrupts, page tables, context switch, and low-level barriers.

Dependency Surface

Detected Declarations

Annotated Snippet

// SPDX-License-Identifier: GPL-2.0
/*
 * This include file ties a VIN interface with a single ov7725 sensor on
 * the iWave-RZ/G1H Qseven board development platform connected with the
 * camera daughter board.
 *
 * Copyright (C) 2020 Renesas Electronics Corp.
 */

#include <dt-bindings/media/video-interfaces.h>

#define CAM_ENABLED	1

&CAM_PARENT_I2C {
	status = "okay";

	ov7725@21 {
		compatible = "ovti,ov7725";
		reg = <0x21>;
		clocks = <&MCLK_CAM>;
		status = "okay";

		port {
			CAM_EP: endpoint {
				bus-width = <8>;
				bus-type = <MEDIA_BUS_TYPE_BT656>;
				remote-endpoint = <&VIN_EP>;
			};
		};
	};
};

Annotation

Implementation Notes