2021-03-29 04:11:32 +02:00
|
|
|
#![no_std]
|
2022-11-21 23:31:31 +01:00
|
|
|
#![cfg_attr(feature = "nightly", feature(async_fn_in_trait, impl_trait_projections))]
|
|
|
|
#![cfg_attr(feature = "nightly", allow(incomplete_features))]
|
2021-03-29 04:11:32 +02:00
|
|
|
|
|
|
|
// This mod MUST go first, so that the others see its macros.
|
|
|
|
pub(crate) mod fmt;
|
|
|
|
|
2022-12-10 12:57:45 +01:00
|
|
|
#[cfg(feature = "critical-section-impl")]
|
2022-12-10 08:26:35 +01:00
|
|
|
mod critical_section_impl;
|
2022-12-10 12:57:45 +01:00
|
|
|
|
2022-09-23 06:38:47 +02:00
|
|
|
mod intrinsics;
|
|
|
|
|
2022-11-15 16:12:07 +01:00
|
|
|
pub mod adc;
|
2023-04-26 22:15:10 +02:00
|
|
|
pub mod clocks;
|
2021-03-29 04:11:32 +02:00
|
|
|
pub mod dma;
|
2023-04-26 22:15:10 +02:00
|
|
|
pub mod flash;
|
2023-04-19 01:57:37 +02:00
|
|
|
mod float;
|
2021-03-29 04:11:32 +02:00
|
|
|
pub mod gpio;
|
2022-08-19 11:51:42 +02:00
|
|
|
pub mod i2c;
|
2022-06-11 05:08:57 +02:00
|
|
|
pub mod interrupt;
|
2023-04-26 22:15:10 +02:00
|
|
|
pub mod multicore;
|
2023-04-21 00:57:28 +02:00
|
|
|
pub mod pwm;
|
2023-04-26 22:15:10 +02:00
|
|
|
mod reset;
|
2022-09-23 06:38:47 +02:00
|
|
|
pub mod rom_data;
|
2022-09-16 06:45:27 +02:00
|
|
|
pub mod rtc;
|
2021-06-25 06:23:46 +02:00
|
|
|
pub mod spi;
|
2022-09-09 12:45:03 +02:00
|
|
|
#[cfg(feature = "time-driver")]
|
2021-07-12 02:45:42 +02:00
|
|
|
pub mod timer;
|
2021-03-29 04:11:32 +02:00
|
|
|
pub mod uart;
|
2022-08-24 23:46:07 +02:00
|
|
|
#[cfg(feature = "nightly")]
|
|
|
|
pub mod usb;
|
2022-12-24 02:51:06 +01:00
|
|
|
pub mod watchdog;
|
2021-06-25 03:38:03 +02:00
|
|
|
|
2023-04-26 22:15:10 +02:00
|
|
|
// PIO
|
|
|
|
// TODO: move `pio_instr_util` and `relocate` to inside `pio`
|
|
|
|
pub mod pio;
|
|
|
|
pub mod pio_instr_util;
|
|
|
|
pub mod relocate;
|
2022-06-11 05:08:57 +02:00
|
|
|
|
2023-04-26 22:15:10 +02:00
|
|
|
// Reexports
|
2022-06-12 22:15:44 +02:00
|
|
|
pub use embassy_cortex_m::executor;
|
2022-08-17 18:49:55 +02:00
|
|
|
pub use embassy_cortex_m::interrupt::_export::interrupt;
|
2022-07-23 14:00:19 +02:00
|
|
|
pub use embassy_hal_common::{into_ref, Peripheral, PeripheralRef};
|
2022-06-11 05:08:57 +02:00
|
|
|
#[cfg(feature = "unstable-pac")]
|
2023-04-16 23:59:26 +02:00
|
|
|
pub use rp_pac as pac;
|
2022-06-11 05:08:57 +02:00
|
|
|
#[cfg(not(feature = "unstable-pac"))]
|
2023-04-16 23:59:26 +02:00
|
|
|
pub(crate) use rp_pac as pac;
|
2022-06-11 05:08:57 +02:00
|
|
|
|
2021-07-29 13:44:51 +02:00
|
|
|
embassy_hal_common::peripherals! {
|
2021-03-29 04:11:32 +02:00
|
|
|
PIN_0,
|
|
|
|
PIN_1,
|
|
|
|
PIN_2,
|
|
|
|
PIN_3,
|
|
|
|
PIN_4,
|
|
|
|
PIN_5,
|
|
|
|
PIN_6,
|
|
|
|
PIN_7,
|
|
|
|
PIN_8,
|
|
|
|
PIN_9,
|
|
|
|
PIN_10,
|
|
|
|
PIN_11,
|
|
|
|
PIN_12,
|
|
|
|
PIN_13,
|
|
|
|
PIN_14,
|
|
|
|
PIN_15,
|
|
|
|
PIN_16,
|
|
|
|
PIN_17,
|
|
|
|
PIN_18,
|
|
|
|
PIN_19,
|
|
|
|
PIN_20,
|
|
|
|
PIN_21,
|
|
|
|
PIN_22,
|
|
|
|
PIN_23,
|
|
|
|
PIN_24,
|
|
|
|
PIN_25,
|
|
|
|
PIN_26,
|
|
|
|
PIN_27,
|
|
|
|
PIN_28,
|
|
|
|
PIN_29,
|
|
|
|
PIN_QSPI_SCLK,
|
|
|
|
PIN_QSPI_SS,
|
|
|
|
PIN_QSPI_SD0,
|
|
|
|
PIN_QSPI_SD1,
|
|
|
|
PIN_QSPI_SD2,
|
|
|
|
PIN_QSPI_SD3,
|
|
|
|
|
|
|
|
UART0,
|
|
|
|
UART1,
|
|
|
|
|
2021-06-25 06:23:46 +02:00
|
|
|
SPI0,
|
|
|
|
SPI1,
|
|
|
|
|
2022-08-19 11:51:42 +02:00
|
|
|
I2C0,
|
|
|
|
I2C1,
|
|
|
|
|
2021-03-29 04:11:32 +02:00
|
|
|
DMA_CH0,
|
|
|
|
DMA_CH1,
|
|
|
|
DMA_CH2,
|
|
|
|
DMA_CH3,
|
|
|
|
DMA_CH4,
|
|
|
|
DMA_CH5,
|
|
|
|
DMA_CH6,
|
|
|
|
DMA_CH7,
|
|
|
|
DMA_CH8,
|
|
|
|
DMA_CH9,
|
|
|
|
DMA_CH10,
|
|
|
|
DMA_CH11,
|
2022-08-24 23:46:07 +02:00
|
|
|
|
2023-04-21 00:57:28 +02:00
|
|
|
PWM_CH0,
|
|
|
|
PWM_CH1,
|
|
|
|
PWM_CH2,
|
|
|
|
PWM_CH3,
|
|
|
|
PWM_CH4,
|
|
|
|
PWM_CH5,
|
|
|
|
PWM_CH6,
|
|
|
|
PWM_CH7,
|
|
|
|
|
2022-08-24 23:46:07 +02:00
|
|
|
USB,
|
2022-09-16 06:45:27 +02:00
|
|
|
|
|
|
|
RTC,
|
2022-10-26 10:01:52 +02:00
|
|
|
|
|
|
|
FLASH,
|
2022-11-15 16:12:07 +01:00
|
|
|
|
|
|
|
ADC,
|
2022-12-13 13:49:51 +01:00
|
|
|
|
|
|
|
CORE1,
|
2022-12-13 13:55:23 +01:00
|
|
|
|
2022-07-27 22:45:46 +02:00
|
|
|
PIO0,
|
|
|
|
PIO1,
|
2022-12-24 02:51:06 +01:00
|
|
|
|
|
|
|
WATCHDOG,
|
2021-03-29 04:11:32 +02:00
|
|
|
}
|
2021-05-12 01:57:01 +02:00
|
|
|
|
|
|
|
#[link_section = ".boot2"]
|
|
|
|
#[used]
|
|
|
|
static BOOT2: [u8; 256] = *include_bytes!("boot2.bin");
|
|
|
|
|
|
|
|
pub mod config {
|
|
|
|
#[non_exhaustive]
|
|
|
|
pub struct Config {}
|
|
|
|
|
|
|
|
impl Default for Config {
|
|
|
|
fn default() -> Self {
|
|
|
|
Self {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-18 14:11:20 +02:00
|
|
|
pub fn init(_config: config::Config) -> Peripherals {
|
2021-05-12 01:57:01 +02:00
|
|
|
// Do this first, so that it panics if user is calling `init` a second time
|
|
|
|
// before doing anything important.
|
|
|
|
let peripherals = Peripherals::take();
|
|
|
|
|
|
|
|
unsafe {
|
2021-06-25 03:38:03 +02:00
|
|
|
clocks::init();
|
2022-09-09 12:45:03 +02:00
|
|
|
#[cfg(feature = "time-driver")]
|
2021-07-12 02:45:42 +02:00
|
|
|
timer::init();
|
2022-08-23 12:28:17 +02:00
|
|
|
dma::init();
|
2023-04-25 18:47:51 +02:00
|
|
|
pio::init();
|
2023-05-02 08:39:05 +02:00
|
|
|
gpio::init();
|
2021-05-12 01:57:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
peripherals
|
|
|
|
}
|
2022-08-24 23:46:07 +02:00
|
|
|
|
|
|
|
/// Extension trait for PAC regs, adding atomic xor/bitset/bitclear writes.
|
|
|
|
trait RegExt<T: Copy> {
|
|
|
|
unsafe fn write_xor<R>(&self, f: impl FnOnce(&mut T) -> R) -> R;
|
|
|
|
unsafe fn write_set<R>(&self, f: impl FnOnce(&mut T) -> R) -> R;
|
|
|
|
unsafe fn write_clear<R>(&self, f: impl FnOnce(&mut T) -> R) -> R;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: Default + Copy, A: pac::common::Write> RegExt<T> for pac::common::Reg<T, A> {
|
|
|
|
unsafe fn write_xor<R>(&self, f: impl FnOnce(&mut T) -> R) -> R {
|
|
|
|
let mut val = Default::default();
|
|
|
|
let res = f(&mut val);
|
|
|
|
let ptr = (self.ptr() as *mut u8).add(0x1000) as *mut T;
|
|
|
|
ptr.write_volatile(val);
|
|
|
|
res
|
|
|
|
}
|
|
|
|
|
|
|
|
unsafe fn write_set<R>(&self, f: impl FnOnce(&mut T) -> R) -> R {
|
|
|
|
let mut val = Default::default();
|
|
|
|
let res = f(&mut val);
|
|
|
|
let ptr = (self.ptr() as *mut u8).add(0x2000) as *mut T;
|
|
|
|
ptr.write_volatile(val);
|
|
|
|
res
|
|
|
|
}
|
|
|
|
|
|
|
|
unsafe fn write_clear<R>(&self, f: impl FnOnce(&mut T) -> R) -> R {
|
|
|
|
let mut val = Default::default();
|
|
|
|
let res = f(&mut val);
|
|
|
|
let ptr = (self.ptr() as *mut u8).add(0x3000) as *mut T;
|
|
|
|
ptr.write_volatile(val);
|
|
|
|
res
|
|
|
|
}
|
|
|
|
}
|