include/linux/tegra-mipi-cal.h
Source file repositories/reference/linux-study-clean/include/linux/tegra-mipi-cal.h
File Facts
- System
- Linux kernel
- Corpus path
include/linux/tegra-mipi-cal.h- Extension
.h- Size
- 1351 bytes
- Lines
- 58
- Domain
- Core OS
- Bucket
- Core Kernel Interface
- Inferred role
- Core OS: implementation source
- Status
- source implementation candidate
Why This File Exists
Core operating-system implementation surface: boot, tasks, memory, VFS, syscall-facing interfaces, synchronization, credentials, and isolation.
- Core operating-system implementation surface: boot, tasks, memory, VFS, syscall-facing interfaces, synchronization, credentials, and isolation.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
- No C-style include directives detected by the generator.
Detected Declarations
struct tegra_mipi_devicestruct tegra_mipi_ops
Annotated Snippet
struct tegra_mipi_device {
const struct tegra_mipi_ops *ops;
struct platform_device *pdev;
unsigned long pads;
};
/**
* Operations for Tegra MIPI calibration device
*/
struct tegra_mipi_ops {
/**
* @enable:
*
* Enable MIPI calibration device
*/
int (*enable)(struct tegra_mipi_device *device);
/**
* @disable:
*
* Disable MIPI calibration device
*/
int (*disable)(struct tegra_mipi_device *device);
/**
* @start_calibration:
*
* Start MIPI calibration
*/
int (*start_calibration)(struct tegra_mipi_device *device);
/**
* @finish_calibration:
*
* Finish MIPI calibration
*/
int (*finish_calibration)(struct tegra_mipi_device *device);
};
int devm_tegra_mipi_add_provider(struct device *device, struct device_node *np,
const struct tegra_mipi_ops *ops);
struct tegra_mipi_device *tegra_mipi_request(struct device *device,
struct device_node *np);
void tegra_mipi_free(struct tegra_mipi_device *device);
int tegra_mipi_enable(struct tegra_mipi_device *device);
int tegra_mipi_disable(struct tegra_mipi_device *device);
int tegra_mipi_start_calibration(struct tegra_mipi_device *device);
int tegra_mipi_finish_calibration(struct tegra_mipi_device *device);
#endif /* __TEGRA_MIPI_CAL_H_ */
Annotation
- Detected declarations: `struct tegra_mipi_device`, `struct tegra_mipi_ops`.
- Atlas domain: Core OS / Core Kernel Interface.
- 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.