2018-05-09 17:59:00 +08:00
|
|
|
/* SPDX-License-Identifier: MIT */
|
|
|
|
/*
|
2020-07-31 21:36:01 +08:00
|
|
|
* clock framework for AMD misc clocks
|
2018-05-09 17:59:00 +08:00
|
|
|
*
|
|
|
|
* Copyright 2018 Advanced Micro Devices, Inc.
|
|
|
|
*/
|
|
|
|
|
2020-07-31 21:36:01 +08:00
|
|
|
#ifndef __CLK_FCH_H
|
|
|
|
#define __CLK_FCH_H
|
2018-05-09 17:59:00 +08:00
|
|
|
|
|
|
|
#include <linux/compiler.h>
|
|
|
|
|
2020-07-31 21:36:01 +08:00
|
|
|
struct fch_clk_data {
|
2018-05-09 17:59:00 +08:00
|
|
|
void __iomem *base;
|
2021-12-13 02:05:25 +08:00
|
|
|
char *name;
|
2018-05-09 17:59:00 +08:00
|
|
|
};
|
|
|
|
|
2020-07-31 21:36:01 +08:00
|
|
|
#endif /* __CLK_FCH_H */
|