1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
 * Copyright (c) 2018 by the author(s)
 *
 * =============================================================================
 *
 * Licensed under either of
 *   - Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)
 *   - MIT License (http://opensource.org/licenses/MIT)
 * at your option.
 *
 * =============================================================================
 *
 * Author(s):
 *   - Andre Richter <andre.o.richter@gmail.com>
 */

//! Counter-timer Frequency register - EL0

pub use register::cpu::RegisterReadOnly;

pub struct Reg;

impl RegisterReadOnly<u32, ()> for Reg {
    sys_coproc_read_raw!(u32, "CNTFRQ_EL0");
}

pub static CNTFRQ_EL0: Reg = Reg {};