1 /* $NetBSD: fixedclock.c,v 1.5 2018/09/09 07:21:18 aymeric Exp $ */ 2 3 /*- 4 * Copyright (c) 2017 Jared D. McNeill <jmcneill@invisible.ca> 5 * All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions 9 * are met: 10 * 1. Redistributions of source code must retain the above copyright 11 * notice, this list of conditions and the following disclaimer. 12 * 2. Redistributions in binary form must reproduce the above copyright 13 * notice, this list of conditions and the following disclaimer in the 14 * documentation and/or other materials provided with the distribution. 15 * 16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 17 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 18 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 19 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 21 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 22 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 23 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 24 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 26 * SUCH DAMAGE. 27 */ 28 29 #include <sys/cdefs.h> 30 __KERNEL_RCSID(0, "$NetBSD: fixedclock.c,v 1.5 2018/09/09 07:21:18 aymeric Exp $"); 31 32 #include <sys/param.h> 33 #include <sys/systm.h> 34 #include <sys/device.h> 35 #include <sys/kmem.h> 36 #include <sys/bus.h> 37 38 #include <dev/clk/clk_backend.h> 39 40 #include <dev/fdt/fdtvar.h> 41 42 static int fixedclock_match(device_t, cfdata_t, void *); 43 static void fixedclock_attach(device_t, device_t, void *); 44 45 static struct clk *fixedclock_decode(device_t, int, const void *, size_t); 46 47 static const struct fdtbus_clock_controller_func fixedclock_fdt_funcs = { 48 .decode = fixedclock_decode 49 }; 50 51 static struct clk *fixedclock_get(void *, const char *); 52 static void fixedclock_put(void *, struct clk *); 53 static u_int fixedclock_get_rate(void *, struct clk *); 54 55 static const struct clk_funcs fixedclock_clk_funcs = { 56 .get = fixedclock_get, 57 .put = fixedclock_put, 58 .get_rate = fixedclock_get_rate, 59 }; 60 61 struct fixedclock_clk { 62 struct clk base; 63 u_int rate; 64 }; 65 66 struct fixedclock_softc { 67 device_t sc_dev; 68 int sc_phandle; 69 70 struct clk_domain sc_clkdom; 71 struct fixedclock_clk sc_clk; 72 }; 73 74 CFATTACH_DECL_NEW(fclock, sizeof(struct fixedclock_softc), 75 fixedclock_match, fixedclock_attach, NULL, NULL); 76 77 static int 78 fixedclock_match(device_t parent, cfdata_t cf, void *aux) 79 { 80 const char * const compatible[] = { "fixed-clock", NULL }; 81 const struct fdt_attach_args *faa = aux; 82 83 return of_match_compatible(faa->faa_phandle, compatible); 84 } 85 86 static void 87 fixedclock_attach(device_t parent, device_t self, void *aux) 88 { 89 struct fixedclock_softc * const sc = device_private(self); 90 const struct fdt_attach_args *faa = aux; 91 const int phandle = faa->faa_phandle; 92 const char *clkname; 93 94 clkname = fdtbus_get_string(phandle, "clock-output-names"); 95 if (!clkname) 96 clkname = faa->faa_name; 97 98 sc->sc_dev = self; 99 sc->sc_phandle = phandle; 100 sc->sc_clkdom.name = device_xname(self); 101 sc->sc_clkdom.funcs = &fixedclock_clk_funcs; 102 sc->sc_clkdom.priv = sc; 103 if (of_getprop_uint32(phandle, "clock-frequency", 104 &sc->sc_clk.rate) != 0) { 105 aprint_error(": couldn't determine frequency\n"); 106 return; 107 } 108 sc->sc_clk.base.domain = &sc->sc_clkdom; 109 sc->sc_clk.base.name = kmem_asprintf("%s", clkname); 110 clk_attach(&sc->sc_clk.base); 111 112 aprint_naive("\n"); 113 aprint_normal(": %u Hz fixed clock (%s)\n", sc->sc_clk.rate, clkname); 114 115 fdtbus_register_clock_controller(self, phandle, &fixedclock_fdt_funcs); 116 } 117 118 static struct clk * 119 fixedclock_decode(device_t dev, int cc_phandle, const void *data, size_t len) 120 { 121 struct fixedclock_softc * const sc = device_private(dev); 122 123 /* #clock-cells for a fixed clock is always 0 */ 124 if (len != 0) 125 return NULL; 126 127 return &sc->sc_clk.base; 128 } 129 130 static struct clk * 131 fixedclock_get(void *priv, const char *name) 132 { 133 struct fixedclock_softc * const sc = priv; 134 135 if (strcmp(name, sc->sc_clk.base.name) != 0) 136 return NULL; 137 138 return &sc->sc_clk.base; 139 } 140 141 static void 142 fixedclock_put(void *priv, struct clk *clk) 143 { 144 } 145 146 static u_int 147 fixedclock_get_rate(void *priv, struct clk *clk) 148 { 149 struct fixedclock_clk *fclk = (struct fixedclock_clk *)clk; 150 151 return fclk->rate; 152 } 153