Searched +full:exynos5433 +full:- +full:mipi +full:- +full:video +full:- +full:phy (Results 1 – 5 of 5) sorted by relevance
/Linux-v6.1/Documentation/devicetree/bindings/phy/ |
D | samsung,mipi-video-phy.yaml | 1 # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause 3 --- 4 $id: http://devicetree.org/schemas/phy/samsung,mipi-video-phy.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 7 title: Samsung S5P/Exynos SoC MIPI CSIS/DSIM DPHY 10 - Krzysztof Kozlowski <krzk@kernel.org> 11 - Marek Szyprowski <m.szyprowski@samsung.com> 12 - Sylwester Nawrocki <s.nawrocki@samsung.com> 15 For samsung,s5pv210-mipi-video-phy compatible PHYs the second cell in the 16 PHY specifier identifies the PHY and its meaning is as follows:: [all …]
|
/Linux-v6.1/Documentation/devicetree/bindings/display/exynos/ |
D | exynos_dsim.txt | 1 Exynos MIPI DSI Master 4 - compatible: value should be one of the following 5 "samsung,exynos3250-mipi-dsi" /* for Exynos3250/3472 SoCs */ 6 "samsung,exynos4210-mipi-dsi" /* for Exynos4 SoCs */ 7 "samsung,exynos5410-mipi-dsi" /* for Exynos5410/5420/5440 SoCs */ 8 "samsung,exynos5422-mipi-dsi" /* for Exynos5422/5800 SoCs */ 9 "samsung,exynos5433-mipi-dsi" /* for Exynos5433 SoCs */ 10 - reg: physical base address and length of the registers set for the device 11 - interrupts: should contain DSI interrupt 12 - clocks: list of clock specifiers, must contain an entry for each required [all …]
|
/Linux-v6.1/drivers/phy/samsung/ |
D | phy-exynos-mipi-video.c | 1 // SPDX-License-Identifier: GPL-2.0-only 3 * Samsung S5P/Exynos SoC series MIPI CSIS/DSIM DPHY driver 16 #include <linux/phy/phy.h> 19 #include <linux/soc/samsung/exynos-regs-pmu.h> 23 EXYNOS_MIPI_PHY_ID_NONE = -1, 161 "samsung,pmu-syscon", 162 "samsung,disp-sysreg", 163 "samsung,cam0-sysreg", 164 "samsung,cam1-sysreg" 221 struct phy *phy; member [all …]
|
/Linux-v6.1/arch/arm64/boot/dts/exynos/ |
D | exynos5433.dtsi | 1 // SPDX-License-Identifier: GPL-2.0 3 * Samsung's Exynos5433 SoC device tree source 7 * Samsung's Exynos5433 SoC device nodes are listed in this file. 8 * Exynos5433 based board files can include this file and provide 12 * Exynos5433 SoC. As device tree coverage for Exynos5433 increases, 16 #include <dt-bindings/clock/exynos5433.h> 17 #include <dt-bindings/interrupt-controller/arm-gic.h> 20 compatible = "samsung,exynos5433"; 21 #address-cells = <2>; 22 #size-cells = <2>; [all …]
|
/Linux-v6.1/drivers/gpu/drm/exynos/ |
D | exynos_drm_dsi.c | 1 // SPDX-License-Identifier: GPL-2.0-only 3 * Samsung SoC MIPI DSI Master driver. 17 #include <linux/phy/phy.h> 22 #include <video/mipi_display.h> 23 #include <video/videomode.h> 102 #define DSIM_MAIN_VRESOL(x, num_bits) (((x) & ((1 << (num_bits)) - 1)) << 16) 103 #define DSIM_MAIN_HRESOL(x, num_bits) (((x) & ((1 << (num_bits)) - 1)) << 0) 261 struct phy *phy; member 320 writel(val, dsi->reg_base + dsi->driver_data->reg_ofs[idx]); in exynos_dsi_write() 325 return readl(dsi->reg_base + dsi->driver_data->reg_ofs[idx]); in exynos_dsi_read() [all …]
|