include/linux/clk/davinci.h

Source file repositories/reference/linux-study-clean/include/linux/clk/davinci.h

File Facts

System
Linux kernel
Corpus path
include/linux/clk/davinci.h
Extension
.h
Size
470 bytes
Lines
18
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.

Dependency Surface

Detected Declarations

Annotated Snippet

// SPDX-License-Identifier: GPL-2.0
/*
 * Clock drivers for TI DaVinci PLL and PSC controllers
 *
 * Copyright (C) 2018 David Lechner <david@lechnology.com>
 */

#ifndef __LINUX_CLK_DAVINCI_PLL_H___
#define __LINUX_CLK_DAVINCI_PLL_H___

#include <linux/device.h>
#include <linux/regmap.h>

/* function for registering clocks in early boot */
int da850_pll0_init(struct device *dev, void __iomem *base, struct regmap *cfgchip);

#endif /* __LINUX_CLK_DAVINCI_PLL_H___ */

Annotation

Implementation Notes