]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/arm/allwinner/clkng/aw_ccung.h
Merge OpenSSL 1.1.1d.
[FreeBSD/FreeBSD.git] / sys / arm / allwinner / clkng / aw_ccung.h
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3  *
4  * Copyright (c) 2017,2018 Emmanuel Vadot <manu@freebsd.org>
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
20  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
22  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
23  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25  * SUCH DAMAGE.
26  *
27  * $FreeBSD$
28  */
29
30 #ifndef __CCU_NG_H__
31 #define __CCU_NG_H__
32
33 #include <arm/allwinner/clkng/aw_clk.h>
34 #include <arm/allwinner/clkng/aw_clk_m.h>
35 #include <arm/allwinner/clkng/aw_clk_nkmp.h>
36 #include <arm/allwinner/clkng/aw_clk_nm.h>
37 #include <arm/allwinner/clkng/aw_clk_prediv_mux.h>
38 #include <arm/allwinner/clkng/aw_clk_frac.h>
39 #include <dev/extres/clk/clk_mux.h>
40 #include <dev/extres/clk/clk_div.h>
41 #include <dev/extres/clk/clk_fixed.h>
42
43 enum aw_ccung_clk_type {
44         AW_CLK_UNDEFINED = 0,
45         AW_CLK_MUX,
46         AW_CLK_DIV,
47         AW_CLK_FIXED,
48         AW_CLK_NKMP,
49         AW_CLK_NM,
50         AW_CLK_PREDIV_MUX,
51         AW_CLK_FRAC,
52         AW_CLK_M,
53 };
54
55 struct aw_ccung_clk {
56         enum aw_ccung_clk_type  type;
57         union {
58                 struct clk_mux_def              *mux;
59                 struct clk_div_def              *div;
60                 struct clk_fixed_def            *fixed;
61                 struct aw_clk_nkmp_def          *nkmp;
62                 struct aw_clk_nm_def            *nm;
63                 struct aw_clk_prediv_mux_def    *prediv_mux;
64                 struct aw_clk_frac_def          *frac;
65                 struct aw_clk_m_def             *m;
66         } clk;
67 };
68
69 struct aw_ccung_softc {
70         device_t                dev;
71         struct resource         *res;
72         struct clkdom           *clkdom;
73         struct mtx              mtx;
74         struct aw_ccung_reset   *resets;
75         int                     nresets;
76         struct aw_ccung_gate    *gates;
77         int                     ngates;
78         struct aw_ccung_clk     *clks;
79         int                     nclks;
80         struct aw_clk_init      *clk_init;
81         int                     n_clk_init;
82 };
83
84 struct aw_ccung_reset {
85         uint32_t        offset;
86         uint32_t        shift;
87 };
88
89 struct aw_ccung_gate {
90         const char      *name;
91         const char      *parent_name;
92         uint32_t        id;
93         uint32_t        offset;
94         uint32_t        shift;
95 };
96
97 DECLARE_CLASS(aw_ccung_driver);
98
99 int aw_ccung_attach(device_t dev);
100
101 #endif /* __CCU_NG_H__ */