Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-or-later */
0002 /*
0003  * Copyright (C) 2013 Xilinx Inc.
0004  * Copyright (C) 2012 National Instruments
0005  */
0006 
0007 #ifndef __LINUX_CLK_ZYNQ_H_
0008 #define __LINUX_CLK_ZYNQ_H_
0009 
0010 #include <linux/spinlock.h>
0011 
0012 void zynq_clock_init(void);
0013 
0014 struct clk *clk_register_zynq_pll(const char *name, const char *parent,
0015         void __iomem *pll_ctrl, void __iomem *pll_status, u8 lock_index,
0016         spinlock_t *lock);
0017 #endif