]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/arm/allwinner/clkng/aw_ccung.h
Copy googletest 1.8.1 from ^/vendor/google/googletest/1.8.1 to .../contrib/googletest
[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_nkmp.h>
35 #include <arm/allwinner/clkng/aw_clk_nm.h>
36 #include <arm/allwinner/clkng/aw_clk_prediv_mux.h>
37 #include <dev/extres/clk/clk_mux.h>
38 #include <dev/extres/clk/clk_div.h>
39 #include <dev/extres/clk/clk_fixed.h>
40
41 enum aw_ccung_clk_type {
42         AW_CLK_UNDEFINED = 0,
43         AW_CLK_MUX,
44         AW_CLK_DIV,
45         AW_CLK_FIXED,
46         AW_CLK_NKMP,
47         AW_CLK_NM,
48         AW_CLK_PREDIV_MUX,
49 };
50
51 struct aw_ccung_clk {
52         enum aw_ccung_clk_type  type;
53         union {
54                 struct clk_mux_def              *mux;
55                 struct clk_div_def              *div;
56                 struct clk_fixed_def            *fixed;
57                 struct aw_clk_nkmp_def          *nkmp;
58                 struct aw_clk_nm_def            *nm;
59                 struct aw_clk_prediv_mux_def    *prediv_mux;
60         } clk;
61 };
62
63 struct aw_ccung_softc {
64         device_t                dev;
65         struct resource         *res;
66         struct clkdom           *clkdom;
67         struct mtx              mtx;
68         struct aw_ccung_reset   *resets;
69         int                     nresets;
70         struct aw_ccung_gate    *gates;
71         int                     ngates;
72         struct aw_ccung_clk     *clks;
73         int                     nclks;
74         struct aw_clk_init      *clk_init;
75         int                     n_clk_init;
76 };
77
78 struct aw_ccung_reset {
79         uint32_t        offset;
80         uint32_t        shift;
81 };
82
83 struct aw_ccung_gate {
84         const char      *name;
85         const char      *parent_name;
86         uint32_t        id;
87         uint32_t        offset;
88         uint32_t        shift;
89 };
90
91 DECLARE_CLASS(aw_ccung_driver);
92
93 int aw_ccung_attach(device_t dev);
94
95 #endif /* __CCU_NG_H__ */