Changeset 454f1da in mainline for kernel/arch/sparc64/include/cpu.h
- Timestamp:
- 2007-03-26T19:35:28Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5d7daff
- Parents:
- 4638401
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/sparc64/include/cpu.h
r4638401 r454f1da 40 40 #include <arch/asm.h> 41 41 42 #ifdef CONFIG_SMP 43 #include <arch/mm/cache.h> 44 #endif 45 42 46 #define MANUF_FUJITSU 0x04 43 47 #define MANUF_ULTRASPARC 0x17 /**< UltraSPARC I, UltraSPARC II */ … … 54 58 55 59 typedef struct { 56 uint32_t mid; /**< Processor ID as read from UPA_CONFIG. */ 60 uint32_t mid; /**< Processor ID as read from 61 UPA_CONFIG. */ 57 62 ver_reg_t ver; 58 63 uint32_t clock_frequency; /**< Processor frequency in Hz. */ 59 64 uint64_t next_tick_cmpr; /**< Next clock interrupt should be 60 generated when the TICK register 61 matches this value. */ 65 generated when the TICK register 66 matches this value. */ 67 #ifdef CONFIG_SMP 68 int dcache_active; 69 dcache_shootdown_msg_t dcache_messages[DCACHE_MSG_QUEUE_LEN]; 70 count_t dcache_message_count; 71 #endif 62 72 } cpu_arch_t; 63 73
Note:
See TracChangeset
for help on using the changeset viewer.