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

TOMOYO Linux Cross Reference
Linux/arch/x86/kernel/head32.c

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 ] ~

Diff markup

Differences between /arch/x86/kernel/head32.c (Version linux-6.11-rc3) and /arch/alpha/kernel/head32.c (Version policy-sample)


  1 // SPDX-License-Identifier: GPL-2.0                 1 
  2 /*                                                
  3  *  linux/arch/i386/kernel/head32.c -- prepare    
  4  *                                                
  5  *  Copyright (C) 2000 Andrea Arcangeli <andre    
  6  *  Copyright (C) 2007 Eric Biederman <ebieder    
  7  */                                               
  8                                                   
  9 #include <linux/init.h>                           
 10 #include <linux/start_kernel.h>                   
 11 #include <linux/mm.h>                             
 12 #include <linux/memblock.h>                       
 13                                                   
 14 #include <asm/desc.h>                             
 15 #include <asm/setup.h>                            
 16 #include <asm/sections.h>                         
 17 #include <asm/e820/api.h>                         
 18 #include <asm/page.h>                             
 19 #include <asm/apic.h>                             
 20 #include <asm/io_apic.h>                          
 21 #include <asm/bios_ebda.h>                        
 22 #include <asm/microcode.h>                        
 23 #include <asm/tlbflush.h>                         
 24 #include <asm/bootparam_utils.h>                  
 25                                                   
 26 static void __init i386_default_early_setup(vo    
 27 {                                                 
 28         /* Initialize 32bit specific setup fun    
 29         x86_init.resources.reserve_resources =    
 30         x86_init.mpparse.setup_ioapic_ids = se    
 31 }                                                 
 32                                                   
 33 #ifdef CONFIG_MICROCODE_INITRD32                  
 34 unsigned long __initdata initrd_start_early;      
 35 static pte_t __initdata *initrd_pl2p_start, *i    
 36                                                   
 37 static void zap_early_initrd_mapping(void)        
 38 {                                                 
 39         pte_t *pl2p = initrd_pl2p_start;          
 40                                                   
 41         for (; pl2p < initrd_pl2p_end; pl2p++)    
 42                 *pl2p = (pte_t){ .pte = 0 };      
 43                                                   
 44                 if (!IS_ENABLED(CONFIG_X86_PAE    
 45                         *(pl2p + ((PAGE_OFFSET    
 46         }                                         
 47 }                                                 
 48 #else                                             
 49 static inline void zap_early_initrd_mapping(vo    
 50 #endif                                            
 51                                                   
 52 asmlinkage __visible void __init __noreturn i3    
 53 {                                                 
 54         /* Make sure IDT is set up before any     
 55         idt_setup_early_handler();                
 56                                                   
 57         load_ucode_bsp();                         
 58         zap_early_initrd_mapping();               
 59                                                   
 60         cr4_init_shadow();                        
 61                                                   
 62         sanitize_boot_params(&boot_params);       
 63                                                   
 64         x86_early_init_platform_quirks();         
 65                                                   
 66         /* Call the subarch specific early set    
 67         switch (boot_params.hdr.hardware_subar    
 68         case X86_SUBARCH_INTEL_MID:               
 69                 x86_intel_mid_early_setup();      
 70                 break;                            
 71         case X86_SUBARCH_CE4100:                  
 72                 x86_ce4100_early_setup();         
 73                 break;                            
 74         default:                                  
 75                 i386_default_early_setup();       
 76                 break;                            
 77         }                                         
 78                                                   
 79         start_kernel();                           
 80 }                                                 
 81                                                   
 82 /*                                                
 83  * Initialize page tables.  This creates a PDE    
 84  * tables, which are located immediately beyon    
 85  * _brk_end is set up to point to the first "s    
 86  * Mappings are created both at virtual addres    
 87  * and PAGE_OFFSET for up to _end.                
 88  *                                                
 89  * In PAE mode initial_page_table is staticall    
 90  * enough entries to cover the VMSPLIT option     
 91  * entries). The identity mapping is handled b    
 92  * to the first kernel PMD. Note the upper hal    
 93  * always zero at this stage.                     
 94  */                                               
 95 #ifdef CONFIG_X86_PAE                             
 96 typedef pmd_t                   pl2_t;            
 97 #define pl2_base                initial_pg_pmd    
 98 #define SET_PL2(val)            { .pmd = (val)    
 99 #else                                             
100 typedef pgd_t                   pl2_t;            
101 #define pl2_base                initial_page_t    
102 #define SET_PL2(val)            { .pgd = (val)    
103 #endif                                            
104                                                   
105 static __init __no_stack_protector pte_t init_    
106                                                   
107 {                                                 
108         while ((pte.pte & PTE_PFN_MASK) < limi    
109                 pl2_t pl2 = SET_PL2((unsigned     
110                 int i;                            
111                                                   
112                 **pl2p = pl2;                     
113                 if (!IS_ENABLED(CONFIG_X86_PAE    
114                         /* Kernel PDE entry */    
115                         *(*pl2p + ((PAGE_OFFSE    
116                 }                                 
117                                                   
118                 for (i = 0; i < PTRS_PER_PTE;     
119                         **ptep = pte;             
120                         pte.pte += PAGE_SIZE;     
121                         (*ptep)++;                
122                 }                                 
123                 (*pl2p)++;                        
124         }                                         
125         return pte;                               
126 }                                                 
127                                                   
128 void __init __no_stack_protector mk_early_pgtb    
129 {                                                 
130         /* Enough space to fit pagetables for     
131         unsigned long limit = __pa_nodebug(_en    
132         pte_t pte, *ptep = (pte_t *)__pa_nodeb    
133         struct boot_params __maybe_unused *par    
134         pl2_t *pl2p = (pl2_t *)__pa_nodebug(pl    
135         unsigned long *ptr;                       
136                                                   
137         pte.pte = PTE_IDENT_ATTR;                 
138         pte = init_map(pte, &ptep, &pl2p, limi    
139                                                   
140         ptr = (unsigned long *)__pa_nodebug(&m    
141         /* Can't use pte_pfn() since it's a ca    
142         *ptr = (pte.pte & PTE_PFN_MASK) >> PAG    
143                                                   
144         ptr = (unsigned long *)__pa_nodebug(&_    
145         *ptr = (unsigned long)ptep + PAGE_OFFS    
146                                                   
147 #ifdef CONFIG_MICROCODE_INITRD32                  
148         /* Running on a hypervisor? */            
149         if (native_cpuid_ecx(1) & BIT(31))        
150                 return;                           
151                                                   
152         params = (struct boot_params *)__pa_no    
153         if (!params->hdr.ramdisk_size || !para    
154                 return;                           
155                                                   
156         /* Save the virtual start address */      
157         ptr = (unsigned long *)__pa_nodebug(&i    
158         *ptr = (pte.pte & PTE_PFN_MASK) + PAGE    
159         *ptr += ((unsigned long)params->hdr.ra    
160                                                   
161         /* Save PLP2 for cleanup */               
162         ptr = (unsigned long *)__pa_nodebug(&i    
163         *ptr = (unsigned long)pl2p + PAGE_OFFS    
164                                                   
165         limit = (unsigned long)params->hdr.ram    
166         pte.pte = PTE_IDENT_ATTR | PFN_ALIGN(l    
167         limit = (unsigned long)params->hdr.ram    
168                                                   
169         init_map(pte, &ptep, &pl2p, limit);       
170                                                   
171         ptr = (unsigned long *)__pa_nodebug(&i    
172         *ptr = (unsigned long)pl2p + PAGE_OFFS    
173 #endif                                            
174 }                                                 
175                                                   

~ [ 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