Skip to content

Commit

Permalink
ESP32-C6/H2: UART sync registers and use xtal (esp-rs#893)
Browse files Browse the repository at this point in the history
* ESP32-C6/H2: UART sync registers and use xtal

* CHANGELOG.md entry
  • Loading branch information
bjoernQ authored and katyo committed Nov 6, 2023
1 parent 81d73fc commit c46813b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed
- ESP32-C3: Make sure BLE and WiFi are not powered down when esp-wifi needs them (#891)
- ESP32-C6/H2: Fix setting UART baud rate (#893)

### Removed

Expand Down
14 changes: 8 additions & 6 deletions esp-hal-common/src/uart.rs
Original file line number Diff line number Diff line change
Expand Up @@ -721,9 +721,9 @@ where

#[cfg(any(esp32c6, esp32h2))]
fn change_baud(&self, baudrate: u32, clocks: &Clocks) {
// we force the clock source to be APB and don't use the decimal part of the
// divider
let clk = clocks.apb_clock.to_Hz();
// we force the clock source to be XTAL and don't use the decimal part of
// the divider
let clk = clocks.xtal_clock.to_Hz();
let max_div = 0b1111_1111_1111 - 1;
let clk_div = ((clk) + (max_div * baudrate) - 1) / (max_div * baudrate);

Expand All @@ -743,7 +743,7 @@ where
.uart0_sclk_div_num()
.bits(clk_div as u8 - 1)
.uart0_sclk_sel()
.bits(0x1) // TODO: this probably shouldn't be hard-coded
.bits(0x3) // TODO: this probably shouldn't be hard-coded
.uart0_sclk_en()
.set_bit()
});
Expand All @@ -760,7 +760,7 @@ where
.uart1_sclk_div_num()
.bits(clk_div as u8 - 1)
.uart1_sclk_sel()
.bits(0x1) // TODO: this probably shouldn't be hard-coded
.bits(0x3) // TODO: this probably shouldn't be hard-coded
.uart1_sclk_en()
.set_bit()
});
Expand All @@ -775,6 +775,8 @@ where
T::register_block()
.clkdiv
.write(|w| unsafe { w.clkdiv().bits(divider).frag().bits(0) });

self.sync_regs();
}

#[cfg(any(esp32, esp32s2))]
Expand All @@ -795,7 +797,7 @@ where

#[cfg(any(esp32c6, esp32h2))] // TODO introduce a cfg symbol for this
#[inline(always)]
fn sync_regs(&mut self) {
fn sync_regs(&self) {
T::register_block()
.reg_update
.modify(|_, w| w.reg_update().set_bit());
Expand Down

0 comments on commit c46813b

Please sign in to comment.