mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-17 00:16:40 +07:00
1e88a8d64f
This adds a new driver for the gate and multiplexer clocks in the CFGCHIPn syscon registers on TI DA8XX-type SoCs. Signed-off-by: David Lechner <david@lechnology.com> Signed-off-by: Stephen Boyd <sboyd@kernel.org>
22 lines
504 B
C
22 lines
504 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* clk-da8xx-cfgchip - TI DaVinci DA8xx CFGCHIP clock driver
|
|
*
|
|
* Copyright (C) 2018 David Lechner <david@lechnology.com>
|
|
*/
|
|
|
|
#ifndef __LINUX_PLATFORM_DATA_CLK_DA8XX_CFGCHIP_H__
|
|
#define __LINUX_PLATFORM_DATA_CLK_DA8XX_CFGCHIP_H__
|
|
|
|
#include <linux/regmap.h>
|
|
|
|
/**
|
|
* da8xx_cfgchip_clk_platform_data
|
|
* @cfgchip: CFGCHIP syscon regmap
|
|
*/
|
|
struct da8xx_cfgchip_clk_platform_data {
|
|
struct regmap *cfgchip;
|
|
};
|
|
|
|
#endif /* __LINUX_PLATFORM_DATA_CLK_DA8XX_CFGCHIP_H__ */
|