]>
Commit | Line | Data |
---|---|---|
1a59d1b8 | 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
45aa2c27 | 2 | /* |
30e1e285 | 3 | * Copyright (C) 2013 Xilinx Inc. |
45aa2c27 | 4 | * Copyright (C) 2012 National Instruments |
45aa2c27 JC |
5 | */ |
6 | ||
7 | #ifndef __LINUX_CLK_ZYNQ_H_ | |
8 | #define __LINUX_CLK_ZYNQ_H_ | |
9 | ||
30e1e285 | 10 | #include <linux/spinlock.h> |
45aa2c27 | 11 | |
b0504e39 | 12 | void zynq_clock_init(void); |
30e1e285 SB |
13 | |
14 | struct clk *clk_register_zynq_pll(const char *name, const char *parent, | |
15 | void __iomem *pll_ctrl, void __iomem *pll_status, u8 lock_index, | |
16 | spinlock_t *lock); | |
45aa2c27 | 17 | #endif |