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