cregit-Linux how code gets into the kernel

Release 4.14 arch/mips/mm/c-octeon.c

Directory: arch/mips/mm
/*
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
 *
 * Copyright (C) 2005-2007 Cavium Networks
 */
#include <linux/export.h>
#include <linux/kernel.h>
#include <linux/sched.h>
#include <linux/smp.h>
#include <linux/mm.h>
#include <linux/bitops.h>
#include <linux/cpu.h>
#include <linux/io.h>

#include <asm/bcache.h>
#include <asm/bootinfo.h>
#include <asm/cacheops.h>
#include <asm/cpu-features.h>
#include <asm/cpu-type.h>
#include <asm/page.h>
#include <asm/pgtable.h>
#include <asm/r4kcache.h>
#include <asm/traps.h>
#include <asm/mmu_context.h>
#include <asm/war.h>

#include <asm/octeon/octeon.h>


unsigned long long cache_err_dcache[NR_CPUS];

EXPORT_SYMBOL_GPL(cache_err_dcache);

/**
 * Octeon automatically flushes the dcache on tlb changes, so
 * from Linux's viewpoint it acts much like a physically
 * tagged cache. No flushing is needed
 *
 */

static void octeon_flush_data_cache_page(unsigned long addr) { /* Nothing to do */ }

Contributors

PersonTokensPropCommitsCommitProp
David Daney11100.00%1100.00%
Total11100.00%1100.00%


static inline void octeon_local_flush_icache(void) { asm volatile ("synci 0($0)"); }

Contributors

PersonTokensPropCommitsCommitProp
David Daney12100.00%1100.00%
Total12100.00%1100.00%

/* * Flush local I-cache for the specified range. */
static void local_octeon_flush_icache_range(unsigned long start, unsigned long end) { octeon_local_flush_icache(); }

Contributors

PersonTokensPropCommitsCommitProp
David Daney17100.00%1100.00%
Total17100.00%1100.00%

