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

TOMOYO Linux Cross Reference
Linux/arch/m68k/coldfire/head.S

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ 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.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /arch/m68k/coldfire/head.S (Version linux-6.12-rc7) and /arch/m68k/coldfire/head.S (Version linux-2.6.0)


  1 /* SPDX-License-Identifier: GPL-2.0 */            
  2 /*********************************************    
  3                                                   
  4 /*                                                
  5  *      head.S -- common startup code for Cold    
  6  *                                                
  7  *      (C) Copyright 1999-2011, Greg Ungerer <    
  8  */                                               
  9                                                   
 10 /*********************************************    
 11                                                   
 12 #include <linux/linkage.h>                        
 13 #include <linux/init.h>                           
 14 #include <asm/asm-offsets.h>                      
 15 #include <asm/coldfire.h>                         
 16 #include <asm/mcfsim.h>                           
 17 #include <asm/mcfmmu.h>                           
 18 #include <asm/thread_info.h>                      
 19                                                   
 20 /*********************************************    
 21                                                   
 22 /*                                                
 23  *      If we don't have a fixed memory size,     
 24  *      to auto detect the DRAM size. Obviousl    
 25  *      method, and should work for most board    
 26  *      that do not have their RAM starting at    
 27  *      works on SDRAM (not boards fitted with    
 28  */                                               
 29 #if CONFIG_RAMSIZE != 0                           
 30 .macro GET_MEM_SIZE                               
 31         movel   #CONFIG_RAMSIZE,%d0     /* har    
 32 .endm                                             
 33                                                   
 34 #elif defined(CONFIG_M5206) || defined(CONFIG_    
 35       defined(CONFIG_M5249) || defined(CONFIG_    
 36       defined(CONFIG_M527x) || defined(CONFIG_    
 37       defined(CONFIG_M5307) || defined(CONFIG_    
 38 /*                                                
 39  *      Not all these devices have exactly the    
 40  *      but the DCMR register is virtually ide    
 41  *      a couple of bits. The only exception i    
 42  *      DRAM controller is quite different.       
 43  */                                               
 44 .macro GET_MEM_SIZE                               
 45         movel   MCFSIM_DMR0,%d0         /* get    
 46         btst    #0,%d0                  /* che    
 47         beq     1f                                
 48         andl    #0xfffc0000,%d0                   
 49         beq     1f                                
 50         addl    #0x00040000,%d0         /* con    
 51 1:                                                
 52         movel   MCFSIM_DMR1,%d1         /* get    
 53         btst    #0,%d1                  /* che    
 54         beq     2f                                
 55         andl    #0xfffc0000,%d1                   
 56         beq     2f                                
 57         addl    #0x00040000,%d1                   
 58         addl    %d1,%d0                 /* tot    
 59 2:                                                
 60 .endm                                             
 61                                                   
 62 #elif defined(CONFIG_M5272)                       
 63 .macro GET_MEM_SIZE                               
 64         movel   MCFSIM_CSOR7,%d0        /* get    
 65         andil   #0xfffff000,%d0         /* mas    
 66         negl    %d0                     /* neg    
 67 .endm                                             
 68                                                   
 69 #elif defined(CONFIG_M520x)                       
 70 .macro GET_MEM_SIZE                               
 71         clrl    %d0                               
 72         movel   MCFSIM_SDCS0, %d2       /* Get    
 73         andl    #0x1f, %d2              /* Get    
 74         beq     3f                      /* Che    
 75         addql   #1, %d2                 /* For    
 76         moveql  #1, %d0                           
 77         lsll    %d2, %d0                /* 2 ^    
 78 3:                                                
 79         movel   MCFSIM_SDCS1, %d2       /* Get    
 80         andl    #0x1f, %d2              /* Get    
 81         beq     4f                      /* Che    
 82         addql   #1, %d2                 /* For    
 83         moveql  #1, %d1                           
 84         lsll    %d2, %d1                /* 2 ^    
 85         addl    %d1, %d0                /* Tot    
 86 4:                                                
 87 .endm                                             
 88                                                   
 89 #else                                             
 90 #error "ERROR: I don't know how to probe your     
 91 #endif                                            
 92                                                   
 93 /*********************************************    
 94                                                   
 95 /*                                                
 96  *      Boards and platforms can do specific e    
 97  *      they need to. Most don't need this, de    
 98  */                                               
 99 #ifndef PLATFORM_SETUP                            
100 #define PLATFORM_SETUP                            
101 #endif                                            
102                                                   
103 /*********************************************    
104                                                   
105 .global _start                                    
106 .global _rambase                                  
107 .global _ramvec                                   
108 .global _ramstart                                 
109 .global _ramend                                   
110 #if defined(CONFIG_UBOOT)                         
111 .global _init_sp                                  
112 #endif                                            
113                                                   
114 /*********************************************    
115                                                   
116 .data                                             
117                                                   
118 /*                                                
119  *      During startup we store away the RAM s    
120  *      bss, since their values are determined    
121  *      has been cleared.                         
122  */                                               
123 _rambase:                                         
124 .long   0                                         
125 _ramvec:                                          
126 .long   0                                         
127 _ramstart:                                        
128 .long   0                                         
129 _ramend:                                          
130 .long   0                                         
131 #if defined(CONFIG_UBOOT)                         
132 _init_sp:                                         
133 .long   0                                         
134 #endif                                            
135                                                   
136 /*********************************************    
137                                                   
138 __HEAD                                            
139                                                   
140 #ifdef CONFIG_MMU                                 
141 _start0:                                          
142         jmp     _start                            
143 .global kernel_pg_dir                             
144 .equ    kernel_pg_dir,_start0                     
145 .equ    .,_start0+0x1000                          
146 #endif                                            
147                                                   
148 /*                                                
149  *      This is the codes first entry point. T    
150  *      begins...                                 
151  */                                               
152                                                   
153 _start:                                           
154         nop                                       
155         movew   #0x2700, %sr                      
156         movel   #CACHE_INIT,%d0                   
157         movec   %d0,%CACR                         
158         nop                                       
159 #if defined(CONFIG_UBOOT)                         
160         movel   %sp,_init_sp                      
161 #endif                                            
162 #ifdef CONFIG_MBAR                                
163         movel   #CONFIG_MBAR+1,%d0                
164         movec   %d0,%MBAR                         
165 #endif                                            
166                                                   
167         /*                                        
168          *      Do any platform or board speci    
169          *      don't need anything. Those exc    
170          *      their board specific includes.    
171          */                                       
172         PLATFORM_SETUP                            
173                                                   
174         /*                                        
175          *      Create basic memory configurat    
176          *      and size memory.                  
177          */                                       
178         movel   #CONFIG_VECTORBASE,%a7            
179         movec   %a7,%VBR                          
180         movel   %a7,_ramvec                       
181                                                   
182         movel   #CONFIG_RAMBASE,%a7               
183         movel   %a7,_rambase                      
184                                                   
185         GET_MEM_SIZE                              
186         addl    %a7,%d0                           
187         movel   %d0,_ramend                       
188                                                   
189         /*                                        
190          *      Now that we know what the memo    
191          *      and get things moving. This is    
192          *      all version cores have identic    
193          *      it is very similar. Define the    
194          *      then the code here is the same    
195          */                                       
196         movel   #ACR0_MODE,%d0                    
197         movec   %d0,%ACR0                         
198         movel   #ACR1_MODE,%d0                    
199         movec   %d0,%ACR1                         
200 #ifdef ACR2_MODE                                  
201         movel   #ACR2_MODE,%d0                    
202         movec   %d0,%ACR2                         
203         movel   #ACR3_MODE,%d0                    
204         movec   %d0,%ACR3                         
205 #endif                                            
206         movel   #CACHE_MODE,%d0                   
207         movec   %d0,%CACR                         
208         nop                                       
209                                                   
210 #ifdef CONFIG_MMU                                 
211         /*                                        
212          *      Identity mapping for the kerne    
213          */                                       
214         movel   #(MMUBASE+1),%d0                  
215         movec   %d0,%MMUBAR                       
216         movel   #MMUOR_CA,%d0                     
217         movel   %d0,MMUOR                         
218         movel   #0,%d0                            
219         movec   %d0,%asid                         
220                                                   
221         movel   #MMUCR_EN,%d0                     
222         movel   %d0,MMUCR                         
223         nop                                       
224                                                   
225         movel   #_vstart,%a0                      
226         jmp     %a0@                              
227 _vstart:                                          
228 #endif /* CONFIG_MMU */                           
229                                                   
230 #ifdef CONFIG_ROMFS_FS                            
231         /*                                        
232          *      Move ROM filesystem above bss     
233          */                                       
234         lea     __bss_start,%a0                   
235         lea     __bss_stop,%a1                    
236         movel   %a0,%a2                           
237                                                   
238         movel   8(%a0),%d0                        
239         addql   #8,%d0                            
240         andl    #0xfffffffc, %d0                  
241                                                   
242         addl    %d0,%a0                           
243         addl    %d0,%a1                           
244         movel   %a1,_ramstart                     
245                                                   
246 _copy_romfs:                                      
247         movel   -(%a0),%d0                        
248         movel   %d0,-(%a1)                        
249         cmpl    %a0,%a2                           
250         bne     _copy_romfs                       
251                                                   
252 #else /* CONFIG_ROMFS_FS */                       
253         lea     __bss_stop,%a1                    
254         movel   %a1,_ramstart                     
255 #endif /* CONFIG_ROMFS_FS */                      
256                                                   
257                                                   
258         /*                                        
259          *      Zero out the bss region.          
260          */                                       
261         lea     __bss_start,%a0                   
262         lea     __bss_stop,%a1                    
263         clrl    %d0                               
264 _clear_bss:                                       
265         movel   %d0,(%a0)+                        
266         cmpl    %a0,%a1                           
267         bne     _clear_bss                        
268                                                   
269         /*                                        
270          *      Load the current task pointer     
271          */                                       
272         lea     init_thread_union,%a0             
273         lea     THREAD_SIZE(%a0),%sp              
274                                                   
275 #ifdef CONFIG_MMU                                 
276 .global m68k_cputype                              
277 .global m68k_mmutype                              
278 .global m68k_fputype                              
279 .global m68k_machtype                             
280         movel   #CPU_COLDFIRE,%d0                 
281         movel   %d0,m68k_cputype                  
282         movel   #MMU_COLDFIRE,%d0                 
283         movel   %d0,m68k_mmutype                  
284         movel   #FPUTYPE,%d0                      
285         movel   %d0,m68k_fputype                  
286         movel   #MACHINE,%d0                      
287         movel   %d0,m68k_machtype                 
288         lea     init_task,%a2                     
289 #endif                                            
290                                                   
291         /*                                        
292          *      Assembler start up done, start    
293          */                                       
294         jsr     start_kernel                      
295                                                   
296 _exit:                                            
297         jmp     _exit                             
298                                                   
299 /*********************************************    
                                                      

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