drivers/video/backlight/apple_dwi_bl.c
Source file repositories/reference/linux-study-clean/drivers/video/backlight/apple_dwi_bl.c
File Facts
- System
- Linux kernel
- Corpus path
drivers/video/backlight/apple_dwi_bl.c- Extension
.c- Size
- 3089 bytes
- Lines
- 125
- Domain
- Driver Families
- Bucket
- drivers/video
- Inferred role
- Driver Families: implementation source
- Status
- source implementation candidate
Why This File Exists
Repeatable hardware-adapter layer. Deep compatibility for every driver is out of scope; this atlas records patterns, probe lifecycles, bus glue, IRQ/DMA usage, and links back to core abstractions.
- Repeatable hardware-adapter layer. Deep compatibility for every driver is out of scope; this atlas records patterns, probe lifecycles, bus glue, IRQ/DMA usage, and links back to core abstractions.
- Allocates kernel memory; connect allocation flags and lifetime to context constraints.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/backlight.hlinux/bitfield.hlinux/device.hlinux/io.hlinux/mod_devicetable.hlinux/module.hlinux/platform_device.h
Detected Declarations
struct apple_dwi_blfunction dwi_bl_update_statusfunction dwi_bl_get_brightnessfunction dwi_bl_probe
Annotated Snippet
struct apple_dwi_bl {
void __iomem *base;
};
static int dwi_bl_update_status(struct backlight_device *bl)
{
struct apple_dwi_bl *dwi_bl = bl_get_data(bl);
int brightness = backlight_get_brightness(bl);
u32 cmd = 0;
cmd |= FIELD_PREP(DWI_BL_CMD_DATA, brightness);
cmd |= FIELD_PREP(DWI_BL_CMD_TYPE, DWI_BL_CMD_TYPE_SET_BRIGHTNESS);
writel(cmd, dwi_bl->base + DWI_BL_CMD);
writel(DWI_BL_CTL_SEND, dwi_bl->base + DWI_BL_CTL);
return 0;
}
static int dwi_bl_get_brightness(struct backlight_device *bl)
{
struct apple_dwi_bl *dwi_bl = bl_get_data(bl);
u32 cmd = readl(dwi_bl->base + DWI_BL_CMD);
return FIELD_GET(DWI_BL_CMD_DATA, cmd);
}
static const struct backlight_ops dwi_bl_ops = {
.options = BL_CORE_SUSPENDRESUME,
.get_brightness = dwi_bl_get_brightness,
.update_status = dwi_bl_update_status
};
static int dwi_bl_probe(struct platform_device *dev)
{
struct apple_dwi_bl *dwi_bl;
struct backlight_device *bl;
struct backlight_properties props;
struct resource *res;
dwi_bl = devm_kzalloc(&dev->dev, sizeof(*dwi_bl), GFP_KERNEL);
if (!dwi_bl)
return -ENOMEM;
dwi_bl->base = devm_platform_get_and_ioremap_resource(dev, 0, &res);
if (IS_ERR(dwi_bl->base))
return PTR_ERR(dwi_bl->base);
memset(&props, 0, sizeof(struct backlight_properties));
props.type = BACKLIGHT_PLATFORM;
props.max_brightness = DWI_BL_MAX_BRIGHTNESS;
props.scale = BACKLIGHT_SCALE_LINEAR;
bl = devm_backlight_device_register(&dev->dev, dev->name, &dev->dev,
dwi_bl, &dwi_bl_ops, &props);
if (IS_ERR(bl))
return PTR_ERR(bl);
platform_set_drvdata(dev, dwi_bl);
bl->props.brightness = dwi_bl_get_brightness(bl);
return 0;
}
static const struct of_device_id dwi_bl_of_match[] = {
{ .compatible = "apple,dwi-bl" },
{},
};
MODULE_DEVICE_TABLE(of, dwi_bl_of_match);
static struct platform_driver dwi_bl_driver = {
.driver = {
.name = "apple-dwi-bl",
.of_match_table = dwi_bl_of_match
},
.probe = dwi_bl_probe,
};
module_platform_driver(dwi_bl_driver);
MODULE_DESCRIPTION("Apple DWI Backlight Driver");
MODULE_AUTHOR("Nick Chan <towinchenmi@gmail.com>");
MODULE_LICENSE("Dual MIT/GPL");
Annotation
- Immediate include surface: `linux/backlight.h`, `linux/bitfield.h`, `linux/device.h`, `linux/io.h`, `linux/mod_devicetable.h`, `linux/module.h`, `linux/platform_device.h`.
- Detected declarations: `struct apple_dwi_bl`, `function dwi_bl_update_status`, `function dwi_bl_get_brightness`, `function dwi_bl_probe`.
- Atlas domain: Driver Families / drivers/video.
- Implementation status: source implementation candidate.
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.