Changeset 101 for trunk/Softwares/Common
- Timestamp:
- Jan 15, 2009, 6:19:08 PM (16 years ago)
- Location:
- trunk/Softwares/Common
- Files:
-
- 3 deleted
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Softwares/Common/include/find_one.h
r81 r101 1 1 unsigned int find_first_one (unsigned int val); 2 // unsigned int find_last_one (unsigned int val); -
trunk/Softwares/Common/include/func_io.h
r81 r101 1 1 #include "mapping_memory.h" 2 2 3 void print(int data); 4 void quit (int data); 3 void tty (unsigned char data); 4 void print(char * data); 5 void quit (unsigned int data); 6 void show (unsigned int data); -
trunk/Softwares/Common/include/service_clock.h
r81 r101 1 unsigned int service_clock ();1 // unsigned int service_clock (); -
trunk/Softwares/Common/ldscript/or32.ld
r88 r101 6 6 7 7 /* 8 * Memory Mapping 8 * Memory Mapping : cf ${MORPHEO_TOPLEVEL}/IPs/systemC/shared/mapping_memory.h 9 9 */ 10 10 … … 13 13 iram : ORIGIN = 0x00000000, LENGTH = 0x01000000 14 14 dram : ORIGIN = 0x10000000, LENGTH = 0x10000000 15 dram_unc : ORIGIN = 0x 40000000, LENGTH = 0x0100000015 dram_unc : ORIGIN = 0x80000000, LENGTH = 0x01000000 16 16 } 17 17 … … 20 20 * grows down. 21 21 */ 22 PROVIDE (_stack = 0x52000000 - 4); 23 PROVIDE (__stack = 0x52000000 - 4); 22 PROVIDE (_stack = 0x42000000 - 4); 24 23 PROVIDE (_stack_alloc = 0x00500000 ); 25 24 PROVIDE (_tty = 0xa0000000 ); 25 PROVIDE (_ramlock = 0xb0000000 ); 26 PROVIDE (_sim2os = 0xc0000000 ); 26 27 27 28 SECTIONS -
trunk/Softwares/Common/src/asm/cpu_info.s
r81 r101 10 10 _get_cpu_id : 11 11 l.jr r9 12 l.mfspr r11,r0, 0xF800 /* R11 <- SPR[31][0] */13 12 l.mfspr r11,r0,21 /* R11 <- SPR[0][21] */ 13 14 14 .global _set_cpu_id 15 15 _set_cpu_id : 16 16 l.jr r9 17 l.mtspr r0 ,r3, 0xF800 /* SPR[31][0] <- r3 */17 l.mtspr r0 ,r3,21 /* SPR[0][21] <- r3 */ 18 18 -
trunk/Softwares/Common/src/asm/find_one.s
r81 r101 12 12 l.ff1 r11,r3 13 13 14 /* 14 /* 15 15 .global _find_last_one 16 16 _find_last_one : -
trunk/Softwares/Common/src/asm/thread_info.s
r81 r101 10 10 _get_thread_id : 11 11 l.jr r9 12 l.mfspr r11,r0, 0xF801 /* R11 <- SPR[31][1] */13 12 l.mfspr r11,r0,22 /* R11 <- SPR[0][22] */ 13 14 14 .global _set_thread_id 15 15 _set_thread_id : 16 16 l.jr r9 17 l.mtspr r0 ,r3, 0xF801 /* SPR[31][1] <- r3 */17 l.mtspr r0 ,r3,22 /* SPR[0][22] <- r3 */ 18 18 19 19 .global _get_thread_priority 20 20 _get_thread_priority : 21 21 l.jr r9 22 l.mfspr r11,r0, 0xF802 /* R11 <- SPR[31][2] */22 l.mfspr r11,r0,23 /* R11 <- SPR[0][23] */ 23 23 24 24 .global _set_thread_priority 25 25 _set_thread_priority : 26 26 l.jr r9 27 l.mtspr r0 ,r3, 0xF802 /* SPR[31][2] <- r3 */27 l.mtspr r0 ,r3,23 /* SPR[0][23] <- r3 */ 28 28 -
trunk/Softwares/Common/src/c/func_io.c
r81 r101 2 2 #include "thread_info.h" 3 3 4 void print(intdata)4 void tty (unsigned char data) 5 5 { 6 int *show =(int*)(TTY_BASE + (get_thread_id() << 4) + 8);6 unsigned int * addr =(unsigned int*)(TTY_BASE + (get_thread_id() << 4) + 0); 7 7 8 *( show) = data;8 *(addr) = data; 9 9 } 10 10 11 void quit (intdata)11 void print (char * data) 12 12 { 13 int *stop =(int*)(TTY_BASE + (get_thread_id() << 4) + 4);13 unsigned int * addr =(unsigned int*)(TTY_BASE + (get_thread_id() << 4) + 0); 14 14 15 *(stop) = data; 15 while ((*data) != '\0') 16 { 17 *(addr) = (*data); 18 data++; 19 } 16 20 } 21 22 void show (unsigned int data) 23 { 24 unsigned int * addr =(unsigned int*)(TTY_BASE + (get_thread_id() << 4) + 8); 25 26 *(addr) = data; 27 } 28 29 void quit (unsigned int data) 30 { 31 unsigned int * addr = (unsigned int*)(TTY_BASE + (get_thread_id() << 4) + 4); 32 33 *(addr) = data; 34 } -
trunk/Softwares/Common/src/c/service_clock.c
r81 r101 1 #include <time.h> 2 #include <errno.h> 3 #include <sys/lock.h> 4 #include "mapping_memory.h" 5 #include "sim2os.h" 6 #include "service_clock.h" 1 /* #include <time.h> */ 2 /* #include <errno.h> */ 3 /* #include <sys/lock.h> */ 4 /* #include "mapping_memory.h" */ 5 /* #include "sim2os.h" */ 6 /* #include "service_clock.h" */ 7 7 8 unsigned int service_clock () 9 { 10 unsigned int * addr = (unsigned int *)(SIM2OS_BASE); 11 unsigned int result = -1; 8 /* unsigned int service_clock () */ 9 /* { */ 10 /* unsigned int * addr = (unsigned int *)(SIM2OS_BASE); */ 11 /* unsigned int result = -1; */ 12 12 13 __lock_init (service_lock); 13 /* __lock_init (service_lock); */ 14 14 15 __lock_acquire (service_lock); 15 /* __lock_acquire (service_lock); */ 16 16 17 *(addr+0) = (unsigned int)SERVICE_CLOCK; 17 /* *(addr+0) = (unsigned int)SERVICE_CLOCK; */ 18 18 19 // memory synchronisation 20 // (else read (with an address that depend not of store address) can be lunch before a store) 21 asm("l.msync;"); 19 /* // memory synchronisation */ 20 /* // (else read (with an address that depend not of store address) can be lunch before a store) */ 21 /* asm("l.msync;"); */ 22 22 23 result = (clock_t) *(addr+1); 23 /* result = (clock_t) *(addr+1); */ 24 24 25 if (result == (clock_t)-1) 26 errno = (int) *(addr+2); 25 /* if (result == (clock_t)-1) */ 26 /* errno = (int) *(addr+2); */ 27 27 28 __lock_release (service_lock); 28 /* __lock_release (service_lock); */ 29 29 30 return result; 31 } 30 /* return result; */ 31 /* } */
Note: See TracChangeset
for help on using the changeset viewer.