teensy4_bsp/board.rs
1//! Pre-configured board resources.
2//!
3//! The `board` module conveniently exposes drivers and hardware resources.
4//! It configures peripheral clocks and power so that you can simply use the
5//! board's peripherals.
6//!
7//! # Getting started
8//!
9//! Create board resources depending on your board:
10//!
11//! - Teensy 4.0 boards should use [`t40`].
12//! - Teensy 4.1 boards should use [`t41`].
13//! - Teensy MicroMod boards should use [`tmm`].
14//!
15//! The produced resources are nearly the same, except for the pins.
16//!
17//! ```no_run
18//! use teensy4_bsp as bsp;
19//! use bsp::board;
20//!
21//! let resources = board::t40(board::instances());
22//! ```
23//!
24//! Resources take ownership of all peripheral instances `Instances`. Use [`instances()`] to
25//! acquire these once.
26//!
27//! > Note that if you're using RTIC, you can let the RTIC framework allocate
28//! > the instances. The examples included in this package demonstrate this pattern.
29//!
30//! # Resource categories
31//!
32//! The objects in [`Resources`] have two main categories:
33//!
34//! 1. ready-to-go drivers, like `gpt1` and `dma`, which are unlikely to change no matter your
35//! hardware setup.
36//! 2. lower-level resources, like `pins` and `lpuart3`, which you can compose to create drivers
37//! specific for your hardware setup.
38//!
39//! Given the Teensy 4's I/O flexibility, it would be difficult to expose all features as ready-to-go
40//! drivers. Instead, `board` tries to help you initialize drivers for your hardware
41//! setup. For example,
42//!
43//! - use [`led`] to prepare the on-board LED.
44//! - use [`lpspi`] to prepare SPI peripherals.
45//! - use [`lpuart`] to prepare serial peripherals.
46//! - use [`lpi2c`] to prepare I2C peripherals.
47//!
48//! For the complete list of helper functions, study the rest of this API documentation and their
49//! examples. And for the complete driver documentation, see [the `hal` module](crate::hal) and
50//! its submodules.
51//!
52//! These helper functions assume that you're following the `board`'s clock (and power) policy.
53//!
54//! # Clock policy
55//!
56//! Once [`t40`] and [`t41`] return, the clocks of all returned resources are running, and clock gates are
57//! enabled. Essentially, `board` handles CCM configurations so that you can use peripherals with reasonable
58//! settings.
59//!
60//! `board` exposes constants to help you understand those clock frequencies. You should
61//! use these frequencies, along with your own settings, to describe certain types of objects, like
62//! blocking delays.
63//!
64//! The example below shows how a user configures a GPT to meet a given GPT frequency.
65//!
66//! ```no_run
67//! # use teensy4_bsp as bsp;
68//! # use bsp::board;
69//! use bsp::hal::{gpt, timer::Blocking};
70//!
71//! // Given this GPT clock source...
72//! const GPT_CLOCK_SOURCE: gpt::ClockSource = gpt::ClockSource::PeripheralClock;
73//! // ...and this GPT-specific divider...
74//! const GPT_DIVIDER: u32 = 8;
75//! /// ...the GPT frequency is
76//! const GPT_FREQUENCY: u32 = board::PERCLK_FREQUENCY / GPT_DIVIDER;
77//!
78//! let board::Resources{ mut gpt1, .. } = board::t40(board::instances());
79//!
80//! gpt1.set_clock_source(GPT_CLOCK_SOURCE);
81//! gpt1.set_divider(GPT_DIVIDER);
82//!
83//! let mut delay = Blocking::<_, { GPT_FREQUENCY }>::from_gpt(gpt1);
84//! delay.block_ms(500);
85//! ```
86//!
87//! Clock frequency constants, and all APIs depending on those constants, assume that you do not change the clock policy.
88//! But for those who want extra control, `Resources` exposes the clock management peripherals. If you take this
89//! route, you're responsible for ensuring your peripheral's clock configurations, and you should ignore the constants
90//! exposed by this module.
91//!
92//! ## Clock details
93//!
94//! `board` makes a few guarantees about the clock policy. This section describes those guarantees.
95//!
96//! It's considered an API-breaking change to vary the frequencies and derivations of these clocks:
97//!
98//! - The ARM core frequency is documented in [`ARM_FREQUENCY`].
99//! - PERCLK, the root clock for GPT and PIT timers, is documented in [`PERCLK_FREQUENCY`].
100//! - The crystal oscillator is documented in [`XTAL_OSCILLATOR_FREQUENCY`].
101//!
102//! `board` does not touch the following root clock components. You should configure these components yourself.
103//!
104//! - FlexIO1 and FlexIO2 dividers and multiplexers.
105//!
106//! Other clock frequencies are exempt from this policy; they may change value or derivation without
107//! notice. Nevertheless, if these clock frequencies / derivations change, `board` still guarantees that
108//! the functions to set peripheral baud and clock rates will work as expected.
109//!
110//! By the time your code has access to [`Resources`], the clock gates for _all_ peripherals provided by
111//! `Resources` is set to "on." If you're not using specific resources, you may configure their clock
112//! gates to "off." `board` code that borrows or converts peripherals may assume that clock gates are
113//! set to "on."
114//!
115//! If you're not using the BSP to prepare board `Resources`, consider using [`prepare_clocks_and_power`]
116//! to realize the BSP's clock policy.
117//!
118//! # Naming conventions
119//!
120//! This module identifies peripherals by their hardware names. It does not use identifiers
121//! from the Teensy 4 SDK and documentation. For instance, to name the serial peripheral
122//! that uses pins 14 and 15,
123//!
124//! - this module uses the name "LPUART**2**".
125//! - the Teensy 4 SDK / documentation uses the name "UART**3**".
126//!
127//! There's a few reasons for these differences:
128//!
129//! - It would be unintuitive to register a LPUART**2** *interrupt* for the peripheral named
130//! UART**3**. Since the BSP typically does not manage interrupt registration, this naming
131//! decision makes it easier for you to register and implement interrupts.
132//! - It makes clear the peripheral implementation. You know that the serial peripheral
133//! supports low-power (LP) operation, and that it's not a FlexIO peripheral emulating a UART
134//! device.
135
136use crate::{hal, pins, ral};
137use core::sync::atomic::{AtomicBool, Ordering};
138pub use hal::lpspi::Pins as LpspiPins;
139
140/// Use [`instances()`] to safely acquire.
141pub use ral::Instances;
142
143/// Acquire peripheral instances.
144///
145/// These are the resources supplied to [a resource constructor](crate::board#getting-started).
146/// They can also be used to initialize your own drivers.
147///
148/// ```
149/// use teensy4_bsp as bsp;
150/// use bsp::board;
151///
152/// let instances = board::instances();
153/// ```
154///
155/// # Panics
156///
157/// Panics if the instances have already been taken from this function.
158/// If you're using RTIC, know that RTIC may take these instances before
159/// calling your `init` function.
160///
161/// ```should_panic
162/// # use teensy4_bsp as bsp;
163/// # use bsp::board;
164/// let instances = board::instances();
165/// // Sometime later...
166/// board::instances(); // Panics! Instances already taken.
167/// ```
168///
169/// # Safety
170///
171/// This function provides a safe, convenient way to acquire one [`Instances`] object.
172/// It's considered safe for the use-cases that `teensy4-bsp` intends to support;
173/// specifically, you're building one binary that represents the entire firmware
174/// image, and that there's no other software which is acquiring these resources.
175pub fn instances() -> Instances {
176 static TAKEN: AtomicBool = AtomicBool::new(false);
177 assert!(!TAKEN.swap(true, Ordering::SeqCst));
178 unsafe { Instances::instances() }
179}
180
181pub use crate::clock_power::*;
182
183/// Resources for a Teensy 4.0.
184///
185/// Use [`t40`] to construct this. The pins are specific to the Teensy 4.0.
186pub type T40Resources = Resources<pins::t40::Pins>;
187/// Resources for a Teensy 4.1.
188///
189/// Use [`t41`] to construct this. The pins are specific to the Teensy 4.1.
190pub type T41Resources = Resources<pins::t41::Pins>;
191/// Resources for a Teensy MicroMod.
192///
193/// Use [`tmm`] to construct this. The pins are specific to the Teensy MicroMod.
194pub type TMMResources = Resources<pins::tmm::Pins>;
195
196/// Resources constructed by the board.
197///
198/// The concrete `Pins` type depends on how this is constructed.
199/// See the various `*Resources` aliases for more information.
200#[non_exhaustive]
201pub struct Resources<Pins> {
202 /// Periodic interrupt timer channels.
203 pub pit: hal::pit::Channels,
204 /// General purpose timer 1.
205 pub gpt1: hal::gpt::Gpt1,
206 /// General purpose timer 2.
207 pub gpt2: hal::gpt::Gpt2,
208 /// GPIO1 port.
209 pub gpio1: hal::gpio::Port<1>,
210 /// GPIO2 port.
211 pub gpio2: hal::gpio::Port<2>,
212 /// GPIO3 port.
213 pub gpio3: hal::gpio::Port<3>,
214 /// GPIO4 port.
215 pub gpio4: hal::gpio::Port<4>,
216 /// USB1 instances.
217 ///
218 /// Use this to construct higher-level USB drivers, or to initialize the USB logger.
219 pub usb: hal::usbd::Instances<1>,
220 /// DMA channels.
221 pub dma: [Option<hal::dma::channel::Channel>; hal::dma::CHANNEL_COUNT],
222 /// The secure real-time counter.
223 ///
224 /// It's initially disabled, and you may enable it in your firmware.
225 pub srtc: hal::snvs::srtc::Disabled,
226 /// Core registers for the SNVS low-power domain.
227 ///
228 /// Use this with the SRTC and other SNVS LP components.
229 pub snvs_lp_core: hal::snvs::LpCore,
230 /// Clock control module.
231 pub ccm: ral::ccm::CCM,
232 /// Analog clock control module.
233 pub ccm_analog: ral::ccm_analog::CCM_ANALOG,
234 /// DCDC converter
235 pub dcdc: ral::dcdc::DCDC,
236 /// All available pins.
237 pub pins: Pins,
238 /// The register block for [`Lpi2c1`].
239 pub lpi2c1: ral::lpi2c::LPI2C1,
240 /// The register block for [`Lpi2c3`].
241 pub lpi2c3: ral::lpi2c::LPI2C3,
242 /// The register blocks for [`Lpspi1`].
243 pub lpspi1: ral::lpspi::LPSPI1,
244 /// The register blocks for [`Lpspi2`].
245 pub lpspi2: ral::lpspi::LPSPI2,
246 /// The register blocks for [`Lpspi3`].
247 pub lpspi3: ral::lpspi::LPSPI3,
248 /// The register block for [`Lpspi4`].
249 pub lpspi4: ral::lpspi::LPSPI4,
250 /// The register block for [`Lpuart6`].
251 pub lpuart6: ral::lpuart::LPUART6,
252 /// The register block for [`Lpuart4`].
253 pub lpuart4: ral::lpuart::LPUART4,
254 /// The register block for [`Lpuart2`].
255 pub lpuart2: ral::lpuart::LPUART2,
256 /// The register block for [`Lpuart3`].
257 pub lpuart3: ral::lpuart::LPUART3,
258 /// The register block for [`Lpuart8`].
259 pub lpuart8: ral::lpuart::LPUART8,
260 /// The register block for [`Lpuart1`].
261 pub lpuart1: ral::lpuart::LPUART1,
262 /// The register block for [`Lpuart5`].
263 pub lpuart5: ral::lpuart::LPUART5,
264 /// The register block for [`Lpuart7`].
265 pub lpuart7: ral::lpuart::LPUART7,
266 /// FlexPWM1 components.
267 pub flexpwm1: (hal::flexpwm::Pwm<1>, hal::flexpwm::Submodules<1>),
268 /// FlexPWM2 components.
269 pub flexpwm2: (hal::flexpwm::Pwm<2>, hal::flexpwm::Submodules<2>),
270 /// FlexPWM3 components.
271 pub flexpwm3: (hal::flexpwm::Pwm<3>, hal::flexpwm::Submodules<3>),
272 /// FlexPWM4 components.
273 pub flexpwm4: (hal::flexpwm::Pwm<4>, hal::flexpwm::Submodules<4>),
274 /// The FlexIO1 register block.
275 pub flexio1: ral::flexio::FLEXIO1,
276 /// The FlexIO2 register block.
277 pub flexio2: ral::flexio::FLEXIO2,
278 /// The FlexIO3 register block.
279 pub flexio3: ral::flexio::FLEXIO3,
280 /// The register block for ADC1.
281 ///
282 /// ADC drivers constructed by `board` use a pre-configured clock and divisor. To change
283 /// this configuration, call `release()` to acquire the register block, then re-construct
284 /// the driver.
285 pub adc1: hal::adc::Adc<1>,
286 /// The register block for ADC2.
287 pub adc2: hal::adc::Adc<2>,
288 /// True random number generator.
289 pub trng: hal::trng::Trng,
290 /// Temperature monitor of the core.
291 pub tempmon: hal::tempmon::TempMon,
292}
293
294/// The board's dedicated LED.
295pub type Led = hal::gpio::Output<pins::common::P13>;
296
297/// Create the board's LED.
298///
299/// ```no_run
300/// use teensy4_bsp as bsp;
301/// use bsp::board;
302///
303/// let board::Resources { mut gpio2, pins, .. }
304/// = board::t40(board::instances());
305///
306/// let led = board::led(&mut gpio2, pins.p13);
307/// ```
308pub fn led(gpio2: &mut hal::gpio::Port<2>, p13: pins::common::P13) -> Led {
309 gpio2.output(p13)
310}
311
312/// Create a LPI2C peripheral.
313///
314/// Consider using explicit type annotations, as demonstrated below,
315/// to simplify any errors from the compiler.
316///
317/// This helper assumes that the actual LPI2C clock frequency equals [`LPI2C_FREQUENCY`].
318///
319/// ```no_run
320/// use teensy4_bsp as bsp;
321/// use bsp::board;
322///
323/// let board::Resources { lpi2c3, pins, ..}
324/// = board::t40(board::instances());
325///
326/// let mut lpi2c: board::Lpi2c3 = board::lpi2c(
327/// lpi2c3,
328/// pins.p16,
329/// pins.p17,
330/// board::Lpi2cClockSpeed::KHz400,
331/// );
332/// ```
333pub fn lpi2c<Scl, Sda, const N: u8>(
334 instance: ral::lpi2c::Instance<N>,
335 scl: Scl,
336 sda: Sda,
337 clock_speed: Lpi2cClockSpeed,
338) -> hal::lpi2c::Lpi2c<hal::lpi2c::Pins<Scl, Sda>, N>
339where
340 Scl: hal::iomuxc::lpi2c::Pin<
341 Signal = hal::iomuxc::lpi2c::Scl,
342 Module = hal::iomuxc::consts::Const<N>,
343 >,
344 Sda: hal::iomuxc::lpi2c::Pin<
345 Signal = hal::iomuxc::lpi2c::Sda,
346 Module = hal::iomuxc::consts::Const<N>,
347 >,
348{
349 hal::lpi2c::Lpi2c::new(
350 instance,
351 hal::lpi2c::Pins { scl, sda },
352 &lpi2c_baud(clock_speed),
353 )
354}
355
356/// LPI2C1 peripheral.
357///
358/// - Pin 19 is the clock line.
359/// - Pin 18 is the data line.
360///
361/// Use [`lpi2c`] to create this driver.
362pub type Lpi2c1 = hal::lpi2c::Lpi2c<hal::lpi2c::Pins<pins::common::P19, pins::common::P18>, 1>;
363
364/// LPI2C3 peripheral.
365///
366/// - Pin 16 is the clock line.
367/// - Pin 17 is the data line.
368///
369/// Use [`lpi2c`] to create this driver.
370pub type Lpi2c3 = hal::lpi2c::Lpi2c<hal::lpi2c::Pins<pins::common::P16, pins::common::P17>, 3>;
371
372/// LPSPI1 peripheral.
373///
374/// - SDO: GPIO_SD_B0_02 (p43) or GPIO_EMC_28 (p50)
375/// - SDI: GPIO_SD_B0_03 (p42) or GPIO_EMC_29 (p54)
376/// - SCK: GPIO_SD_B0_00 (p45) or GPIO_EMC_27 (p49)
377/// - PCS0: GPIO_SD_B0_01 (p44) or GPIO_EMC_30
378///
379/// Use [`lpspi`] to create this driver.
380pub type Lpspi1<SDO, SDI, SCK, PCS0> = hal::lpspi::Lpspi<LpspiPins<SDO, SDI, SCK, PCS0>, 1>;
381
382/// LPSPI2 peripheral.
383///
384/// - SDO: GPIO_SD_B1_08 or GPIO_EMC_02
385/// - SDI: GPIO_SD_B1_09 or GPIO_EMC_03
386/// - SCK: GPIO_SD_B1_07 or GPIO_EMC_00
387/// - PCS0: GPIO_SD_B1_06 or GPIO_EMC_01
388///
389/// Use [`lpspi`] to create this driver.
390pub type Lpspi2<SDO, SDI, SCK, PCS0> = hal::lpspi::Lpspi<LpspiPins<SDO, SDI, SCK, PCS0>, 2>;
391
392/// LPSPI3 peripheral.
393///
394/// CS and SDI have two options each for which pin to use.
395///
396/// - Pin 26 is data out (SDO).
397/// - Pin 39 or 1 is data in (SDI).
398/// - Pin 27 is clock (SCK).
399/// - Pin 0 or 38 is chip select (CS).
400///
401/// Use [`lpspi`] to create this driver.
402pub type Lpspi3<SDI, CS> =
403 hal::lpspi::Lpspi<LpspiPins<pins::common::P26, SDI, pins::common::P27, CS>, 3>;
404
405/// LPSPI4 peripheral.
406///
407/// - Pin 10 is chip select (CS).
408/// - Pin 11 is data out (SDO).
409/// - Pin 12 is data in (SDI).
410/// - Pin 13 is clock (SCK).
411///
412/// Use [`lpspi`] to create this driver.
413pub type Lpspi4 = hal::lpspi::Lpspi<
414 LpspiPins<pins::common::P11, pins::common::P12, pins::common::P13, pins::common::P10>,
415 4,
416>;
417
418/// Create a LPSPI peripheral.
419///
420/// `baud` is the SCK frequency, in Hz. Consider using explicit type annotations, as demonstrated
421/// below, to simplify any errors from the compiler.
422///
423/// This helper assumes that the LPSPI clock frequency equals [`LPSPI_FREQUENCY`].
424///
425/// ```no_run
426/// use teensy4_bsp as bsp;
427/// use bsp::board;
428///
429/// let board::T40Resources { lpspi4, pins, .. }
430/// = board::t40(board::instances());
431///
432/// let mut lpspi4: board::Lpspi4 = board::lpspi(
433/// lpspi4,
434/// board::LpspiPins {
435/// sdo: pins.p11,
436/// sdi: pins.p12,
437/// sck: pins.p13,
438/// pcs0: pins.p10,
439/// },
440/// 1_000_000,
441/// );
442/// ```
443pub fn lpspi<Sdo, Sdi, Sck, Pcs0, const N: u8>(
444 instance: ral::lpspi::Instance<N>,
445 pins: LpspiPins<Sdo, Sdi, Sck, Pcs0>,
446 baud: u32,
447) -> hal::lpspi::Lpspi<LpspiPins<Sdo, Sdi, Sck, Pcs0>, N>
448where
449 Sdo: hal::iomuxc::lpspi::Pin<
450 Signal = hal::iomuxc::lpspi::Sdo,
451 Module = hal::iomuxc::consts::Const<N>,
452 >,
453 Sdi: hal::iomuxc::lpspi::Pin<
454 Signal = hal::iomuxc::lpspi::Sdi,
455 Module = hal::iomuxc::consts::Const<N>,
456 >,
457 Sck: hal::iomuxc::lpspi::Pin<
458 Signal = hal::iomuxc::lpspi::Sck,
459 Module = hal::iomuxc::consts::Const<N>,
460 >,
461 Pcs0: hal::iomuxc::lpspi::Pin<
462 Signal = hal::iomuxc::lpspi::Pcs0,
463 Module = hal::iomuxc::consts::Const<N>,
464 >,
465{
466 let mut spi = hal::lpspi::Lpspi::new(instance, pins);
467 spi.disabled(|spi| spi.set_clock_hz(LPSPI_FREQUENCY, baud));
468 spi
469}
470
471/// Create a LPUART peripheral.
472///
473/// The specific peripheral you're creating depends on
474///
475/// - the type of `instance`.
476/// - the TX and RX pins.
477/// - the return type, which can be explicitly annotated.
478///
479/// Consider using an explicit type annotation to help catch any
480/// programming errors.
481///
482/// This helper assumes that the UART clock frequency equals [`UART_FREQUENCY`].
483///
484/// ```no_run
485/// use teensy4_bsp as bsp;
486/// use bsp::board;
487///
488/// let board::T40Resources { lpuart6, lpuart2, pins, .. }
489/// = board::t40(board::instances());
490///
491/// // Explicit type:
492/// let mut lpuart6: board::Lpuart6 = board::lpuart(
493/// lpuart6,
494/// pins.p1,
495/// pins.p0,
496/// 115200,
497/// );
498///
499/// // Implicit type:
500/// let mut lpuart2 = board::lpuart(lpuart2, pins.p14, pins.p15, 9600);
501/// ```
502pub fn lpuart<Tx, Rx, const N: u8>(
503 instance: ral::lpuart::Instance<N>,
504 tx: Tx,
505 rx: Rx,
506 baud: u32,
507) -> hal::lpuart::Lpuart<hal::lpuart::Pins<Tx, Rx>, N>
508where
509 Tx: hal::iomuxc::lpuart::Pin<
510 Direction = hal::iomuxc::lpuart::Tx,
511 Module = hal::iomuxc::consts::Const<N>,
512 >,
513 Rx: hal::iomuxc::lpuart::Pin<
514 Direction = hal::iomuxc::lpuart::Rx,
515 Module = hal::iomuxc::consts::Const<N>,
516 >,
517{
518 let mut uart = hal::lpuart::Lpuart::new(instance, hal::lpuart::Pins { tx, rx });
519 uart.disable(|uart| uart.set_baud(&lpuart_baud(baud)));
520 uart
521}
522
523/// LPUART6 peripheral.
524///
525/// - Pin 1 is TX.
526/// - Pin 0 is RX.
527///
528/// Use [`lpuart`] to create this driver.
529pub type Lpuart6 = hal::lpuart::Lpuart<hal::lpuart::Pins<pins::common::P1, pins::common::P0>, 6>;
530
531/// LPUART4 peripheral.
532///
533/// - Pin 8 is TX.
534/// - Pin 7 is RX.
535///
536/// Use [`lpuart`] to create this driver.
537pub type Lpuart4 = hal::lpuart::Lpuart<hal::lpuart::Pins<pins::common::P8, pins::common::P7>, 4>;
538
539/// LPUART2 peripheral.
540///
541/// - Pin 14 is TX.
542/// - Pin 15 is RX.
543///
544/// Use [`lpuart`] to create this driver.
545pub type Lpuart2 = hal::lpuart::Lpuart<hal::lpuart::Pins<pins::common::P14, pins::common::P15>, 2>;
546
547/// LPUART3 peripheral.
548///
549/// - Pin 17 is TX.
550/// - Pin 16 is RX.
551///
552/// Use [`lpuart`] to create this driver.
553pub type Lpuart3 = hal::lpuart::Lpuart<hal::lpuart::Pins<pins::common::P17, pins::common::P16>, 3>;
554
555/// LPUART8 peripheral.
556///
557/// - Pin 20 is TX.
558/// - Pin 21 is RX.
559///
560/// Use [`lpuart`] to create this driver.
561pub type Lpuart8 = hal::lpuart::Lpuart<hal::lpuart::Pins<pins::common::P20, pins::common::P21>, 8>;
562
563/// LPUART1 peripheral.
564///
565/// - Pin 24 is TX.
566/// - Pin 25 is RX.
567///
568/// Use [`lpuart`] to create this driver.
569pub type Lpuart1 = hal::lpuart::Lpuart<hal::lpuart::Pins<pins::common::P24, pins::common::P25>, 1>;
570
571/// LPUART7 peripheral.
572///
573/// - Pin 29 is TX.
574/// - Pin 28 is RX.
575///
576/// Use [`lpuart`] to create this driver.
577pub type Lpuart7 = hal::lpuart::Lpuart<hal::lpuart::Pins<pins::common::P29, pins::common::P28>, 7>;
578
579/// LPUART5 peripheral, available on the Teensy 4.1.
580///
581/// - Pin 35 is TX.
582/// - Pin 34 is RX.
583///
584/// Use [`lpuart`] to create this driver.
585pub type Lpuart5 = hal::lpuart::Lpuart<hal::lpuart::Pins<pins::t41::P35, pins::t41::P34>, 5>;
586
587fn prepare_resources<Pins>(
588 mut instances: Instances,
589 from_pads: impl FnOnce(hal::iomuxc::pads::Pads) -> Pins,
590) -> Resources<Pins> {
591 prepare_clocks_and_power(
592 &mut instances.CCM,
593 &mut instances.CCM_ANALOG,
594 &mut instances.DCDC,
595 );
596 let iomuxc = hal::iomuxc::into_pads(instances.IOMUXC);
597 let pins = from_pads(iomuxc);
598
599 // Stop timers in debug mode.
600 ral::modify_reg!(ral::pit, instances.PIT, MCR, FRZ: FRZ_1);
601 let pit = hal::pit::new(instances.PIT);
602
603 let mut gpt1 = hal::gpt::Gpt::new(instances.GPT1);
604 gpt1.disable();
605
606 let mut gpt2 = hal::gpt::Gpt::new(instances.GPT2);
607 gpt2.disable();
608
609 let hal::snvs::Snvs {
610 low_power:
611 hal::snvs::LowPower {
612 core: snvs_lp_core,
613 srtc,
614 ..
615 },
616 ..
617 } = hal::snvs::new(instances.SNVS);
618
619 let adc1 = hal::adc::Adc::new(
620 instances.ADC1,
621 hal::adc::ClockSelect::ADACK,
622 hal::adc::ClockDivision::Div8,
623 );
624 let adc2 = hal::adc::Adc::new(
625 instances.ADC2,
626 hal::adc::ClockSelect::ADACK,
627 hal::adc::ClockDivision::Div8,
628 );
629
630 let trng = hal::trng::Trng::new(instances.TRNG, Default::default(), Default::default());
631 let tempmon = hal::tempmon::TempMon::with_measure_freq(instances.TEMPMON, 0x1000);
632
633 Resources {
634 pit,
635 gpt1,
636 gpt2,
637 gpio1: hal::gpio::Port::new(instances.GPIO1),
638 gpio2: hal::gpio::Port::new(instances.GPIO2),
639 gpio3: hal::gpio::Port::new(instances.GPIO3),
640 gpio4: hal::gpio::Port::new(instances.GPIO4),
641 usb: hal::usbd::Instances {
642 usb: instances.USB1,
643 usbphy: instances.USBPHY1,
644 usbnc: instances.USBNC1,
645 },
646 dma: hal::dma::channels(instances.DMA, instances.DMAMUX),
647 srtc,
648 snvs_lp_core,
649 ccm: instances.CCM,
650 ccm_analog: instances.CCM_ANALOG,
651 dcdc: instances.DCDC,
652 pins,
653 lpi2c1: instances.LPI2C1,
654 lpi2c3: instances.LPI2C3,
655 lpspi1: instances.LPSPI1,
656 lpspi2: instances.LPSPI2,
657 lpspi3: instances.LPSPI3,
658 lpspi4: instances.LPSPI4,
659 lpuart6: instances.LPUART6,
660 lpuart4: instances.LPUART4,
661 lpuart2: instances.LPUART2,
662 lpuart3: instances.LPUART3,
663 lpuart8: instances.LPUART8,
664 lpuart1: instances.LPUART1,
665 lpuart7: instances.LPUART7,
666 lpuart5: instances.LPUART5,
667 flexio1: instances.FLEXIO1,
668 flexio2: instances.FLEXIO2,
669 flexio3: instances.FLEXIO3,
670 flexpwm1: hal::flexpwm::new(instances.PWM1),
671 flexpwm2: hal::flexpwm::new(instances.PWM2),
672 flexpwm3: hal::flexpwm::new(instances.PWM3),
673 flexpwm4: hal::flexpwm::new(instances.PWM4),
674 adc1,
675 adc2,
676 trng,
677 tempmon,
678 }
679}
680
681/// Create resources for the Teensy 4.0 board.
682///
683/// Note that the peripheral instances acquired by RTIC -- named `device` in the
684/// `init::Context` object -- can be used as the argument to this function.
685pub fn t40(instances: impl Into<Instances>) -> T40Resources {
686 prepare_resources(instances.into(), pins::t40::from_pads)
687}
688
689/// Create resources for the Teensy 4.1 board.
690///
691/// Note that the peripheral instances acquired by RTIC -- named `device` in the
692/// `init::Context` object -- can be used as the argument to this function.
693pub fn t41(instances: impl Into<Instances>) -> T41Resources {
694 prepare_resources(instances.into(), pins::t41::from_pads)
695}
696
697/// Create resources for the Teensy MicroMod board.
698///
699/// Note that the peripheral instances acquired by RTIC -- named `device` in the
700/// `init::Context` object -- can be used as the argument to this function.
701pub fn tmm(instances: impl Into<Instances>) -> TMMResources {
702 prepare_resources(instances.into(), pins::tmm::from_pads)
703}