Lines Matching refs:PHYSICAL_START
59 * PHYSICAL_START is the physical address of the start of the kernel.
63 * KERNELBASE, PAGE_OFFSET, and PHYSICAL_START are all configurable on
67 * KERNELBASE - PAGE_OFFSET = PHYSICAL_START - MEMORY_START
69 * Also, KERNELBASE >= PAGE_OFFSET and PHYSICAL_START >= MEMORY_START
73 * va = pa + KERNELBASE - PHYSICAL_START
96 #define PHYSICAL_START kernstart_addr
99 #define PHYSICAL_START ASM_CONST(CONFIG_PHYSICAL_START)
107 #define VIRT_PHYS_OFFSET (KERNELBASE - PHYSICAL_START)
116 #define MEMORY_START (PHYSICAL_START + PAGE_OFFSET - KERNELBASE)
125 * determine MEMORY_START until then. However we can determine PHYSICAL_START
145 * __va(x) = (x) - PHYSICAL_START + KERNELBASE
148 * PHYSICAL_START = kernstart_addr = Physical address of _stext
169 * __va(x) = (x) - [ PHYSICAL_START - Effective KERNELBASE ]
172 * PHYSICAL_START = dynamic load address.(kernstart_addr variable)
175 * MODULO(PHYSICAL_START,256M)
180 * virt_phys_offset = Effective KERNELBASE - PHYSICAL_START
186 * __va(x) = x - PHYSICAL_START + Effective KERNELBASE
190 * __pa(x) = x + PHYSICAL_START - Effective KERNELBASE