arch/arm/boot/dts/cirrus/ep7211-edb7211.dts
Source file repositories/reference/linux-study-clean/arch/arm/boot/dts/cirrus/ep7211-edb7211.dts
File Facts
- System
- Linux kernel
- Corpus path
arch/arm/boot/dts/cirrus/ep7211-edb7211.dts- Extension
.dts- Size
- 1946 bytes
- Lines
- 98
- 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
ep7211.dtsidt-bindings/gpio/gpio.h
Detected Declarations
- No top-level syscall, struct, function, initcall, or export declaration detected by the generator.
Annotated Snippet
// SPDX-License-Identifier: GPL-2.0-or-later
#include "ep7211.dtsi"
#include <dt-bindings/gpio/gpio.h>
/ {
model = "Cirrus Logic EP7211 Development Board";
compatible = "cirrus,edb7211", "cirrus,ep7211", "cirrus,ep7209";
memory@c0000000 {
device_type = "memory";
reg = <0xc0000000 0x02000000>;
};
backlight: backlight {
compatible = "pwm-backlight";
pwms = <&pwm 0>;
brightness-levels = <
0x0 0x1 0x2 0x3 0x4 0x5 0x6 0x7
0x8 0x9 0xa 0xb 0xc 0xd 0xe 0xf
>;
default-brightness-level = <0x0>;
power-supply = <&blen>;
};
display: display {
model = "320x240x4";
bits-per-pixel = <4>;
ac-prescale = <17>;
display-timings {
native-mode = <&timing0>;
timing0: timing-320x240 {
hactive = <320>;
hback-porch = <0>;
hfront-porch = <0>;
hsync-len = <0>;
vactive = <240>;
vback-porch = <0>;
vfront-porch = <0>;
vsync-len = <0>;
clock-frequency = <6500000>;
};
};
};
i2c: i2c {
compatible = "i2c-gpio";
sda-gpios = <&portd 4 GPIO_ACTIVE_HIGH>;
scl-gpios = <&portd 5 GPIO_ACTIVE_HIGH>;
i2c-gpio,delay-us = <2>;
i2c-gpio,scl-output-only;
#address-cells = <1>;
#size-cells = <0>;
};
lcddc: lcddc {
compatible = "regulator-fixed";
regulator-name = "BACKLIGHT ENABLE";
regulator-min-microvolt = <3300000>;
regulator-max-microvolt = <3300000>;
gpio = <&portd 1 GPIO_ACTIVE_HIGH>;
};
blen: blen {
compatible = "regulator-fixed";
regulator-name = "BACKLIGHT ENABLE";
regulator-min-microvolt = <3300000>;
regulator-max-microvolt = <3300000>;
gpio = <&portd 3 GPIO_ACTIVE_HIGH>;
Annotation
- Immediate include surface: `ep7211.dtsi`, `dt-bindings/gpio/gpio.h`.
- 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.