1*be82b3a0SEmmanuel Vadot /*-
2*be82b3a0SEmmanuel Vadot * Copyright 2016 Michal Meloun <mmel@FreeBSD.org>
3*be82b3a0SEmmanuel Vadot * All rights reserved.
4*be82b3a0SEmmanuel Vadot *
5*be82b3a0SEmmanuel Vadot * Redistribution and use in source and binary forms, with or without
6*be82b3a0SEmmanuel Vadot * modification, are permitted provided that the following conditions
7*be82b3a0SEmmanuel Vadot * are met:
8*be82b3a0SEmmanuel Vadot * 1. Redistributions of source code must retain the above copyright
9*be82b3a0SEmmanuel Vadot * notice, this list of conditions and the following disclaimer.
10*be82b3a0SEmmanuel Vadot * 2. Redistributions in binary form must reproduce the above copyright
11*be82b3a0SEmmanuel Vadot * notice, this list of conditions and the following disclaimer in the
12*be82b3a0SEmmanuel Vadot * documentation and/or other materials provided with the distribution.
13*be82b3a0SEmmanuel Vadot *
14*be82b3a0SEmmanuel Vadot * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15*be82b3a0SEmmanuel Vadot * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16*be82b3a0SEmmanuel Vadot * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17*be82b3a0SEmmanuel Vadot * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18*be82b3a0SEmmanuel Vadot * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19*be82b3a0SEmmanuel Vadot * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20*be82b3a0SEmmanuel Vadot * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21*be82b3a0SEmmanuel Vadot * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22*be82b3a0SEmmanuel Vadot * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23*be82b3a0SEmmanuel Vadot * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24*be82b3a0SEmmanuel Vadot * SUCH DAMAGE.
25*be82b3a0SEmmanuel Vadot */
26*be82b3a0SEmmanuel Vadot
27*be82b3a0SEmmanuel Vadot #include <sys/param.h>
28*be82b3a0SEmmanuel Vadot #include <sys/conf.h>
29*be82b3a0SEmmanuel Vadot #include <sys/bus.h>
30*be82b3a0SEmmanuel Vadot #include <sys/kernel.h>
31*be82b3a0SEmmanuel Vadot #include <sys/systm.h>
32*be82b3a0SEmmanuel Vadot
33*be82b3a0SEmmanuel Vadot #include <machine/bus.h>
34*be82b3a0SEmmanuel Vadot
35*be82b3a0SEmmanuel Vadot #include <dev/clk/clk_gate.h>
36*be82b3a0SEmmanuel Vadot
37*be82b3a0SEmmanuel Vadot #include "clkdev_if.h"
38*be82b3a0SEmmanuel Vadot
39*be82b3a0SEmmanuel Vadot #define WR4(_clk, off, val) \
40*be82b3a0SEmmanuel Vadot CLKDEV_WRITE_4(clknode_get_device(_clk), off, val)
41*be82b3a0SEmmanuel Vadot #define RD4(_clk, off, val) \
42*be82b3a0SEmmanuel Vadot CLKDEV_READ_4(clknode_get_device(_clk), off, val)
43*be82b3a0SEmmanuel Vadot #define MD4(_clk, off, clr, set ) \
44*be82b3a0SEmmanuel Vadot CLKDEV_MODIFY_4(clknode_get_device(_clk), off, clr, set)
45*be82b3a0SEmmanuel Vadot #define DEVICE_LOCK(_clk) \
46*be82b3a0SEmmanuel Vadot CLKDEV_DEVICE_LOCK(clknode_get_device(_clk))
47*be82b3a0SEmmanuel Vadot #define DEVICE_UNLOCK(_clk) \
48*be82b3a0SEmmanuel Vadot CLKDEV_DEVICE_UNLOCK(clknode_get_device(_clk))
49*be82b3a0SEmmanuel Vadot
50*be82b3a0SEmmanuel Vadot static int clknode_gate_init(struct clknode *clk, device_t dev);
51*be82b3a0SEmmanuel Vadot static int clknode_gate_set_gate(struct clknode *clk, bool enable);
52*be82b3a0SEmmanuel Vadot static int clknode_gate_get_gate(struct clknode *clk, bool *enable);
53*be82b3a0SEmmanuel Vadot struct clknode_gate_sc {
54*be82b3a0SEmmanuel Vadot uint32_t offset;
55*be82b3a0SEmmanuel Vadot uint32_t shift;
56*be82b3a0SEmmanuel Vadot uint32_t mask;
57*be82b3a0SEmmanuel Vadot uint32_t on_value;
58*be82b3a0SEmmanuel Vadot uint32_t off_value;
59*be82b3a0SEmmanuel Vadot int gate_flags;
60*be82b3a0SEmmanuel Vadot };
61*be82b3a0SEmmanuel Vadot
62*be82b3a0SEmmanuel Vadot static clknode_method_t clknode_gate_methods[] = {
63*be82b3a0SEmmanuel Vadot /* Device interface */
64*be82b3a0SEmmanuel Vadot CLKNODEMETHOD(clknode_init, clknode_gate_init),
65*be82b3a0SEmmanuel Vadot CLKNODEMETHOD(clknode_set_gate, clknode_gate_set_gate),
66*be82b3a0SEmmanuel Vadot CLKNODEMETHOD(clknode_get_gate, clknode_gate_get_gate),
67*be82b3a0SEmmanuel Vadot CLKNODEMETHOD_END
68*be82b3a0SEmmanuel Vadot };
69*be82b3a0SEmmanuel Vadot DEFINE_CLASS_1(clknode_gate, clknode_gate_class, clknode_gate_methods,
70*be82b3a0SEmmanuel Vadot sizeof(struct clknode_gate_sc), clknode_class);
71*be82b3a0SEmmanuel Vadot
72*be82b3a0SEmmanuel Vadot static int
clknode_gate_init(struct clknode * clk,device_t dev)73*be82b3a0SEmmanuel Vadot clknode_gate_init(struct clknode *clk, device_t dev)
74*be82b3a0SEmmanuel Vadot {
75*be82b3a0SEmmanuel Vadot
76*be82b3a0SEmmanuel Vadot clknode_init_parent_idx(clk, 0);
77*be82b3a0SEmmanuel Vadot return(0);
78*be82b3a0SEmmanuel Vadot }
79*be82b3a0SEmmanuel Vadot
80*be82b3a0SEmmanuel Vadot static int
clknode_gate_set_gate(struct clknode * clk,bool enable)81*be82b3a0SEmmanuel Vadot clknode_gate_set_gate(struct clknode *clk, bool enable)
82*be82b3a0SEmmanuel Vadot {
83*be82b3a0SEmmanuel Vadot uint32_t reg;
84*be82b3a0SEmmanuel Vadot struct clknode_gate_sc *sc;
85*be82b3a0SEmmanuel Vadot int rv;
86*be82b3a0SEmmanuel Vadot
87*be82b3a0SEmmanuel Vadot sc = clknode_get_softc(clk);
88*be82b3a0SEmmanuel Vadot DEVICE_LOCK(clk);
89*be82b3a0SEmmanuel Vadot rv = MD4(clk, sc->offset, sc->mask << sc->shift,
90*be82b3a0SEmmanuel Vadot (enable ? sc->on_value : sc->off_value) << sc->shift);
91*be82b3a0SEmmanuel Vadot if (rv != 0) {
92*be82b3a0SEmmanuel Vadot DEVICE_UNLOCK(clk);
93*be82b3a0SEmmanuel Vadot return (rv);
94*be82b3a0SEmmanuel Vadot }
95*be82b3a0SEmmanuel Vadot RD4(clk, sc->offset, ®);
96*be82b3a0SEmmanuel Vadot DEVICE_UNLOCK(clk);
97*be82b3a0SEmmanuel Vadot return(0);
98*be82b3a0SEmmanuel Vadot }
99*be82b3a0SEmmanuel Vadot
100*be82b3a0SEmmanuel Vadot static int
clknode_gate_get_gate(struct clknode * clk,bool * enabled)101*be82b3a0SEmmanuel Vadot clknode_gate_get_gate(struct clknode *clk, bool *enabled)
102*be82b3a0SEmmanuel Vadot {
103*be82b3a0SEmmanuel Vadot uint32_t reg;
104*be82b3a0SEmmanuel Vadot struct clknode_gate_sc *sc;
105*be82b3a0SEmmanuel Vadot int rv;
106*be82b3a0SEmmanuel Vadot
107*be82b3a0SEmmanuel Vadot sc = clknode_get_softc(clk);
108*be82b3a0SEmmanuel Vadot DEVICE_LOCK(clk);
109*be82b3a0SEmmanuel Vadot rv = RD4(clk, sc->offset, ®);
110*be82b3a0SEmmanuel Vadot DEVICE_UNLOCK(clk);
111*be82b3a0SEmmanuel Vadot if (rv != 0)
112*be82b3a0SEmmanuel Vadot return (rv);
113*be82b3a0SEmmanuel Vadot reg = (reg >> sc->shift) & sc->mask;
114*be82b3a0SEmmanuel Vadot *enabled = reg == sc->on_value;
115*be82b3a0SEmmanuel Vadot return(0);
116*be82b3a0SEmmanuel Vadot }
117*be82b3a0SEmmanuel Vadot
118*be82b3a0SEmmanuel Vadot int
clknode_gate_register(struct clkdom * clkdom,struct clk_gate_def * clkdef)119*be82b3a0SEmmanuel Vadot clknode_gate_register(struct clkdom *clkdom, struct clk_gate_def *clkdef)
120*be82b3a0SEmmanuel Vadot {
121*be82b3a0SEmmanuel Vadot struct clknode *clk;
122*be82b3a0SEmmanuel Vadot struct clknode_gate_sc *sc;
123*be82b3a0SEmmanuel Vadot
124*be82b3a0SEmmanuel Vadot clk = clknode_create(clkdom, &clknode_gate_class, &clkdef->clkdef);
125*be82b3a0SEmmanuel Vadot if (clk == NULL)
126*be82b3a0SEmmanuel Vadot return (1);
127*be82b3a0SEmmanuel Vadot
128*be82b3a0SEmmanuel Vadot sc = clknode_get_softc(clk);
129*be82b3a0SEmmanuel Vadot sc->offset = clkdef->offset;
130*be82b3a0SEmmanuel Vadot sc->shift = clkdef->shift;
131*be82b3a0SEmmanuel Vadot sc->mask = clkdef->mask;
132*be82b3a0SEmmanuel Vadot sc->on_value = clkdef->on_value;
133*be82b3a0SEmmanuel Vadot sc->off_value = clkdef->off_value;
134*be82b3a0SEmmanuel Vadot sc->gate_flags = clkdef->gate_flags;
135*be82b3a0SEmmanuel Vadot
136*be82b3a0SEmmanuel Vadot clknode_register(clkdom, clk);
137*be82b3a0SEmmanuel Vadot return (0);
138*be82b3a0SEmmanuel Vadot }
139