setup.c (53a2ebaaabc1eb8458796fec3bc1e0e80746b642) | setup.c (ee9f8fce99640811b2b8e79d0d1dbe8bab69ba67) |
---|---|
1/* 2 * Copyright (C) 1995 Linus Torvalds 3 * 4 * Support of BIGMEM added by Gerhard Wichert, Siemens AG, July 1999 5 * 6 * Memory region support 7 * David Parsons <orc@pell.chi.il.us>, July-August 1999 8 * --- 101 unchanged lines hidden (view full) --- 110#include <asm/apicdef.h> 111#include <asm/amd_nb.h> 112#include <asm/mce.h> 113#include <asm/alternative.h> 114#include <asm/prom.h> 115#include <asm/microcode.h> 116#include <asm/mmu_context.h> 117#include <asm/kaslr.h> | 1/* 2 * Copyright (C) 1995 Linus Torvalds 3 * 4 * Support of BIGMEM added by Gerhard Wichert, Siemens AG, July 1999 5 * 6 * Memory region support 7 * David Parsons <orc@pell.chi.il.us>, July-August 1999 8 * --- 101 unchanged lines hidden (view full) --- 110#include <asm/apicdef.h> 111#include <asm/amd_nb.h> 112#include <asm/mce.h> 113#include <asm/alternative.h> 114#include <asm/prom.h> 115#include <asm/microcode.h> 116#include <asm/mmu_context.h> 117#include <asm/kaslr.h> |
118#include <asm/unwind.h> |
|
118 119/* 120 * max_low_pfn_mapped: highest direct mapped pfn under 4GB 121 * max_pfn_mapped: highest direct mapped pfn over 4GB 122 * 123 * The direct mapping only covers E820_TYPE_RAM regions, so the ranges and gaps are 124 * represented by pfn_mapped 125 */ --- 1179 unchanged lines hidden (view full) --- 1305 arch_init_ideal_nops(); 1306 1307 register_refined_jiffies(CLOCK_TICK_RATE); 1308 1309#ifdef CONFIG_EFI 1310 if (efi_enabled(EFI_BOOT)) 1311 efi_apply_memmap_quirks(); 1312#endif | 119 120/* 121 * max_low_pfn_mapped: highest direct mapped pfn under 4GB 122 * max_pfn_mapped: highest direct mapped pfn over 4GB 123 * 124 * The direct mapping only covers E820_TYPE_RAM regions, so the ranges and gaps are 125 * represented by pfn_mapped 126 */ --- 1179 unchanged lines hidden (view full) --- 1306 arch_init_ideal_nops(); 1307 1308 register_refined_jiffies(CLOCK_TICK_RATE); 1309 1310#ifdef CONFIG_EFI 1311 if (efi_enabled(EFI_BOOT)) 1312 efi_apply_memmap_quirks(); 1313#endif |
1314 1315 unwind_init(); |
|
1313} 1314 1315#ifdef CONFIG_X86_32 1316 1317static struct resource video_ram_resource = { 1318 .name = "Video RAM area", 1319 .start = 0xa0000, 1320 .end = 0xbffff, --- 30 unchanged lines hidden --- | 1316} 1317 1318#ifdef CONFIG_X86_32 1319 1320static struct resource video_ram_resource = { 1321 .name = "Video RAM area", 1322 .start = 0xa0000, 1323 .end = 0xbffff, --- 30 unchanged lines hidden --- |