stm32/dma: fix interrupt codegen for new stm32-data

This commit is contained in:
Dario Nieuwenhuis 2022-02-05 03:03:32 +01:00
parent f8507b5e78
commit fbaa7e59d5
4 changed files with 68 additions and 31 deletions

View File

@ -1,5 +1,6 @@
use std::collections::HashMap; use std::collections::HashMap;
use std::env; use std::env;
use std::fmt::Write;
use std::fs; use std::fs;
use std::path::PathBuf; use std::path::PathBuf;
@ -43,6 +44,9 @@ fn main() {
}; };
); );
// ========
// Generate singletons
let mut singletons: Vec<String> = Vec::new(); let mut singletons: Vec<String> = Vec::new();
for p in peripherals { for p in peripherals {
match p.kind.as_str() { match p.kind.as_str() {
@ -90,17 +94,66 @@ fn main() {
}; };
} }
let out_dir = &PathBuf::from(env::var_os("OUT_DIR").unwrap()); let mut generated = String::new();
let out_file = out_dir.join("generated.rs").to_string_lossy().to_string(); write!(
fs::write( &mut generated,
out_file, "embassy_hal_common::peripherals!({});\n",
format!( singletons.join(",")
"embassy_hal_common::peripherals!({});",
singletons.join(",")
),
) )
.unwrap(); .unwrap();
// ========
// Generate DMA IRQs.
// This can't be done with macrotables alone because in many chips, one irq is shared between many
// channels, so we have to deduplicate them.
#[allow(unused_mut)]
let mut dma_irqs: Vec<String> = Vec::new();
#[allow(unused_mut)]
let mut bdma_irqs: Vec<String> = Vec::new();
stm32_metapac::interrupts! {
($peri:ident, dma, $block:ident, $signal_name:ident, $irq:ident) => {
dma_irqs.push(stringify!($irq).to_string());
};
($peri:ident, bdma, $block:ident, $signal_name:ident, $irq:ident) => {
bdma_irqs.push(stringify!($irq).to_string());
};
}
dma_irqs.sort();
dma_irqs.dedup();
bdma_irqs.sort();
bdma_irqs.dedup();
for irq in dma_irqs {
write!(
&mut generated,
"#[crate::interrupt] unsafe fn {} () {{ crate::dma::dma::on_irq(); }}\n",
irq
)
.unwrap();
}
for irq in bdma_irqs {
write!(
&mut generated,
"#[crate::interrupt] unsafe fn {} () {{ crate::dma::bdma::on_irq(); }}\n",
irq
)
.unwrap();
}
// ========
// Write generated.rs
let out_dir = &PathBuf::from(env::var_os("OUT_DIR").unwrap());
let out_file = out_dir.join("generated.rs").to_string_lossy().to_string();
fs::write(out_file, &generated).unwrap();
// ========
// Multicore
let mut s = chip_name.split('_'); let mut s = chip_name.split('_');
let mut chip_name: String = s.next().unwrap().to_string(); let mut chip_name: String = s.next().unwrap().to_string();
let core_name = if let Some(c) = s.next() { let core_name = if let Some(c) = s.next() {
@ -125,6 +178,9 @@ fn main() {
println!("cargo:rustc-cfg={}", &chip_name[..chip_name.len() - 2]); println!("cargo:rustc-cfg={}", &chip_name[..chip_name.len() - 2]);
} }
// ========
// stm32f3 wildcard features used in RCC
if chip_name.starts_with("stm32f3") { if chip_name.starts_with("stm32f3") {
println!("cargo:rustc-cfg={}x{}", &chip_name[..9], &chip_name[10..11]); println!("cargo:rustc-cfg={}x{}", &chip_name[..9], &chip_name[10..11]);
} }

View File

@ -7,7 +7,6 @@ use embassy::interrupt::{Interrupt, InterruptExt};
use embassy::waitqueue::AtomicWaker; use embassy::waitqueue::AtomicWaker;
use crate::dma::Request; use crate::dma::Request;
use crate::interrupt;
use crate::pac; use crate::pac;
use crate::pac::bdma::vals; use crate::pac::bdma::vals;
use crate::rcc::sealed::RccPeripheral; use crate::rcc::sealed::RccPeripheral;
@ -53,7 +52,7 @@ macro_rules! dma_num {
}; };
} }
unsafe fn on_irq() { pub(crate) unsafe fn on_irq() {
pac::peripherals! { pac::peripherals! {
(bdma, $dma:ident) => { (bdma, $dma:ident) => {
let isr = pac::$dma.isr().read(); let isr = pac::$dma.isr().read();
@ -170,15 +169,6 @@ pac::dma_channels! {
}; };
} }
pac::interrupts! {
($peri:ident, bdma, $block:ident, $signal_name:ident, $irq:ident) => {
#[crate::interrupt]
unsafe fn $irq () {
on_irq()
}
};
}
mod low_level_api { mod low_level_api {
use super::*; use super::*;

View File

@ -47,7 +47,7 @@ macro_rules! dma_num {
}; };
} }
unsafe fn on_irq() { pub(crate) unsafe fn on_irq() {
pac::peripherals! { pac::peripherals! {
(dma, $dma:ident) => { (dma, $dma:ident) => {
for isrn in 0..2 { for isrn in 0..2 {
@ -162,15 +162,6 @@ pac::dma_channels! {
}; };
} }
pac::interrupts! {
($peri:ident, dma, $block:ident, $signal_name:ident, $irq:ident) => {
#[crate::interrupt]
unsafe fn $irq () {
on_irq()
}
};
}
mod low_level_api { mod low_level_api {
use super::*; use super::*;

View File

@ -1,7 +1,7 @@
#[cfg(bdma)] #[cfg(bdma)]
mod bdma; pub(crate) mod bdma;
#[cfg(dma)] #[cfg(dma)]
mod dma; pub(crate) mod dma;
#[cfg(dmamux)] #[cfg(dmamux)]
mod dmamux; mod dmamux;