%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _CRIS_ARCH_PAGE_H #define _CRIS_ARCH_PAGE_H #ifdef __KERNEL__ /* This handles the memory map.. */ #ifdef CONFIG_CRIS_LOW_MAP #define PAGE_OFFSET KSEG_6 /* kseg_6 is mapped to physical ram */ #else #define PAGE_OFFSET KSEG_C /* kseg_c is mapped to physical ram */ #endif /* macros to convert between really physical and virtual addresses * by stripping a selected bit, we can convert between KSEG_x and * 0x40000000 where the DRAM really resides */ #ifdef CONFIG_CRIS_LOW_MAP /* we have DRAM virtually at 0x6 */ #define __pa(x) ((unsigned long)(x) & 0xdfffffff) #define __va(x) ((void *)((unsigned long)(x) | 0x20000000)) #else /* we have DRAM virtually at 0xc */ #define __pa(x) ((unsigned long)(x) & 0x7fffffff) #define __va(x) ((void *)((unsigned long)(x) | 0x80000000)) #endif #endif #endif