cancel
Showing results for 
Search instead for 
Did you mean: 

Confusion on DMAMUX registers in RM0468

FredS
Associate III

     Hallo everyone,

Since some time I struggle to get DMA access working on a STM32H723. I was pointed out this MCU is a complicated beast, but I would at least expect sensible, coherent documentation for it.

When I look at page 683, I see:Screenshot_Header_DMAMUX1_CxCR.png

on next page:Screenshot_Header_DMAMUX2_CxCR.png

 and on page 691:Screenshot_Header_DMAMUX_RegisterMap.png

At the bottom of page 672 I read:Screenshot_RM0468_Bottom_P672.png

These pieces of information confuse me: the register name in the headers are different from the ones in the Register Map, and it looks to me there is no register for 'DMAMUX2CRxC'.

Further, when I run the debugger on an application that intends to use DMA on SPI3_Tx, I failed to read the registers mentioned above in the column "Live Expressions", because I didn't know the correct names. Although the column 'SFRs' show:Screenshot_Debug_DMAMUX1_DMAMUX_C2CR.png

combinations like: DMAMUX1_C2CR, DMAMUX_C2CR, DMAMUX1.DMAMUX_C2CR, etc. did not result in showing values. I find it quite an omission in the documentation that an user gets bits and pieces information andmust guess how to put it together to one coherent understanding. He/she should be informed about the naming rules in an understandable way.

Another complaint about missing explanation: at the bottom of page 678 is stated:

The DMAMUX request line multiplexer channel x selects the DMA request line number as configured by the DMAREQ_ID field in the DMAMUX_CxCR register.

Even after carefully re-reading this sentence many times, I cannot comprehend what it means. From another part of the text I understood "multiplexer channel x maps to DMA channel x", meaning that the request in the multiplexer channel x will result in activation of DMA<n>-Stream<m> (n=1,2 and m=0,7). Is this conclusion correct? And if this assumption is correct, does the DMAREQ_ID field in DMAMUX1_CxCR specify the 'DMA Request MUX input' in table 118?

I find it ridiculous that an user must guess how the source of a DMA request and the peripheral on which it is effectuated are not clearly explained. I have got the feeling to search blindfolded in a dark room with my hands tightened on my back for clues to understand and program DMA access by means of a DMAMUX. And it seems I'm not the only one how suffers from unclear documentation. I sincerely hope ST will read this request and takes it seriously.

Fred Schimmel

 

12 REPLIES 12
JBURB
ST Employee

Hello Fred,

Thanks for a clear explanation on what is confusing. You have several questions, I will first answer to the register naming trouble.

For the DMAMUX register you have two set of register one for DMAMUX1 (in D2 domain):

JBURB_0-1720513369068.png

one for DMAMUX2 (in D3 domain)

JBURB_1-1720513428951.png

Usually in the peripheral description in reference manual the register name does not include the instance number of the peripheral:

JBURB_2-1720513763026.png

and you find the exact same name in the register map:

JBURB_3-1720513822953.png

when the instance of the peripheral differs, there is a note in the bits definition to explain the difference:

JBURB_4-1720513916236.png

 

For the DMAMUX, the author find it more clear to detail the implementation of each instance of DMAMUX in the register description rather than giving many notes (obviously it is not your point of view). So he detailed DMAMUX1 registers and DMAMUX2 register giving them their full name (which includes the instance).  In the register map the author sticked to the usual practice giving the name without the instance number, and giving the bit content of the full featured super set.

Below is an example of superset given in register map: bits 0 to 4 are present in both instance, and bits 5 and 6 are present only in Instance 1:

JBURB_5-1720514352068.png

The debugger sticked to the current practice, it gives on top the peripheral name with the instance (1 or 2) and gives the register name without the instance.

 

Tell me if this part is more clear.

 

Jacky

To give better visibility on the answered topics, please click on Accept as Solution on the reply which solved your issue or answered your question.

FredS
Associate III

      Hallo Jacky,

Thank you for your reply and clarification. I think I understand the issues you explained, confiming the chosen method is a matter of taste.

However, you didn't reply on the second part of my question: how should I specify a DMAMUX register in the Debugger column 'Live Expressions' and so in my code (my experience is these are the same). I tried the names I found in the 'SFRs' column without success (see my original message), while combinations of naming in the register description didn't work either. Please provide the naming rules for these cases.

And lastly: it remained unclear to me how the entries in the DMAMUX map to the peripherals they are meant to act on. There is a set of bits named 'DMAREQ_ID' in register DMAMUX1_CxCR (and DMAMUX2_CxCR) which apparently should specify a peripheral(-action). From the text I read it isn't clear if this is the specification of the triggering item or the item that will be activated when the MUX-entry is activated. In other words: does the ID points to the source or the destination?

Before writing this help-request I tried several combinations, without a conclusive result. Also on this subject a strong request: please re-write the related section(s) in the Reference Manual to make these issues clear and understandable for non-experienced users that try to apply this hardware.

Thank you in advance for your reply,

have a nice day,

               Fred Schimmel

> However, you didn't reply on the second part of my question: how should I specify a DMAMUX register in the Debugger column 'Live Expressions' and so in my code (my experience is these are the same).

These names come from 2 different files: in your program, registers names are defined as symbols in the CMSIS-mandated device header, wheras the debugger uses the so called SVD file. Unfortunately, ST is not always consistent in these (as they are not consistent in naming in RMs nor between RM and the two files, as you've already found out); even worse, sometimes the structs in CMSIS-mandated device header don't even reflect the structure of registers in RM and example code accesses them in some ad-hoc manner (see for deterring example the USB OTG registers).

So, some guesswork may be required from the user.

> There is a set of bits named 'DMAREQ_ID' in register DMAMUX1_CxCR (and DMAMUX2_CxCR) which apparently should specify a peripheral(-action).

Fill that field with a number you find for the desired peripheral-source in Table 118. DMAMUX1: assignment of multiplexer inputs to resources. This field steers the multiplexer which selects the request used for the DMA Stream (channel in case of DMAMUX2/BDMA) which corresponds to given DMAMUX channel.

waclawekjan_0-1720520751031.png

 

JW

      Dear Jan,

As many times before, thank you for your reply. It is really a gotcha that a firm as ST doesn't manage to produce descriptive and coherent documentation.

I will need some time to translate/interpret the example for the 'USB OTG registers' before I can mark this reply with 'Accept as Solution'.

Have a very nice day,

          Fred Schimmel

 

Hi Fred,

 

could you tell me if the application note AN5224 Introduction to DMAMUX for STM32 MCUs - Application note helps you?

 

Br,

 

Jacky

To give better visibility on the answered topics, please click on Accept as Solution on the reply which solved your issue or answered your question.

Oh, I've just realized that ST renumbered the Channels in the BDMA... which is good, as it's consistent with DMAMUX2 Channel numbering now, but now I can go and fix my rant... 😉

waclawekjan_0-1720540476323.png

 

JW

Hallo Jan,

It looks like there has changed a lot more than you pointed out: Revision 3 of RM0433 shows chapter 16.4.3 on page 630, while Revision 6 shows chapter 15.6.3 on page 671.

Greetings, Fred

Hello Fred,

I see you have many versions for the same document why don't you use the Rev 8 of RM0433.

Note that you started the thread with RM0468, related to STM32H72x/73x.

Br,

Jacky

To give better visibility on the answered topics, please click on Accept as Solution on the reply which solved your issue or answered your question.

FredS
Associate III

Hallo Jacky,

Please look back, the version differences were stated by Jan Waclawek. I even didn't have seen that RM before.

Greetings,  Fred