Changeset f4c2b6a in mainline for kernel/arch/sparc64
- Timestamp:
- 2008-06-03T14:59:48Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2c4fb51
- Parents:
- b63f8569
- Location:
- kernel/arch/sparc64
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/sparc64/include/asm.h
rb63f8569 rf4c2b6a 38 38 #include <arch/arch.h> 39 39 #include <arch/types.h> 40 #include <typedefs.h> 40 41 #include <align.h> 41 42 #include <arch/register.h> -
kernel/arch/sparc64/include/cpu.h
rb63f8569 rf4c2b6a 37 37 38 38 #include <arch/types.h> 39 #include <typedefs.h> 39 40 #include <arch/register.h> 40 41 #include <arch/asm.h> -
kernel/arch/sparc64/src/cpu/cpu.c
rb63f8569 rf4c2b6a 136 136 } 137 137 138 printf("cpu%d: manuf=%s, impl=%s, mask=%d (%d MHz)\n", m->id, manuf,138 printf("cpu%d: manuf=%s, impl=%s, mask=%d (%d MHz)\n", m->id, manuf, 139 139 impl, m->arch.ver.mask, m->arch.clock_frequency / 1000000); 140 140 } -
kernel/arch/sparc64/src/smp/smp.c
rb63f8569 rf4c2b6a 100 100 101 101 if (waitq_sleep_timeout(&ap_completion_wq, 1000000, SYNCH_FLAGS_NONE) == ESYNCH_TIMEOUT) 102 printf("%s: waiting for processor (mid = % d) timed out\n",102 printf("%s: waiting for processor (mid = %" PRIu32 ") timed out\n", 103 103 __func__, mid); 104 104 } -
kernel/arch/sparc64/src/trap/exception.c
rb63f8569 rf4c2b6a 46 46 void dump_istate(istate_t *istate) 47 47 { 48 printf("TSTATE=%# llx\n", istate->tstate);49 printf("TPC=%# llx(%s)\n", istate->tpc, get_symtab_entry(istate->tpc));50 printf("TNPC=%# llx(%s)\n", istate->tnpc, get_symtab_entry(istate->tnpc));48 printf("TSTATE=%#" PRIx64 "\n", istate->tstate); 49 printf("TPC=%#" PRIx64 " (%s)\n", istate->tpc, get_symtab_entry(istate->tpc)); 50 printf("TNPC=%#" PRIx64 " (%s)\n", istate->tnpc, get_symtab_entry(istate->tnpc)); 51 51 } 52 52 -
kernel/arch/sparc64/src/trap/interrupt.c
rb63f8569 rf4c2b6a 98 98 */ 99 99 #ifdef CONFIG_DEBUG 100 printf("cpu% d: spurious interrupt (intrcv=%#llx, "101 " data0=%#llx)\n", CPU->id, intrcv, data0);100 printf("cpu%u: spurious interrupt (intrcv=%#" PRIx64 101 ", data0=%#" PRIx64 ")\n", CPU->id, intrcv, data0); 102 102 #endif 103 103 }
Note:
See TracChangeset
for help on using the changeset viewer.