Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(rt): fix the image header of bl808 #22

Merged
merged 2 commits into from
Feb 4, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions bouffalo-rt/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ pub static FLASH_CONFIG: HalFlashConfig = HalFlashConfig::new(SpiFlashCfgType {
time_e_sector: 300,
time_e_32k: 1200,
time_e_64k: 1200,
time_ce: 30000,
time_ce: 33000,
time_page_pgm: 50,
pd_delay: 20,
qe_data: 0,
Expand Down Expand Up @@ -511,14 +511,14 @@ mod tests {
time_e_sector: 300,
time_e_32k: 1200,
time_e_64k: 1200,
time_ce: 30000,
time_ce: 33000,
time_page_pgm: 50,
pd_delay: 20,
qe_data: 0,
};
let test_config = HalFlashConfig::new(test_spi_flash_config);
assert_eq!(test_config.magic, 0x47464346);
assert_eq!(test_config.crc32, 0x18c5feb5);
assert_eq!(test_config.crc32, 0x482adef8);
}

#[test]
Expand Down
20 changes: 15 additions & 5 deletions bouffalo-rt/src/soc/bl808.rs
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,7 @@ pub static CLOCK_CONFIG: HalPllConfig = HalPllConfig::new(HalSysClkConfig {

dsp_bclk_div: 0x01,
dsp_pbclk: 0x02,
dsp_pbclk_div: 0x02,
dsp_pbclk_div: 0x00,
emi_clk: 0x02,

emi_clk_div: 0x01,
Expand Down Expand Up @@ -627,7 +627,17 @@ pub static CPU_CONFIG: [HalCpuCfg; 3] = [
msp_val: 0,
},
#[cfg(not(feature = "bl808-lp"))]
HalCpuCfg::disabled(),
HalCpuCfg {
config_enable: 0,
halt_cpu: 0,
cache_flags: 0,
_rsvd: 0,
cache_range_h: 1476722688,
cache_range_l: 1476657152,
image_address_offset: 0x42000,
boot_entry: 0x58040000,
msp_val: 0,
},
];

/// Code patches on flash reading.
Expand Down Expand Up @@ -799,7 +809,7 @@ impl HalCpuCfg {
cache_range_h: 0,
cache_range_l: 0,
image_address_offset: 0,
boot_entry: 0x0,
boot_entry: 0x58000000,
msp_val: 0,
}
}
Expand Down Expand Up @@ -1013,7 +1023,7 @@ mod tests {
#[test]
fn magic_crc32_hal_pll_config() {
let test_sys_clk_config = HalSysClkConfig {
xtal_type: 4,
xtal_type: 7,
mcu_clk: 4,
mcu_clk_div: 0,
mcu_bclk_div: 0,
Expand All @@ -1036,6 +1046,6 @@ mod tests {
};
let test_config = HalPllConfig::new(test_sys_clk_config);
assert_eq!(test_config.magic, 0x47464350);
assert_eq!(test_config.crc32, 0x29e2c4c0);
assert_eq!(test_config.crc32, 0x864b890a);
}
}
Loading