003 File Manager
Current Path:
/usr/src/sys/arm64/rockchip/clk
usr
/
src
/
sys
/
arm64
/
rockchip
/
clk
/
📁
..
📄
rk3288_cru.c
(33.52 KB)
📄
rk3328_cru.c
(33.92 KB)
📄
rk3399_cru.c
(46.85 KB)
📄
rk3399_cru_dt.h
(8.8 KB)
📄
rk3399_pmucru.c
(13.91 KB)
📄
rk_clk_armclk.c
(6.42 KB)
📄
rk_clk_armclk.h
(1.93 KB)
📄
rk_clk_composite.c
(9.38 KB)
📄
rk_clk_composite.h
(2.11 KB)
📄
rk_clk_fract.c
(7.13 KB)
📄
rk_clk_fract.h
(1.76 KB)
📄
rk_clk_gate.c
(3.93 KB)
📄
rk_clk_gate.h
(1.78 KB)
📄
rk_clk_mux.c
(5.36 KB)
📄
rk_clk_mux.h
(1.79 KB)
📄
rk_clk_pll.c
(20.35 KB)
📄
rk_clk_pll.h
(2.19 KB)
📄
rk_cru.c
(7.02 KB)
📄
rk_cru.h
(6.99 KB)
Editing: rk_clk_gate.h
/*- * SPDX-License-Identifier: BSD-2-Clause-FreeBSD * * Copyright 2018 Emmanuel Vadot <manu@FreeBSD.org> * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * $FreeBSD$ */ #ifndef _RK_CLK_GATE_H_ #define _RK_CLK_GATE_H_ #include <dev/extres/clk/clk.h> struct rk_clk_gate_def { struct clknode_init_def clkdef; uint32_t offset; uint32_t shift; uint32_t mask; uint32_t on_value; uint32_t off_value; int gate_flags; }; #define RK_CLK_GATE_MASK 0xFFFF0000 int rk_clk_gate_register(struct clkdom *clkdom, struct rk_clk_gate_def *clkdef); #endif /* _RK_CLK_GATE_H_ */
Upload File
Create Folder