Linux Audio

Check our new training course

Loading...
v6.13.7
 1/* SPDX-License-Identifier: GPL-2.0-only */
 2/*
 3 * Cache flush operations for the Hexagon architecture
 4 *
 5 * Copyright (c) 2010-2011, The Linux Foundation. All rights reserved.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 6 */
 7
 8#ifndef _ASM_CACHEFLUSH_H
 9#define _ASM_CACHEFLUSH_H
10
11#include <linux/mm_types.h>
12
13/* Cache flushing:
14 *
15 *  - flush_cache_all() flushes entire cache
16 *  - flush_cache_mm(mm) flushes the specified mm context's cache lines
17 *  - flush_cache_page(mm, vmaddr, pfn) flushes a single page
18 *  - flush_cache_range(vma, start, end) flushes a range of pages
19 *  - flush_icache_range(start, end) flush a range of instructions
20 *  - flush_dcache_page(pg) flushes(wback&invalidates) a page for dcache
21 *  - flush_icache_pages(vma, pg, nr) flushes(invalidates) nr pages for icache
22 *
23 *  Need to doublecheck which one is really needed for ptrace stuff to work.
24 */
25#define LINESIZE	32
26#define LINEBITS	5
27
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28/*
29 * Flush Dcache range through current map.
30 */
31extern void flush_dcache_range(unsigned long start, unsigned long end);
32#define flush_dcache_range flush_dcache_range
33
34/*
35 * Flush Icache range through current map.
36 */
37extern void flush_icache_range(unsigned long start, unsigned long end);
38#define flush_icache_range flush_icache_range
39
40/*
41 * Memory-management related flushes are there to ensure in non-physically
42 * indexed cache schemes that stale lines belonging to a given ASID aren't
43 * in the cache to confuse things.  The prototype Hexagon Virtual Machine
44 * only uses a single ASID for all user-mode maps, which should
45 * mean that they aren't necessary.  A brute-force, flush-everything
46 * implementation, with the name xxxxx_hexagon() is present in
47 * arch/hexagon/mm/cache.c, but let's not wire it up until we know
48 * it is needed.
49 */
50extern void flush_cache_all_hexagon(void);
51
52/*
53 * This may or may not ever have to be non-null, depending on the
54 * virtual machine MMU.  For a native kernel, it's definitiely  a no-op
55 *
56 * This is also the place where deferred cache coherency stuff seems
57 * to happen, classically...  but instead we do it like ia64 and
58 * clean the cache when the PTE is set.
59 *
60 */
61static inline void update_mmu_cache_range(struct vm_fault *vmf,
62		struct vm_area_struct *vma, unsigned long address,
63		pte_t *ptep, unsigned int nr)
64{
65	/*  generic_ptrace_pokedata doesn't wind up here, does it?  */
66}
67
68#define update_mmu_cache(vma, addr, ptep) \
69	update_mmu_cache_range(NULL, vma, addr, ptep, 1)
70
71void copy_to_user_page(struct vm_area_struct *vma, struct page *page,
72		       unsigned long vaddr, void *dst, void *src, int len);
73#define copy_to_user_page copy_to_user_page
74
75#define copy_from_user_page(vma, page, vaddr, dst, src, len) \
76	memcpy(dst, src, len)
77
78extern void hexagon_inv_dcache_range(unsigned long start, unsigned long end);
79extern void hexagon_clean_dcache_range(unsigned long start, unsigned long end);
80
81#include <asm-generic/cacheflush.h>
82
83#endif
v4.6
 
  1/*
  2 * Cache flush operations for the Hexagon architecture
  3 *
  4 * Copyright (c) 2010-2011, The Linux Foundation. All rights reserved.
  5 *
  6 * This program is free software; you can redistribute it and/or modify
  7 * it under the terms of the GNU General Public License version 2 and
  8 * only version 2 as published by the Free Software Foundation.
  9 *
 10 * This program is distributed in the hope that it will be useful,
 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 13 * GNU General Public License for more details.
 14 *
 15 * You should have received a copy of the GNU General Public License
 16 * along with this program; if not, write to the Free Software
 17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 18 * 02110-1301, USA.
 19 */
 20
 21#ifndef _ASM_CACHEFLUSH_H
 22#define _ASM_CACHEFLUSH_H
 23
 24#include <linux/mm_types.h>
 25
 26/* Cache flushing:
 27 *
 28 *  - flush_cache_all() flushes entire cache
 29 *  - flush_cache_mm(mm) flushes the specified mm context's cache lines
 30 *  - flush_cache_page(mm, vmaddr, pfn) flushes a single page
 31 *  - flush_cache_range(vma, start, end) flushes a range of pages
 32 *  - flush_icache_range(start, end) flush a range of instructions
 33 *  - flush_dcache_page(pg) flushes(wback&invalidates) a page for dcache
 34 *  - flush_icache_page(vma, pg) flushes(invalidates) a page for icache
 35 *
 36 *  Need to doublecheck which one is really needed for ptrace stuff to work.
 37 */
 38#define LINESIZE	32
 39#define LINEBITS	5
 40
 41#define flush_cache_all()			do { } while (0)
 42#define flush_cache_mm(mm)			do { } while (0)
 43#define flush_cache_dup_mm(mm)			do { } while (0)
 44#define flush_cache_range(vma, start, end)	do { } while (0)
 45#define flush_cache_page(vma, vmaddr, pfn)	do { } while (0)
 46#define ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE 0
 47#define flush_dcache_page(page)			do { } while (0)
 48#define flush_dcache_mmap_lock(mapping)		do { } while (0)
 49#define flush_dcache_mmap_unlock(mapping)	do { } while (0)
 50#define flush_icache_page(vma, pg)		do { } while (0)
 51#define flush_icache_user_range(vma, pg, adr, len)	do { } while (0)
 52#define flush_cache_vmap(start, end)		do { } while (0)
 53#define flush_cache_vunmap(start, end)		do { } while (0)
 54
 55/*
 56 * Flush Dcache range through current map.
 57 */
 58extern void flush_dcache_range(unsigned long start, unsigned long end);
 
 59
 60/*
 61 * Flush Icache range through current map.
 62 */
 63extern void flush_icache_range(unsigned long start, unsigned long end);
 
 64
 65/*
 66 * Memory-management related flushes are there to ensure in non-physically
 67 * indexed cache schemes that stale lines belonging to a given ASID aren't
 68 * in the cache to confuse things.  The prototype Hexagon Virtual Machine
 69 * only uses a single ASID for all user-mode maps, which should
 70 * mean that they aren't necessary.  A brute-force, flush-everything
 71 * implementation, with the name xxxxx_hexagon() is present in
 72 * arch/hexagon/mm/cache.c, but let's not wire it up until we know
 73 * it is needed.
 74 */
 75extern void flush_cache_all_hexagon(void);
 76
 77/*
 78 * This may or may not ever have to be non-null, depending on the
 79 * virtual machine MMU.  For a native kernel, it's definitiely  a no-op
 80 *
 81 * This is also the place where deferred cache coherency stuff seems
 82 * to happen, classically...  but instead we do it like ia64 and
 83 * clean the cache when the PTE is set.
 84 *
 85 */
 86static inline void update_mmu_cache(struct vm_area_struct *vma,
 87					unsigned long address, pte_t *ptep)
 
 88{
 89	/*  generic_ptrace_pokedata doesn't wind up here, does it?  */
 90}
 91
 
 
 
 92void copy_to_user_page(struct vm_area_struct *vma, struct page *page,
 93		       unsigned long vaddr, void *dst, void *src, int len);
 
 94
 95#define copy_from_user_page(vma, page, vaddr, dst, src, len) \
 96	memcpy(dst, src, len)
 97
 98extern void hexagon_inv_dcache_range(unsigned long start, unsigned long end);
 99extern void hexagon_clean_dcache_range(unsigned long start, unsigned long end);
 
 
100
101#endif