arch/arm/boot/dts/ti/omap/omap3-devkit8000-lcd-common.dtsi
Source file repositories/reference/linux-study-clean/arch/arm/boot/dts/ti/omap/omap3-devkit8000-lcd-common.dtsi
File Facts
- System
- Linux kernel
- Corpus path
arch/arm/boot/dts/ti/omap/omap3-devkit8000-lcd-common.dtsi- Extension
.dtsi- Size
- 1354 bytes
- Lines
- 74
- 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.
- CPU and platform-specific kernel glue: boot entry, traps, syscall entry, interrupts, page tables, context switch, and low-level barriers.
Dependency Surface
omap3-devkit8000-common.dtsi
Detected Declarations
- No top-level syscall, struct, function, initcall, or export declaration detected by the generator.
Annotated Snippet
// SPDX-License-Identifier: GPL-2.0-only
/*
* Author: Anthoine Bourgeois <anthoine.bourgois@gmail.com>
*/
#include "omap3-devkit8000-common.dtsi"
/ {
aliases {
display0 = &lcd0;
display1 = &dvi0;
display2 = &tv0;
};
lcd0: display {
compatible = "panel-dpi";
label = "lcd";
enable-gpios = <&twl_gpio 18 GPIO_ACTIVE_HIGH>;
port {
lcd_in: endpoint {
remote-endpoint = <&dpi_lcd_out>;
};
};
};
};
&dss {
port {
#address-cells = <1>;
#size-cells = <0>;
dpi_lcd_out: endpoint@1 {
reg = <1>;
remote-endpoint = <&lcd_in>;
data-lines = <24>;
};
};
};
&vio {
regulator-min-microvolt = <1800000>;
regulator-max-microvolt = <1800000>;
};
&mcspi2 {
/* touch controller */
ads7846@0 {
compatible = "ti,ads7846";
vcc-supply = <&vio>;
reg = <0>; /* CS0 */
spi-max-frequency = <1500000>;
interrupt-parent = <&gpio1>;
interrupts = <27 0>; /* gpio_27 */
pendown-gpio = <&gpio1 27 GPIO_ACTIVE_LOW>;
ti,x-min = /bits/ 16 <0x0>;
ti,x-max = /bits/ 16 <0x0fff>;
ti,y-min = /bits/ 16 <0x0>;
ti,y-max = /bits/ 16 <0x0fff>;
ti,x-plate-ohms = /bits/ 16 <180>;
ti,pressure-max = /bits/ 16 <255>;
ti,debounce-max = /bits/ 16 <10>;
ti,debounce-tol = /bits/ 16 <5>;
ti,debounce-rep = /bits/ 16 <1>;
ti,keep-vref-on;
ti,settle-delay-usec = /bits/ 16 <150>;
Annotation
- Immediate include surface: `omap3-devkit8000-common.dtsi`.
- Atlas domain: Architecture Layer / arch/arm.
- Implementation status: atlas-only.
Implementation Notes
- This generated page is the file-by-file coverage layer; curated subsystem chapters should link here when they synthesize a multi-file control flow.
- Core OS pages should be promoted from atlas-only to deep-reviewed when they explain data structures, invariants, locking, lifecycle, and C implementation snippets.
- Driver-family pages are intentionally pattern-oriented unless they are part of the selected PCIe/NVMe representative device path.