drivers/clk/x86/clk-lpss-atom.c
Source file repositories/reference/linux-study-clean/drivers/clk/x86/clk-lpss-atom.c
File Facts
- System
- Linux kernel
- Corpus path
drivers/clk/x86/clk-lpss-atom.c- Extension
.c- Size
- 1122 bytes
- Lines
- 48
- Domain
- Driver Families
- Bucket
- drivers/clk
- 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/clk-provider.hlinux/err.hlinux/module.hlinux/platform_data/x86/clk-lpss.hlinux/platform_device.h
Detected Declarations
function Copyrightfunction lpss_atom_clk_init
Annotated Snippet
// SPDX-License-Identifier: GPL-2.0-only
/*
* Intel Low Power Subsystem clocks.
*
* Copyright (C) 2013, Intel Corporation
* Authors: Mika Westerberg <mika.westerberg@linux.intel.com>
* Heikki Krogerus <heikki.krogerus@linux.intel.com>
*/
#include <linux/clk-provider.h>
#include <linux/err.h>
#include <linux/module.h>
#include <linux/platform_data/x86/clk-lpss.h>
#include <linux/platform_device.h>
static int lpss_atom_clk_probe(struct platform_device *pdev)
{
struct lpss_clk_data *drvdata;
struct clk *clk;
drvdata = devm_kzalloc(&pdev->dev, sizeof(*drvdata), GFP_KERNEL);
if (!drvdata)
return -ENOMEM;
/* LPSS free running clock */
drvdata->name = "lpss_clk";
clk = clk_register_fixed_rate(&pdev->dev, drvdata->name, NULL,
0, 100000000);
if (IS_ERR(clk))
return PTR_ERR(clk);
drvdata->clk = clk;
platform_set_drvdata(pdev, drvdata);
return 0;
}
static struct platform_driver lpss_atom_clk_driver = {
.driver = {
.name = "clk-lpss-atom",
},
.probe = lpss_atom_clk_probe,
};
int __init lpss_atom_clk_init(void)
{
return platform_driver_register(&lpss_atom_clk_driver);
}
Annotation
- Immediate include surface: `linux/clk-provider.h`, `linux/err.h`, `linux/module.h`, `linux/platform_data/x86/clk-lpss.h`, `linux/platform_device.h`.
- Detected declarations: `function Copyright`, `function lpss_atom_clk_init`.
- Atlas domain: Driver Families / drivers/clk.
- 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.