mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-16 02:14:58 +00:00
c3848db316
Support for all the dm3xx/dm64xx SoCs is no longer available, so drop all other references to those. Acked-by: Stephen Boyd <sboyd@kernel.org> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
24 lines
635 B
C
24 lines
635 B
C
// 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 */
|
|
|
|
#ifdef CONFIG_ARCH_DAVINCI_DA830
|
|
int da830_pll_init(struct device *dev, void __iomem *base, struct regmap *cfgchip);
|
|
#endif
|
|
#ifdef CONFIG_ARCH_DAVINCI_DA850
|
|
int da850_pll0_init(struct device *dev, void __iomem *base, struct regmap *cfgchip);
|
|
#endif
|
|
|
|
#endif /* __LINUX_CLK_DAVINCI_PLL_H___ */
|