Home | History | Annotate | Download | only in amlogic

Lines Matching defs:gate

43 	struct meson_clk_gate *gate = &clk->u.gate;
49 set = (gate->flags & MESON_CLK_GATE_SET_TO_DISABLE) ? !enable : enable;
53 val = CLK_READ(sc, gate->reg);
55 val |= gate->mask;
57 val &= ~gate->mask;
58 CLK_WRITE(sc, gate->reg, val);
68 struct meson_clk_gate *gate = &clk->u.gate;
72 return gate->parent;