2019-05-27 08:55:05 +02:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2012-11-13 17:26:48 -06:00
|
|
|
/*
|
2013-05-13 10:46:38 -07:00
|
|
|
* Copyright (C) 2013 Xilinx Inc.
|
2012-11-13 17:26:48 -06:00
|
|
|
* Copyright (C) 2012 National Instruments
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef __LINUX_CLK_ZYNQ_H_
|
|
|
|
|
#define __LINUX_CLK_ZYNQ_H_
|
|
|
|
|
|
2013-05-13 10:46:38 -07:00
|
|
|
#include <linux/spinlock.h>
|
2012-11-13 17:26:48 -06:00
|
|
|
|
2013-11-18 16:48:19 +01:00
|
|
|
void zynq_clock_init(void);
|
2013-05-13 10:46:38 -07:00
|
|
|
|
|
|
|
|
struct clk *clk_register_zynq_pll(const char *name, const char *parent,
|
|
|
|
|
void __iomem *pll_ctrl, void __iomem *pll_status, u8 lock_index,
|
|
|
|
|
spinlock_t *lock);
|
2012-11-13 17:26:48 -06:00
|
|
|
#endif
|