root/include/linux/clk/zynq.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


   1 /* SPDX-License-Identifier: GPL-2.0-or-later */
   2 /*
   3  * Copyright (C) 2013 Xilinx Inc.
   4  * Copyright (C) 2012 National Instruments
   5  */
   6 
   7 #ifndef __LINUX_CLK_ZYNQ_H_
   8 #define __LINUX_CLK_ZYNQ_H_
   9 
  10 #include <linux/spinlock.h>
  11 
  12 void zynq_clock_init(void);
  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);
  17 #endif

/* [<][>][^][v][top][bottom][index][help] */