FreeCalypso > hg > freecalypso-sw
annotate gsm-fw/services/ffs/intctl.h @ 382:a2210b0361c1
loadtools: implemented compal-stage setting in hw parameter files
| author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> | 
|---|---|
| date | Mon, 09 Jun 2014 21:53:12 +0000 | 
| parents | 6f4a12b4582f | 
| children | 
| rev | line source | 
|---|---|
| 
209
 
6f4a12b4582f
gsm-fw FFS: starting to integrate C code
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents:  
diff
changeset
 | 
1 /* | 
| 
 
6f4a12b4582f
gsm-fw FFS: starting to integrate C code
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents:  
diff
changeset
 | 
2 * The int_disable() and int_enable() calls in TI's FFS code are nothing | 
| 
 
6f4a12b4582f
gsm-fw FFS: starting to integrate C code
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents:  
diff
changeset
 | 
3 * more than TCT_Control_Interrupts() aka NU_Control_Interrupts(). | 
| 
 
6f4a12b4582f
gsm-fw FFS: starting to integrate C code
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents:  
diff
changeset
 | 
4 * TI's original code used assembly (proprietary toolchain asm syntax and | 
| 
 
6f4a12b4582f
gsm-fw FFS: starting to integrate C code
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents:  
diff
changeset
 | 
5 * ABI semantics) to make the needed Thumb->ARM calls; we don't need such | 
| 
 
6f4a12b4582f
gsm-fw FFS: starting to integrate C code
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents:  
diff
changeset
 | 
6 * idiocy in FreeCalypso, so we have turned int_disable() and int_enable() | 
| 
 
6f4a12b4582f
gsm-fw FFS: starting to integrate C code
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents:  
diff
changeset
 | 
7 * into simple inline functions. | 
| 
 
6f4a12b4582f
gsm-fw FFS: starting to integrate C code
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents:  
diff
changeset
 | 
8 */ | 
| 
 
6f4a12b4582f
gsm-fw FFS: starting to integrate C code
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents:  
diff
changeset
 | 
9 | 
| 
 
6f4a12b4582f
gsm-fw FFS: starting to integrate C code
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents:  
diff
changeset
 | 
10 #include "ffs.h" | 
| 
 
6f4a12b4582f
gsm-fw FFS: starting to integrate C code
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents:  
diff
changeset
 | 
11 #include "../../nucleus/nucleus.h" | 
| 
 
6f4a12b4582f
gsm-fw FFS: starting to integrate C code
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents:  
diff
changeset
 | 
12 | 
| 
 
6f4a12b4582f
gsm-fw FFS: starting to integrate C code
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents:  
diff
changeset
 | 
13 static inline uint32 int_disable(void) | 
| 
 
6f4a12b4582f
gsm-fw FFS: starting to integrate C code
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents:  
diff
changeset
 | 
14 { | 
| 
 
6f4a12b4582f
gsm-fw FFS: starting to integrate C code
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents:  
diff
changeset
 | 
15 return NU_Control_Interrupts(NU_DISABLE_INTERRUPTS); | 
| 
 
6f4a12b4582f
gsm-fw FFS: starting to integrate C code
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents:  
diff
changeset
 | 
16 } | 
| 
 
6f4a12b4582f
gsm-fw FFS: starting to integrate C code
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents:  
diff
changeset
 | 
17 | 
| 
 
6f4a12b4582f
gsm-fw FFS: starting to integrate C code
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents:  
diff
changeset
 | 
18 static inline void int_enable(uint32 tmp) | 
| 
 
6f4a12b4582f
gsm-fw FFS: starting to integrate C code
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents:  
diff
changeset
 | 
19 { | 
| 
 
6f4a12b4582f
gsm-fw FFS: starting to integrate C code
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents:  
diff
changeset
 | 
20 NU_Control_Interrupts(tmp); | 
| 
 
6f4a12b4582f
gsm-fw FFS: starting to integrate C code
 
Michael Spacefalcon <msokolov@ivan.Harhan.ORG> 
parents:  
diff
changeset
 | 
21 } | 
