From ef09e4b65f3586df6302721de909f66d69e7ba80 Mon Sep 17 00:00:00 2001 From: Eli Hastings Date: Mon, 24 Feb 2025 16:30:43 +0000 Subject: Port ESP32-C3 changes to ESP32-C6 branch --- rtic-macros/src/codegen/bindings/esp32c6.rs | 46 ++++++++++++++++++----------- 1 file changed, 29 insertions(+), 17 deletions(-) (limited to 'rtic-macros/src') diff --git a/rtic-macros/src/codegen/bindings/esp32c6.rs b/rtic-macros/src/codegen/bindings/esp32c6.rs index 65ea384..8e0af33 100644 --- a/rtic-macros/src/codegen/bindings/esp32c6.rs +++ b/rtic-macros/src/codegen/bindings/esp32c6.rs @@ -86,23 +86,30 @@ mod esp32c6 { } stmts } + pub fn pre_init_enable_interrupts(app: &App, analysis: &CodegenAnalysis) -> Vec { let mut stmts = vec![]; let rt_err = util::rt_err_ident(); let max_prio: usize = 15; //unfortunately this is not part of pac, but we know that max prio is 15. + let min_prio: usize = 1; let interrupt_ids = analysis.interrupts.iter().map(|(p, (id, _))| (p, id)); // Unmask interrupts and set their priorities - for ((&priority, name), curr_cpu_id) in interrupt_ids.chain( - app.hardware_tasks - .values() - .filter_map(|task| Some((&task.args.priority, &task.args.binds))), - ).zip(EXTERNAL_INTERRUPTS) { + for ((&priority, name), curr_cpu_id) in interrupt_ids + .chain( + app.hardware_tasks + .values() + .filter_map(|task| Some((&task.args.priority, &task.args.binds))), + ) + .zip(EXTERNAL_INTERRUPTS) + { let es = format!( "Maximum priority used by interrupt vector '{name}' is more than supported by hardware" ); + let es_zero = format!("Priority {priority} used by interrupt vector '{name}' is less than supported by hardware"); // Compile time assert that this priority is supported by the device stmts.push(quote!( const _: () = if (#max_prio) <= #priority as usize { ::core::panic!(#es); }; + const _: () = if (#min_prio) > #priority as usize { ::core::panic!(#es_zero);}; )); stmts.push(quote!( rtic::export::enable( @@ -207,13 +214,11 @@ mod esp32c6 { stmts } - pub fn async_prio_limit(app: &App, analysis: &CodegenAnalysis) -> Vec { + pub fn async_prio_limit(_app: &App, analysis: &CodegenAnalysis) -> Vec { let max = if let Some(max) = analysis.max_async_prio { quote!(#max) } else { - // No limit - let device = &app.args.device; - quote!(1 << #device::NVIC_PRIO_BITS) + quote!(u8::MAX) // No limit }; vec![quote!( @@ -222,6 +227,7 @@ mod esp32c6 { static RTIC_ASYNC_MAX_LOGICAL_PRIO: u8 = #max; )] } + pub fn handler_config( app: &App, analysis: &CodegenAnalysis, @@ -229,14 +235,20 @@ mod esp32c6 { ) -> Vec { let mut stmts = vec![]; let interrupt_ids = analysis.interrupts.iter().map(|(p, (id, _))| (p, id)); - for ((_, name), curr_cpu_id) in interrupt_ids.chain( - app.hardware_tasks - .values() - .filter_map(|task| Some((&task.args.priority, &task.args.binds))), - ).zip(EXTERNAL_INTERRUPTS) { - if *name == dispatcher_name { - let ret = &("cpu_int_".to_owned() + &curr_cpu_id.to_string() + "_handler"); - stmts.push(quote!(#[export_name = #ret])); + for ((_, name), curr_cpu_id) in interrupt_ids + .chain( + app.hardware_tasks + .values() + .filter_map(|task| Some((&task.args.priority, &task.args.binds))), + ) + .zip(EXTERNAL_INTERRUPTS) + { + // interrupt1...interrupt19 are already defined in esp_hal + if curr_cpu_id > 19 { + if *name == dispatcher_name { + let ret = &("interrupt".to_owned() + &curr_cpu_id.to_string()); + stmts.push(quote!(#[export_name = #ret])); + } } } -- cgit v1.2.3