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

Mark BBBuffer as #[repr(C)] to support alignment #93

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

mciantyre
Copy link

Some DMA engines and peripherals require that buffers are precisely
aligned. This commit marks BBBuffer as #[repr(C)] so that the buffer is
the first member of the struct. With this guarantee, we can align the
BBBuffer for our hardware-assisted transfers. Updated documentation
shows one way to align the buffer.

Tested on an i.MX RT processor, where the DMA engine requires circular
buffers that are power-of-two sized and aligned. If I can't align my
BBBuffer, I'll treat the BBBuffer as linear memory and schedule multiple
transfers to handle split_read wraparound. I'm happy to go this route if
this commit isn't appropriate for bbqueue.

Some DMA engines and peripherals require that buffers are precisely
aligned. This commit marks BBBuffer as #[repr(C)] so that the buffer is
the first member of the struct. With this guarantee, we can align the
BBBuffer for our hardware-assisted transfers. Updated documentation
shows one way to align the buffer.

Tested on an i.MX RT processor, where the DMA engine requires circular
buffers that are power-of-two sized and aligned. If I can't align my
BBBuffer, I'll treat the BBBuffer as linear memory and schedule multiple
transfers to handle split_read wraparound. I'm happy to go this route if
this commit isn't appropriate for bbqueue.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant