Rev 2045 | Rev 2071 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 2045 | Rev 2046 | ||
|---|---|---|---|
| Line 52... | Line 52... | ||
| 52 | #define IMPL_SPARC64V 0x5 |
52 | #define IMPL_SPARC64V 0x5 |
| 53 | 53 | ||
| 54 | struct cpu_arch { |
54 | struct cpu_arch { |
| 55 | uint32_t mid; /**< Processor ID as read from UPA_CONFIG. */ |
55 | uint32_t mid; /**< Processor ID as read from UPA_CONFIG. */ |
| 56 | ver_reg_t ver; |
56 | ver_reg_t ver; |
| 57 | uint32_t clock_frequency; /**< Processor frequency in MHz. */ |
57 | uint32_t clock_frequency; /**< Processor frequency in Hz. */ |
| 58 | uint64_t next_tick_cmpr; /**< Next clock interrupt should be |
58 | uint64_t next_tick_cmpr; /**< Next clock interrupt should be |
| 59 | * generated when the TICK register |
59 | * generated when the TICK register |
| 60 | * matches this value. |
60 | * matches this value. |
| 61 | */ |
61 | */ |
| 62 | }; |
62 | }; |