SDM driver support#5610
Conversation
| clock_sources = ["apb"] | ||
| default_clock_source = "apb" |
There was a problem hiding this comment.
should I delete these metadata if not currently using them in the code?
There was a problem hiding this comment.
It can stay, but I'd prefer implementing the relevant clock tree bits properly. We don't document them, so I won't press you on it.
There was a problem hiding this comment.
Sure I'll take a look at the clock tree, probably after I fix other more basic things like the API change you proposed.
| /// The value ranges from `-128` to `127`. | ||
| /// | ||
| /// The channel must have been successfully connected first. | ||
| pub fn set_pulse_density(&mut self, density: i8) { |
There was a problem hiding this comment.
There should only be apply_config, and maybe set_duty. Duplicaing the entire config API with independent methods isn't something we would like to do.
There was a problem hiding this comment.
The reason I kept this separate is that apply_config always updates both the timing and the pulse density, while some use cases only need to update one of them.
For SDM I think changing the pulse density is likely the more common runtime operation, and it may happen frequently. Re-applying the whole config just to change density feels a bit awkward and wasteful, as the prescaler usually only needs to be configured once during initialization.
If we want to avoid duplicating API, maybe the better direction is to keep only the set_* functions and drop apply_config instead (since that apply_config is really used once in connect). What do you think?
There was a problem hiding this comment.
Actually, because prescale and the duty cycle are in the same register, a common update function can be more efficient than a partial one - it could use a straight register write instead of a modify which would need to read, mask, update and then write.
We can conceptualise this as something that is not configuration, but an output value, but I'd prefer keeping the API small and without redundant methods.
There was a problem hiding this comment.
I reworked the SDM channel API again based on the feedback.
apply_config is back. I avoided the earlier idea of storing either a frequency or a raw prescaler in the config, because applying that would still need to branch and convert at runtime. Instead, the config is prepared before it reaches the channel.
One awkward part was frequency conversion: with_frequency needs to know the SDM clock source, but the clock source is selected at the Sdm level rather than per channel. To avoid asking users to pass the same clock source again, I added a builder on Sdm:
let config = sdm
.channel_config()
.with_frequency(Rate::from_khz(500))?
.with_duty(128);This shape is a little different from the previous channel-builder API, but it keeps the shared clock-source selection in one place. The final ChannelConfig only contains the prepared channel values: the raw prescaler value and the pulse density.
This also follows the point that prescaler and pulse density live in the same register. If we want apply_config to be a single register write, both values need to be known at the same time. The implementation now writes the whole SDM channel register directly instead of using modify, so it avoids the read-mask-write sequence.
For the convenience methods like set_duty / set_pulse_density, there is still a tradeoff. A partial update only receives the new density, but the straight register write also needs the current prescaler. To avoid reading the register back, the connected Channel currently keeps a cached ChannelConfig and updates that cache before applying it.
I'm not completely sure whether caching the config in Channel is the best API design. One alternative would be to make this more explicit: if users want to avoid read-modify-write behavior, they should keep their own ChannelConfig and call apply_config. In that model, set_duty / set_pulse_density could either be removed or implemented as partial updates using modify.
There was a problem hiding this comment.
It's pretty easy to query the source frequency from the clock tree, it doesn't need to be part of the configuration, but for now I guess your solution works.
To avoid reading the register back, the connected Channel currently keeps a cached ChannelConfig and updates that cache before applying it.
That seems to overcomplicate matters a bit, you are allowed to call modify, it's just not necessary when you apply a complete config.
There was a problem hiding this comment.
The config cache is removed now.
MabezDev
left a comment
There was a problem hiding this comment.
Overall this looks pretty nice! I was hoping that maybe we could do what we did the DMA channels, and make these SDM channels part of Peripherals, but the clock source selection kills that unfortunately.
This needs some HIL tests, I think you can probably take a look at how we use rmt to count pulses in other tests for this purpose.
|
New commits in main have made this PR unmergeable. Please resolve the conflicts. |
|
I have C5/C6/S3, the HIL test worked well for C6 and S3. However, it always seems to time out for C5, with outputs like the following: Seems like the issue is that it can't detect the idle signal in But if I run other HIL tests like GPIO on C5, it will work. So I'm quite confused now. Would appreciate it if someone could help here. |
|
New commits in main have made this PR unmergeable. Please resolve the conflicts. |
|
New commits in main have made this PR unmergeable. Please resolve the conflicts. |
|
Hi @MabezDev and @bugadani, just a quick follow-up on this PR since it has been around a week without further comments. I’ve tried to address the recent feedback by removing the example, adding an initial HIL test using RMT RX to measure the SDM output, removing the config cache, and updating the branch after the merge conflicts. Could you let me know if there is anything else I should change or investigate? I’m also still not completely sure about the ESP32-C5 HIL timeout I mentioned above, so any guidance there would be appreciated. Thanks! |
|
There are several issues with this PR that don't align with esp-hal.
As for your C5 difficulty, for me the HIL test doesn't build. |
|
New commits in main have made this PR unmergeable. Please resolve the conflicts. |
|
Hey @ttzytt, do you plan on finishing up this PR? SDM would be a great addition to finally land :) |
Add initial Sigma-Delta Modulation driver
This is inspired by the old SDM PR: #2371 and to resolve the issue #2370. I used that PR as the main reference and tried to address many of the design comments raised there. Thanks to @katyo for the original implementation and all the discussion around it.
Overview
This PR adds an initial SDM driver. The current goal is to settle the driver structure and API first, before expanding the documentation and polishing all details.
The driver exposes SDM as a peripheral-wide collection that owns
GPIO_SDand provides individual channel fields. Users can move individual channels out of the collection, for example:This follows the direction discussed in the old PR: the collection itself does not shut the peripheral down on
Drop, because the intended usage is to split channels out and potentially move them into different tasks.Resource Management
Each channel manages its own active peripheral usage through guards. When a channel is connected, it acquires an SDM clock guard. When the channel is dropped, the guard is dropped too, and the clock reference count is released.
The implementation uses
GenericPeripheralGuardfor the actual peripheral enable/disable reference counting. I used this because it is already the common pattern in other drivers. To make that possible for SDM, the metadata now also addsPeripheral::GpioSdentries for the chips that have SDM hardware.However,
GenericPeripheralGuardonly tracks whether the peripheral clock is in use. It does not store SDM-specific state, such as which source clock is currently selected. SDM has a shared source clock for all channels, so this PR also adds a small SDM-specific clock state guarded byNonReentrantMutex.That state tracks:
The public API only allows selecting the clock source at
Sdmconstruction time. Individual channels receive that source internally, but they do not expose a per-channel source selection API. This is intentional because the underlying clock source is shared.Channel Generation
Different chips expose different numbers of SDM channels. Some have 4 channels, while ESP32/ESP32-S2/ESP32-S3/ESP32-P4 have 8.
Writing all channel fields and match arms manually with
cfgattributes gets complicated quickly. To avoid that, this PR follows the style used by dedicated GPIO: the channel count comes from metadata, and metadata generates afor_each_sdm_channel!macro. The SDM driver then uses that macro to generate theSdmchannel fields and the channel-to-output-signal mapping.Clock Source Metadata
The metadata currently includes the default SDM clock source and the list of available SDM clock sources for each supported chip.
At the moment, the driver still has a handwritten
ClockSourceenum and handwritten per-chip clock source configuration code. I am not fully sure yet what the best way is to consume these metadata fields directly from driver code.This part is definitely open for improvement. Feedback on how this should fit with the existing clock-related code would be very helpful.
Example/Testing
This PR also adds an SDM example under
examples/peripheral/sdm.I tested the example on my ESP32-C5 board and the output worked there. I have not tested the other supported chips on hardware yet.
Regarding HIL testing, I'm not sure what to put there for this driver. It does not seem very practical to test the actual SDM waveform. Maybe the HIL test should instead focus on the digital side of the driver, such as connecting a channel, reading back the raw prescaler and pulse density registers, checking prescaler error handling, and verifying that dropping one channel releases the guard state so another channel can still be used. I will add some HIL testing later if that seems like a good idea.
Documentation
The documentation and comment in code is still minimal. I plan to improve it after the overall API shape and resource-management structure have been reviewed.