2021-07-29 13:14:18 +02:00
|
|
|
use chiptool::generate::CommonModule;
|
2021-11-24 00:42:14 +01:00
|
|
|
use proc_macro2::TokenStream;
|
2021-06-07 05:10:11 +02:00
|
|
|
use regex::Regex;
|
2021-07-30 17:06:58 +02:00
|
|
|
use std::collections::{BTreeMap, HashMap, HashSet};
|
2021-06-07 05:10:11 +02:00
|
|
|
use std::fmt::Write as _;
|
|
|
|
use std::fs;
|
|
|
|
use std::fs::File;
|
|
|
|
use std::io::Write;
|
|
|
|
use std::path::Path;
|
|
|
|
use std::path::PathBuf;
|
2021-11-24 00:42:14 +01:00
|
|
|
use std::str::FromStr;
|
2021-06-07 05:10:11 +02:00
|
|
|
|
2021-07-22 20:18:48 +02:00
|
|
|
use chiptool::util::ToSanitizedSnakeCase;
|
2021-07-29 13:14:18 +02:00
|
|
|
use chiptool::{generate, ir, transform};
|
2021-06-07 05:10:11 +02:00
|
|
|
|
2021-11-22 02:37:46 +01:00
|
|
|
mod data;
|
|
|
|
use data::*;
|
2021-06-07 05:10:11 +02:00
|
|
|
|
2021-07-30 17:06:58 +02:00
|
|
|
fn make_peripheral_counts(out: &mut String, data: &BTreeMap<String, u8>) {
|
2021-07-13 05:47:10 +02:00
|
|
|
write!(
|
|
|
|
out,
|
|
|
|
"#[macro_export]
|
2021-06-25 20:00:11 +02:00
|
|
|
macro_rules! peripheral_count {{
|
2021-07-13 05:47:10 +02:00
|
|
|
"
|
|
|
|
)
|
|
|
|
.unwrap();
|
2021-06-25 20:00:11 +02:00
|
|
|
for (name, count) in data {
|
2021-07-13 05:47:10 +02:00
|
|
|
write!(out, "({}) => ({});\n", name, count,).unwrap();
|
2021-06-25 20:00:11 +02:00
|
|
|
}
|
2021-07-13 05:47:10 +02:00
|
|
|
write!(out, " }}\n").unwrap();
|
2021-06-25 20:00:11 +02:00
|
|
|
}
|
|
|
|
|
2021-07-30 17:06:58 +02:00
|
|
|
fn make_dma_channel_counts(out: &mut String, data: &BTreeMap<String, u8>) {
|
2021-11-02 17:03:56 +01:00
|
|
|
if data.len() == 0 {
|
|
|
|
return;
|
|
|
|
}
|
2021-07-15 18:25:51 +02:00
|
|
|
write!(
|
|
|
|
out,
|
|
|
|
"#[macro_export]
|
2021-07-12 21:48:26 +02:00
|
|
|
macro_rules! dma_channels_count {{
|
2021-07-15 18:25:51 +02:00
|
|
|
"
|
|
|
|
)
|
|
|
|
.unwrap();
|
2021-07-12 21:48:26 +02:00
|
|
|
for (name, count) in data {
|
2021-07-15 18:25:51 +02:00
|
|
|
write!(out, "({}) => ({});\n", name, count,).unwrap();
|
2021-07-12 21:48:26 +02:00
|
|
|
}
|
2021-07-15 18:25:51 +02:00
|
|
|
write!(out, " }}\n").unwrap();
|
2021-07-12 21:48:26 +02:00
|
|
|
}
|
|
|
|
|
2021-06-07 05:10:11 +02:00
|
|
|
fn make_table(out: &mut String, name: &str, data: &Vec<Vec<String>>) {
|
|
|
|
write!(
|
|
|
|
out,
|
|
|
|
"#[macro_export]
|
|
|
|
macro_rules! {} {{
|
|
|
|
($($pat:tt => $code:tt;)*) => {{
|
|
|
|
macro_rules! __{}_inner {{
|
|
|
|
$(($pat) => $code;)*
|
|
|
|
($_:tt) => {{}}
|
|
|
|
}}
|
|
|
|
",
|
|
|
|
name, name
|
|
|
|
)
|
2021-07-13 05:47:10 +02:00
|
|
|
.unwrap();
|
2021-06-07 05:10:11 +02:00
|
|
|
|
|
|
|
for row in data {
|
|
|
|
write!(out, " __{}_inner!(({}));\n", name, row.join(",")).unwrap();
|
|
|
|
}
|
|
|
|
|
|
|
|
write!(
|
|
|
|
out,
|
|
|
|
" }};
|
|
|
|
}}"
|
|
|
|
)
|
2021-07-13 05:47:10 +02:00
|
|
|
.unwrap();
|
2021-06-07 05:10:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
pub struct Options {
|
|
|
|
pub chips: Vec<String>,
|
|
|
|
pub out_dir: PathBuf,
|
|
|
|
pub data_dir: PathBuf,
|
|
|
|
}
|
|
|
|
|
2021-11-23 23:49:06 +01:00
|
|
|
pub fn gen_chip(
|
|
|
|
options: &Options,
|
|
|
|
chip_core_name: &str,
|
|
|
|
chip: &Chip,
|
|
|
|
core: &Core,
|
|
|
|
core_index: usize,
|
|
|
|
all_peripheral_versions: &mut HashSet<(String, String)>,
|
|
|
|
) {
|
|
|
|
let mut ir = ir::IR::new();
|
|
|
|
|
|
|
|
let mut dev = ir::Device {
|
|
|
|
interrupts: Vec::new(),
|
|
|
|
peripherals: Vec::new(),
|
2021-06-07 05:10:11 +02:00
|
|
|
};
|
|
|
|
|
2021-11-23 23:49:06 +01:00
|
|
|
// Load DBGMCU register for chip
|
|
|
|
let mut dbgmcu: Option<ir::IR> = core.peripherals.iter().find_map(|(name, p)| {
|
|
|
|
if name == "DBGMCU" {
|
|
|
|
p.block.as_ref().map(|block| {
|
|
|
|
let bi = BlockInfo::parse(block);
|
|
|
|
let dbgmcu_reg_path = options
|
|
|
|
.data_dir
|
|
|
|
.join("registers")
|
|
|
|
.join(&format!("{}_{}.yaml", bi.module, bi.version));
|
|
|
|
serde_yaml::from_reader(File::open(dbgmcu_reg_path).unwrap()).unwrap()
|
|
|
|
})
|
2021-09-15 13:35:00 +02:00
|
|
|
} else {
|
|
|
|
None
|
2021-11-23 23:49:06 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
let mut peripheral_versions: BTreeMap<String, String> = BTreeMap::new();
|
|
|
|
let mut pin_table: Vec<Vec<String>> = Vec::new();
|
|
|
|
let mut interrupt_table: Vec<Vec<String>> = Vec::new();
|
|
|
|
let mut peripherals_table: Vec<Vec<String>> = Vec::new();
|
|
|
|
let mut peripheral_pins_table: Vec<Vec<String>> = Vec::new();
|
|
|
|
let mut peripheral_rcc_table: Vec<Vec<String>> = Vec::new();
|
|
|
|
let mut dma_channels_table: Vec<Vec<String>> = Vec::new();
|
|
|
|
let mut peripheral_dma_channels_table: Vec<Vec<String>> = Vec::new();
|
|
|
|
let mut peripheral_counts: BTreeMap<String, u8> = BTreeMap::new();
|
|
|
|
let mut dma_channel_counts: BTreeMap<String, u8> = BTreeMap::new();
|
|
|
|
let mut dbgmcu_table: Vec<Vec<String>> = Vec::new();
|
|
|
|
|
|
|
|
let gpio_base = core.peripherals.get(&"GPIOA".to_string()).unwrap().address as u32;
|
|
|
|
let gpio_stride = 0x400;
|
|
|
|
|
|
|
|
let number_suffix_re = Regex::new("^(.*?)[0-9]*$").unwrap();
|
|
|
|
|
|
|
|
if let Some(ref mut reg) = dbgmcu {
|
|
|
|
if let Some(ref cr) = reg.fieldsets.get("CR") {
|
|
|
|
for field in cr.fields.iter().filter(|e| e.name.contains("DBG")) {
|
|
|
|
let mut fn_name = String::new();
|
|
|
|
fn_name.push_str("set_");
|
|
|
|
fn_name.push_str(&field.name.to_sanitized_snake_case());
|
|
|
|
dbgmcu_table.push(vec!["cr".into(), fn_name]);
|
2021-06-16 15:12:07 +02:00
|
|
|
}
|
2021-11-23 23:49:06 +01:00
|
|
|
}
|
|
|
|
}
|
2021-06-07 05:10:11 +02:00
|
|
|
|
2021-11-23 23:49:06 +01:00
|
|
|
for (name, p) in &core.peripherals {
|
|
|
|
let captures = number_suffix_re.captures(&name).unwrap();
|
|
|
|
let root_peri_name = captures.get(1).unwrap().as_str().to_string();
|
|
|
|
peripheral_counts.insert(
|
|
|
|
root_peri_name.clone(),
|
|
|
|
peripheral_counts.get(&root_peri_name).map_or(1, |v| v + 1),
|
|
|
|
);
|
|
|
|
let mut ir_peri = ir::Peripheral {
|
|
|
|
name: name.clone(),
|
|
|
|
array: None,
|
|
|
|
base_address: p.address,
|
|
|
|
block: None,
|
|
|
|
description: None,
|
|
|
|
interrupts: HashMap::new(),
|
2021-06-07 05:10:11 +02:00
|
|
|
};
|
|
|
|
|
2021-11-23 23:49:06 +01:00
|
|
|
if let Some(block) = &p.block {
|
|
|
|
let bi = BlockInfo::parse(block);
|
2021-08-19 22:16:27 +02:00
|
|
|
|
2021-06-25 20:00:11 +02:00
|
|
|
peripheral_counts.insert(
|
2021-11-23 23:49:06 +01:00
|
|
|
bi.module.clone(),
|
|
|
|
peripheral_counts.get(&bi.module).map_or(1, |v| v + 1),
|
2021-06-25 20:00:11 +02:00
|
|
|
);
|
2021-07-13 15:50:42 +02:00
|
|
|
|
2021-11-23 23:49:06 +01:00
|
|
|
for pin in &p.pins {
|
|
|
|
let mut row = Vec::new();
|
|
|
|
row.push(name.clone());
|
|
|
|
row.push(bi.module.clone());
|
|
|
|
row.push(bi.block.clone());
|
|
|
|
row.push(pin.pin.clone());
|
|
|
|
row.push(pin.signal.clone());
|
|
|
|
if let Some(ref af) = pin.af {
|
|
|
|
row.push(af.clone());
|
2021-06-07 05:10:11 +02:00
|
|
|
}
|
2021-11-23 23:49:06 +01:00
|
|
|
peripheral_pins_table.push(row);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (signal, irq_name) in &p.interrupts {
|
|
|
|
let mut row = Vec::new();
|
|
|
|
row.push(name.clone());
|
|
|
|
row.push(bi.module.clone());
|
|
|
|
row.push(bi.block.clone());
|
|
|
|
row.push(signal.clone());
|
|
|
|
row.push(irq_name.to_ascii_uppercase());
|
|
|
|
interrupt_table.push(row)
|
|
|
|
}
|
2021-06-07 05:10:11 +02:00
|
|
|
|
2021-11-23 23:49:06 +01:00
|
|
|
for (request, dma_channels) in &p.dma_channels {
|
|
|
|
for channel in dma_channels.iter() {
|
2021-07-27 18:52:01 +02:00
|
|
|
let mut row = Vec::new();
|
|
|
|
row.push(name.clone());
|
|
|
|
row.push(bi.module.clone());
|
|
|
|
row.push(bi.block.clone());
|
2021-11-23 23:49:06 +01:00
|
|
|
row.push(request.clone());
|
|
|
|
row.push(if let Some(channel) = &channel.channel {
|
|
|
|
format!("{{channel: {}}}", channel)
|
|
|
|
} else if let Some(dmamux) = &channel.dmamux {
|
|
|
|
format!("{{dmamux: {}}}", dmamux)
|
|
|
|
} else {
|
|
|
|
unreachable!();
|
|
|
|
});
|
|
|
|
|
|
|
|
row.push(if let Some(request) = channel.request {
|
|
|
|
request.to_string()
|
|
|
|
} else {
|
|
|
|
"()".to_string()
|
|
|
|
});
|
|
|
|
|
|
|
|
if peripheral_dma_channels_table
|
|
|
|
.iter()
|
|
|
|
.find(|a| a[..a.len() - 1] == row[..row.len() - 1])
|
|
|
|
.is_none()
|
|
|
|
{
|
|
|
|
peripheral_dma_channels_table.push(row);
|
2021-06-22 20:53:19 +02:00
|
|
|
}
|
|
|
|
}
|
2021-11-23 23:49:06 +01:00
|
|
|
}
|
2021-06-22 20:53:19 +02:00
|
|
|
|
2021-11-23 23:49:06 +01:00
|
|
|
let mut peripheral_row = Vec::new();
|
|
|
|
peripheral_row.push(bi.module.clone());
|
|
|
|
peripheral_row.push(name.clone());
|
|
|
|
peripherals_table.push(peripheral_row);
|
|
|
|
|
|
|
|
if let Some(old_version) =
|
|
|
|
peripheral_versions.insert(bi.module.clone(), bi.version.clone())
|
|
|
|
{
|
|
|
|
if old_version != bi.version {
|
|
|
|
panic!(
|
|
|
|
"Peripheral {} has multiple versions: {} and {}",
|
|
|
|
bi.module, old_version, bi.version
|
|
|
|
);
|
2021-06-07 05:10:11 +02:00
|
|
|
}
|
2021-11-23 23:49:06 +01:00
|
|
|
}
|
|
|
|
ir_peri.block = Some(format!("{}::{}", bi.module, bi.block));
|
|
|
|
|
|
|
|
match bi.module.as_str() {
|
|
|
|
"gpio" => {
|
|
|
|
let port_letter = name.chars().skip(4).next().unwrap();
|
|
|
|
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 0..16 {
|
|
|
|
let pin_name = format!("P{}{}", port_letter, pin_num);
|
|
|
|
pin_table.push(vec![
|
|
|
|
pin_name.clone(),
|
|
|
|
name.clone(),
|
|
|
|
port_num.to_string(),
|
|
|
|
pin_num.to_string(),
|
|
|
|
format!("EXTI{}", pin_num),
|
|
|
|
]);
|
2021-06-07 05:10:11 +02:00
|
|
|
}
|
|
|
|
}
|
2021-11-23 23:49:06 +01:00
|
|
|
_ => {}
|
|
|
|
}
|
2021-06-07 05:10:11 +02:00
|
|
|
|
2021-11-29 02:10:06 +01:00
|
|
|
if let Some(rcc) = &p.rcc {
|
|
|
|
let mut clock = rcc.clock.to_ascii_lowercase();
|
|
|
|
if name.starts_with("TIM") {
|
|
|
|
clock = format!("{}_tim", clock)
|
|
|
|
}
|
2021-11-23 23:49:06 +01:00
|
|
|
|
2021-11-29 02:10:06 +01:00
|
|
|
let mut row = Vec::new();
|
|
|
|
row.push(name.clone());
|
|
|
|
row.push(bi.module.clone());
|
|
|
|
row.push(bi.block.clone());
|
|
|
|
row.push(clock);
|
|
|
|
|
|
|
|
for reg in [&rcc.registers.enable, &rcc.registers.reset] {
|
|
|
|
if let Some(reg) = reg {
|
|
|
|
row.push(format!(
|
|
|
|
"({}, {}, set_{})",
|
|
|
|
reg.register.to_ascii_lowercase(),
|
|
|
|
reg.field.to_ascii_lowercase(),
|
|
|
|
reg.field.to_ascii_lowercase()
|
|
|
|
));
|
2021-11-23 23:49:06 +01:00
|
|
|
} else {
|
2021-11-29 02:10:06 +01:00
|
|
|
row.push("_".to_string())
|
2021-08-19 22:16:27 +02:00
|
|
|
}
|
2021-06-07 05:10:11 +02:00
|
|
|
}
|
2021-11-29 02:10:06 +01:00
|
|
|
|
|
|
|
peripheral_rcc_table.push(row);
|
2021-06-07 05:10:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-23 23:49:06 +01:00
|
|
|
dev.peripherals.push(ir_peri);
|
|
|
|
}
|
2021-07-12 21:48:26 +02:00
|
|
|
|
2021-11-23 23:49:06 +01:00
|
|
|
for (id, channel_info) in &core.dma_channels {
|
|
|
|
let mut row = Vec::new();
|
|
|
|
let dma_peri = core.peripherals.get(&channel_info.dma).unwrap();
|
|
|
|
let bi = BlockInfo::parse(dma_peri.block.as_ref().unwrap());
|
|
|
|
|
|
|
|
row.push(id.clone());
|
|
|
|
row.push(channel_info.dma.clone());
|
|
|
|
row.push(bi.module.clone());
|
|
|
|
row.push(channel_info.channel.to_string());
|
|
|
|
if let Some(dmamux) = &channel_info.dmamux {
|
|
|
|
let dmamux_channel = channel_info.dmamux_channel.unwrap();
|
|
|
|
row.push(format!(
|
|
|
|
"{{dmamux: {}, dmamux_channel: {}}}",
|
|
|
|
dmamux, dmamux_channel
|
|
|
|
));
|
|
|
|
} else {
|
|
|
|
row.push("{}".to_string());
|
2021-07-12 16:32:57 +02:00
|
|
|
}
|
|
|
|
|
2021-11-23 23:49:06 +01:00
|
|
|
dma_channels_table.push(row);
|
2021-06-07 05:10:11 +02:00
|
|
|
|
2021-11-23 23:49:06 +01:00
|
|
|
let dma_peri_name = channel_info.dma.clone();
|
|
|
|
dma_channel_counts.insert(
|
|
|
|
dma_peri_name.clone(),
|
|
|
|
dma_channel_counts.get(&dma_peri_name).map_or(1, |v| v + 1),
|
|
|
|
);
|
|
|
|
}
|
2021-06-25 20:00:11 +02:00
|
|
|
|
2021-11-23 23:49:06 +01:00
|
|
|
for (name, &num) in &core.interrupts {
|
|
|
|
dev.interrupts.push(ir::Interrupt {
|
|
|
|
name: name.clone(),
|
|
|
|
description: None,
|
|
|
|
value: num,
|
|
|
|
});
|
2021-06-25 20:00:11 +02:00
|
|
|
|
2021-11-23 23:49:06 +01:00
|
|
|
let name = name.to_ascii_uppercase();
|
|
|
|
|
|
|
|
interrupt_table.push(vec![name.clone()]);
|
|
|
|
|
|
|
|
if name.contains("EXTI") {
|
|
|
|
interrupt_table.push(vec!["EXTI".to_string(), name.clone()]);
|
2021-06-07 05:10:11 +02:00
|
|
|
}
|
2021-11-23 23:49:06 +01:00
|
|
|
}
|
2021-06-07 05:10:11 +02:00
|
|
|
|
2021-11-23 23:49:06 +01:00
|
|
|
ir.devices.insert("".to_string(), dev);
|
2021-06-07 05:10:11 +02:00
|
|
|
|
2021-11-23 23:49:06 +01:00
|
|
|
let mut extra = format!(
|
|
|
|
"pub fn GPIO(n: usize) -> gpio::Gpio {{
|
2021-06-07 05:10:11 +02:00
|
|
|
gpio::Gpio(({} + {}*n) as _)
|
|
|
|
}}",
|
2021-11-23 23:49:06 +01:00
|
|
|
gpio_base, gpio_stride,
|
|
|
|
);
|
|
|
|
|
2021-11-24 01:04:23 +01:00
|
|
|
for (module, version) in &peripheral_versions {
|
2021-11-23 23:49:06 +01:00
|
|
|
all_peripheral_versions.insert((module.clone(), version.clone()));
|
2021-08-17 14:25:18 +02:00
|
|
|
write!(
|
|
|
|
&mut extra,
|
2021-11-23 23:49:06 +01:00
|
|
|
"#[path=\"../../peripherals/{}_{}.rs\"] pub mod {};\n",
|
|
|
|
module, version, module
|
2021-08-17 14:25:18 +02:00
|
|
|
)
|
|
|
|
.unwrap();
|
2021-11-23 23:49:06 +01:00
|
|
|
}
|
|
|
|
write!(
|
|
|
|
&mut extra,
|
|
|
|
"pub const CORE_INDEX: usize = {};\n",
|
|
|
|
core_index
|
|
|
|
)
|
|
|
|
.unwrap();
|
2021-06-07 05:10:11 +02:00
|
|
|
|
2021-11-23 23:49:06 +01:00
|
|
|
// Cleanups!
|
|
|
|
transform::sort::Sort {}.run(&mut ir).unwrap();
|
|
|
|
transform::Sanitize {}.run(&mut ir).unwrap();
|
2021-06-07 05:10:11 +02:00
|
|
|
|
2021-11-24 01:04:23 +01:00
|
|
|
// ==============================
|
|
|
|
// Setup chip dir
|
|
|
|
|
2021-11-23 23:49:06 +01:00
|
|
|
let chip_dir = options
|
|
|
|
.out_dir
|
|
|
|
.join("src/chips")
|
|
|
|
.join(chip_core_name.to_ascii_lowercase());
|
|
|
|
fs::create_dir_all(&chip_dir).unwrap();
|
2021-06-07 05:10:11 +02:00
|
|
|
|
2021-11-24 01:04:23 +01:00
|
|
|
// ==============================
|
|
|
|
// generate pac.rs
|
|
|
|
|
|
|
|
let data = generate::render(&ir, &gen_opts()).unwrap().to_string();
|
|
|
|
let data = data.replace("] ", "]\n");
|
2021-06-07 05:10:11 +02:00
|
|
|
|
2021-11-23 23:49:06 +01:00
|
|
|
// Remove inner attributes like #![no_std]
|
2021-11-24 01:04:23 +01:00
|
|
|
let data = Regex::new("# *! *\\[.*\\]").unwrap().replace_all(&data, "");
|
|
|
|
|
|
|
|
let mut file = File::create(chip_dir.join("pac.rs")).unwrap();
|
2021-11-23 23:49:06 +01:00
|
|
|
file.write_all(data.as_bytes()).unwrap();
|
|
|
|
file.write_all(extra.as_bytes()).unwrap();
|
2021-06-07 05:10:11 +02:00
|
|
|
|
2021-11-23 23:49:06 +01:00
|
|
|
let mut device_x = String::new();
|
2021-06-07 05:10:11 +02:00
|
|
|
|
2021-11-23 23:49:06 +01:00
|
|
|
for (name, _) in &core.interrupts {
|
|
|
|
write!(
|
|
|
|
&mut device_x,
|
|
|
|
"PROVIDE({} = DefaultHandler);\n",
|
|
|
|
name.to_ascii_uppercase()
|
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
}
|
2021-06-07 05:10:11 +02:00
|
|
|
|
2021-11-24 01:04:23 +01:00
|
|
|
// ==============================
|
|
|
|
// generate mod.rs
|
|
|
|
|
|
|
|
let mut data = String::new();
|
|
|
|
|
|
|
|
write!(&mut data, "#[cfg(feature=\"pac\")] mod pac;").unwrap();
|
|
|
|
write!(&mut data, "#[cfg(feature=\"pac\")] pub use pac::*; ").unwrap();
|
|
|
|
|
|
|
|
let peripheral_version_table = peripheral_versions
|
|
|
|
.iter()
|
|
|
|
.map(|(kind, version)| vec![kind.clone(), version.clone()])
|
|
|
|
.collect();
|
|
|
|
|
|
|
|
make_table(&mut data, "pins", &pin_table);
|
|
|
|
make_table(&mut data, "interrupts", &interrupt_table);
|
|
|
|
make_table(&mut data, "peripherals", &peripherals_table);
|
|
|
|
make_table(&mut data, "peripheral_versions", &peripheral_version_table);
|
|
|
|
make_table(&mut data, "peripheral_pins", &peripheral_pins_table);
|
|
|
|
make_table(
|
|
|
|
&mut data,
|
|
|
|
"peripheral_dma_channels",
|
|
|
|
&peripheral_dma_channels_table,
|
|
|
|
);
|
|
|
|
make_table(&mut data, "peripheral_rcc", &peripheral_rcc_table);
|
|
|
|
make_table(&mut data, "dma_channels", &dma_channels_table);
|
|
|
|
make_table(&mut data, "dbgmcu", &dbgmcu_table);
|
|
|
|
make_peripheral_counts(&mut data, &peripheral_counts);
|
|
|
|
make_dma_channel_counts(&mut data, &dma_channel_counts);
|
|
|
|
|
|
|
|
let mut file = File::create(chip_dir.join("mod.rs")).unwrap();
|
|
|
|
file.write_all(data.as_bytes()).unwrap();
|
|
|
|
|
|
|
|
// ==============================
|
|
|
|
// generate device.x
|
|
|
|
|
2021-11-23 23:49:06 +01:00
|
|
|
File::create(chip_dir.join("device.x"))
|
|
|
|
.unwrap()
|
|
|
|
.write_all(device_x.as_bytes())
|
|
|
|
.unwrap();
|
|
|
|
|
2021-11-24 01:04:23 +01:00
|
|
|
// ==============================
|
2021-11-23 23:49:06 +01:00
|
|
|
// generate default memory.x
|
|
|
|
gen_memory_x(&chip_dir, &chip);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn load_chip(options: &Options, name: &str) -> Chip {
|
|
|
|
let chip_path = options
|
|
|
|
.data_dir
|
|
|
|
.join("chips")
|
|
|
|
.join(&format!("{}.yaml", name));
|
|
|
|
let chip = fs::read(chip_path).expect(&format!("Could not load chip {}", name));
|
|
|
|
serde_yaml::from_slice(&chip).unwrap()
|
|
|
|
}
|
|
|
|
|
2021-11-24 00:42:14 +01:00
|
|
|
fn gen_opts() -> generate::Options {
|
|
|
|
generate::Options {
|
|
|
|
common_module: CommonModule::External(TokenStream::from_str("crate::common").unwrap()),
|
|
|
|
}
|
|
|
|
}
|
2021-11-23 23:49:06 +01:00
|
|
|
|
2021-11-24 00:42:14 +01:00
|
|
|
pub fn gen(options: Options) {
|
2021-11-23 23:49:06 +01:00
|
|
|
fs::create_dir_all(options.out_dir.join("src/peripherals")).unwrap();
|
|
|
|
fs::create_dir_all(options.out_dir.join("src/chips")).unwrap();
|
|
|
|
|
|
|
|
let mut all_peripheral_versions: HashSet<(String, String)> = HashSet::new();
|
|
|
|
let mut chip_core_names: Vec<String> = Vec::new();
|
2021-07-30 20:06:10 +02:00
|
|
|
|
2021-11-23 23:49:06 +01:00
|
|
|
for chip_name in &options.chips {
|
2021-11-29 02:10:06 +01:00
|
|
|
println!("Generating {}...", chip_name);
|
|
|
|
|
2021-11-23 23:49:06 +01:00
|
|
|
let chip = load_chip(&options, chip_name);
|
|
|
|
for (core_index, core) in chip.cores.iter().enumerate() {
|
|
|
|
let chip_core_name = match chip.cores.len() {
|
|
|
|
1 => chip_name.clone(),
|
|
|
|
_ => format!("{}-{}", chip_name, core.name),
|
|
|
|
};
|
|
|
|
|
|
|
|
chip_core_names.push(chip_core_name.clone());
|
|
|
|
gen_chip(
|
|
|
|
&options,
|
|
|
|
&chip_core_name,
|
|
|
|
&chip,
|
|
|
|
core,
|
|
|
|
core_index,
|
|
|
|
&mut all_peripheral_versions,
|
|
|
|
)
|
|
|
|
}
|
2021-06-07 05:10:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
for (module, version) in all_peripheral_versions {
|
|
|
|
println!("loading {} {}", module, version);
|
|
|
|
|
2021-11-23 23:49:06 +01:00
|
|
|
let regs_path = Path::new(&options.data_dir)
|
2021-06-07 05:10:11 +02:00
|
|
|
.join("registers")
|
|
|
|
.join(&format!("{}_{}.yaml", module, version));
|
|
|
|
|
|
|
|
let mut ir: ir::IR = serde_yaml::from_reader(File::open(regs_path).unwrap()).unwrap();
|
|
|
|
|
|
|
|
transform::expand_extends::ExpandExtends {}
|
|
|
|
.run(&mut ir)
|
|
|
|
.unwrap();
|
|
|
|
|
2021-07-29 13:14:18 +02:00
|
|
|
transform::map_names(&mut ir, |k, s| match k {
|
|
|
|
transform::NameKind::Block => *s = format!("{}", s),
|
|
|
|
transform::NameKind::Fieldset => *s = format!("regs::{}", s),
|
|
|
|
transform::NameKind::Enum => *s = format!("vals::{}", s),
|
|
|
|
_ => {}
|
|
|
|
});
|
2021-06-07 05:10:11 +02:00
|
|
|
|
|
|
|
transform::sort::Sort {}.run(&mut ir).unwrap();
|
|
|
|
transform::Sanitize {}.run(&mut ir).unwrap();
|
|
|
|
|
2021-11-24 00:42:14 +01:00
|
|
|
let items = generate::render(&ir, &gen_opts()).unwrap();
|
2021-06-07 05:10:11 +02:00
|
|
|
let mut file = File::create(
|
2021-11-23 23:49:06 +01:00
|
|
|
options
|
|
|
|
.out_dir
|
2021-06-07 05:10:11 +02:00
|
|
|
.join("src/peripherals")
|
|
|
|
.join(format!("{}_{}.rs", module, version)),
|
|
|
|
)
|
2021-07-13 05:47:10 +02:00
|
|
|
.unwrap();
|
2021-06-07 05:10:11 +02:00
|
|
|
let data = items.to_string().replace("] ", "]\n");
|
|
|
|
|
|
|
|
// Remove inner attributes like #![no_std]
|
|
|
|
let re = Regex::new("# *! *\\[.*\\]").unwrap();
|
|
|
|
let data = re.replace_all(&data, "");
|
|
|
|
file.write_all(data.as_bytes()).unwrap();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Generate src/lib_inner.rs
|
|
|
|
const PATHS_MARKER: &[u8] = b"// GEN PATHS HERE";
|
|
|
|
let librs = include_bytes!("assets/lib_inner.rs");
|
|
|
|
let i = bytes_find(librs, PATHS_MARKER).unwrap();
|
|
|
|
let mut paths = String::new();
|
2021-06-16 15:12:07 +02:00
|
|
|
|
2021-11-23 23:49:06 +01:00
|
|
|
for name in chip_core_names {
|
|
|
|
let x = name.to_ascii_lowercase();
|
|
|
|
write!(
|
|
|
|
&mut paths,
|
2021-11-24 01:04:23 +01:00
|
|
|
"#[cfg_attr(feature=\"{}\", path = \"chips/{}/mod.rs\")]",
|
2021-11-23 23:49:06 +01:00
|
|
|
x, x
|
|
|
|
)
|
|
|
|
.unwrap();
|
2021-06-07 05:10:11 +02:00
|
|
|
}
|
|
|
|
let mut contents: Vec<u8> = Vec::new();
|
|
|
|
contents.extend(&librs[..i]);
|
|
|
|
contents.extend(paths.as_bytes());
|
|
|
|
contents.extend(&librs[i + PATHS_MARKER.len()..]);
|
2021-11-23 23:49:06 +01:00
|
|
|
fs::write(options.out_dir.join("src").join("lib_inner.rs"), &contents).unwrap();
|
2021-06-07 05:10:11 +02:00
|
|
|
|
|
|
|
// Generate src/lib.rs
|
|
|
|
const CUT_MARKER: &[u8] = b"// GEN CUT HERE";
|
2021-07-13 05:47:10 +02:00
|
|
|
let librs = include_bytes!("../../stm32-metapac/src/lib.rs");
|
2021-06-07 05:10:11 +02:00
|
|
|
let i = bytes_find(librs, CUT_MARKER).unwrap();
|
|
|
|
let mut contents: Vec<u8> = Vec::new();
|
|
|
|
contents.extend(&librs[..i]);
|
|
|
|
contents.extend(b"include!(\"lib_inner.rs\");\n");
|
2021-11-23 23:49:06 +01:00
|
|
|
fs::write(options.out_dir.join("src").join("lib.rs"), contents).unwrap();
|
2021-06-07 05:10:11 +02:00
|
|
|
|
|
|
|
// Generate src/common.rs
|
|
|
|
fs::write(
|
2021-11-23 23:49:06 +01:00
|
|
|
options.out_dir.join("src").join("common.rs"),
|
2021-06-07 05:10:11 +02:00
|
|
|
generate::COMMON_MODULE,
|
|
|
|
)
|
2021-07-13 05:47:10 +02:00
|
|
|
.unwrap();
|
2021-06-07 05:10:11 +02:00
|
|
|
|
|
|
|
// Generate Cargo.toml
|
|
|
|
const BUILDDEP_BEGIN: &[u8] = b"# BEGIN BUILD DEPENDENCIES";
|
|
|
|
const BUILDDEP_END: &[u8] = b"# END BUILD DEPENDENCIES";
|
|
|
|
|
2021-07-13 05:47:10 +02:00
|
|
|
let mut contents = include_bytes!("../../stm32-metapac/Cargo.toml").to_vec();
|
2021-06-07 05:10:11 +02:00
|
|
|
let begin = bytes_find(&contents, BUILDDEP_BEGIN).unwrap();
|
|
|
|
let end = bytes_find(&contents, BUILDDEP_END).unwrap() + BUILDDEP_END.len();
|
|
|
|
contents.drain(begin..end);
|
2021-11-23 23:49:06 +01:00
|
|
|
fs::write(options.out_dir.join("Cargo.toml"), contents).unwrap();
|
2021-06-07 05:10:11 +02:00
|
|
|
|
|
|
|
// Generate build.rs
|
2021-11-23 23:49:06 +01:00
|
|
|
fs::write(
|
|
|
|
options.out_dir.join("build.rs"),
|
|
|
|
include_bytes!("assets/build.rs"),
|
|
|
|
)
|
|
|
|
.unwrap();
|
2021-06-07 05:10:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn bytes_find(haystack: &[u8], needle: &[u8]) -> Option<usize> {
|
|
|
|
haystack
|
|
|
|
.windows(needle.len())
|
|
|
|
.position(|window| window == needle)
|
|
|
|
}
|
2021-07-30 20:06:10 +02:00
|
|
|
|
|
|
|
fn gen_memory_x(out_dir: &PathBuf, chip: &Chip) {
|
|
|
|
let mut memory_x = String::new();
|
|
|
|
|
2021-08-04 12:43:51 +02:00
|
|
|
let flash_bytes = chip
|
|
|
|
.flash
|
|
|
|
.regions
|
|
|
|
.get("BANK_1")
|
|
|
|
.unwrap()
|
|
|
|
.bytes
|
|
|
|
.unwrap_or(chip.flash.bytes);
|
2021-07-30 20:06:10 +02:00
|
|
|
let flash_origin = chip.flash.regions.get("BANK_1").unwrap().base;
|
|
|
|
|
2021-08-04 12:43:51 +02:00
|
|
|
let ram_bytes = chip
|
|
|
|
.ram
|
|
|
|
.regions
|
|
|
|
.get("SRAM")
|
|
|
|
.unwrap()
|
|
|
|
.bytes
|
|
|
|
.unwrap_or(chip.ram.bytes);
|
2021-07-30 20:06:10 +02:00
|
|
|
let ram_origin = chip.ram.regions.get("SRAM").unwrap().base;
|
|
|
|
|
|
|
|
write!(memory_x, "MEMORY\n{{\n").unwrap();
|
2021-08-04 12:43:51 +02:00
|
|
|
write!(
|
|
|
|
memory_x,
|
|
|
|
" FLASH : ORIGIN = 0x{:x}, LENGTH = {}\n",
|
|
|
|
flash_origin, flash_bytes
|
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
write!(
|
|
|
|
memory_x,
|
|
|
|
" RAM : ORIGIN = 0x{:x}, LENGTH = {}\n",
|
|
|
|
ram_origin, ram_bytes
|
|
|
|
)
|
|
|
|
.unwrap();
|
2021-07-30 20:06:10 +02:00
|
|
|
write!(memory_x, "}}").unwrap();
|
|
|
|
|
2021-08-02 19:21:30 +02:00
|
|
|
fs::create_dir_all(out_dir.join("memory_x")).unwrap();
|
|
|
|
let mut file = File::create(out_dir.join("memory_x").join("memory.x")).unwrap();
|
2021-08-04 12:29:20 +02:00
|
|
|
file.write_all(memory_x.as_bytes()).unwrap();
|
2021-07-30 20:06:10 +02:00
|
|
|
}
|