embassy-rs / embassy

Modern embedded framework, using Rust and async.
https://embassy.dev
Apache License 2.0
4.86k stars 660 forks source link

Problem with `embassy_stm32::ospi::Ospi::new_*` #2926

Open pkoevesdi opened 2 months ago

pkoevesdi commented 2 months ago

I have problems creating a new OSPI driver for a quadspi external chip. I get the trait 'embassy_stm32::ospi::*<embassy_stm32::peripherals::OCTOSPI1>' is not implemented for '*' for all 6 Pins. Am I doing something wrong here or is it a bug? I try it with the current git version of embassy.

If I look at https://github.com/embassy-rs/embassy/blob/main/examples/stm32f7/src/bin/qspi.rs, I think I have cooked it down and abstracted from the mcu- and flash-specific parts. Also, I see the function https://github.com/embassy-rs/embassy/blob/4b4777e6bb813dbde3f8ec05ff81cadbcb41bee0/embassy-stm32/src/qspi/mod.rs#L88 equivalent to https://github.com/embassy-rs/embassy/blob/4b4777e6bb813dbde3f8ec05ff81cadbcb41bee0/embassy-stm32/src/ospi/mod.rs#L259 so I assume, I can use the qspi example as a pattern for ospi too?

That's the minimal code which I'd expect to build:

#![no_std]
#![no_main]

use embassy_executor::Spawner;
use embassy_stm32::dma::NoDma;
use embassy_stm32::ospi::{Config, Ospi};
use panic_probe as _;

#[embassy_executor::main]
async fn main(_spawner: Spawner) {

    let p = embassy_stm32::init(Default::default());
    let mut config = Config::default();

   let qspi = Ospi::new_quadspi(
        p.OCTOSPI1, p.PA3, p.PC9, p.PC10, p.PE2, p.PA6, p.PC11, NoDma, config,
    );

}
pkoevesdi commented 2 months ago

I checked https://github.com/embassy-rs/stm32-data-generated/tree/main and found all pins seemingly correctly assigned, for instance: https://github.com/embassy-rs/stm32-data-generated/blob/main/data/chips/STM32H730VB.json#L5115

Mirror0 commented 2 months ago

I brefly check the stm32-data-generated file you provided and compare it to QSPI declarations with STM32F7 board that I used.

I see some differences:

This can be the cause for not implemented error, but I'm not knowledgeable about embassy build process and embedded programming to answer this with certainty.

pkoevesdi commented 2 months ago

Thanks for the hints, I'll follow them. But actually, this looks like something that @Dirbaio has to look at, doesn't it?

Mirror0 commented 2 months ago

I think it would be best if he takes a look at this, as he is more experienced in this field :)

pkoevesdi commented 2 months ago

So, it seems to be about the OCTOSPI manager that sits between the physical pins i.e.:

OCTOSPIM_P1_ CLK
OCTOSPIM_P1_IO0
OCTOSPIM_P1_IO1
OCTOSPIM_P1_IO2
OCTOSPIM_P1_IO3
OCTOSPIM_P1_NCS

and the internal OCTOSPI1 virtual port. In reset state, the both are mapped 1:1 (and I'd totally appreciate if it would work even only in this state).

From the reference manual, p. 964: grafik

pkoevesdi commented 2 months ago

Here I accidently found a micropython guy addressing the same issue, seemingly: https://github.com/micropython/micropython/issues/12517 May that helps for embassy too?