Home | History | Annotate | Line # | Download | only in cortex
      1  1.20    andvar /*	$NetBSD: armperiph.c,v 1.20 2025/06/19 22:00:54 andvar Exp $	*/
      2  1.20    andvar 
      3   1.1      matt /*-
      4   1.1      matt  * Copyright (c) 2012 The NetBSD Foundation, Inc.
      5   1.1      matt  * All rights reserved.
      6   1.1      matt  *
      7   1.1      matt  * This code is derived from software contributed to The NetBSD Foundation
      8   1.1      matt  * by Matt Thomas of 3am Software Foundry.
      9   1.1      matt  *
     10   1.1      matt  * Redistribution and use in source and binary forms, with or without
     11   1.1      matt  * modification, are permitted provided that the following conditions
     12   1.1      matt  * are met:
     13   1.1      matt  * 1. Redistributions of source code must retain the above copyright
     14   1.1      matt  *    notice, this list of conditions and the following disclaimer.
     15   1.1      matt  * 2. Redistributions in binary form must reproduce the above copyright
     16   1.1      matt  *    notice, this list of conditions and the following disclaimer in the
     17   1.1      matt  *    documentation and/or other materials provided with the distribution.
     18   1.1      matt  *
     19   1.1      matt  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20   1.1      matt  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21   1.1      matt  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22   1.1      matt  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23   1.1      matt  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24   1.1      matt  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25   1.1      matt  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26   1.1      matt  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27   1.1      matt  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28   1.1      matt  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29   1.1      matt  * POSSIBILITY OF SUCH DAMAGE.
     30   1.1      matt  */
     31   1.1      matt 
     32   1.1      matt #include "locators.h"
     33  1.14     skrll #include "opt_cputypes.h"
     34   1.1      matt 
     35   1.1      matt #include <sys/cdefs.h>
     36   1.1      matt 
     37  1.20    andvar __KERNEL_RCSID(1, "$NetBSD: armperiph.c,v 1.20 2025/06/19 22:00:54 andvar Exp $");
     38   1.1      matt 
     39   1.1      matt #include <sys/param.h>
     40   1.1      matt #include <sys/device.h>
     41  1.10      matt #include <sys/lwp.h>
     42   1.1      matt 
     43   1.1      matt #include "ioconf.h"
     44   1.1      matt 
     45   1.1      matt #include <arm/mainbus/mainbus.h>
     46   1.1      matt #include <arm/cortex/mpcore_var.h>
     47   1.9     skrll #include <arm/cortex/gtmr_intr.h>
     48  1.17     skrll #include <arm/cortex/a9tmr_intr.h>
     49   1.1      matt 
     50   1.1      matt static int armperiph_match(device_t, cfdata_t, void *);
     51   1.1      matt static void armperiph_attach(device_t, device_t, void *);
     52   1.1      matt 
     53   1.1      matt static bool attached;
     54   1.1      matt 
     55   1.1      matt struct armperiph_softc {
     56   1.1      matt 	device_t sc_dev;
     57   1.1      matt 	bus_space_tag_t sc_memt;
     58   1.1      matt 	bus_space_handle_t sc_memh;
     59   1.1      matt };
     60   1.1      matt 
     61   1.4      matt struct armperiph_info {
     62   1.4      matt 	const char pi_name[12];
     63   1.4      matt 	bus_size_t pi_off1;
     64   1.4      matt 	bus_size_t pi_off2;
     65   1.4      matt };
     66   1.4      matt 
     67   1.4      matt static const struct armperiph_info a5_devices[] = {
     68  1.13   hkenken 	{ "armscu",   0x0000, 0 },
     69  1.13   hkenken 	{ "armgic",   0x1000, 0x0100 },
     70  1.13   hkenken 	{ "arma9tmr", 0x0200, 0 },
     71  1.13   hkenken 	{ "a9wdt",    0x0600, 0 },
     72  1.13   hkenken 	{ "arml2cc",  0, 0 },	/* external; needs "offset" property */
     73   1.4      matt 	{ "", 0, 0 },
     74   1.1      matt };
     75   1.1      matt 
     76   1.4      matt static const struct armperiph_info a7_devices[] = {
     77   1.4      matt 	{ "armgic",  0x1000, 0x2000 },
     78   1.4      matt 	{ "armgtmr", 0, 0 },
     79   1.4      matt 	{ "", 0, 0 },
     80   1.1      matt };
     81   1.1      matt 
     82   1.4      matt static const struct armperiph_info a9_devices[] = {
     83  1.13   hkenken 	{ "armscu",   0x0000, 0 },
     84  1.13   hkenken 	{ "arml2cc",  0x2000, 0 },
     85  1.13   hkenken 	{ "armgic",   0x1000, 0x0100 },
     86  1.13   hkenken 	{ "arma9tmr", 0x0200, 0 },
     87  1.13   hkenken 	{ "a9wdt",    0x0600, 0 },
     88   1.4      matt 	{ "", 0, 0 },
     89   1.1      matt };
     90   1.1      matt 
     91   1.4      matt static const struct armperiph_info a15_devices[] = {
     92   1.4      matt 	{ "armgic",  0x1000, 0x2000 },
     93   1.4      matt 	{ "armgtmr", 0, 0 },
     94   1.4      matt 	{ "", 0, 0 },
     95   1.3      matt };
     96   1.3      matt 
     97  1.10      matt static const struct armperiph_info a17_devices[] = {
     98  1.10      matt 	{ "armgic",  0x1000, 0x2000 },
     99  1.10      matt 	{ "armgtmr", 0, 0 },
    100  1.10      matt 	{ "", 0, 0 },
    101  1.10      matt };
    102  1.10      matt 
    103  1.11  jmcneill static const struct armperiph_info a57_devices[] = {
    104  1.11  jmcneill 	{ "armgic",  0x1000, 0x2000 },
    105  1.11  jmcneill 	{ "armgtmr", 0, 0 },
    106  1.11  jmcneill 	{ "", 0, 0 },
    107  1.11  jmcneill };
    108  1.11  jmcneill 
    109   1.3      matt 
    110   1.1      matt static const struct mpcore_config {
    111   1.4      matt 	const struct armperiph_info *cfg_devices;
    112   1.1      matt 	uint32_t cfg_cpuid;
    113   1.1      matt 	uint32_t cfg_cbar_size;
    114   1.1      matt } configs[] = {
    115   1.4      matt 	{ a5_devices, 0x410fc050, 2*4096 },
    116   1.4      matt 	{ a7_devices, 0x410fc070, 8*4096 },
    117   1.2      matt 	{ a9_devices, 0x410fc090, 3*4096 },
    118   1.3      matt 	{ a15_devices, 0x410fc0f0, 8*4096 },
    119  1.10      matt 	{ a17_devices, 0x410fc0e0, 8*4096 },
    120  1.11  jmcneill 	{ a57_devices, 0x410fd070, 8*4096 },
    121   1.1      matt };
    122   1.1      matt 
    123   1.1      matt static const struct mpcore_config *
    124   1.1      matt armperiph_find_config(void)
    125   1.1      matt {
    126   1.1      matt 	const uint32_t arm_cpuid = curcpu()->ci_arm_cpuid & 0xff0ff0f0;
    127   1.1      matt 	for (size_t i = 0; i < __arraycount(configs); i++) {
    128   1.1      matt 		if (arm_cpuid == configs[i].cfg_cpuid) {
    129   1.1      matt 			return configs + i;
    130   1.1      matt 		}
    131   1.1      matt 	}
    132   1.1      matt 
    133   1.1      matt 	return NULL;
    134   1.1      matt }
    135   1.1      matt 
    136   1.1      matt CFATTACH_DECL_NEW(armperiph, sizeof(struct armperiph_softc),
    137   1.1      matt     armperiph_match, armperiph_attach, NULL, NULL);
    138   1.1      matt 
    139   1.1      matt static int
    140   1.1      matt armperiph_match(device_t parent, cfdata_t cf, void *aux)
    141   1.1      matt {
    142   1.1      matt 	struct mainbus_attach_args * const mb = aux;
    143   1.1      matt 	const int base = cf->cf_loc[MAINBUSCF_BASE];
    144   1.1      matt 	const int size = cf->cf_loc[MAINBUSCF_SIZE];
    145   1.1      matt 	const int dack = cf->cf_loc[MAINBUSCF_DACK];
    146   1.1      matt 	const int irq = cf->cf_loc[MAINBUSCF_IRQ];
    147   1.1      matt 	const int intrbase = cf->cf_loc[MAINBUSCF_INTRBASE];
    148   1.1      matt 
    149   1.1      matt 	if (attached)
    150   1.1      matt 		return 0;
    151   1.1      matt 
    152   1.1      matt 	if (base != MAINBUSCF_BASE_DEFAULT || base != mb->mb_iobase
    153   1.1      matt 	    || size != MAINBUSCF_SIZE_DEFAULT || size != mb->mb_iosize
    154   1.1      matt 	    || dack != MAINBUSCF_DACK_DEFAULT || dack != mb->mb_drq
    155   1.1      matt 	    || irq != MAINBUSCF_IRQ_DEFAULT || irq != mb->mb_irq
    156   1.1      matt 	    || intrbase != MAINBUSCF_INTRBASE_DEFAULT
    157   1.1      matt 	    || intrbase != mb->mb_intrbase)
    158   1.1      matt 		return 0;
    159   1.1      matt 
    160   1.1      matt 	if (!CPU_ID_CORTEX_P(curcpu()->ci_arm_cpuid))
    161   1.1      matt 		return 0;
    162   1.1      matt 
    163   1.1      matt 	if (armreg_cbar_read() == 0)
    164   1.1      matt 		return 0;
    165   1.1      matt 
    166   1.1      matt 	if (armperiph_find_config() == NULL)
    167   1.1      matt 		return 0;
    168   1.1      matt 
    169   1.1      matt 	return 1;
    170   1.1      matt }
    171   1.1      matt 
    172   1.1      matt static void
    173   1.1      matt armperiph_attach(device_t parent, device_t self, void *aux)
    174   1.1      matt {
    175   1.1      matt 	struct armperiph_softc * const sc = device_private(self);
    176   1.1      matt 	struct mainbus_attach_args * const mb = aux;
    177   1.1      matt 	bus_addr_t cbar = armreg_cbar_read();
    178   1.1      matt 	const struct mpcore_config * const cfg = armperiph_find_config();
    179   1.5  jmcneill 	prop_dictionary_t prop = device_properties(self);
    180   1.5  jmcneill 	uint32_t cbar_override;
    181   1.5  jmcneill 
    182   1.5  jmcneill 	if (prop_dictionary_get_uint32(prop, "cbar", &cbar_override))
    183   1.5  jmcneill 		cbar = (bus_addr_t)cbar_override;
    184   1.1      matt 
    185   1.1      matt 	/*
    186   1.1      matt 	 * The normal mainbus bus space will not work for us so the port's
    187   1.1      matt 	 * device_register must have replaced it with one that will work.
    188   1.1      matt 	 */
    189   1.1      matt 	sc->sc_dev = self;
    190   1.1      matt 	sc->sc_memt = mb->mb_iot;
    191   1.1      matt 
    192   1.1      matt 	int error = bus_space_map(sc->sc_memt, cbar, cfg->cfg_cbar_size, 0,
    193   1.1      matt 	    &sc->sc_memh);
    194   1.1      matt 	if (error) {
    195   1.1      matt 		aprint_normal(": error mapping registers at %#lx: %d\n",
    196   1.1      matt 		    cbar, error);
    197   1.1      matt 		return;
    198   1.1      matt 	}
    199   1.1      matt 	aprint_normal("\n");
    200   1.1      matt 
    201   1.1      matt 	/*
    202   1.1      matt 	 * Let's try to attach any children we may have.
    203   1.1      matt 	 */
    204   1.4      matt 	for (size_t i = 0; cfg->cfg_devices[i].pi_name[0] != 0; i++) {
    205   1.1      matt 		struct mpcore_attach_args mpcaa = {
    206   1.4      matt 			.mpcaa_name = cfg->cfg_devices[i].pi_name,
    207   1.1      matt 			.mpcaa_memt = sc->sc_memt,
    208   1.1      matt 			.mpcaa_memh = sc->sc_memh,
    209   1.4      matt 			.mpcaa_off1 = cfg->cfg_devices[i].pi_off1,
    210   1.4      matt 			.mpcaa_off2 = cfg->cfg_devices[i].pi_off2,
    211   1.1      matt 		};
    212  1.16  jmcneill 		if (strcmp(mpcaa.mpcaa_name, "arma9tmr") == 0) {
    213  1.13   hkenken 			mpcaa.mpcaa_irq = IRQ_A9TMR_PPI_GTIMER;
    214  1.16  jmcneill 		}
    215   1.8     skrll 		if (strcmp(mpcaa.mpcaa_name, "armgtmr") == 0) {
    216   1.8     skrll 			mpcaa.mpcaa_irq = IRQ_GTMR_PPI_VTIMER;
    217   1.8     skrll 		}
    218   1.1      matt 
    219  1.19   thorpej 		config_found(self, &mpcaa, NULL, CFARGS_NONE);
    220   1.1      matt 	}
    221  1.12     skrll 	attached = true;
    222   1.1      matt }
    223