[PATCH 4/9] MIPS Add minimal support for OCTEON3 to c-r4k.c

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

 



commit  18a8cd63c0d800bbc8b91f03054fcb13d308f6ec upstream

These are needed to boot a generic mips64r2 kernel on OCTEONIII.

Signed-off-by: David Daney <david.daney@xxxxxxxxxx>
Signed-off-by: Andreas Herrmann <andreas.herrmann@xxxxxxxxxxxxxxxxxx>
Cc: linux-mips@xxxxxxxxxxxxxx
Cc: James Hogan <james.hogan@xxxxxxxxxx>
Cc: kvm@xxxxxxxxxxxxxxx
Patchwork: https://patchwork.linux-mips.org/patch/7003/
Signed-off-by: Ralf Baechle <ralf@xxxxxxxxxxxxxx>
Signed-off-by: Abhishek Paliwal <abhishek.paliwal@xxxxxxxxxxx>
---
 arch/mips/include/asm/r4kcache.h |  2 ++
 arch/mips/mm/c-r4k.c             | 47 ++++++++++++++++++++++++++++++++++++----
 2 files changed, 45 insertions(+), 4 deletions(-)

diff --git a/arch/mips/include/asm/r4kcache.h b/arch/mips/include/asm/r4kcache.h
index c84cadd..3be43ca 100644
--- a/arch/mips/include/asm/r4kcache.h
+++ b/arch/mips/include/asm/r4kcache.h
@@ -420,6 +420,8 @@ __BUILD_BLAST_CACHE(s, scache, Index_Writeback_Inv_SD, Hit_Writeback_Inv_SD, 32,
 __BUILD_BLAST_CACHE(d, dcache, Index_Writeback_Inv_D, Hit_Writeback_Inv_D, 64, )
 __BUILD_BLAST_CACHE(i, icache, Index_Invalidate_I, Hit_Invalidate_I, 64, )
 __BUILD_BLAST_CACHE(s, scache, Index_Writeback_Inv_SD, Hit_Writeback_Inv_SD, 64, )
+__BUILD_BLAST_CACHE(d, dcache, Index_Writeback_Inv_D, Hit_Writeback_Inv_D, 128, )
+__BUILD_BLAST_CACHE(i, icache, Index_Invalidate_I, Hit_Invalidate_I, 128, )
 __BUILD_BLAST_CACHE(s, scache, Index_Writeback_Inv_SD, Hit_Writeback_Inv_SD, 128, )

 __BUILD_BLAST_CACHE(inv_d, dcache, Index_Writeback_Inv_D, Hit_Invalidate_D, 16, )
diff --git a/arch/mips/mm/c-r4k.c b/arch/mips/mm/c-r4k.c
index bc941f8..15dfc4a 100644
--- a/arch/mips/mm/c-r4k.c
+++ b/arch/mips/mm/c-r4k.c
@@ -109,18 +109,33 @@ static inline void r4k_blast_dcache_page_dc64(unsigned long addr)
        blast_dcache64_page(addr);
 }

+static inline void r4k_blast_dcache_page_dc128(unsigned long addr)
+{
+       blast_dcache128_page(addr);
+}
+
 static void r4k_blast_dcache_page_setup(void)
 {
        unsigned long  dc_lsize = cpu_dcache_line_size();

-       if (dc_lsize == 0)
+       switch (dc_lsize) {
+       case 0:
                r4k_blast_dcache_page = (void *)cache_noop;
-       else if (dc_lsize == 16)
+               break;
+       case 16:
                r4k_blast_dcache_page = blast_dcache16_page;
-       else if (dc_lsize == 32)
+               break;
+       case 32:
                r4k_blast_dcache_page = r4k_blast_dcache_page_dc32;
-       else if (dc_lsize == 64)
+               break;
+       case 64:
                r4k_blast_dcache_page = r4k_blast_dcache_page_dc64;
+               break;
+       case 128:
+               r4k_blast_dcache_page = r4k_blast_dcache_page_dc128;
+               break;
+       default:
+               break;
 }

 static void (* r4k_blast_dcache_page_indexed)(unsigned long addr);
@@ -137,6 +152,8 @@ static void r4k_blast_dcache_page_indexed_setup(void)
                r4k_blast_dcache_page_indexed = blast_dcache32_page_indexed;
        else if (dc_lsize == 64)
                r4k_blast_dcache_page_indexed = blast_dcache64_page_indexed;
+       else if (dc_lsize == 128)
+               r4k_blast_dcache_page_indexed = blast_dcache128_page_indexed;
 }

 void (* r4k_blast_dcache)(void);
@@ -154,6 +171,8 @@ static void r4k_blast_dcache_setup(void)
                r4k_blast_dcache = blast_dcache32;
        else if (dc_lsize == 64)
                r4k_blast_dcache = blast_dcache64;
+       else if (dc_lsize == 128)
+               r4k_blast_dcache = blast_dcache128;
 }

 /* force code alignment (used for TX49XX_ICACHE_INDEX_INV_WAR) */
@@ -243,6 +262,8 @@ static void r4k_blast_icache_page_setup(void)
                r4k_blast_icache_page = blast_icache32_page;
        else if (ic_lsize == 64)
                r4k_blast_icache_page = blast_icache64_page;
+       else if (ic_lsize == 128)
+               r4k_blast_icache_page = blast_icache128_page;
 }


@@ -295,6 +316,8 @@ static void r4k_blast_icache_setup(void)
                        r4k_blast_icache = blast_icache32;
        } else if (ic_lsize == 64)
                r4k_blast_icache = blast_icache64;
+       else if (ic_lsize == 128)
+               r4k_blast_icache = blast_icache128;
 }

 static void (* r4k_blast_scache_page)(unsigned long addr);
@@ -1010,6 +1033,21 @@ static void probe_pcache(void)
                c->dcache.waybit = 0;
                break;

+       case CPU_CAVIUM_OCTEON3:
+               /* For now lie about the number of ways. */
+               c->icache.linesz = 128;
+               c->icache.sets = 16;
+               c->icache.ways = 8;
+               c->icache.flags |= MIPS_CACHE_VTAG;
+               icache_size = c->icache.sets * c->icache.ways * c->icache.linesz;
+
+               c->dcache.linesz = 128;
+               c->dcache.ways = 8;
+               c->dcache.sets = 8;
+               dcache_size = c->dcache.sets * c->dcache.ways * c->dcache.linesz;
+               c->options |= MIPS_CPU_PREFETCH;
+               break;
+
        default:
                if (!(config & MIPS_CONF_M))
                        panic("Don't know how to probe P-caches on this cpu.");
@@ -1291,6 +1329,7 @@ static void setup_scache(void)
                loongson2_sc_init();
                return;

+       case CPU_CAVIUM_OCTEON3:
        case CPU_XLP:
                /* don't need to worry about L2, fully coherent */
                return;
--
1.8.1.4



"DISCLAIMER: This message is proprietary to Aricent and is intended solely for the use of the individual to whom it is addressed. It may contain privileged or confidential information and should not be circulated or used for any purpose other than for what it is intended. If you have received this message in error, please notify the originator immediately. If you are not the intended recipient, you are notified that you are strictly prohibited from using, copying, altering, or disclosing the contents of this message. Aricent accepts no responsibility for loss or damage arising from the use of the information transmitted by this email including damage from virus."




[Index of Archives]     [Linux MIPS Home]     [LKML Archive]     [Linux ARM Kernel]     [Linux ARM]     [Linux]     [Git]     [Yosemite News]     [Linux SCSI]     [Linux Hams]

  Powered by Linux