/*- * SPDX-License-Identifier: BSD-2-Clause * * Copyright (c) 2023 Beckhoff Automation GmbH & Co. KG * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ #include #include #include #include #include #include #include "clkdev_if.h" #include "zynqmp_firmware_if.h" struct zynqmp_clk_gate_softc { device_t firmware; uint32_t id; }; static int zynqmp_clk_gate_init(struct clknode *clk, device_t dev) { clknode_init_parent_idx(clk, 0); return (0); } static int zynqmp_clk_set_gate(struct clknode *clk, bool enable) { struct zynqmp_clk_gate_softc *sc; int rv; sc = clknode_get_softc(clk); if (enable) rv = ZYNQMP_FIRMWARE_CLOCK_ENABLE(sc->firmware, sc->id); else rv = ZYNQMP_FIRMWARE_CLOCK_DISABLE(sc->firmware, sc->id); if (rv != 0) { printf("%s: Error %sbling %s\n", __func__, enable == true ? "ena" : "disa", clknode_get_name(clk)); return (EINVAL); } return (0); } static clknode_method_t zynqmp_clk_gate_clknode_methods[] = { /* Device interface */ CLKNODEMETHOD(clknode_init, zynqmp_clk_gate_init), CLKNODEMETHOD(clknode_set_gate, zynqmp_clk_set_gate), CLKNODEMETHOD_END }; DEFINE_CLASS_1(zynqmp_clk_gate_clknode, zynqmp_clk_gate_clknode_class, zynqmp_clk_gate_clknode_methods, sizeof(struct zynqmp_clk_gate_softc), clknode_class); int zynqmp_clk_gate_register(struct clkdom *clkdom, device_t fw, struct clknode_init_def *clkdef) { struct clknode *clk; struct zynqmp_clk_gate_softc *sc; uint32_t fw_clk_id; fw_clk_id = clkdef->id - 1; clkdef->id = 0; clk = clknode_create(clkdom, &zynqmp_clk_gate_clknode_class, clkdef); if (clk == NULL) return (1); sc = clknode_get_softc(clk); sc->id = fw_clk_id; sc->firmware = fw; clknode_register(clkdom, clk); return (0); }