ILP clock frequency (in Hz) */
| 215 | |
| 216 | /** ILP clock frequency (in Hz) */ |
| 217 | uint64_t |
| 218 | bcm_get_ilpfreq(struct bcm_platform *bp) { |
| 219 | if (!bcm_has_pmu(bp)) |
| 220 | return (BHND_PMU_ILP_CLOCK); |
| 221 | |
| 222 | return (bhnd_pmu_ilp_clock(bcm_get_pmu(bp))); |
| 223 | } |
| 224 | |
| 225 | /** CPU clock frequency (in Hz) */ |
| 226 | uint64_t |
nothing calls this directly
no test coverage detected