arch/arm64/boot/dts/qcom/lemans-evk-camera.dtso

Source file repositories/reference/linux-study-clean/arch/arm64/boot/dts/qcom/lemans-evk-camera.dtso

File Facts

System
Linux kernel
Corpus path
arch/arm64/boot/dts/qcom/lemans-evk-camera.dtso
Extension
.dtso
Size
1811 bytes
Lines
106
Domain
Architecture Layer
Bucket
arch/arm64
Inferred role
Architecture Layer: arch/arm64
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: BSD-3-Clause
/*
 * Copyright (c) 2024-2025 Qualcomm Innovation Center, Inc. All rights reserved.
 */

/*
 * Camera Sensor overlay on top of leman evk core kit.
 */

/dts-v1/;
/plugin/;

#include <dt-bindings/clock/qcom,sa8775p-camcc.h>
#include <dt-bindings/gpio/gpio.h>

&{/} {
	vreg_cam1_1p8: vreg_cam1_1p8 {
		compatible = "regulator-fixed";
		regulator-name = "vreg_cam1_1p8";
		startup-delay-us = <10000>;
		enable-active-high;
		gpio = <&pmm8654au_0_gpios 8 GPIO_ACTIVE_HIGH>;
	};
};

&camcc {
	status = "okay";
};

&camss {
	vdda-pll-supply = <&vreg_l1c>;
	vdda-phy-supply = <&vreg_l4a>;

	status = "okay";

	ports {
		#address-cells = <1>;
		#size-cells = <0>;

		port@1 {
			reg = <1>;

			csiphy1_ep: endpoint {
				clock-lanes = <7>;
				data-lanes = <0 1 2 3>;
				remote-endpoint = <&imx577_ep1>;
			};
		};
	};
};

&cci1 {
	pinctrl-0 = <&cci1_0_default>;
	pinctrl-1 = <&cci1_0_sleep>;

	status = "okay";
};

&cci1_i2c0 {
	#address-cells = <1>;
	#size-cells = <0>;

	camera@1a {
		compatible = "sony,imx577";
		reg = <0x1a>;

		reset-gpios = <&tlmm 133 GPIO_ACTIVE_LOW>;
		pinctrl-0 = <&cam1_default>;
		pinctrl-names = "default";

Annotation

Implementation Notes