aboutsummaryrefslogtreecommitdiff
path: root/libgloss/mips/boot/init_cm3l2_predef.S
diff options
context:
space:
mode:
Diffstat (limited to 'libgloss/mips/boot/init_cm3l2_predef.S')
-rw-r--r--libgloss/mips/boot/init_cm3l2_predef.S117
1 files changed, 117 insertions, 0 deletions
diff --git a/libgloss/mips/boot/init_cm3l2_predef.S b/libgloss/mips/boot/init_cm3l2_predef.S
new file mode 100644
index 0000000..83be64b
--- /dev/null
+++ b/libgloss/mips/boot/init_cm3l2_predef.S
@@ -0,0 +1,117 @@
+/*
+ * Copyright (C) 2015-2018 MIPS Tech, LLC
+ *
+ * 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.
+ * 3. Neither the name of the copyright holder nor the names of its
+ * contributors may be used to endorse or promote products derived from this
+ * software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS 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 COPYRIGHT HOLDER 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.
+*/
+
+#define _BOOTCODE
+
+#include <mips/regdef.h>
+#include <mips/cpu.h>
+#include <mips/asm.h>
+#include <mips/cm3.h>
+#include "predef.h"
+
+MIPS_NOMIPS16
+
+#define CM3_BASE a3
+
+# ifndef C0_CMGCRBASE_VALUE
+# error "Static CM3 cache initialization decisions require C0_CMGCRBASE_VALUE"
+# else
+# define C0_CMGCRBASE_ADDR ((C0_CMGCRBASE_VALUE << 4) | (0xa << 28))
+# ifndef GCR_L2_CONFIG_VALUE
+# error "Static CM3 cache initialization decisions require GCR_L2_CONFIG_VALUE"
+# endif
+# endif
+
+#undef SLINE_ENC
+#undef SSET_ENC
+#undef SASSOC_ENC
+#undef SLINE_SIZE
+#undef SSET_SIZE
+#undef SASSOC
+
+#define SLINE_ENC ((GCR_L2_CONFIG_VALUE & GCR_L2_SL_MASK) >> GCR_L2_CFG_SL_SHIFT)
+#define SSET_ENC ((GCR_L2_CONFIG_VALUE & GCR_L2_SS_MASK) >> GCR_L2_CFG_SS_SHIFT)
+#define SASSOC_ENC ((GCR_L2_CONFIG_VALUE & GCR_L2_SA_MASK) >> GCR_L2_CFG_SA_SHIFT)
+#define SLINE_SIZE (2 << SLINE_ENC)
+#define SSET_SIZE (64 << SSET_ENC)
+#define SASSOC (SASSOC_ENC + 1)
+
+
+LEAF(__init_l23cache)
+ li CM3_BASE, C0_CMGCRBASE_ADDR
+ /* Disable L2 cache */
+ /* Reg exists, L2 cache does TAG/DATA ECC. */
+ /* LRU is updated on store tag operation */
+ li t0, GCR_L2_CONFIG_VALUE | GCR_L2_BYPASS_MASK
+ PTR_S t0, GCR_L2_CONFIG(CM3_BASE)
+ sync
+
+ jr ra
+END(__init_l23cache)
+
+LEAF(__init_l23cache_cached)
+ li CM3_BASE, C0_CMGCRBASE_ADDR
+
+#if SLINE_ENC != 0
+ /* Unusual case, hardware cache initialization support & init finished. */
+ PTR_L t1, GCR_L2_RAM_CONFIG(CM3_BASE)
+ ext t0, t1, GCR_L2_RAM_HCIS_SHIFT, (GCR_L2_RAM_HCID_BITS +\
+ GCR_L2_RAM_HCIS_BITS)
+ li t1, 3
+ beq t0, t1, done_cm3l2cache
+
+ /* Compute L2 cache size */
+ li a1, SLINE_SIZE
+ li a0, SSET_SIZE * SASSOC
+
+ sw zero, GCR_TAG_ADDR(CM3_BASE)
+ sw zero, (GCR_TAG_ADDR+4)(CM3_BASE)
+ sw zero, GCR_TAG_STATE(CM3_BASE)
+ sw zero, (GCR_TAG_STATE+4)(CM3_BASE)
+ sw zero, GCR_TAG_DATA(CM3_BASE)
+ sw zero, (GCR_TAG_DATA+4)(CM3_BASE)
+ sw zero, GCR_TAG_ECC(CM3_BASE)
+ sw zero, (GCR_TAG_ECC+4)(CM3_BASE)
+ sync
+
+ li a2, 0x80000000
+
+next_cm3l2cache_tag:
+ cache Index_Store_Tag_S, 0(a2)
+ addiu a0, a0, -1
+ addu a2, a2, a1
+ bnez a0, next_cm3l2cache_tag
+#endif /* SLINE_ENC != 0 */
+
+done_cm3l2cache:
+ li t0, GCR_L2_CONFIG_VALUE
+ PTR_S t0, GCR_L2_CONFIG(CM3_BASE)
+ sync
+
+ jr ra
+END(__init_l23cache_cached)