~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/parisc/include/asm/fixmap.h

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0 */
  2 #ifndef _ASM_FIXMAP_H
  3 #define _ASM_FIXMAP_H
  4 
  5 /*
  6  * This file defines the locations of the fixed mappings on parisc.
  7  *
  8  * All of the values in this file are machine virtual addresses.
  9  *
 10  * All of the values in this file must be <4GB (because of assembly
 11  * loading restrictions).  If you place this region anywhere above
 12  * __PAGE_OFFSET, you must adjust the memory map accordingly
 13  */
 14 
 15 /*
 16  * The tmpalias region is used in kernel space to copy/clear/flush data
 17  * from pages congruently mapped with user space. It is comprised of
 18  * a pair regions. The size of these regions is determined by the largest
 19  * cache aliasing boundary for machines that support equivalent aliasing.
 20  *
 21  * The c3750 with PA8700 processor returns an alias value of 11. This
 22  * indicates that it has an alias boundary of 4 MB. It also supports
 23  * non-equivalent aliasing without a performance penalty.
 24  *
 25  * Machines with PA8800/PA8900 processors return an alias value of 0.
 26  * This indicates the alias boundary is unknown and may be larger than
 27  * 16 MB. Non-equivalent aliasing is not supported.
 28  *
 29  * Here we assume the maximum alias boundary is 4 MB.
 30  */
 31 #define TMPALIAS_SIZE_BITS      22      /* 4 MB */
 32 #define TMPALIAS_MAP_START      ((__PAGE_OFFSET) - (2 << TMPALIAS_SIZE_BITS))
 33 
 34 #define FIXMAP_SIZE             (FIX_BITMAP_COUNT << PAGE_SHIFT)
 35 #define FIXMAP_START            (TMPALIAS_MAP_START - FIXMAP_SIZE)
 36 /* This is the kernel area for all maps (vmalloc, dma etc.)  most
 37  * usually, it extends up to TMPALIAS_MAP_START.  Virtual addresses
 38  * 0..GATEWAY_PAGE_SIZE are reserved for the gateway page */
 39 #define KERNEL_MAP_START        (GATEWAY_PAGE_SIZE)
 40 #define KERNEL_MAP_END          (FIXMAP_START)
 41 
 42 #ifndef __ASSEMBLY__
 43 
 44 
 45 enum fixed_addresses {
 46         /* Support writing RO kernel text via kprobes, jump labels, etc. */
 47         FIX_TEXT_POKE0,
 48         FIX_TEXT_KEXEC,
 49         FIX_BITMAP_COUNT
 50 };
 51 
 52 extern void *parisc_vmalloc_start;
 53 #define PCXL_DMA_MAP_SIZE       (8*1024*1024)
 54 #define VMALLOC_START           ((unsigned long)parisc_vmalloc_start)
 55 #define VMALLOC_END             (KERNEL_MAP_END)
 56 
 57 #define __fix_to_virt(_x) (FIXMAP_START + ((_x) << PAGE_SHIFT))
 58 
 59 void set_fixmap(enum fixed_addresses idx, phys_addr_t phys);
 60 void clear_fixmap(enum fixed_addresses idx);
 61 
 62 #endif /*__ASSEMBLY__*/
 63 
 64 #endif /*_ASM_FIXMAP_H*/
 65 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php