/** * Flush caches as necessary for all cores affected by a * vma. If no vma is supplied, all cores are flushed. * * @vma: VMA to flush or NULL to flush all icaches. */
static void octeon_flush_icache_all_cores(struct vm_area_struct *vma) { extern void octeon_send_ipi_single(int cpu, unsigned int action); #ifdef CONFIG_SMP int cpu; cpumask_t mask; #endif mb(); octeon_local_flush_icache(); #ifdef CONFIG_SMP preempt_disable(); cpu = smp_processor_id(); /* * If we have a vma structure, we only need to worry about * cores it has been used on */ if (vma) mask = *mm_cpumask(vma->vm_mm); else mask = *cpu_online_mask; cpumask_clear_cpu(cpu, &mask); for_each_cpu(cpu, &mask) octeon_send_ipi_single(cpu, SMP_ICACHE_FLUSH); preempt_enable(); #endif }

Contributors

PersonTokensPropCommitsCommitProp
David Daney8889.80%133.33%
Rusty Russell1010.20%266.67%
Total98100.00%3100.00%

/** * Called to flush the icache on all cores */
static void octeon_flush_icache_all(void) { octeon_flush_icache_all_cores(NULL); }

Contributors

PersonTokensPropCommitsCommitProp
David Daney13100.00%1100.00%
Total13100.00%1100.00%

/** * Called to flush all memory associated with a memory * context. * * @mm: Memory context to flush */
static void octeon_flush_cache_mm(struct mm_struct *mm) { /* * According to the R4K version of this file, CPUs without * dcache aliases don't need to do anything here */ }

Contributors

PersonTokensPropCommitsCommitProp
David Daney12100.00%1100.00%
Total12100.00%1100.00%

/** * Flush a range of kernel addresses out of the icache * */
static void octeon_flush_icache_range(unsigned long start, unsigned long end) { octeon_flush_icache_all_cores(NULL); }

Contributors

PersonTokensPropCommitsCommitProp
David Daney19100.00%1100.00%
Total19100.00%1100.00%

/** * Flush the icache for a trampoline. These are used for interrupt * and exception hooking. * * @addr: Address to flush */
static void octeon_flush_cache_sigtramp(unsigned long addr) { struct vm_area_struct *vma; down_read(&current->mm->mmap_sem); vma = find_vma(current->mm, addr); octeon_flush_icache_all_cores(vma); up_read(&current->mm->mmap_sem); }

Contributors

PersonTokensPropCommitsCommitProp
David Daney3160.78%150.00%
Davidlohr Bueso A2039.22%150.00%
Total51100.00%2100.00%

/** * Flush a range out of a vma * * @vma: VMA to flush * @start: * @end: */
static void octeon_flush_cache_range(struct vm_area_struct *vma, unsigned long start, unsigned long end) { if (vma->vm_flags & VM_EXEC) octeon_flush_icache_all_cores(vma); }

Contributors

PersonTokensPropCommitsCommitProp
David Daney32100.00%1100.00%
Total32100.00%1100.00%

/** * Flush a specific page of a vma * * @vma: VMA to flush page for * @page: Page to flush * @pfn: */
static void octeon_flush_cache_page(struct vm_area_struct *vma, unsigned long page, unsigned long pfn) { if (vma->vm_flags & VM_EXEC) octeon_flush_icache_all_cores(vma); }

Contributors

PersonTokensPropCommitsCommitProp
David Daney32100.00%1100.00%
Total32100.00%1100.00%


static void octeon_flush_kernel_vmap_range(unsigned long vaddr, int size) { BUG(); }

Contributors

PersonTokensPropCommitsCommitProp
Ralf Bächle16100.00%1100.00%
Total16100.00%1100.00%

/** * Probe Octeon's caches * */
static void probe_octeon(void) { unsigned long icache_size; unsigned long dcache_size; unsigned int config1; struct cpuinfo_mips *c = &current_cpu_data; int cputype = current_cpu_type(); config1 = read_c0_config1(); switch (cputype) { case CPU_CAVIUM_OCTEON: case CPU_CAVIUM_OCTEON_PLUS: c->icache.linesz = 2 << ((config1 >> 19) & 7); c->icache.sets = 64 << ((config1 >> 22) & 7); c->icache.ways = 1 + ((config1 >> 16) & 7); c->icache.flags |= MIPS_CACHE_VTAG; icache_size = c->icache.sets * c->icache.ways * c->icache.linesz; c->icache.waybit = ffs(icache_size / c->icache.ways) - 1; c->dcache.linesz = 128; if (cputype == CPU_CAVIUM_OCTEON_PLUS) c->dcache.sets = 2; /* CN5XXX has two Dcache sets */ else c->dcache.sets = 1; /* CN3XXX has one Dcache set */ c->dcache.ways = 64; dcache_size = c->dcache.sets * c->dcache.ways * c->dcache.linesz; c->dcache.waybit = ffs(dcache_size / c->dcache.ways) - 1; c->options |= MIPS_CPU_PREFETCH; break; case CPU_CAVIUM_OCTEON2: c->icache.linesz = 2 << ((config1 >> 19) & 7); c->icache.sets = 8; c->icache.ways = 37; c->icache.flags |= MIPS_CACHE_VTAG; icache_size = c->icache.sets * c->icache.ways * c->icache.linesz; c->dcache.linesz = 128; c->dcache.ways = 32; c->dcache.sets = 8; dcache_size = c->dcache.sets * c->dcache.ways * c->dcache.linesz; c->options |= MIPS_CPU_PREFETCH; break; case CPU_CAVIUM_OCTEON3: c->icache.linesz = 128; c->icache.sets = 16; c->icache.ways = 39; c->icache.flags |= MIPS_CACHE_VTAG; icache_size = c->icache.sets * c->icache.ways * c->icache.linesz; c->dcache.linesz = 128; c->dcache.ways = 32; c->dcache.sets = 8; dcache_size = c->dcache.sets * c->dcache.ways * c->dcache.linesz; c->options |= MIPS_CPU_PREFETCH; break; default: panic("Unsupported Cavium Networks CPU type"); break; } /* compute a couple of other cache variables */ c->icache.waysize = icache_size / c->icache.ways; c->dcache.waysize = dcache_size / c->dcache.ways; c->icache.sets = icache_size / (c->icache.linesz * c->icache.ways); c->dcache.sets = dcache_size / (c->dcache.linesz * c->dcache.ways); if (smp_processor_id() == 0) { pr_notice("Primary instruction cache %ldkB, %s, %d way, " "%d sets, linesize %d bytes.\n", icache_size >> 10, cpu_has_vtag_icache ? "virtually tagged" : "physically tagged", c->icache.ways, c->icache.sets, c->icache.linesz); pr_notice("Primary data cache %ldkB, %d-way, %d sets, " "linesize %d bytes.\n", dcache_size >> 10, c->dcache.ways, c->dcache.sets, c->dcache.linesz); } }

Contributors

PersonTokensPropCommitsCommitProp
David Daney60598.86%466.67%
Ralf Bächle71.14%233.33%
Total612100.00%6100.00%


static void octeon_cache_error_setup(void) { extern char except_vec2_octeon; set_handler(0x100, &except_vec2_octeon, 0x80); }

Contributors

PersonTokensPropCommitsCommitProp
David Daney22100.00%2100.00%
Total22100.00%2100.00%

/** * Setup the Octeon cache flush routines * */
void octeon_cache_init(void) { probe_octeon(); shm_align_mask = PAGE_SIZE - 1; flush_cache_all = octeon_flush_icache_all; __flush_cache_all = octeon_flush_icache_all; flush_cache_mm = octeon_flush_cache_mm; flush_cache_page = octeon_flush_cache_page; flush_cache_range = octeon_flush_cache_range; flush_cache_sigtramp = octeon_flush_cache_sigtramp; flush_icache_all = octeon_flush_icache_all; flush_data_cache_page = octeon_flush_data_cache_page; flush_icache_range = octeon_flush_icache_range; local_flush_icache_range = local_octeon_flush_icache_range; __flush_icache_user_range = octeon_flush_icache_range; __local_flush_icache_user_range = local_octeon_flush_icache_range; __flush_kernel_vmap_range = octeon_flush_kernel_vmap_range; build_clear_page(); build_copy_page(); board_cache_error_setup = octeon_cache_error_setup; }

Contributors

PersonTokensPropCommitsCommitProp
David Daney6684.62%250.00%
James Hogan810.26%125.00%
Ralf Bächle45.13%125.00%
Total78100.00%4100.00%

/* * Handle a cache error exception */ static RAW_NOTIFIER_HEAD(co_cache_error_chain);
int register_co_cache_error_notifier(struct notifier_block *nb) { return raw_notifier_chain_register(&co_cache_error_chain, nb); }

Contributors

PersonTokensPropCommitsCommitProp
Ralf Bächle1473.68%150.00%
David Daney526.32%150.00%
Total19100.00%2100.00%

EXPORT_SYMBOL_GPL(register_co_cache_error_notifier);
int unregister_co_cache_error_notifier(struct notifier_block *nb) { return raw_notifier_chain_unregister(&co_cache_error_chain, nb); }

Contributors

PersonTokensPropCommitsCommitProp
Ralf Bächle1578.95%150.00%
David Daney421.05%150.00%
Total19100.00%2100.00%

EXPORT_SYMBOL_GPL(unregister_co_cache_error_notifier);
static void co_cache_error_call_notifiers(unsigned long val) { int rv = raw_notifier_call_chain(&co_cache_error_chain, val, NULL); if ((rv & ~NOTIFY_STOP_MASK) != NOTIFY_OK) { u64 dcache_err; unsigned long coreid = cvmx_get_core_num(); u64 icache_err = read_octeon_c0_icacheerr(); if (val) { dcache_err = cache_err_dcache[coreid]; cache_err_dcache[coreid] = 0; } else { dcache_err = read_octeon_c0_dcacheerr(); } pr_err("Core%lu: Cache error exception:\n", coreid); pr_err("cp0_errorepc == %lx\n", read_c0_errorepc()); if (icache_err & 1) { pr_err("CacheErr (Icache) == %llx\n", (unsigned long long)icache_err); write_octeon_c0_icacheerr(0); } if (dcache_err & 1) { pr_err("CacheErr (Dcache) == %llx\n", (unsigned long long)dcache_err); } } }

Contributors

PersonTokensPropCommitsCommitProp
David Daney12790.71%266.67%
Ralf Bächle139.29%133.33%
Total140100.00%3100.00%

/* * Called when the the exception is recoverable */
asmlinkage void cache_parity_error_octeon_recoverable(void) { co_cache_error_call_notifiers(0); }

Contributors

PersonTokensPropCommitsCommitProp
David Daney1292.31%150.00%
Ralf Bächle17.69%150.00%
Total13100.00%2100.00%

/** * Called when the the exception is not recoverable */
asmlinkage void cache_parity_error_octeon_non_recoverable(void) { co_cache_error_call_notifiers(1); panic("Can't handle cache error: nested exception"); }

Contributors

PersonTokensPropCommitsCommitProp
David Daney1266.67%150.00%
Ralf Bächle633.33%150.00%
Total18100.00%2100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
David Daney120089.69%637.50%
Ralf Bächle1007.47%637.50%
Davidlohr Bueso A201.49%16.25%
Rusty Russell100.75%212.50%
James Hogan80.60%16.25%
Total1338100.00%16100.00%
Directory: arch/mips/mm
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.