2022-02-23 17:55:16 +00:00
|
|
|
use std::collections::{HashMap, HashSet};
|
2022-02-26 00:40:43 +00:00
|
|
|
use std::fmt::Write as _;
|
2021-05-01 01:07:17 +00:00
|
|
|
use std::path::PathBuf;
|
2022-06-12 20:15:44 +00:00
|
|
|
use std::{env, fs};
|
|
|
|
|
2023-03-29 09:52:18 +00:00
|
|
|
use proc_macro2::{Ident, TokenStream};
|
2022-06-12 20:15:44 +00:00
|
|
|
use quote::{format_ident, quote};
|
2023-10-12 01:59:47 +00:00
|
|
|
use stm32_metapac::metadata::ir::{BlockItemInner, Enum};
|
|
|
|
use stm32_metapac::metadata::{MemoryRegionKind, PeripheralRccRegister, METADATA};
|
2021-05-01 01:07:17 +00:00
|
|
|
|
|
|
|
fn main() {
|
2023-10-11 23:16:42 +00:00
|
|
|
let target = env::var("TARGET").unwrap();
|
|
|
|
|
|
|
|
if target.starts_with("thumbv6m-") {
|
|
|
|
println!("cargo:rustc-cfg=cortex_m");
|
|
|
|
println!("cargo:rustc-cfg=armv6m");
|
|
|
|
} else if target.starts_with("thumbv7m-") {
|
|
|
|
println!("cargo:rustc-cfg=cortex_m");
|
|
|
|
println!("cargo:rustc-cfg=armv7m");
|
|
|
|
} else if target.starts_with("thumbv7em-") {
|
|
|
|
println!("cargo:rustc-cfg=cortex_m");
|
|
|
|
println!("cargo:rustc-cfg=armv7m");
|
|
|
|
println!("cargo:rustc-cfg=armv7em"); // (not currently used)
|
|
|
|
} else if target.starts_with("thumbv8m.base") {
|
|
|
|
println!("cargo:rustc-cfg=cortex_m");
|
|
|
|
println!("cargo:rustc-cfg=armv8m");
|
|
|
|
println!("cargo:rustc-cfg=armv8m_base");
|
|
|
|
} else if target.starts_with("thumbv8m.main") {
|
|
|
|
println!("cargo:rustc-cfg=cortex_m");
|
|
|
|
println!("cargo:rustc-cfg=armv8m");
|
|
|
|
println!("cargo:rustc-cfg=armv8m_main");
|
|
|
|
}
|
|
|
|
|
|
|
|
if target.ends_with("-eabihf") {
|
|
|
|
println!("cargo:rustc-cfg=has_fpu");
|
|
|
|
}
|
|
|
|
|
2022-01-23 23:24:23 +00:00
|
|
|
let chip_name = match env::vars()
|
|
|
|
.map(|(a, _)| a)
|
|
|
|
.filter(|x| x.starts_with("CARGO_FEATURE_STM32"))
|
|
|
|
.get_one()
|
|
|
|
{
|
|
|
|
Ok(x) => x,
|
|
|
|
Err(GetOneError::None) => panic!("No stm32xx Cargo feature enabled"),
|
|
|
|
Err(GetOneError::Multiple) => panic!("Multiple stm32xx Cargo features enabled"),
|
|
|
|
}
|
|
|
|
.strip_prefix("CARGO_FEATURE_")
|
|
|
|
.unwrap()
|
|
|
|
.to_ascii_lowercase();
|
2021-05-01 01:07:17 +00:00
|
|
|
|
2022-02-08 23:31:21 +00:00
|
|
|
for p in METADATA.peripherals {
|
|
|
|
if let Some(r) = &p.registers {
|
|
|
|
println!("cargo:rustc-cfg={}", r.kind);
|
|
|
|
println!("cargo:rustc-cfg={}_{}", r.kind, r.version);
|
|
|
|
}
|
2021-08-19 21:15:11 +00:00
|
|
|
}
|
|
|
|
|
2022-02-05 02:03:32 +00:00
|
|
|
// ========
|
|
|
|
// Generate singletons
|
|
|
|
|
2021-08-19 21:15:11 +00:00
|
|
|
let mut singletons: Vec<String> = Vec::new();
|
2022-02-08 23:31:21 +00:00
|
|
|
for p in METADATA.peripherals {
|
|
|
|
if let Some(r) = &p.registers {
|
|
|
|
match r.kind {
|
|
|
|
// Generate singletons per pin, not per port
|
|
|
|
"gpio" => {
|
|
|
|
println!("{}", p.name);
|
|
|
|
let port_letter = p.name.strip_prefix("GPIO").unwrap();
|
|
|
|
for pin_num in 0..16 {
|
|
|
|
singletons.push(format!("P{}{}", port_letter, pin_num));
|
|
|
|
}
|
2021-08-19 21:15:11 +00:00
|
|
|
}
|
|
|
|
|
2022-02-08 23:31:21 +00:00
|
|
|
// No singleton for these, the HAL handles them specially.
|
|
|
|
"exti" => {}
|
2021-05-01 01:07:17 +00:00
|
|
|
|
2022-02-08 23:31:21 +00:00
|
|
|
// We *shouldn't* have singletons for these, but the HAL currently requires
|
|
|
|
// singletons, for using with RccPeripheral to enable/disable clocks to them.
|
|
|
|
"rcc" => {
|
2023-10-06 21:36:16 +00:00
|
|
|
for pin in p.pins {
|
|
|
|
if pin.signal.starts_with("MCO") {
|
2023-10-06 23:15:24 +00:00
|
|
|
let name = pin.signal.replace('_', "").to_string();
|
|
|
|
if !singletons.contains(&name) {
|
|
|
|
println!("cargo:rustc-cfg={}", name.to_ascii_lowercase());
|
|
|
|
singletons.push(name);
|
|
|
|
}
|
2023-10-06 21:36:16 +00:00
|
|
|
}
|
2023-04-03 14:41:25 +00:00
|
|
|
}
|
2022-02-08 23:31:21 +00:00
|
|
|
singletons.push(p.name.to_string());
|
2021-11-08 22:43:03 +00:00
|
|
|
}
|
2022-02-08 23:31:21 +00:00
|
|
|
//"dbgmcu" => {}
|
|
|
|
//"syscfg" => {}
|
|
|
|
//"dma" => {}
|
|
|
|
//"bdma" => {}
|
|
|
|
//"dmamux" => {}
|
|
|
|
|
|
|
|
// For other peripherals, one singleton per peri
|
|
|
|
_ => singletons.push(p.name.to_string()),
|
2021-11-08 22:43:03 +00:00
|
|
|
}
|
2021-08-19 21:15:11 +00:00
|
|
|
}
|
2021-05-01 01:07:17 +00:00
|
|
|
}
|
|
|
|
|
2021-08-19 21:15:11 +00:00
|
|
|
// One singleton per EXTI line
|
|
|
|
for pin_num in 0..16 {
|
|
|
|
singletons.push(format!("EXTI{}", pin_num));
|
|
|
|
}
|
|
|
|
|
|
|
|
// One singleton per DMA channel
|
2022-02-08 23:31:21 +00:00
|
|
|
for c in METADATA.dma_channels {
|
|
|
|
singletons.push(c.name.to_string());
|
2021-08-19 21:15:11 +00:00
|
|
|
}
|
|
|
|
|
2023-09-15 08:36:06 +00:00
|
|
|
let mut pin_set = std::collections::HashSet::new();
|
|
|
|
for p in METADATA.peripherals {
|
|
|
|
for pin in p.pins {
|
|
|
|
pin_set.insert(pin.pin);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-27 18:58:00 +00:00
|
|
|
struct SplitFeature {
|
|
|
|
feature_name: String,
|
|
|
|
pin_name_with_c: String,
|
2023-10-01 14:39:10 +00:00
|
|
|
#[cfg(feature = "_split-pins-enabled")]
|
2023-09-27 18:58:00 +00:00
|
|
|
pin_name_without_c: String,
|
|
|
|
}
|
|
|
|
|
2023-09-13 19:16:27 +00:00
|
|
|
// Extra analog switch pins available on most H7 chips
|
2023-09-27 19:02:26 +00:00
|
|
|
let split_features: Vec<SplitFeature> = vec![
|
2023-09-15 08:36:06 +00:00
|
|
|
#[cfg(feature = "split-pa0")]
|
2023-09-27 18:58:00 +00:00
|
|
|
SplitFeature {
|
|
|
|
feature_name: "split-pa0".to_string(),
|
|
|
|
pin_name_with_c: "PA0_C".to_string(),
|
|
|
|
pin_name_without_c: "PA0".to_string(),
|
|
|
|
},
|
2023-09-15 08:36:06 +00:00
|
|
|
#[cfg(feature = "split-pa1")]
|
2023-09-27 18:58:00 +00:00
|
|
|
SplitFeature {
|
|
|
|
feature_name: "split-pa1".to_string(),
|
|
|
|
pin_name_with_c: "PA1_C".to_string(),
|
|
|
|
pin_name_without_c: "PA1".to_string(),
|
|
|
|
},
|
2023-09-15 08:36:06 +00:00
|
|
|
#[cfg(feature = "split-pc2")]
|
2023-09-27 18:58:00 +00:00
|
|
|
SplitFeature {
|
|
|
|
feature_name: "split-pc2".to_string(),
|
|
|
|
pin_name_with_c: "PC2_C".to_string(),
|
|
|
|
pin_name_without_c: "PC2".to_string(),
|
|
|
|
},
|
2023-09-15 08:36:06 +00:00
|
|
|
#[cfg(feature = "split-pc3")]
|
2023-09-27 18:58:00 +00:00
|
|
|
SplitFeature {
|
|
|
|
feature_name: "split-pc3".to_string(),
|
|
|
|
pin_name_with_c: "PC3_C".to_string(),
|
|
|
|
pin_name_without_c: "PC3".to_string(),
|
|
|
|
},
|
2023-09-15 08:36:06 +00:00
|
|
|
];
|
|
|
|
|
2023-09-27 18:58:00 +00:00
|
|
|
for split_feature in &split_features {
|
|
|
|
if pin_set.contains(split_feature.pin_name_with_c.as_str()) {
|
|
|
|
singletons.push(split_feature.pin_name_with_c.clone());
|
2023-09-15 08:36:06 +00:00
|
|
|
} else {
|
|
|
|
panic!(
|
|
|
|
"'{}' feature invalid for this chip! No pin '{}' found.\n
|
|
|
|
Found pins: {:#?}",
|
2023-09-27 18:58:00 +00:00
|
|
|
split_feature.feature_name, split_feature.pin_name_with_c, pin_set
|
2023-09-15 08:36:06 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
2023-09-13 19:16:27 +00:00
|
|
|
|
2023-04-16 22:47:25 +00:00
|
|
|
// ========
|
|
|
|
// Handle time-driver-XXXX features.
|
|
|
|
|
|
|
|
let time_driver = match env::vars()
|
|
|
|
.map(|(a, _)| a)
|
|
|
|
.filter(|x| x.starts_with("CARGO_FEATURE_TIME_DRIVER_"))
|
|
|
|
.get_one()
|
|
|
|
{
|
|
|
|
Ok(x) => Some(
|
|
|
|
x.strip_prefix("CARGO_FEATURE_TIME_DRIVER_")
|
|
|
|
.unwrap()
|
|
|
|
.to_ascii_lowercase(),
|
|
|
|
),
|
|
|
|
Err(GetOneError::None) => None,
|
|
|
|
Err(GetOneError::Multiple) => panic!("Multiple stm32xx Cargo features enabled"),
|
|
|
|
};
|
|
|
|
|
|
|
|
let time_driver_singleton = match time_driver.as_ref().map(|x| x.as_ref()) {
|
|
|
|
None => "",
|
|
|
|
Some("tim2") => "TIM2",
|
|
|
|
Some("tim3") => "TIM3",
|
|
|
|
Some("tim4") => "TIM4",
|
|
|
|
Some("tim5") => "TIM5",
|
|
|
|
Some("tim12") => "TIM12",
|
|
|
|
Some("tim15") => "TIM15",
|
|
|
|
Some("any") => {
|
|
|
|
if singletons.contains(&"TIM2".to_string()) {
|
|
|
|
"TIM2"
|
|
|
|
} else if singletons.contains(&"TIM3".to_string()) {
|
|
|
|
"TIM3"
|
|
|
|
} else if singletons.contains(&"TIM4".to_string()) {
|
|
|
|
"TIM4"
|
|
|
|
} else if singletons.contains(&"TIM5".to_string()) {
|
|
|
|
"TIM5"
|
|
|
|
} else if singletons.contains(&"TIM12".to_string()) {
|
|
|
|
"TIM12"
|
|
|
|
} else if singletons.contains(&"TIM15".to_string()) {
|
|
|
|
"TIM15"
|
|
|
|
} else {
|
|
|
|
panic!("time-driver-any requested, but the chip doesn't have TIM2, TIM3, TIM4, TIM5, TIM12 or TIM15.")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => panic!("unknown time_driver {:?}", time_driver),
|
|
|
|
};
|
|
|
|
|
2023-08-06 20:00:39 +00:00
|
|
|
if !time_driver_singleton.is_empty() {
|
2023-04-16 22:47:25 +00:00
|
|
|
println!("cargo:rustc-cfg=time_driver_{}", time_driver_singleton.to_lowercase());
|
|
|
|
}
|
|
|
|
|
|
|
|
// ========
|
|
|
|
// Write singletons
|
|
|
|
|
2022-02-08 23:31:21 +00:00
|
|
|
let mut g = TokenStream::new();
|
|
|
|
|
|
|
|
let singleton_tokens: Vec<_> = singletons.iter().map(|s| format_ident!("{}", s)).collect();
|
2023-04-16 22:47:25 +00:00
|
|
|
|
2022-02-08 23:31:21 +00:00
|
|
|
g.extend(quote! {
|
2023-07-28 11:23:22 +00:00
|
|
|
embassy_hal_internal::peripherals_definition!(#(#singleton_tokens),*);
|
2023-04-16 22:47:25 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
let singleton_tokens: Vec<_> = singletons
|
|
|
|
.iter()
|
|
|
|
.filter(|s| *s != &time_driver_singleton.to_string())
|
|
|
|
.map(|s| format_ident!("{}", s))
|
|
|
|
.collect();
|
|
|
|
|
|
|
|
g.extend(quote! {
|
2023-07-28 11:23:22 +00:00
|
|
|
embassy_hal_internal::peripherals_struct!(#(#singleton_tokens),*);
|
2022-02-08 23:31:21 +00:00
|
|
|
});
|
2021-08-19 21:15:11 +00:00
|
|
|
|
2022-02-08 23:45:52 +00:00
|
|
|
// ========
|
|
|
|
// Generate interrupt declarations
|
|
|
|
|
|
|
|
let mut irqs = Vec::new();
|
|
|
|
for irq in METADATA.interrupts {
|
|
|
|
irqs.push(format_ident!("{}", irq.name));
|
2021-08-19 21:15:11 +00:00
|
|
|
}
|
|
|
|
|
2022-02-08 23:45:52 +00:00
|
|
|
g.extend(quote! {
|
2023-07-28 11:23:22 +00:00
|
|
|
embassy_hal_internal::interrupt_mod!(
|
2022-02-08 23:45:52 +00:00
|
|
|
#(
|
2023-06-08 14:08:40 +00:00
|
|
|
#irqs,
|
2022-02-08 23:45:52 +00:00
|
|
|
)*
|
2023-06-08 14:08:40 +00:00
|
|
|
);
|
2022-02-08 23:45:52 +00:00
|
|
|
});
|
2021-08-19 21:15:11 +00:00
|
|
|
|
2023-03-25 04:57:15 +00:00
|
|
|
// ========
|
|
|
|
// Generate FLASH regions
|
|
|
|
let mut flash_regions = TokenStream::new();
|
2023-03-29 09:52:18 +00:00
|
|
|
let flash_memory_regions: Vec<_> = METADATA
|
2023-03-25 04:57:15 +00:00
|
|
|
.memory
|
|
|
|
.iter()
|
2023-03-29 09:52:18 +00:00
|
|
|
.filter(|x| x.kind == MemoryRegionKind::Flash && x.settings.is_some())
|
|
|
|
.collect();
|
|
|
|
for region in flash_memory_regions.iter() {
|
2023-03-30 02:24:41 +00:00
|
|
|
let region_name = format_ident!("{}", get_flash_region_name(region.name));
|
2023-03-30 07:07:23 +00:00
|
|
|
let bank_variant = format_ident!(
|
2023-03-30 06:32:36 +00:00
|
|
|
"{}",
|
|
|
|
if region.name.starts_with("BANK_1") {
|
|
|
|
"Bank1"
|
|
|
|
} else if region.name.starts_with("BANK_2") {
|
|
|
|
"Bank2"
|
|
|
|
} else if region.name == "OTP" {
|
|
|
|
"Otp"
|
|
|
|
} else {
|
2023-03-30 07:07:23 +00:00
|
|
|
continue;
|
2023-03-30 06:32:36 +00:00
|
|
|
}
|
|
|
|
);
|
2023-03-30 02:24:41 +00:00
|
|
|
let base = region.address;
|
|
|
|
let size = region.size;
|
2023-03-25 04:57:15 +00:00
|
|
|
let settings = region.settings.as_ref().unwrap();
|
2023-03-30 02:24:41 +00:00
|
|
|
let erase_size = settings.erase_size;
|
|
|
|
let write_size = settings.write_size;
|
2023-03-25 04:57:15 +00:00
|
|
|
let erase_value = settings.erase_value;
|
|
|
|
|
|
|
|
flash_regions.extend(quote! {
|
2023-03-30 02:24:41 +00:00
|
|
|
pub const #region_name: crate::flash::FlashRegion = crate::flash::FlashRegion {
|
2023-03-30 07:07:23 +00:00
|
|
|
bank: crate::flash::FlashBank::#bank_variant,
|
2023-03-29 09:52:18 +00:00
|
|
|
base: #base,
|
|
|
|
size: #size,
|
|
|
|
erase_size: #erase_size,
|
|
|
|
write_size: #write_size,
|
|
|
|
erase_value: #erase_value,
|
2023-05-23 20:49:27 +00:00
|
|
|
_ensure_internal: (),
|
2023-03-29 09:52:18 +00:00
|
|
|
};
|
2023-03-30 02:24:41 +00:00
|
|
|
});
|
2023-03-29 09:52:18 +00:00
|
|
|
|
2023-03-30 02:24:41 +00:00
|
|
|
let region_type = format_ident!("{}", get_flash_region_type_name(region.name));
|
|
|
|
flash_regions.extend(quote! {
|
2023-04-05 08:27:13 +00:00
|
|
|
#[cfg(flash)]
|
2023-07-28 11:23:22 +00:00
|
|
|
pub struct #region_type<'d, MODE = crate::flash::Async>(pub &'static crate::flash::FlashRegion, pub(crate) embassy_hal_internal::PeripheralRef<'d, crate::peripherals::FLASH>, pub(crate) core::marker::PhantomData<MODE>);
|
2023-03-25 04:57:15 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-03-30 02:24:41 +00:00
|
|
|
let (fields, (inits, region_names)): (Vec<TokenStream>, (Vec<TokenStream>, Vec<Ident>)) = flash_memory_regions
|
2023-03-29 09:52:18 +00:00
|
|
|
.iter()
|
2023-03-25 04:57:15 +00:00
|
|
|
.map(|f| {
|
2023-03-25 12:39:10 +00:00
|
|
|
let region_name = get_flash_region_name(f.name);
|
|
|
|
let field_name = format_ident!("{}", region_name.to_lowercase());
|
2023-03-30 02:24:41 +00:00
|
|
|
let field_type = format_ident!("{}", get_flash_region_type_name(f.name));
|
2023-03-25 04:57:15 +00:00
|
|
|
let field = quote! {
|
2023-05-24 15:24:28 +00:00
|
|
|
pub #field_name: #field_type<'d, MODE>
|
2023-03-25 04:57:15 +00:00
|
|
|
};
|
2023-03-30 02:24:41 +00:00
|
|
|
let region_name = format_ident!("{}", region_name);
|
2023-03-25 04:57:15 +00:00
|
|
|
let init = quote! {
|
2023-05-24 15:24:28 +00:00
|
|
|
#field_name: #field_type(&#region_name, unsafe { p.clone_unchecked()}, core::marker::PhantomData)
|
2023-03-25 04:57:15 +00:00
|
|
|
};
|
|
|
|
|
2023-03-30 02:24:41 +00:00
|
|
|
(field, (init, region_name))
|
2023-03-25 04:57:15 +00:00
|
|
|
})
|
|
|
|
.unzip();
|
|
|
|
|
2023-03-29 09:52:18 +00:00
|
|
|
let regions_len = flash_memory_regions.len();
|
2023-03-25 04:57:15 +00:00
|
|
|
flash_regions.extend(quote! {
|
2023-03-29 11:52:52 +00:00
|
|
|
#[cfg(flash)]
|
2023-05-24 21:51:48 +00:00
|
|
|
pub struct FlashLayout<'d, MODE = crate::flash::Async> {
|
2023-05-24 15:24:28 +00:00
|
|
|
#(#fields),*,
|
|
|
|
_mode: core::marker::PhantomData<MODE>,
|
2023-03-25 04:57:15 +00:00
|
|
|
}
|
|
|
|
|
2023-03-29 11:52:52 +00:00
|
|
|
#[cfg(flash)]
|
2023-05-24 15:24:28 +00:00
|
|
|
impl<'d, MODE> FlashLayout<'d, MODE> {
|
2023-07-28 11:23:22 +00:00
|
|
|
pub(crate) fn new(p: embassy_hal_internal::PeripheralRef<'d, crate::peripherals::FLASH>) -> Self {
|
2023-03-25 04:57:15 +00:00
|
|
|
Self {
|
2023-05-24 15:24:28 +00:00
|
|
|
#(#inits),*,
|
|
|
|
_mode: core::marker::PhantomData,
|
2023-03-25 04:57:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-03-29 09:52:18 +00:00
|
|
|
|
2023-03-30 02:24:41 +00:00
|
|
|
pub const FLASH_REGIONS: [&crate::flash::FlashRegion; #regions_len] = [
|
|
|
|
#(&#region_names),*
|
2023-03-29 09:52:18 +00:00
|
|
|
];
|
2023-03-25 04:57:15 +00:00
|
|
|
});
|
|
|
|
|
2023-04-18 13:49:33 +00:00
|
|
|
let max_erase_size = flash_memory_regions
|
|
|
|
.iter()
|
|
|
|
.map(|region| region.settings.as_ref().unwrap().erase_size)
|
|
|
|
.max()
|
|
|
|
.unwrap();
|
|
|
|
|
2023-04-18 13:54:13 +00:00
|
|
|
g.extend(quote! { pub const MAX_ERASE_SIZE: usize = #max_erase_size as usize; });
|
2023-04-18 13:49:33 +00:00
|
|
|
|
2023-03-25 04:57:15 +00:00
|
|
|
g.extend(quote! { pub mod flash_regions { #flash_regions } });
|
|
|
|
|
2022-02-05 02:03:32 +00:00
|
|
|
// ========
|
|
|
|
// Generate DMA IRQs.
|
|
|
|
|
2023-04-16 22:04:54 +00:00
|
|
|
let mut dma_irqs: HashMap<&str, Vec<(&str, &str, &str)>> = HashMap::new();
|
2022-02-05 02:03:32 +00:00
|
|
|
|
2022-02-08 23:31:21 +00:00
|
|
|
for p in METADATA.peripherals {
|
|
|
|
if let Some(r) = &p.registers {
|
2022-04-26 21:57:26 +00:00
|
|
|
if r.kind == "dma" || r.kind == "bdma" || r.kind == "gpdma" {
|
2022-03-08 22:46:42 +00:00
|
|
|
if p.name == "BDMA1" {
|
|
|
|
// BDMA1 in H7 doesn't use DMAMUX, which breaks
|
|
|
|
continue;
|
|
|
|
}
|
2022-03-08 19:52:33 +00:00
|
|
|
for irq in p.interrupts {
|
2023-04-16 22:04:54 +00:00
|
|
|
dma_irqs
|
|
|
|
.entry(irq.interrupt)
|
|
|
|
.or_default()
|
|
|
|
.push((r.kind, p.name, irq.signal));
|
2022-02-08 23:31:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-02-05 02:03:32 +00:00
|
|
|
}
|
|
|
|
|
2022-03-08 19:52:33 +00:00
|
|
|
for (irq, channels) in dma_irqs {
|
|
|
|
let irq = format_ident!("{}", irq);
|
2022-02-08 23:31:21 +00:00
|
|
|
|
2023-04-16 22:04:54 +00:00
|
|
|
let xdma = format_ident!("{}", channels[0].0);
|
|
|
|
let channels = channels.iter().map(|(_, dma, ch)| format_ident!("{}_{}", dma, ch));
|
2022-03-08 19:52:33 +00:00
|
|
|
|
|
|
|
g.extend(quote! {
|
2023-06-08 16:00:19 +00:00
|
|
|
#[cfg(feature = "rt")]
|
2022-02-08 23:31:21 +00:00
|
|
|
#[crate::interrupt]
|
2022-03-08 19:52:33 +00:00
|
|
|
unsafe fn #irq () {
|
|
|
|
#(
|
2023-04-16 22:04:54 +00:00
|
|
|
<crate::peripherals::#channels as crate::dma::#xdma::sealed::Channel>::on_irq();
|
2022-03-08 19:52:33 +00:00
|
|
|
)*
|
2022-02-08 23:31:21 +00:00
|
|
|
}
|
2022-03-08 19:52:33 +00:00
|
|
|
});
|
|
|
|
}
|
2022-02-08 23:31:21 +00:00
|
|
|
|
2023-10-12 01:59:47 +00:00
|
|
|
// ========
|
|
|
|
// Generate rcc fieldset and enum maps
|
|
|
|
let rcc_enum_map: HashMap<&str, HashMap<&str, &Enum>> = {
|
|
|
|
let rcc_registers = METADATA
|
|
|
|
.peripherals
|
|
|
|
.iter()
|
|
|
|
.filter_map(|p| p.registers.as_ref())
|
|
|
|
.find(|r| r.kind == "rcc")
|
|
|
|
.unwrap()
|
|
|
|
.ir;
|
|
|
|
|
|
|
|
let rcc_blocks = rcc_registers.blocks.iter().find(|b| b.name == "Rcc").unwrap().items;
|
|
|
|
|
|
|
|
let rcc_block_item_map: HashMap<&str, &str> = rcc_blocks
|
|
|
|
.iter()
|
|
|
|
.filter_map(|b| match &b.inner {
|
|
|
|
BlockItemInner::Register(register) => register.fieldset.map(|f| (f, b.name)),
|
|
|
|
_ => None,
|
|
|
|
})
|
|
|
|
.collect();
|
|
|
|
|
|
|
|
let rcc_enum_map: HashMap<&str, &Enum> = rcc_registers.enums.iter().map(|e| (e.name, e)).collect();
|
|
|
|
|
|
|
|
rcc_registers
|
|
|
|
.fieldsets
|
|
|
|
.iter()
|
|
|
|
.filter_map(|f| {
|
|
|
|
rcc_block_item_map.get(f.name).map(|b| {
|
|
|
|
(
|
|
|
|
*b,
|
|
|
|
f.fields
|
|
|
|
.iter()
|
|
|
|
.filter_map(|f| {
|
|
|
|
let enumm = f.enumm?;
|
|
|
|
let enumm = rcc_enum_map.get(enumm)?;
|
|
|
|
|
|
|
|
Some((f.name, *enumm))
|
|
|
|
})
|
|
|
|
.collect(),
|
|
|
|
)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
.collect()
|
|
|
|
};
|
|
|
|
|
2022-02-08 23:58:17 +00:00
|
|
|
// ========
|
|
|
|
// Generate RccPeripheral impls
|
|
|
|
|
2023-09-05 22:45:52 +00:00
|
|
|
let refcounted_peripherals = HashSet::from(["usart", "adc"]);
|
2023-09-04 18:47:02 +00:00
|
|
|
let mut refcount_statics = HashSet::new();
|
|
|
|
|
2022-02-08 23:58:17 +00:00
|
|
|
for p in METADATA.peripherals {
|
2023-09-05 22:45:52 +00:00
|
|
|
if !singletons.contains(&p.name.to_string()) {
|
2022-02-08 23:58:17 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(rcc) = &p.rcc {
|
|
|
|
let en = rcc.enable.as_ref().unwrap();
|
|
|
|
|
|
|
|
let rst = match &rcc.reset {
|
|
|
|
Some(rst) => {
|
|
|
|
let rst_reg = format_ident!("{}", rst.register.to_ascii_lowercase());
|
|
|
|
let set_rst_field = format_ident!("set_{}", rst.field.to_ascii_lowercase());
|
|
|
|
quote! {
|
2023-06-19 01:07:26 +00:00
|
|
|
critical_section::with(|_| {
|
2022-02-08 23:58:17 +00:00
|
|
|
crate::pac::RCC.#rst_reg().modify(|w| w.#set_rst_field(true));
|
|
|
|
crate::pac::RCC.#rst_reg().modify(|w| w.#set_rst_field(false));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
None => TokenStream::new(),
|
|
|
|
};
|
|
|
|
|
2022-03-27 15:45:10 +00:00
|
|
|
let after_enable = if chip_name.starts_with("stm32f2") {
|
|
|
|
// Errata: ES0005 - 2.1.11 Delay after an RCC peripheral clock enabling
|
|
|
|
quote! {
|
|
|
|
cortex_m::asm::dsb();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
TokenStream::new()
|
|
|
|
};
|
|
|
|
|
2023-09-05 21:46:57 +00:00
|
|
|
let ptype = if let Some(reg) = &p.registers { reg.kind } else { "" };
|
2022-02-08 23:58:17 +00:00
|
|
|
let pname = format_ident!("{}", p.name);
|
|
|
|
let clk = format_ident!("{}", rcc.clock.to_ascii_lowercase());
|
|
|
|
let en_reg = format_ident!("{}", en.register.to_ascii_lowercase());
|
|
|
|
let set_en_field = format_ident!("set_{}", en.field.to_ascii_lowercase());
|
|
|
|
|
2023-09-05 21:46:57 +00:00
|
|
|
let (before_enable, before_disable) = if refcounted_peripherals.contains(ptype) {
|
2023-09-04 18:47:02 +00:00
|
|
|
let refcount_static =
|
|
|
|
format_ident!("{}_{}", en.register.to_ascii_uppercase(), en.field.to_ascii_uppercase());
|
|
|
|
|
|
|
|
refcount_statics.insert(refcount_static.clone());
|
|
|
|
|
|
|
|
(
|
|
|
|
quote! {
|
2023-09-04 20:47:33 +00:00
|
|
|
unsafe { refcount_statics::#refcount_static += 1 };
|
|
|
|
if unsafe { refcount_statics::#refcount_static } > 1 {
|
2023-09-04 18:47:02 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
quote! {
|
2023-09-04 20:47:33 +00:00
|
|
|
unsafe { refcount_statics::#refcount_static -= 1 };
|
|
|
|
if unsafe { refcount_statics::#refcount_static } > 0 {
|
2023-09-04 18:47:02 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
)
|
|
|
|
} else {
|
|
|
|
(TokenStream::new(), TokenStream::new())
|
|
|
|
};
|
|
|
|
|
2023-10-12 01:59:47 +00:00
|
|
|
let mux_for = |mux: Option<&'static PeripheralRccRegister>| {
|
|
|
|
// temporary hack to restrict the scope of the implementation to h5
|
|
|
|
if !&chip_name.starts_with("stm32h5") {
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
let mux = mux?;
|
|
|
|
let fieldset = rcc_enum_map.get(mux.register)?;
|
|
|
|
let enumm = fieldset.get(mux.field)?;
|
|
|
|
|
|
|
|
Some((mux, *enumm))
|
|
|
|
};
|
|
|
|
|
|
|
|
let clock_frequency = match mux_for(rcc.mux.as_ref()) {
|
|
|
|
Some((mux, rcc_enumm)) => {
|
|
|
|
let fieldset_name = format_ident!("{}", mux.register);
|
|
|
|
let field_name = format_ident!("{}", mux.field);
|
|
|
|
let enum_name = format_ident!("{}", rcc_enumm.name);
|
|
|
|
|
|
|
|
let match_arms: TokenStream = rcc_enumm
|
|
|
|
.variants
|
|
|
|
.iter()
|
|
|
|
.filter(|v| v.name != "DISABLE")
|
|
|
|
.map(|v| {
|
|
|
|
let variant_name = format_ident!("{}", v.name);
|
|
|
|
|
|
|
|
// temporary hack to restrict the scope of the implementation until clock names can be stabilized
|
|
|
|
let clock_name = format_ident!("mux_{}", v.name.to_ascii_lowercase());
|
|
|
|
|
|
|
|
quote! {
|
|
|
|
#enum_name::#variant_name => unsafe { crate::rcc::get_freqs().#clock_name.unwrap() },
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.collect();
|
|
|
|
|
|
|
|
quote! {
|
|
|
|
use crate::pac::rcc::vals::#enum_name;
|
|
|
|
|
|
|
|
#[allow(unreachable_patterns)]
|
|
|
|
match crate::pac::RCC.#fieldset_name().read().#field_name() {
|
|
|
|
#match_arms
|
|
|
|
|
|
|
|
_ => unreachable!(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
None => quote! {
|
|
|
|
unsafe { crate::rcc::get_freqs().#clk }
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2022-02-08 23:58:17 +00:00
|
|
|
g.extend(quote! {
|
|
|
|
impl crate::rcc::sealed::RccPeripheral for peripherals::#pname {
|
|
|
|
fn frequency() -> crate::time::Hertz {
|
2023-10-12 01:59:47 +00:00
|
|
|
#clock_frequency
|
2022-02-08 23:58:17 +00:00
|
|
|
}
|
2023-10-11 19:38:41 +00:00
|
|
|
fn enable_and_reset() {
|
2023-10-11 23:16:42 +00:00
|
|
|
critical_section::with(|_cs| {
|
2023-09-04 18:47:02 +00:00
|
|
|
#before_enable
|
2023-08-24 01:18:34 +00:00
|
|
|
#[cfg(feature = "low-power")]
|
2023-10-11 23:16:42 +00:00
|
|
|
crate::rcc::clock_refcount_add(_cs);
|
2022-03-27 15:45:10 +00:00
|
|
|
crate::pac::RCC.#en_reg().modify(|w| w.#set_en_field(true));
|
|
|
|
#after_enable
|
2023-10-11 19:38:41 +00:00
|
|
|
#rst
|
2022-02-08 23:58:17 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
fn disable() {
|
2023-10-11 23:16:42 +00:00
|
|
|
critical_section::with(|_cs| {
|
2023-09-04 18:47:02 +00:00
|
|
|
#before_disable
|
2022-02-08 23:58:17 +00:00
|
|
|
crate::pac::RCC.#en_reg().modify(|w| w.#set_en_field(false));
|
2023-08-24 01:18:34 +00:00
|
|
|
#[cfg(feature = "low-power")]
|
2023-10-11 23:16:42 +00:00
|
|
|
crate::rcc::clock_refcount_sub(_cs);
|
2022-02-08 23:58:17 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl crate::rcc::RccPeripheral for peripherals::#pname {}
|
|
|
|
});
|
|
|
|
}
|
2022-02-05 02:03:32 +00:00
|
|
|
}
|
|
|
|
|
2023-10-12 01:59:47 +00:00
|
|
|
let refcount_mod: TokenStream = refcount_statics
|
|
|
|
.iter()
|
|
|
|
.map(|refcount_static| {
|
|
|
|
quote! {
|
|
|
|
pub(crate) static mut #refcount_static: u8 = 0;
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.collect();
|
2023-09-04 18:47:02 +00:00
|
|
|
|
|
|
|
g.extend(quote! {
|
|
|
|
mod refcount_statics {
|
|
|
|
#refcount_mod
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2022-02-08 23:58:17 +00:00
|
|
|
// ========
|
|
|
|
// Generate fns to enable GPIO, DMA in RCC
|
|
|
|
|
2022-04-26 21:57:26 +00:00
|
|
|
for kind in ["dma", "bdma", "dmamux", "gpdma", "gpio"] {
|
2022-02-08 23:58:17 +00:00
|
|
|
let mut gg = TokenStream::new();
|
|
|
|
|
|
|
|
for p in METADATA.peripherals {
|
|
|
|
if p.registers.is_some() && p.registers.as_ref().unwrap().kind == kind {
|
|
|
|
if let Some(rcc) = &p.rcc {
|
|
|
|
let en = rcc.enable.as_ref().unwrap();
|
|
|
|
let en_reg = format_ident!("{}", en.register.to_ascii_lowercase());
|
|
|
|
let set_en_field = format_ident!("set_{}", en.field.to_ascii_lowercase());
|
|
|
|
|
|
|
|
gg.extend(quote! {
|
|
|
|
crate::pac::RCC.#en_reg().modify(|w| w.#set_en_field(true));
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let fname = format_ident!("init_{}", kind);
|
|
|
|
g.extend(quote! {
|
|
|
|
pub unsafe fn #fname(){
|
|
|
|
#gg
|
|
|
|
}
|
|
|
|
})
|
2022-02-05 02:03:32 +00:00
|
|
|
}
|
|
|
|
|
2022-02-23 18:43:32 +00:00
|
|
|
// ========
|
|
|
|
// Generate pin_trait_impl!
|
|
|
|
|
|
|
|
#[rustfmt::skip]
|
|
|
|
let signals: HashMap<_, _> = [
|
2022-05-04 18:48:37 +00:00
|
|
|
// (kind, signal) => trait
|
|
|
|
(("usart", "TX"), quote!(crate::usart::TxPin)),
|
|
|
|
(("usart", "RX"), quote!(crate::usart::RxPin)),
|
|
|
|
(("usart", "CTS"), quote!(crate::usart::CtsPin)),
|
|
|
|
(("usart", "RTS"), quote!(crate::usart::RtsPin)),
|
|
|
|
(("usart", "CK"), quote!(crate::usart::CkPin)),
|
2022-12-09 13:26:09 +00:00
|
|
|
(("usart", "DE"), quote!(crate::usart::DePin)),
|
2022-06-09 13:17:03 +00:00
|
|
|
(("lpuart", "TX"), quote!(crate::usart::TxPin)),
|
|
|
|
(("lpuart", "RX"), quote!(crate::usart::RxPin)),
|
|
|
|
(("lpuart", "CTS"), quote!(crate::usart::CtsPin)),
|
|
|
|
(("lpuart", "RTS"), quote!(crate::usart::RtsPin)),
|
|
|
|
(("lpuart", "CK"), quote!(crate::usart::CkPin)),
|
2022-12-09 13:26:09 +00:00
|
|
|
(("lpuart", "DE"), quote!(crate::usart::DePin)),
|
2023-09-30 01:57:59 +00:00
|
|
|
(("sai", "SCK_A"), quote!(crate::sai::SckAPin)),
|
|
|
|
(("sai", "SCK_B"), quote!(crate::sai::SckBPin)),
|
|
|
|
(("sai", "FS_A"), quote!(crate::sai::FsAPin)),
|
|
|
|
(("sai", "FS_B"), quote!(crate::sai::FsBPin)),
|
|
|
|
(("sai", "SD_A"), quote!(crate::sai::SdAPin)),
|
|
|
|
(("sai", "SD_B"), quote!(crate::sai::SdBPin)),
|
|
|
|
(("sai", "MCLK_A"), quote!(crate::sai::MclkAPin)),
|
|
|
|
(("sai", "MCLK_B"), quote!(crate::sai::MclkBPin)),
|
|
|
|
(("sai", "WS"), quote!(crate::sai::WsPin)),
|
2022-05-04 18:48:37 +00:00
|
|
|
(("spi", "SCK"), quote!(crate::spi::SckPin)),
|
|
|
|
(("spi", "MOSI"), quote!(crate::spi::MosiPin)),
|
|
|
|
(("spi", "MISO"), quote!(crate::spi::MisoPin)),
|
2023-05-03 23:17:57 +00:00
|
|
|
(("spi", "NSS"), quote!(crate::spi::CsPin)),
|
|
|
|
(("spi", "I2S_MCK"), quote!(crate::spi::MckPin)),
|
|
|
|
(("spi", "I2S_CK"), quote!(crate::spi::CkPin)),
|
|
|
|
(("spi", "I2S_WS"), quote!(crate::spi::WsPin)),
|
2022-05-04 18:48:37 +00:00
|
|
|
(("i2c", "SDA"), quote!(crate::i2c::SdaPin)),
|
|
|
|
(("i2c", "SCL"), quote!(crate::i2c::SclPin)),
|
|
|
|
(("rcc", "MCO_1"), quote!(crate::rcc::McoPin)),
|
|
|
|
(("rcc", "MCO_2"), quote!(crate::rcc::McoPin)),
|
2023-04-03 14:41:25 +00:00
|
|
|
(("rcc", "MCO"), quote!(crate::rcc::McoPin)),
|
2022-05-04 18:48:37 +00:00
|
|
|
(("dcmi", "D0"), quote!(crate::dcmi::D0Pin)),
|
|
|
|
(("dcmi", "D1"), quote!(crate::dcmi::D1Pin)),
|
|
|
|
(("dcmi", "D2"), quote!(crate::dcmi::D2Pin)),
|
|
|
|
(("dcmi", "D3"), quote!(crate::dcmi::D3Pin)),
|
|
|
|
(("dcmi", "D4"), quote!(crate::dcmi::D4Pin)),
|
|
|
|
(("dcmi", "D5"), quote!(crate::dcmi::D5Pin)),
|
|
|
|
(("dcmi", "D6"), quote!(crate::dcmi::D6Pin)),
|
|
|
|
(("dcmi", "D7"), quote!(crate::dcmi::D7Pin)),
|
|
|
|
(("dcmi", "D8"), quote!(crate::dcmi::D8Pin)),
|
|
|
|
(("dcmi", "D9"), quote!(crate::dcmi::D9Pin)),
|
|
|
|
(("dcmi", "D10"), quote!(crate::dcmi::D10Pin)),
|
|
|
|
(("dcmi", "D11"), quote!(crate::dcmi::D11Pin)),
|
|
|
|
(("dcmi", "D12"), quote!(crate::dcmi::D12Pin)),
|
|
|
|
(("dcmi", "D13"), quote!(crate::dcmi::D13Pin)),
|
|
|
|
(("dcmi", "HSYNC"), quote!(crate::dcmi::HSyncPin)),
|
|
|
|
(("dcmi", "VSYNC"), quote!(crate::dcmi::VSyncPin)),
|
|
|
|
(("dcmi", "PIXCLK"), quote!(crate::dcmi::PixClkPin)),
|
2022-05-29 22:36:30 +00:00
|
|
|
(("usb", "DP"), quote!(crate::usb::DpPin)),
|
|
|
|
(("usb", "DM"), quote!(crate::usb::DmPin)),
|
2023-01-11 16:51:30 +00:00
|
|
|
(("otg", "DP"), quote!(crate::usb_otg::DpPin)),
|
|
|
|
(("otg", "DM"), quote!(crate::usb_otg::DmPin)),
|
|
|
|
(("otg", "ULPI_CK"), quote!(crate::usb_otg::UlpiClkPin)),
|
|
|
|
(("otg", "ULPI_DIR"), quote!(crate::usb_otg::UlpiDirPin)),
|
|
|
|
(("otg", "ULPI_NXT"), quote!(crate::usb_otg::UlpiNxtPin)),
|
|
|
|
(("otg", "ULPI_STP"), quote!(crate::usb_otg::UlpiStpPin)),
|
|
|
|
(("otg", "ULPI_D0"), quote!(crate::usb_otg::UlpiD0Pin)),
|
|
|
|
(("otg", "ULPI_D1"), quote!(crate::usb_otg::UlpiD1Pin)),
|
|
|
|
(("otg", "ULPI_D2"), quote!(crate::usb_otg::UlpiD2Pin)),
|
|
|
|
(("otg", "ULPI_D3"), quote!(crate::usb_otg::UlpiD3Pin)),
|
|
|
|
(("otg", "ULPI_D4"), quote!(crate::usb_otg::UlpiD4Pin)),
|
|
|
|
(("otg", "ULPI_D5"), quote!(crate::usb_otg::UlpiD5Pin)),
|
|
|
|
(("otg", "ULPI_D6"), quote!(crate::usb_otg::UlpiD6Pin)),
|
|
|
|
(("otg", "ULPI_D7"), quote!(crate::usb_otg::UlpiD7Pin)),
|
2022-05-04 18:48:37 +00:00
|
|
|
(("can", "TX"), quote!(crate::can::TxPin)),
|
|
|
|
(("can", "RX"), quote!(crate::can::RxPin)),
|
|
|
|
(("eth", "REF_CLK"), quote!(crate::eth::RefClkPin)),
|
|
|
|
(("eth", "MDIO"), quote!(crate::eth::MDIOPin)),
|
|
|
|
(("eth", "MDC"), quote!(crate::eth::MDCPin)),
|
|
|
|
(("eth", "CRS_DV"), quote!(crate::eth::CRSPin)),
|
|
|
|
(("eth", "RXD0"), quote!(crate::eth::RXD0Pin)),
|
|
|
|
(("eth", "RXD1"), quote!(crate::eth::RXD1Pin)),
|
|
|
|
(("eth", "TXD0"), quote!(crate::eth::TXD0Pin)),
|
|
|
|
(("eth", "TXD1"), quote!(crate::eth::TXD1Pin)),
|
|
|
|
(("eth", "TX_EN"), quote!(crate::eth::TXEnPin)),
|
|
|
|
(("fmc", "A0"), quote!(crate::fmc::A0Pin)),
|
|
|
|
(("fmc", "A1"), quote!(crate::fmc::A1Pin)),
|
|
|
|
(("fmc", "A2"), quote!(crate::fmc::A2Pin)),
|
|
|
|
(("fmc", "A3"), quote!(crate::fmc::A3Pin)),
|
|
|
|
(("fmc", "A4"), quote!(crate::fmc::A4Pin)),
|
|
|
|
(("fmc", "A5"), quote!(crate::fmc::A5Pin)),
|
|
|
|
(("fmc", "A6"), quote!(crate::fmc::A6Pin)),
|
|
|
|
(("fmc", "A7"), quote!(crate::fmc::A7Pin)),
|
|
|
|
(("fmc", "A8"), quote!(crate::fmc::A8Pin)),
|
|
|
|
(("fmc", "A9"), quote!(crate::fmc::A9Pin)),
|
|
|
|
(("fmc", "A10"), quote!(crate::fmc::A10Pin)),
|
|
|
|
(("fmc", "A11"), quote!(crate::fmc::A11Pin)),
|
|
|
|
(("fmc", "A12"), quote!(crate::fmc::A12Pin)),
|
|
|
|
(("fmc", "A13"), quote!(crate::fmc::A13Pin)),
|
|
|
|
(("fmc", "A14"), quote!(crate::fmc::A14Pin)),
|
|
|
|
(("fmc", "A15"), quote!(crate::fmc::A15Pin)),
|
|
|
|
(("fmc", "A16"), quote!(crate::fmc::A16Pin)),
|
|
|
|
(("fmc", "A17"), quote!(crate::fmc::A17Pin)),
|
|
|
|
(("fmc", "A18"), quote!(crate::fmc::A18Pin)),
|
|
|
|
(("fmc", "A19"), quote!(crate::fmc::A19Pin)),
|
|
|
|
(("fmc", "A20"), quote!(crate::fmc::A20Pin)),
|
|
|
|
(("fmc", "A21"), quote!(crate::fmc::A21Pin)),
|
|
|
|
(("fmc", "A22"), quote!(crate::fmc::A22Pin)),
|
|
|
|
(("fmc", "A23"), quote!(crate::fmc::A23Pin)),
|
|
|
|
(("fmc", "A24"), quote!(crate::fmc::A24Pin)),
|
|
|
|
(("fmc", "A25"), quote!(crate::fmc::A25Pin)),
|
|
|
|
(("fmc", "D0"), quote!(crate::fmc::D0Pin)),
|
|
|
|
(("fmc", "D1"), quote!(crate::fmc::D1Pin)),
|
|
|
|
(("fmc", "D2"), quote!(crate::fmc::D2Pin)),
|
|
|
|
(("fmc", "D3"), quote!(crate::fmc::D3Pin)),
|
|
|
|
(("fmc", "D4"), quote!(crate::fmc::D4Pin)),
|
|
|
|
(("fmc", "D5"), quote!(crate::fmc::D5Pin)),
|
|
|
|
(("fmc", "D6"), quote!(crate::fmc::D6Pin)),
|
|
|
|
(("fmc", "D7"), quote!(crate::fmc::D7Pin)),
|
|
|
|
(("fmc", "D8"), quote!(crate::fmc::D8Pin)),
|
|
|
|
(("fmc", "D9"), quote!(crate::fmc::D9Pin)),
|
|
|
|
(("fmc", "D10"), quote!(crate::fmc::D10Pin)),
|
|
|
|
(("fmc", "D11"), quote!(crate::fmc::D11Pin)),
|
|
|
|
(("fmc", "D12"), quote!(crate::fmc::D12Pin)),
|
|
|
|
(("fmc", "D13"), quote!(crate::fmc::D13Pin)),
|
|
|
|
(("fmc", "D14"), quote!(crate::fmc::D14Pin)),
|
|
|
|
(("fmc", "D15"), quote!(crate::fmc::D15Pin)),
|
|
|
|
(("fmc", "D16"), quote!(crate::fmc::D16Pin)),
|
|
|
|
(("fmc", "D17"), quote!(crate::fmc::D17Pin)),
|
|
|
|
(("fmc", "D18"), quote!(crate::fmc::D18Pin)),
|
|
|
|
(("fmc", "D19"), quote!(crate::fmc::D19Pin)),
|
|
|
|
(("fmc", "D20"), quote!(crate::fmc::D20Pin)),
|
|
|
|
(("fmc", "D21"), quote!(crate::fmc::D21Pin)),
|
|
|
|
(("fmc", "D22"), quote!(crate::fmc::D22Pin)),
|
|
|
|
(("fmc", "D23"), quote!(crate::fmc::D23Pin)),
|
|
|
|
(("fmc", "D24"), quote!(crate::fmc::D24Pin)),
|
|
|
|
(("fmc", "D25"), quote!(crate::fmc::D25Pin)),
|
|
|
|
(("fmc", "D26"), quote!(crate::fmc::D26Pin)),
|
|
|
|
(("fmc", "D27"), quote!(crate::fmc::D27Pin)),
|
|
|
|
(("fmc", "D28"), quote!(crate::fmc::D28Pin)),
|
|
|
|
(("fmc", "D29"), quote!(crate::fmc::D29Pin)),
|
|
|
|
(("fmc", "D30"), quote!(crate::fmc::D30Pin)),
|
|
|
|
(("fmc", "D31"), quote!(crate::fmc::D31Pin)),
|
|
|
|
(("fmc", "DA0"), quote!(crate::fmc::DA0Pin)),
|
|
|
|
(("fmc", "DA1"), quote!(crate::fmc::DA1Pin)),
|
|
|
|
(("fmc", "DA2"), quote!(crate::fmc::DA2Pin)),
|
|
|
|
(("fmc", "DA3"), quote!(crate::fmc::DA3Pin)),
|
|
|
|
(("fmc", "DA4"), quote!(crate::fmc::DA4Pin)),
|
|
|
|
(("fmc", "DA5"), quote!(crate::fmc::DA5Pin)),
|
|
|
|
(("fmc", "DA6"), quote!(crate::fmc::DA6Pin)),
|
|
|
|
(("fmc", "DA7"), quote!(crate::fmc::DA7Pin)),
|
|
|
|
(("fmc", "DA8"), quote!(crate::fmc::DA8Pin)),
|
|
|
|
(("fmc", "DA9"), quote!(crate::fmc::DA9Pin)),
|
|
|
|
(("fmc", "DA10"), quote!(crate::fmc::DA10Pin)),
|
|
|
|
(("fmc", "DA11"), quote!(crate::fmc::DA11Pin)),
|
|
|
|
(("fmc", "DA12"), quote!(crate::fmc::DA12Pin)),
|
|
|
|
(("fmc", "DA13"), quote!(crate::fmc::DA13Pin)),
|
|
|
|
(("fmc", "DA14"), quote!(crate::fmc::DA14Pin)),
|
|
|
|
(("fmc", "DA15"), quote!(crate::fmc::DA15Pin)),
|
|
|
|
(("fmc", "SDNWE"), quote!(crate::fmc::SDNWEPin)),
|
|
|
|
(("fmc", "SDNCAS"), quote!(crate::fmc::SDNCASPin)),
|
|
|
|
(("fmc", "SDNRAS"), quote!(crate::fmc::SDNRASPin)),
|
|
|
|
(("fmc", "SDNE0"), quote!(crate::fmc::SDNE0Pin)),
|
|
|
|
(("fmc", "SDNE1"), quote!(crate::fmc::SDNE1Pin)),
|
|
|
|
(("fmc", "SDCKE0"), quote!(crate::fmc::SDCKE0Pin)),
|
|
|
|
(("fmc", "SDCKE1"), quote!(crate::fmc::SDCKE1Pin)),
|
|
|
|
(("fmc", "SDCLK"), quote!(crate::fmc::SDCLKPin)),
|
|
|
|
(("fmc", "NBL0"), quote!(crate::fmc::NBL0Pin)),
|
|
|
|
(("fmc", "NBL1"), quote!(crate::fmc::NBL1Pin)),
|
|
|
|
(("fmc", "NBL2"), quote!(crate::fmc::NBL2Pin)),
|
|
|
|
(("fmc", "NBL3"), quote!(crate::fmc::NBL3Pin)),
|
|
|
|
(("fmc", "INT"), quote!(crate::fmc::INTPin)),
|
|
|
|
(("fmc", "NL"), quote!(crate::fmc::NLPin)),
|
|
|
|
(("fmc", "NWAIT"), quote!(crate::fmc::NWaitPin)),
|
|
|
|
(("fmc", "NE1"), quote!(crate::fmc::NE1Pin)),
|
|
|
|
(("fmc", "NE2"), quote!(crate::fmc::NE2Pin)),
|
|
|
|
(("fmc", "NE3"), quote!(crate::fmc::NE3Pin)),
|
|
|
|
(("fmc", "NE4"), quote!(crate::fmc::NE4Pin)),
|
|
|
|
(("fmc", "NCE"), quote!(crate::fmc::NCEPin)),
|
|
|
|
(("fmc", "NOE"), quote!(crate::fmc::NOEPin)),
|
|
|
|
(("fmc", "NWE"), quote!(crate::fmc::NWEPin)),
|
|
|
|
(("fmc", "Clk"), quote!(crate::fmc::ClkPin)),
|
|
|
|
(("fmc", "BA0"), quote!(crate::fmc::BA0Pin)),
|
|
|
|
(("fmc", "BA1"), quote!(crate::fmc::BA1Pin)),
|
2023-07-28 13:29:27 +00:00
|
|
|
(("timer", "CH1"), quote!(crate::timer::Channel1Pin)),
|
|
|
|
(("timer", "CH1N"), quote!(crate::timer::Channel1ComplementaryPin)),
|
|
|
|
(("timer", "CH2"), quote!(crate::timer::Channel2Pin)),
|
|
|
|
(("timer", "CH2N"), quote!(crate::timer::Channel2ComplementaryPin)),
|
|
|
|
(("timer", "CH3"), quote!(crate::timer::Channel3Pin)),
|
|
|
|
(("timer", "CH3N"), quote!(crate::timer::Channel3ComplementaryPin)),
|
|
|
|
(("timer", "CH4"), quote!(crate::timer::Channel4Pin)),
|
|
|
|
(("timer", "CH4N"), quote!(crate::timer::Channel4ComplementaryPin)),
|
|
|
|
(("timer", "ETR"), quote!(crate::timer::ExternalTriggerPin)),
|
|
|
|
(("timer", "BKIN"), quote!(crate::timer::BreakInputPin)),
|
|
|
|
(("timer", "BKIN_COMP1"), quote!(crate::timer::BreakInputComparator1Pin)),
|
|
|
|
(("timer", "BKIN_COMP2"), quote!(crate::timer::BreakInputComparator2Pin)),
|
|
|
|
(("timer", "BKIN2"), quote!(crate::timer::BreakInput2Pin)),
|
|
|
|
(("timer", "BKIN2_COMP1"), quote!(crate::timer::BreakInput2Comparator1Pin)),
|
|
|
|
(("timer", "BKIN2_COMP2"), quote!(crate::timer::BreakInput2Comparator2Pin)),
|
2023-07-28 22:07:08 +00:00
|
|
|
(("hrtim", "CHA1"), quote!(crate::hrtim::ChannelAPin)),
|
|
|
|
(("hrtim", "CHA2"), quote!(crate::hrtim::ChannelAComplementaryPin)),
|
|
|
|
(("hrtim", "CHB1"), quote!(crate::hrtim::ChannelBPin)),
|
|
|
|
(("hrtim", "CHB2"), quote!(crate::hrtim::ChannelBComplementaryPin)),
|
|
|
|
(("hrtim", "CHC1"), quote!(crate::hrtim::ChannelCPin)),
|
|
|
|
(("hrtim", "CHC2"), quote!(crate::hrtim::ChannelCComplementaryPin)),
|
|
|
|
(("hrtim", "CHD1"), quote!(crate::hrtim::ChannelDPin)),
|
|
|
|
(("hrtim", "CHD2"), quote!(crate::hrtim::ChannelDComplementaryPin)),
|
|
|
|
(("hrtim", "CHE1"), quote!(crate::hrtim::ChannelEPin)),
|
|
|
|
(("hrtim", "CHE2"), quote!(crate::hrtim::ChannelEComplementaryPin)),
|
2023-07-31 13:42:03 +00:00
|
|
|
(("hrtim", "CHF1"), quote!(crate::hrtim::ChannelFPin)),
|
|
|
|
(("hrtim", "CHF2"), quote!(crate::hrtim::ChannelFComplementaryPin)),
|
2022-05-04 18:48:37 +00:00
|
|
|
(("sdmmc", "CK"), quote!(crate::sdmmc::CkPin)),
|
|
|
|
(("sdmmc", "CMD"), quote!(crate::sdmmc::CmdPin)),
|
|
|
|
(("sdmmc", "D0"), quote!(crate::sdmmc::D0Pin)),
|
|
|
|
(("sdmmc", "D1"), quote!(crate::sdmmc::D1Pin)),
|
|
|
|
(("sdmmc", "D2"), quote!(crate::sdmmc::D2Pin)),
|
|
|
|
(("sdmmc", "D3"), quote!(crate::sdmmc::D3Pin)),
|
|
|
|
(("sdmmc", "D4"), quote!(crate::sdmmc::D4Pin)),
|
|
|
|
(("sdmmc", "D5"), quote!(crate::sdmmc::D5Pin)),
|
|
|
|
(("sdmmc", "D6"), quote!(crate::sdmmc::D6Pin)),
|
|
|
|
(("sdmmc", "D6"), quote!(crate::sdmmc::D7Pin)),
|
|
|
|
(("sdmmc", "D8"), quote!(crate::sdmmc::D8Pin)),
|
2023-08-31 08:53:51 +00:00
|
|
|
(("quadspi", "BK1_IO0"), quote!(crate::qspi::BK1D0Pin)),
|
|
|
|
(("quadspi", "BK1_IO1"), quote!(crate::qspi::BK1D1Pin)),
|
|
|
|
(("quadspi", "BK1_IO2"), quote!(crate::qspi::BK1D2Pin)),
|
|
|
|
(("quadspi", "BK1_IO3"), quote!(crate::qspi::BK1D3Pin)),
|
|
|
|
(("quadspi", "BK1_NCS"), quote!(crate::qspi::BK1NSSPin)),
|
|
|
|
(("quadspi", "BK2_IO0"), quote!(crate::qspi::BK2D0Pin)),
|
|
|
|
(("quadspi", "BK2_IO1"), quote!(crate::qspi::BK2D1Pin)),
|
|
|
|
(("quadspi", "BK2_IO2"), quote!(crate::qspi::BK2D2Pin)),
|
|
|
|
(("quadspi", "BK2_IO3"), quote!(crate::qspi::BK2D3Pin)),
|
|
|
|
(("quadspi", "BK2_NCS"), quote!(crate::qspi::BK2NSSPin)),
|
2023-03-22 07:44:58 +00:00
|
|
|
(("quadspi", "CLK"), quote!(crate::qspi::SckPin)),
|
2022-02-23 18:43:32 +00:00
|
|
|
].into();
|
|
|
|
|
|
|
|
for p in METADATA.peripherals {
|
|
|
|
if let Some(regs) = &p.registers {
|
|
|
|
for pin in p.pins {
|
|
|
|
let key = (regs.kind, pin.signal);
|
2022-05-04 18:48:37 +00:00
|
|
|
if let Some(tr) = signals.get(&key) {
|
2022-02-23 18:54:26 +00:00
|
|
|
let mut peri = format_ident!("{}", p.name);
|
2023-09-30 08:10:06 +00:00
|
|
|
|
2023-09-13 19:16:27 +00:00
|
|
|
let pin_name = {
|
2023-09-30 08:10:06 +00:00
|
|
|
// If we encounter a _C pin but the split_feature for this pin is not enabled, skip it
|
|
|
|
if pin.pin.ends_with("_C") && !split_features.iter().any(|x| x.pin_name_with_c == pin.pin) {
|
|
|
|
continue;
|
2023-09-13 19:16:27 +00:00
|
|
|
}
|
|
|
|
|
2023-09-30 08:10:06 +00:00
|
|
|
format_ident!("{}", pin.pin)
|
2023-09-13 19:16:27 +00:00
|
|
|
};
|
|
|
|
|
2022-02-23 18:43:32 +00:00
|
|
|
let af = pin.af.unwrap_or(0);
|
|
|
|
|
2022-02-23 18:54:26 +00:00
|
|
|
// MCO is special
|
2023-10-06 21:36:16 +00:00
|
|
|
if pin.signal.starts_with("MCO") {
|
|
|
|
peri = format_ident!("{}", pin.signal.replace('_', ""));
|
2023-04-03 14:41:25 +00:00
|
|
|
}
|
|
|
|
|
2022-02-23 18:43:32 +00:00
|
|
|
g.extend(quote! {
|
|
|
|
pin_trait_impl!(#tr, #peri, #pin_name, #af);
|
|
|
|
})
|
|
|
|
}
|
2022-02-23 19:21:28 +00:00
|
|
|
|
|
|
|
// ADC is special
|
|
|
|
if regs.kind == "adc" {
|
2023-09-05 22:45:52 +00:00
|
|
|
if p.rcc.is_none() {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2022-02-23 19:21:28 +00:00
|
|
|
let peri = format_ident!("{}", p.name);
|
2023-09-13 19:16:27 +00:00
|
|
|
let pin_name = {
|
2023-09-30 08:10:06 +00:00
|
|
|
// If we encounter a _C pin but the split_feature for this pin is not enabled, skip it
|
|
|
|
if pin.pin.ends_with("_C") && !split_features.iter().any(|x| x.pin_name_with_c == pin.pin) {
|
|
|
|
continue;
|
2023-09-13 19:16:27 +00:00
|
|
|
}
|
2023-09-30 08:10:06 +00:00
|
|
|
format_ident!("{}", pin.pin)
|
2023-09-13 19:16:27 +00:00
|
|
|
};
|
2022-02-23 19:21:28 +00:00
|
|
|
|
2022-03-19 10:05:00 +00:00
|
|
|
// H7 has differential voltage measurements
|
|
|
|
let ch: Option<u8> = if pin.signal.starts_with("INP") {
|
|
|
|
Some(pin.signal.strip_prefix("INP").unwrap().parse().unwrap())
|
|
|
|
} else if pin.signal.starts_with("INN") {
|
|
|
|
// TODO handle in the future when embassy supports differential measurements
|
|
|
|
None
|
|
|
|
} else if pin.signal.starts_with("IN") {
|
|
|
|
Some(pin.signal.strip_prefix("IN").unwrap().parse().unwrap())
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
if let Some(ch) = ch {
|
|
|
|
g.extend(quote! {
|
|
|
|
impl_adc_pin!( #peri, #pin_name, #ch);
|
|
|
|
})
|
|
|
|
}
|
2022-02-23 19:21:28 +00:00
|
|
|
}
|
|
|
|
|
2023-10-03 21:34:13 +00:00
|
|
|
if regs.kind == "opamp" {
|
|
|
|
if !pin.signal.starts_with("VP") {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
let peri = format_ident!("{}", p.name);
|
|
|
|
let pin_name = format_ident!("{}", pin.pin);
|
|
|
|
let ch: u8 = pin.signal.strip_prefix("VP").unwrap().parse().unwrap();
|
|
|
|
|
|
|
|
g.extend(quote! {
|
|
|
|
impl_opamp_pin!( #peri, #pin_name, #ch);
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-02-23 19:21:28 +00:00
|
|
|
// DAC is special
|
|
|
|
if regs.kind == "dac" {
|
|
|
|
let peri = format_ident!("{}", p.name);
|
|
|
|
let pin_name = format_ident!("{}", pin.pin);
|
|
|
|
let ch: u8 = pin.signal.strip_prefix("OUT").unwrap().parse().unwrap();
|
|
|
|
|
|
|
|
g.extend(quote! {
|
|
|
|
impl_dac_pin!( #peri, #pin_name, #ch);
|
|
|
|
})
|
|
|
|
}
|
2022-02-23 18:43:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-23 17:55:16 +00:00
|
|
|
// ========
|
|
|
|
// Generate dma_trait_impl!
|
|
|
|
|
|
|
|
let signals: HashMap<_, _> = [
|
|
|
|
// (kind, signal) => trait
|
|
|
|
(("usart", "RX"), quote!(crate::usart::RxDma)),
|
|
|
|
(("usart", "TX"), quote!(crate::usart::TxDma)),
|
2022-06-09 13:17:03 +00:00
|
|
|
(("lpuart", "RX"), quote!(crate::usart::RxDma)),
|
|
|
|
(("lpuart", "TX"), quote!(crate::usart::TxDma)),
|
2023-09-30 01:57:59 +00:00
|
|
|
(("sai", "A"), quote!(crate::sai::DmaA)),
|
|
|
|
(("sai", "B"), quote!(crate::sai::DmaB)),
|
2022-02-23 17:55:16 +00:00
|
|
|
(("spi", "RX"), quote!(crate::spi::RxDma)),
|
|
|
|
(("spi", "TX"), quote!(crate::spi::TxDma)),
|
|
|
|
(("i2c", "RX"), quote!(crate::i2c::RxDma)),
|
|
|
|
(("i2c", "TX"), quote!(crate::i2c::TxDma)),
|
|
|
|
(("dcmi", "DCMI"), quote!(crate::dcmi::FrameDma)),
|
|
|
|
(("dcmi", "PSSI"), quote!(crate::dcmi::FrameDma)),
|
2022-03-16 23:54:56 +00:00
|
|
|
// SDMMCv1 uses the same channel for both directions, so just implement for RX
|
2022-03-16 21:44:02 +00:00
|
|
|
(("sdmmc", "RX"), quote!(crate::sdmmc::SdmmcDma)),
|
2023-03-22 07:44:58 +00:00
|
|
|
(("quadspi", "QUADSPI"), quote!(crate::qspi::QuadDma)),
|
2023-06-26 07:42:25 +00:00
|
|
|
(("dac", "CH1"), quote!(crate::dac::DmaCh1)),
|
|
|
|
(("dac", "CH2"), quote!(crate::dac::DmaCh2)),
|
2022-02-23 17:55:16 +00:00
|
|
|
]
|
|
|
|
.into();
|
|
|
|
|
|
|
|
for p in METADATA.peripherals {
|
|
|
|
if let Some(regs) = &p.registers {
|
|
|
|
let mut dupe = HashSet::new();
|
|
|
|
for ch in p.dma_channels {
|
|
|
|
// Some chips have multiple request numbers for the same (peri, signal, channel) combos.
|
|
|
|
// Ignore the dupes, picking the first one. Otherwise this causes conflicting trait impls
|
|
|
|
let key = (ch.signal, ch.channel);
|
|
|
|
if !dupe.insert(key) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(tr) = signals.get(&(regs.kind, ch.signal)) {
|
|
|
|
let peri = format_ident!("{}", p.name);
|
|
|
|
|
|
|
|
let channel = if let Some(channel) = &ch.channel {
|
2022-04-26 21:57:26 +00:00
|
|
|
// Chip with DMA/BDMA, without DMAMUX
|
2022-02-23 17:55:16 +00:00
|
|
|
let channel = format_ident!("{}", channel);
|
|
|
|
quote!({channel: #channel})
|
|
|
|
} else if let Some(dmamux) = &ch.dmamux {
|
2022-04-26 21:57:26 +00:00
|
|
|
// Chip with DMAMUX
|
2022-02-23 17:55:16 +00:00
|
|
|
let dmamux = format_ident!("{}", dmamux);
|
|
|
|
quote!({dmamux: #dmamux})
|
2022-04-26 21:57:26 +00:00
|
|
|
} else if let Some(dma) = &ch.dma {
|
|
|
|
// Chip with GPDMA
|
|
|
|
let dma = format_ident!("{}", dma);
|
|
|
|
quote!({dma: #dma})
|
2022-02-23 17:55:16 +00:00
|
|
|
} else {
|
|
|
|
unreachable!();
|
|
|
|
};
|
|
|
|
|
|
|
|
let request = if let Some(request) = ch.request {
|
|
|
|
let request = request as u8;
|
|
|
|
quote!(#request)
|
|
|
|
} else {
|
|
|
|
quote!(())
|
|
|
|
};
|
|
|
|
|
|
|
|
g.extend(quote! {
|
|
|
|
dma_trait_impl!(#tr, #peri, #channel, #request);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-10-09 00:48:22 +00:00
|
|
|
// ========
|
|
|
|
// Generate Div/Mul impls for RCC prescalers/dividers/multipliers.
|
|
|
|
let rcc_registers = METADATA
|
|
|
|
.peripherals
|
|
|
|
.iter()
|
|
|
|
.filter_map(|p| p.registers.as_ref())
|
|
|
|
.find(|r| r.kind == "rcc")
|
|
|
|
.unwrap()
|
|
|
|
.ir;
|
|
|
|
|
|
|
|
for e in rcc_registers.enums {
|
|
|
|
fn is_rcc_name(e: &str) -> bool {
|
|
|
|
match e {
|
|
|
|
"Pllp" | "Pllq" | "Pllr" | "Pllm" | "Plln" => true,
|
|
|
|
"Timpre" | "Pllrclkpre" => false,
|
2023-10-10 22:12:33 +00:00
|
|
|
e if e.ends_with("pre") || e.ends_with("pres") || e.ends_with("div") || e.ends_with("mul") => true,
|
2023-10-09 00:48:22 +00:00
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Copy, Clone, Debug)]
|
|
|
|
struct Frac {
|
|
|
|
num: u32,
|
|
|
|
denom: u32,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Frac {
|
|
|
|
fn simplify(self) -> Self {
|
|
|
|
let d = gcd(self.num, self.denom);
|
|
|
|
Self {
|
|
|
|
num: self.num / d,
|
|
|
|
denom: self.denom / d,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn gcd(a: u32, b: u32) -> u32 {
|
|
|
|
if b == 0 {
|
|
|
|
return a;
|
|
|
|
}
|
|
|
|
gcd(b, a % b)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn parse_num(n: &str) -> Result<Frac, ()> {
|
|
|
|
for prefix in ["DIV", "MUL"] {
|
|
|
|
if let Some(n) = n.strip_prefix(prefix) {
|
|
|
|
let exponent = n.find('_').map(|e| n.len() - 1 - e).unwrap_or(0) as u32;
|
|
|
|
let mantissa = n.replace('_', "").parse().map_err(|_| ())?;
|
|
|
|
let f = Frac {
|
|
|
|
num: mantissa,
|
|
|
|
denom: 10u32.pow(exponent),
|
|
|
|
};
|
|
|
|
return Ok(f.simplify());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Err(())
|
|
|
|
}
|
|
|
|
|
|
|
|
if is_rcc_name(e.name) {
|
|
|
|
let enum_name = format_ident!("{}", e.name);
|
|
|
|
let mut muls = Vec::new();
|
|
|
|
let mut divs = Vec::new();
|
|
|
|
for v in e.variants {
|
|
|
|
let Ok(val) = parse_num(v.name) else {
|
|
|
|
panic!("could not parse mul/div. enum={} variant={}", e.name, v.name)
|
|
|
|
};
|
|
|
|
let variant_name = format_ident!("{}", v.name);
|
|
|
|
let variant = quote!(crate::pac::rcc::vals::#enum_name::#variant_name);
|
|
|
|
let num = val.num;
|
|
|
|
let denom = val.denom;
|
|
|
|
muls.push(quote!(#variant => self * #num / #denom,));
|
|
|
|
divs.push(quote!(#variant => self * #denom / #num,));
|
|
|
|
}
|
|
|
|
|
|
|
|
g.extend(quote! {
|
|
|
|
impl core::ops::Div<crate::pac::rcc::vals::#enum_name> for crate::time::Hertz {
|
|
|
|
type Output = crate::time::Hertz;
|
|
|
|
fn div(self, rhs: crate::pac::rcc::vals::#enum_name) -> Self::Output {
|
|
|
|
match rhs {
|
|
|
|
#(#divs)*
|
|
|
|
#[allow(unreachable_patterns)]
|
|
|
|
_ => unreachable!(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
impl core::ops::Mul<crate::pac::rcc::vals::#enum_name> for crate::time::Hertz {
|
|
|
|
type Output = crate::time::Hertz;
|
|
|
|
fn mul(self, rhs: crate::pac::rcc::vals::#enum_name) -> Self::Output {
|
|
|
|
match rhs {
|
|
|
|
#(#muls)*
|
|
|
|
#[allow(unreachable_patterns)]
|
|
|
|
_ => unreachable!(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-05 02:03:32 +00:00
|
|
|
// ========
|
2022-02-26 00:40:43 +00:00
|
|
|
// Write foreach_foo! macrotables
|
|
|
|
|
2023-03-25 04:57:15 +00:00
|
|
|
let mut flash_regions_table: Vec<Vec<String>> = Vec::new();
|
2022-02-26 00:40:43 +00:00
|
|
|
let mut interrupts_table: Vec<Vec<String>> = Vec::new();
|
|
|
|
let mut peripherals_table: Vec<Vec<String>> = Vec::new();
|
|
|
|
let mut pins_table: Vec<Vec<String>> = Vec::new();
|
|
|
|
let mut dma_channels_table: Vec<Vec<String>> = Vec::new();
|
2023-09-15 22:35:53 +00:00
|
|
|
let mut adc_common_table: Vec<Vec<String>> = Vec::new();
|
|
|
|
|
|
|
|
/*
|
|
|
|
If ADC3_COMMON exists, ADC3 and higher are assigned to it
|
|
|
|
All other ADCs are assigned to ADC_COMMON
|
|
|
|
|
|
|
|
ADC3 and higher are assigned to the adc34 clock in the table
|
|
|
|
The adc3_common cfg directive is added if ADC3_COMMON exists
|
|
|
|
*/
|
|
|
|
let has_adc3 = METADATA.peripherals.iter().find(|p| p.name == "ADC3_COMMON").is_some();
|
|
|
|
let set_adc345 = HashSet::from(["ADC3", "ADC4", "ADC5"]);
|
2022-02-26 00:40:43 +00:00
|
|
|
|
2023-03-25 04:57:15 +00:00
|
|
|
for m in METADATA
|
|
|
|
.memory
|
|
|
|
.iter()
|
2023-03-25 12:02:42 +00:00
|
|
|
.filter(|m| m.kind == MemoryRegionKind::Flash && m.settings.is_some())
|
2023-03-25 04:57:15 +00:00
|
|
|
{
|
2023-03-30 02:24:41 +00:00
|
|
|
let settings = m.settings.as_ref().unwrap();
|
2023-08-06 20:00:39 +00:00
|
|
|
let row = vec![
|
|
|
|
get_flash_region_type_name(m.name),
|
|
|
|
settings.write_size.to_string(),
|
|
|
|
settings.erase_size.to_string(),
|
|
|
|
];
|
2023-03-25 04:57:15 +00:00
|
|
|
flash_regions_table.push(row);
|
|
|
|
}
|
|
|
|
|
2022-06-12 20:15:44 +00:00
|
|
|
let gpio_base = METADATA.peripherals.iter().find(|p| p.name == "GPIOA").unwrap().address as u32;
|
2022-02-26 00:40:43 +00:00
|
|
|
let gpio_stride = 0x400;
|
|
|
|
|
|
|
|
for p in METADATA.peripherals {
|
|
|
|
if let Some(regs) = &p.registers {
|
|
|
|
if regs.kind == "gpio" {
|
2023-08-06 20:00:39 +00:00
|
|
|
let port_letter = p.name.chars().nth(4).unwrap();
|
2022-02-26 00:40:43 +00:00
|
|
|
assert_eq!(0, (p.address as u32 - gpio_base) % gpio_stride);
|
|
|
|
let port_num = (p.address as u32 - gpio_base) / gpio_stride;
|
|
|
|
|
|
|
|
for pin_num in 0u32..16 {
|
|
|
|
let pin_name = format!("P{}{}", port_letter, pin_num);
|
2023-09-15 08:36:06 +00:00
|
|
|
|
2022-02-26 00:40:43 +00:00
|
|
|
pins_table.push(vec![
|
2023-09-27 18:58:00 +00:00
|
|
|
pin_name.clone(),
|
2022-02-26 00:40:43 +00:00
|
|
|
p.name.to_string(),
|
|
|
|
port_num.to_string(),
|
|
|
|
pin_num.to_string(),
|
|
|
|
format!("EXTI{}", pin_num),
|
|
|
|
]);
|
2023-09-27 18:58:00 +00:00
|
|
|
|
|
|
|
// If we have the split pins, we need to do a little extra work:
|
|
|
|
// Add the "_C" variant to the table. The solution is not optimal, though.
|
|
|
|
// Adding them only when the corresponding GPIOx also appears.
|
|
|
|
// This should avoid unintended side-effects as much as possible.
|
|
|
|
#[cfg(feature = "_split-pins-enabled")]
|
|
|
|
for split_feature in &split_features {
|
|
|
|
if split_feature.pin_name_without_c == pin_name {
|
|
|
|
pins_table.push(vec![
|
|
|
|
split_feature.pin_name_with_c.to_string(),
|
|
|
|
p.name.to_string(),
|
|
|
|
port_num.to_string(),
|
|
|
|
pin_num.to_string(),
|
|
|
|
format!("EXTI{}", pin_num),
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
}
|
2022-02-26 00:40:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-15 22:35:53 +00:00
|
|
|
if regs.kind == "adc" {
|
|
|
|
let (adc_common, adc_clock) = if set_adc345.contains(p.name) && has_adc3 {
|
|
|
|
("ADC3_COMMON", "adc34")
|
|
|
|
} else {
|
|
|
|
("ADC_COMMON", "adc")
|
|
|
|
};
|
|
|
|
|
|
|
|
let row = vec![p.name.to_string(), adc_common.to_string(), adc_clock.to_string()];
|
|
|
|
adc_common_table.push(row);
|
|
|
|
}
|
|
|
|
|
2022-02-26 00:40:43 +00:00
|
|
|
for irq in p.interrupts {
|
2023-08-06 20:00:39 +00:00
|
|
|
let row = vec![
|
|
|
|
p.name.to_string(),
|
|
|
|
regs.kind.to_string(),
|
|
|
|
regs.block.to_string(),
|
|
|
|
irq.signal.to_string(),
|
|
|
|
irq.interrupt.to_ascii_uppercase(),
|
|
|
|
];
|
2022-02-26 00:40:43 +00:00
|
|
|
interrupts_table.push(row)
|
|
|
|
}
|
|
|
|
|
2023-08-06 20:00:39 +00:00
|
|
|
let row = vec![regs.kind.to_string(), p.name.to_string()];
|
2022-02-26 00:40:43 +00:00
|
|
|
peripherals_table.push(row);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut dma_channel_count: usize = 0;
|
|
|
|
let mut bdma_channel_count: usize = 0;
|
2022-04-26 21:57:26 +00:00
|
|
|
let mut gpdma_channel_count: usize = 0;
|
2022-02-26 00:40:43 +00:00
|
|
|
|
|
|
|
for ch in METADATA.dma_channels {
|
|
|
|
let mut row = Vec::new();
|
2022-06-12 20:15:44 +00:00
|
|
|
let dma_peri = METADATA.peripherals.iter().find(|p| p.name == ch.dma).unwrap();
|
2022-02-26 00:40:43 +00:00
|
|
|
let bi = dma_peri.registers.as_ref().unwrap();
|
|
|
|
|
|
|
|
let num;
|
|
|
|
match bi.kind {
|
|
|
|
"dma" => {
|
|
|
|
num = dma_channel_count;
|
|
|
|
dma_channel_count += 1;
|
|
|
|
}
|
|
|
|
"bdma" => {
|
|
|
|
num = bdma_channel_count;
|
|
|
|
bdma_channel_count += 1;
|
|
|
|
}
|
2022-04-26 21:57:26 +00:00
|
|
|
"gpdma" => {
|
|
|
|
num = gpdma_channel_count;
|
|
|
|
gpdma_channel_count += 1;
|
|
|
|
}
|
2022-02-26 00:40:43 +00:00
|
|
|
_ => panic!("bad dma channel kind {}", bi.kind),
|
|
|
|
}
|
|
|
|
|
|
|
|
row.push(ch.name.to_string());
|
|
|
|
row.push(ch.dma.to_string());
|
|
|
|
row.push(bi.kind.to_string());
|
|
|
|
row.push(ch.channel.to_string());
|
|
|
|
row.push(num.to_string());
|
|
|
|
if let Some(dmamux) = &ch.dmamux {
|
|
|
|
let dmamux_channel = ch.dmamux_channel.unwrap();
|
2022-06-12 20:15:44 +00:00
|
|
|
row.push(format!("{{dmamux: {}, dmamux_channel: {}}}", dmamux, dmamux_channel));
|
2022-02-26 00:40:43 +00:00
|
|
|
} else {
|
|
|
|
row.push("{}".to_string());
|
|
|
|
}
|
|
|
|
|
|
|
|
dma_channels_table.push(row);
|
|
|
|
}
|
|
|
|
|
|
|
|
g.extend(quote! {
|
|
|
|
pub(crate) const DMA_CHANNEL_COUNT: usize = #dma_channel_count;
|
|
|
|
pub(crate) const BDMA_CHANNEL_COUNT: usize = #bdma_channel_count;
|
2022-04-26 21:57:26 +00:00
|
|
|
pub(crate) const GPDMA_CHANNEL_COUNT: usize = #gpdma_channel_count;
|
2022-02-26 00:40:43 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
for irq in METADATA.interrupts {
|
|
|
|
let name = irq.name.to_ascii_uppercase();
|
|
|
|
interrupts_table.push(vec![name.clone()]);
|
|
|
|
if name.contains("EXTI") {
|
|
|
|
interrupts_table.push(vec!["EXTI".to_string(), name.clone()]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut m = String::new();
|
|
|
|
|
2023-03-25 04:57:15 +00:00
|
|
|
make_table(&mut m, "foreach_flash_region", &flash_regions_table);
|
2022-02-26 00:40:43 +00:00
|
|
|
make_table(&mut m, "foreach_interrupt", &interrupts_table);
|
|
|
|
make_table(&mut m, "foreach_peripheral", &peripherals_table);
|
|
|
|
make_table(&mut m, "foreach_pin", &pins_table);
|
|
|
|
make_table(&mut m, "foreach_dma_channel", &dma_channels_table);
|
2023-09-15 22:35:53 +00:00
|
|
|
make_table(&mut m, "foreach_adc", &adc_common_table);
|
2022-02-05 02:03:32 +00:00
|
|
|
|
|
|
|
let out_dir = &PathBuf::from(env::var_os("OUT_DIR").unwrap());
|
2022-03-04 16:42:38 +00:00
|
|
|
let out_file = out_dir.join("_macros.rs").to_string_lossy().to_string();
|
2022-02-26 00:40:43 +00:00
|
|
|
fs::write(out_file, m).unwrap();
|
|
|
|
|
|
|
|
// ========
|
|
|
|
// Write generated.rs
|
|
|
|
|
2022-03-04 16:42:38 +00:00
|
|
|
let out_file = out_dir.join("_generated.rs").to_string_lossy().to_string();
|
2022-02-08 23:31:21 +00:00
|
|
|
fs::write(out_file, g.to_string()).unwrap();
|
2022-02-05 02:03:32 +00:00
|
|
|
|
|
|
|
// ========
|
|
|
|
// Multicore
|
|
|
|
|
2021-09-21 11:42:27 +00:00
|
|
|
let mut s = chip_name.split('_');
|
|
|
|
let mut chip_name: String = s.next().unwrap().to_string();
|
|
|
|
let core_name = if let Some(c) = s.next() {
|
|
|
|
if !c.starts_with("CM") {
|
|
|
|
chip_name.push('_');
|
|
|
|
chip_name.push_str(c);
|
|
|
|
None
|
|
|
|
} else {
|
|
|
|
Some(c)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
2021-07-31 05:20:37 +00:00
|
|
|
|
2021-09-21 11:42:27 +00:00
|
|
|
if let Some(core) = core_name {
|
2022-06-12 20:15:44 +00:00
|
|
|
println!("cargo:rustc-cfg={}_{}", &chip_name[..chip_name.len() - 2], core);
|
2021-07-31 05:20:37 +00:00
|
|
|
} else {
|
2021-09-21 11:42:27 +00:00
|
|
|
println!("cargo:rustc-cfg={}", &chip_name[..chip_name.len() - 2]);
|
2021-07-31 05:20:37 +00:00
|
|
|
}
|
|
|
|
|
2022-02-05 02:03:32 +00:00
|
|
|
// ========
|
|
|
|
// stm32f3 wildcard features used in RCC
|
|
|
|
|
2022-02-02 19:51:47 +00:00
|
|
|
if chip_name.starts_with("stm32f3") {
|
|
|
|
println!("cargo:rustc-cfg={}x{}", &chip_name[..9], &chip_name[10..11]);
|
|
|
|
}
|
|
|
|
|
2023-09-15 22:35:53 +00:00
|
|
|
// =======
|
|
|
|
// ADC3_COMMON is present
|
|
|
|
if has_adc3 {
|
|
|
|
println!("cargo:rustc-cfg={}", "adc3_common");
|
|
|
|
}
|
|
|
|
|
2022-02-07 22:32:49 +00:00
|
|
|
// =======
|
|
|
|
// Features for targeting groups of chips
|
|
|
|
|
2023-09-16 01:44:01 +00:00
|
|
|
if &chip_name[..8] == "stm32wba" {
|
|
|
|
println!("cargo:rustc-cfg={}", &chip_name[..8]); // stm32wba
|
|
|
|
println!("cargo:rustc-cfg={}", &chip_name[..10]); // stm32wba52
|
|
|
|
} else {
|
|
|
|
println!("cargo:rustc-cfg={}", &chip_name[..7]); // stm32f4
|
|
|
|
println!("cargo:rustc-cfg={}", &chip_name[..9]); // stm32f429
|
|
|
|
println!("cargo:rustc-cfg={}x", &chip_name[..8]); // stm32f42x
|
|
|
|
println!("cargo:rustc-cfg={}x{}", &chip_name[..7], &chip_name[8..9]); // stm32f4x9
|
|
|
|
}
|
2022-02-07 22:32:49 +00:00
|
|
|
|
2022-01-23 23:24:23 +00:00
|
|
|
// Handle time-driver-XXXX features.
|
|
|
|
if env::var("CARGO_FEATURE_TIME_DRIVER_ANY").is_ok() {}
|
|
|
|
println!("cargo:rustc-cfg={}", &chip_name[..chip_name.len() - 2]);
|
|
|
|
|
2021-05-01 01:07:17 +00:00
|
|
|
println!("cargo:rerun-if-changed=build.rs");
|
|
|
|
}
|
2022-01-23 23:24:23 +00:00
|
|
|
|
|
|
|
enum GetOneError {
|
|
|
|
None,
|
|
|
|
Multiple,
|
|
|
|
}
|
|
|
|
|
|
|
|
trait IteratorExt: Iterator {
|
|
|
|
fn get_one(self) -> Result<Self::Item, GetOneError>;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: Iterator> IteratorExt for T {
|
|
|
|
fn get_one(mut self) -> Result<Self::Item, GetOneError> {
|
|
|
|
match self.next() {
|
|
|
|
None => Err(GetOneError::None),
|
|
|
|
Some(res) => match self.next() {
|
|
|
|
Some(_) => Err(GetOneError::Multiple),
|
|
|
|
None => Ok(res),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-02-26 00:40:43 +00:00
|
|
|
|
|
|
|
fn make_table(out: &mut String, name: &str, data: &Vec<Vec<String>>) {
|
|
|
|
write!(
|
|
|
|
out,
|
2022-03-04 17:03:31 +00:00
|
|
|
"#[allow(unused)]
|
2022-02-26 00:40:43 +00:00
|
|
|
macro_rules! {} {{
|
|
|
|
($($pat:tt => $code:tt;)*) => {{
|
|
|
|
macro_rules! __{}_inner {{
|
|
|
|
$(($pat) => $code;)*
|
|
|
|
($_:tt) => {{}}
|
|
|
|
}}
|
|
|
|
",
|
|
|
|
name, name
|
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
for row in data {
|
2023-08-06 20:00:39 +00:00
|
|
|
writeln!(out, " __{}_inner!(({}));", name, row.join(",")).unwrap();
|
2022-02-26 00:40:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
write!(
|
|
|
|
out,
|
|
|
|
" }};
|
|
|
|
}}"
|
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
}
|
2023-03-25 12:39:10 +00:00
|
|
|
|
2023-03-30 03:27:57 +00:00
|
|
|
fn get_flash_region_name(name: &str) -> String {
|
|
|
|
let name = name.replace("BANK_", "BANK").replace("REGION_", "REGION");
|
|
|
|
if name.contains("REGION") {
|
|
|
|
name
|
|
|
|
} else {
|
|
|
|
name + "_REGION"
|
|
|
|
}
|
2023-03-30 02:24:41 +00:00
|
|
|
}
|
|
|
|
|
2023-03-30 03:27:57 +00:00
|
|
|
fn get_flash_region_type_name(name: &str) -> String {
|
|
|
|
get_flash_region_name(name)
|
|
|
|
.replace("BANK", "Bank")
|
|
|
|
.replace("REGION", "Region")
|
2023-08-06 20:00:39 +00:00
|
|
|
.replace('_', "")
|
2023-03-25 12:39:10 +00:00
|
|
|
}
|