Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/arm/arm32 Shared armv7 bus space implementation.



details:   https://anonhg.NetBSD.org/src/rev/2b67a0cd2919
branches:  trunk
changeset: 337004:2b67a0cd2919
user:      jmcneill <jmcneill%NetBSD.org@localhost>
date:      Sun Mar 29 22:26:18 2015 +0000

description:
Shared armv7 bus space implementation.

diffstat:

 sys/arch/arm/arm32/armv7_generic_space.c |  416 +++++++++++++++++++++++++++++++
 1 files changed, 416 insertions(+), 0 deletions(-)

diffs (truncated from 420 to 300 lines):

diff -r 73762bbb4711 -r 2b67a0cd2919 sys/arch/arm/arm32/armv7_generic_space.c
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/sys/arch/arm/arm32/armv7_generic_space.c  Sun Mar 29 22:26:18 2015 +0000
@@ -0,0 +1,416 @@
+/*     $NetBSD: armv7_generic_space.c,v 1.1 2015/03/29 22:26:18 jmcneill Exp $ */
+
+/*-
+ * Copyright (c) 2012 The NetBSD Foundation, Inc.
+ * All rights reserved.
+ *
+ * This code is derived from software contributed to The NetBSD Foundation
+ * by Nick Hudson
+ *
+ * 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 NETBSD FOUNDATION, INC. 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 FOUNDATION 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 <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: armv7_generic_space.c,v 1.1 2015/03/29 22:26:18 jmcneill Exp $");
+
+#include <sys/param.h>
+#include <sys/systm.h>
+
+#include <uvm/uvm_extern.h>
+
+#include <sys/bus.h>
+
+/* Prototypes for all the bus_space structure functions */
+bs_protos(armv7_generic);
+bs_protos(armv7_generic_a4x);
+bs_protos(a4x);
+bs_protos(bs_notimpl);
+bs_protos(generic);
+bs_protos(generic_armv4);
+
+#if __ARMEB__
+#define NSWAP(n)       n ## _swap
+#else
+#define NSWAP(n)       n
+#endif
+
+struct bus_space armv7_generic_bs_tag = {
+       /* cookie */
+       (void *) 0,
+
+       /* mapping/unmapping */
+       armv7_generic_bs_map,
+       armv7_generic_bs_unmap,
+       armv7_generic_bs_subregion,
+
+       /* allocation/deallocation */
+       armv7_generic_bs_alloc, /* not implemented */
+       armv7_generic_bs_free,  /* not implemented */
+
+       /* get kernel virtual address */
+       armv7_generic_bs_vaddr,
+
+       /* mmap */
+       armv7_generic_bs_mmap,
+
+       /* barrier */
+       armv7_generic_bs_barrier,
+
+       /* read (single) */
+       generic_bs_r_1,
+       NSWAP(generic_armv4_bs_r_2),
+       NSWAP(generic_bs_r_4),
+       bs_notimpl_bs_r_8,
+
+       /* read multiple */
+       generic_bs_rm_1,
+       NSWAP(generic_armv4_bs_rm_2),
+       NSWAP(generic_bs_rm_4),
+       bs_notimpl_bs_rm_8,
+
+       /* read region */
+       generic_bs_rr_1,
+       NSWAP(generic_armv4_bs_rr_2),
+       NSWAP(generic_bs_rr_4),
+       bs_notimpl_bs_rr_8,
+
+       /* write (single) */
+       generic_bs_w_1,
+       NSWAP(generic_armv4_bs_w_2),
+       NSWAP(generic_bs_w_4),
+       bs_notimpl_bs_w_8,
+
+       /* write multiple */
+       generic_bs_wm_1,
+       NSWAP(generic_armv4_bs_wm_2),
+       NSWAP(generic_bs_wm_4),
+       bs_notimpl_bs_wm_8,
+
+       /* write region */
+       generic_bs_wr_1,
+       NSWAP(generic_armv4_bs_wr_2),
+       NSWAP(generic_bs_wr_4),
+       bs_notimpl_bs_wr_8,
+
+       /* set multiple */
+       bs_notimpl_bs_sm_1,
+       bs_notimpl_bs_sm_2,
+       bs_notimpl_bs_sm_4,
+       bs_notimpl_bs_sm_8,
+
+       /* set region */
+       generic_bs_sr_1,
+       NSWAP(generic_armv4_bs_sr_2),
+       bs_notimpl_bs_sr_4,
+       bs_notimpl_bs_sr_8,
+
+       /* copy */
+       bs_notimpl_bs_c_1,
+       generic_armv4_bs_c_2,
+       bs_notimpl_bs_c_4,
+       bs_notimpl_bs_c_8,
+
+#ifdef __BUS_SPACE_HAS_STREAM_METHODS
+       /* read (single) */
+       generic_bs_r_1,
+       NSWAP(generic_armv4_bs_r_2),
+       NSWAP(generic_bs_r_4),
+       bs_notimpl_bs_r_8,
+
+       /* read multiple */
+       generic_bs_rm_1,
+       NSWAP(generic_armv4_bs_rm_2),
+       NSWAP(generic_bs_rm_4),
+       bs_notimpl_bs_rm_8,
+
+       /* read region */
+       generic_bs_rr_1,
+       NSWAP(generic_armv4_bs_rr_2),
+       NSWAP(generic_bs_rr_4),
+       bs_notimpl_bs_rr_8,
+
+       /* write (single) */
+       generic_bs_w_1,
+       NSWAP(generic_armv4_bs_w_2),
+       NSWAP(generic_bs_w_4),
+       bs_notimpl_bs_w_8,
+
+       /* write multiple */
+       generic_bs_wm_1,
+       NSWAP(generic_armv4_bs_wm_2),
+       NSWAP(generic_bs_wm_4),
+       bs_notimpl_bs_wm_8,
+
+       /* write region */
+       generic_bs_wr_1,
+       NSWAP(generic_armv4_bs_wr_2),
+       NSWAP(generic_bs_wr_4),
+       bs_notimpl_bs_wr_8,
+#endif
+};
+
+struct bus_space armv7_generic_a4x_bs_tag = {
+       /* cookie */
+       (void *) 0,
+
+       /* mapping/unmapping */
+       armv7_generic_bs_map,
+       armv7_generic_bs_unmap,
+       armv7_generic_a4x_bs_subregion,
+
+       /* allocation/deallocation */
+       armv7_generic_bs_alloc, /* not implemented */
+       armv7_generic_bs_free,  /* not implemented */
+
+       /* get kernel virtual address */
+       armv7_generic_bs_vaddr,
+
+       /* mmap */
+       armv7_generic_a4x_bs_mmap,
+
+       /* barrier */
+       armv7_generic_bs_barrier,
+
+       /* read (single) */
+       a4x_bs_r_1,
+       NSWAP(a4x_bs_r_2),
+       NSWAP(a4x_bs_r_4),
+       bs_notimpl_bs_r_8,
+
+       /* read multiple */
+       a4x_bs_rm_1,
+       NSWAP(a4x_bs_rm_2),
+       NSWAP(a4x_bs_rm_4),
+       bs_notimpl_bs_rm_8,
+
+       /* read region */
+       bs_notimpl_bs_rr_1,
+       bs_notimpl_bs_rr_2,
+       bs_notimpl_bs_rr_4,
+       bs_notimpl_bs_rr_8,
+
+       /* write (single) */
+       a4x_bs_w_1,
+       NSWAP(a4x_bs_w_2),
+       NSWAP(a4x_bs_w_4),
+       bs_notimpl_bs_w_8,
+
+       /* write multiple */
+       a4x_bs_wm_1,
+       NSWAP(a4x_bs_wm_2),
+       NSWAP(a4x_bs_wm_4),
+       bs_notimpl_bs_wm_8,
+
+       /* write region */
+       bs_notimpl_bs_wr_1,
+       bs_notimpl_bs_wr_2,
+       bs_notimpl_bs_wr_4,
+       bs_notimpl_bs_wr_8,
+
+       /* set multiple */
+       bs_notimpl_bs_sm_1,
+       bs_notimpl_bs_sm_2,
+       bs_notimpl_bs_sm_4,
+       bs_notimpl_bs_sm_8,
+
+       /* set region */
+       bs_notimpl_bs_sr_1,
+       bs_notimpl_bs_sr_2,
+       bs_notimpl_bs_sr_4,
+       bs_notimpl_bs_sr_8,
+
+       /* copy */
+       bs_notimpl_bs_c_1,
+       bs_notimpl_bs_c_2,
+       bs_notimpl_bs_c_4,
+       bs_notimpl_bs_c_8,
+
+#ifdef __BUS_SPACE_HAS_STREAM_METHODS
+       /* read (single) */
+       a4x_bs_r_1,
+       NSWAP(a4x_bs_r_2),
+       NSWAP(a4x_bs_r_4),
+       bs_notimpl_bs_r_8,
+
+       /* read multiple */
+       a4x_bs_rm_1,
+       NSWAP(a4x_bs_rm_2),
+       NSWAP(a4x_bs_rm_4),
+       bs_notimpl_bs_rm_8,
+
+       /* read region */
+       a4x_bs_rr_1,
+       NSWAP(a4x_bs_rr_2),
+       NSWAP(a4x_bs_rr_4),
+       bs_notimpl_bs_rr_8,
+
+       /* write (single) */
+       a4x_bs_w_1,
+       NSWAP(a4x_bs_w_2),
+       NSWAP(a4x_bs_w_4),
+       bs_notimpl_bs_w_8,
+
+       /* write multiple */
+       a4x_bs_wm_1,
+       NSWAP(a4x_bs_wm_2),
+       NSWAP(a4x_bs_wm_4),
+       bs_notimpl_bs_wm_8,
+
+       /* write region */
+       a4x_bs_wr_1,
+       NSWAP(a4x_bs_wr_2),
+       NSWAP(a4x_bs_wr_4),
+       bs_notimpl_bs_wr_8,
+#endif
+};
+
+int
+armv7_generic_bs_map(void *t, bus_addr_t bpa, bus_size_t size, int flag,
+    bus_space_handle_t *bshp)
+{
+       u_long startpa, endpa, pa;
+       const struct pmap_devmap *pd;
+       vaddr_t va;
+
+       if ((pd = pmap_devmap_find_pa(bpa, size)) != NULL) {
+               /* Device was statically mapped. */



Home | Main Index | Thread Index | Old Index