mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
7f8802f2d2
Since there is slight difference in AMD RV based soc in misc clk architecture. The fmw property will help in differentiating the SoCs. Signed-off-by: Akshu Agrawal <akshu.agrawal@amd.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
19 lines
286 B
C
19 lines
286 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* clock framework for AMD misc clocks
|
|
*
|
|
* Copyright 2018 Advanced Micro Devices, Inc.
|
|
*/
|
|
|
|
#ifndef __CLK_FCH_H
|
|
#define __CLK_FCH_H
|
|
|
|
#include <linux/compiler.h>
|
|
|
|
struct fch_clk_data {
|
|
void __iomem *base;
|
|
u32 is_rv;
|
|
};
|
|
|
|
#endif /* __CLK_FCH_H */
|