Changeset 2cf87e50 in mainline
- Timestamp:
- 2005-12-17T23:25:48Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ff12a3c
- Parents:
- 07bd114e
- Files:
-
- 2 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/sparc64/Makefile.inc
r07bd114e r2cf87e50 48 48 49 49 ARCH_SOURCES = \ 50 arch/$(ARCH)/src/cpu/cpu.c \ 50 51 arch/$(ARCH)/src/asm.S \ 51 52 arch/$(ARCH)/src/console.c \ -
arch/sparc64/include/asm.h
r07bd114e r2cf87e50 86 86 } 87 87 88 /** Read Version Register. 89 * 90 * @return Value of VER register. 91 */ 92 static inline __u64 ver_read(void) 93 { 94 __u64 v; 95 96 __asm__ volatile ("rdpr %%ver, %0\n" : "=r" (v)); 97 98 return v; 99 } 100 88 101 /** Read Trap Base Address register. 89 102 * -
arch/sparc64/include/cpu.h
r07bd114e r2cf87e50 30 30 #define __sparc64_CPU_H__ 31 31 32 #include <typedefs.h> 32 #include <arch/register.h> 33 34 #define MANUF_FUJITSU 0x04 35 #define MANUF_ULTRASPARC 0x17 /**< UltraSPARC I, UltraSPARC II */ 36 #define MANUF_SUN 0x3e 37 38 #define IMPL_ULTRASPARCI 0x10 39 #define IMPL_ULTRASPARCII 0x11 40 #define IMPL_ULTRASPARCII_I 0x12 41 #define IMPL_ULTRASPARCII_E 0x13 42 #define IMPL_ULTRASPARCIII 0x15 43 #define IMPL_ULTRASPARCIV_PLUS 0x19 44 45 #define IMPL_SPARC64V 0x5 33 46 34 47 struct cpu_arch { 48 ver_reg_t ver; 35 49 }; 36 50 -
arch/sparc64/src/dummy.s
r07bd114e r2cf87e50 31 31 .global asm_delay_loop 32 32 .global before_thread_runs_arch 33 .global cpu_arch_init34 33 .global cpu_halt 35 .global cpu_identify36 .global cpu_print_report37 34 .global cpu_sleep 38 35 .global fmath_dpow … … 52 49 asm_delay_loop: 53 50 before_thread_runs_arch: 54 cpu_arch_init:55 51 cpu_halt: 56 cpu_identify:57 cpu_print_report:58 52 cpu_sleep: 59 53 fmath_dpow: -
generic/src/console/kconsole.c
r07bd114e r2cf87e50 159 159 } 160 160 161 /** Try to find a command beg enning with prefix */161 /** Try to find a command beginning with prefix */ 162 162 static const char * cmdtab_search_one(const char *name,link_t **startpos) 163 163 { -
generic/src/main/main.c
r07bd114e r2cf87e50 204 204 205 205 calibrate_delay_loop(); 206 206 207 207 timeout_init(); 208 208 scheduler_init();
Note:
See TracChangeset
for help on using the changeset viewer.