1 1.7 jmcneill /* $NetBSD: a9ptmr_fdt.c,v 1.7 2022/11/05 17:30:06 jmcneill Exp $ */ 2 1.1 skrll 3 1.1 skrll /*- 4 1.1 skrll * Copyright (c) 2019 The NetBSD Foundation, Inc. 5 1.1 skrll * All rights reserved. 6 1.1 skrll * 7 1.1 skrll * This code is derived from software contributed to The NetBSD Foundation 8 1.1 skrll * by Nick Hudson 9 1.1 skrll * 10 1.1 skrll * Redistribution and use in source and binary forms, with or without 11 1.1 skrll * modification, are permitted provided that the following conditions 12 1.1 skrll * are met: 13 1.1 skrll * 1. Redistributions of source code must retain the above copyright 14 1.1 skrll * notice, this list of conditions and the following disclaimer. 15 1.1 skrll * 2. Redistributions in binary form must reproduce the above copyright 16 1.1 skrll * notice, this list of conditions and the following disclaimer in the 17 1.1 skrll * documentation and/or other materials provided with the distribution. 18 1.1 skrll * 19 1.1 skrll * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 20 1.1 skrll * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 21 1.1 skrll * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 22 1.1 skrll * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 23 1.1 skrll * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 24 1.1 skrll * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 25 1.1 skrll * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 26 1.1 skrll * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 27 1.1 skrll * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 28 1.1 skrll * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 29 1.1 skrll * POSSIBILITY OF SUCH DAMAGE. 30 1.1 skrll */ 31 1.1 skrll 32 1.1 skrll #include <sys/cdefs.h> 33 1.7 jmcneill __KERNEL_RCSID(0, "$NetBSD: a9ptmr_fdt.c,v 1.7 2022/11/05 17:30:06 jmcneill Exp $"); 34 1.1 skrll 35 1.1 skrll #include <sys/param.h> 36 1.1 skrll #include <sys/bus.h> 37 1.1 skrll 38 1.1 skrll #include <sys/device.h> 39 1.1 skrll #include <sys/intr.h> 40 1.1 skrll 41 1.1 skrll #include <arm/cortex/mpcore_var.h> 42 1.1 skrll #include <arm/cortex/a9ptmr_var.h> 43 1.1 skrll 44 1.6 jmcneill #include <arm/armreg.h> 45 1.6 jmcneill 46 1.1 skrll #include <dev/fdt/fdtvar.h> 47 1.1 skrll #include <arm/fdt/arm_fdtvar.h> 48 1.1 skrll 49 1.1 skrll static int a9ptmr_fdt_match(device_t, cfdata_t, void *); 50 1.1 skrll static void a9ptmr_fdt_attach(device_t, device_t, void *); 51 1.1 skrll 52 1.1 skrll static void a9ptmr_fdt_cpu_hatch(void *, struct cpu_info *); 53 1.7 jmcneill static void a9ptmr_fdt_speed_changed(device_t); 54 1.1 skrll 55 1.1 skrll struct a9ptmr_fdt_softc { 56 1.1 skrll device_t sc_dev; 57 1.1 skrll struct clk *sc_clk; 58 1.1 skrll }; 59 1.1 skrll 60 1.1 skrll CFATTACH_DECL_NEW(a9ptmr_fdt, sizeof(struct a9ptmr_fdt_softc), 61 1.1 skrll a9ptmr_fdt_match, a9ptmr_fdt_attach, NULL, NULL); 62 1.1 skrll 63 1.3 thorpej static const struct device_compatible_entry compat_data[] = { 64 1.3 thorpej { .compat = "arm,cortex-a9-twd-timer" }, 65 1.3 thorpej { .compat = "arm,cortex-a5-twd-timer" }, 66 1.3 thorpej DEVICE_COMPAT_EOL 67 1.3 thorpej }; 68 1.3 thorpej 69 1.1 skrll static int 70 1.1 skrll a9ptmr_fdt_match(device_t parent, cfdata_t cf, void *aux) 71 1.1 skrll { 72 1.1 skrll struct fdt_attach_args * const faa = aux; 73 1.1 skrll 74 1.3 thorpej return of_compatible_match(faa->faa_phandle, compat_data); 75 1.1 skrll } 76 1.1 skrll 77 1.1 skrll static void 78 1.1 skrll a9ptmr_fdt_attach(device_t parent, device_t self, void *aux) 79 1.1 skrll { 80 1.1 skrll struct a9ptmr_fdt_softc * const sc = device_private(self); 81 1.1 skrll struct fdt_attach_args * const faa = aux; 82 1.1 skrll const int phandle = faa->faa_phandle; 83 1.1 skrll bus_space_handle_t bsh; 84 1.6 jmcneill uint32_t mpidr; 85 1.6 jmcneill bool is_hardclock; 86 1.1 skrll 87 1.1 skrll sc->sc_dev = self; 88 1.1 skrll sc->sc_clk = fdtbus_clock_get_index(phandle, 0); 89 1.1 skrll if (sc->sc_clk == NULL) { 90 1.1 skrll aprint_error(": couldn't get clock\n"); 91 1.1 skrll return; 92 1.1 skrll } 93 1.1 skrll if (clk_enable(sc->sc_clk) != 0) { 94 1.1 skrll aprint_error(": couldn't enable clock\n"); 95 1.1 skrll return; 96 1.1 skrll } 97 1.1 skrll 98 1.1 skrll uint32_t rate = clk_get_rate(sc->sc_clk); 99 1.1 skrll prop_dictionary_t dict = device_properties(self); 100 1.1 skrll prop_dictionary_set_uint32(dict, "frequency", rate); 101 1.1 skrll 102 1.1 skrll char intrstr[128]; 103 1.1 skrll if (!fdtbus_intr_str(phandle, 0, intrstr, sizeof(intrstr))) { 104 1.1 skrll aprint_error(": failed to decode interrupt\n"); 105 1.1 skrll return; 106 1.1 skrll } 107 1.1 skrll 108 1.1 skrll aprint_naive("\n"); 109 1.1 skrll aprint_normal("\n"); 110 1.1 skrll 111 1.6 jmcneill mpidr = armreg_mpidr_read(); 112 1.6 jmcneill is_hardclock = (mpidr & MPIDR_U) == 0; /* Use private timer for SMP */ 113 1.6 jmcneill 114 1.6 jmcneill if (is_hardclock) { 115 1.6 jmcneill void *ih = fdtbus_intr_establish_xname(phandle, 0, IPL_CLOCK, 116 1.6 jmcneill FDT_INTR_MPSAFE, a9ptmr_intr, NULL, device_xname(self)); 117 1.6 jmcneill if (ih == NULL) { 118 1.6 jmcneill aprint_error_dev(self, "couldn't install interrupt handler\n"); 119 1.6 jmcneill return; 120 1.6 jmcneill } 121 1.6 jmcneill aprint_normal_dev(self, "interrupting on %s\n", intrstr); 122 1.1 skrll } 123 1.1 skrll 124 1.1 skrll bus_addr_t addr; 125 1.1 skrll bus_size_t size; 126 1.1 skrll if (fdtbus_get_reg(phandle, 0, &addr, &size) != 0) { 127 1.1 skrll aprint_error(": couldn't get registers\n"); 128 1.1 skrll return; 129 1.1 skrll } 130 1.1 skrll if (bus_space_map(faa->faa_bst, addr, size, 0, &bsh)) { 131 1.1 skrll aprint_error(": couldn't map registers\n"); 132 1.1 skrll return; 133 1.1 skrll } 134 1.1 skrll 135 1.1 skrll struct mpcore_attach_args mpcaa = { 136 1.1 skrll .mpcaa_name = "arma9ptmr", 137 1.1 skrll .mpcaa_memt = faa->faa_bst, 138 1.1 skrll .mpcaa_memh = bsh, 139 1.1 skrll .mpcaa_irq = -1, 140 1.1 skrll }; 141 1.1 skrll 142 1.5 thorpej config_found(self, &mpcaa, NULL, CFARGS_NONE); 143 1.1 skrll 144 1.6 jmcneill if (is_hardclock) { 145 1.6 jmcneill arm_fdt_cpu_hatch_register(self, a9ptmr_fdt_cpu_hatch); 146 1.6 jmcneill arm_fdt_timer_register(a9ptmr_cpu_initclocks); 147 1.6 jmcneill } 148 1.7 jmcneill 149 1.7 jmcneill pmf_event_register(self, PMFE_SPEED_CHANGED, a9ptmr_fdt_speed_changed, true); 150 1.1 skrll } 151 1.1 skrll 152 1.1 skrll static void 153 1.1 skrll a9ptmr_fdt_cpu_hatch(void *priv, struct cpu_info *ci) 154 1.1 skrll { 155 1.1 skrll a9ptmr_init_cpu_clock(ci); 156 1.1 skrll } 157 1.7 jmcneill 158 1.7 jmcneill static void 159 1.7 jmcneill a9ptmr_fdt_speed_changed(device_t dev) 160 1.7 jmcneill { 161 1.7 jmcneill struct a9ptmr_fdt_softc * const sc = device_private(dev); 162 1.7 jmcneill prop_dictionary_t dict = device_properties(dev); 163 1.7 jmcneill uint32_t rate; 164 1.7 jmcneill 165 1.7 jmcneill rate = clk_get_rate(sc->sc_clk); 166 1.7 jmcneill prop_dictionary_set_uint32(dict, "frequency", rate); 167 1.7 jmcneill 168 1.7 jmcneill a9ptmr_update_freq(rate); 169 1.7 jmcneill } 170