opentitanlib/dif/mod.rs
1// Copyright lowRISC contributors (OpenTitan project).
2// Licensed under the Apache License, Version 2.0, see LICENSE for details.
3// SPDX-License-Identifier: Apache-2.0
4
5pub mod aon_timer;
6// The "english breakfast" variant of the chip doesn't have the same
7// set of CSRs as the "earlgrey" chip.
8#[cfg(not(feature = "english_breakfast"))]
9pub mod clkmgr;
10pub mod lc_ctrl;
11pub mod otp_ctrl;
12pub mod rstmgr;
13pub mod uart;
14
15#[cfg(not(feature = "english_breakfast"))]
16pub mod pinmux;