-
Notifications
You must be signed in to change notification settings - Fork 5.1k
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
overlays: Add pcie-32bit-dma overlay #4216
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pelwell
reviewed
Mar 15, 2021
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have a few README niggles, otherwise it looks good.
Doh - and the name of the overlay is wrong in the README. |
In order to accommodate full PCI DMA access to memory on newer BCM2711 revisions, we're forced to map PCIe's view of physical memory with an offset. This offset makes DMA addressing dependent on having 64bit support on the PCI device's side. Which isn't always the case. In order to mitigate this, introduce the pcie-32bit-dma overlay which will forbid firmware from updating the default inbound memory window. The default setting, albeit limited to accessing the lower 3GB of memory, will allow for 32bit DMA addresses at the expense of having to bounce buffers. Link: raspberrypi#4197 Signed-off-by: Nicolas Saenz Julienne <nsaenzjulienne@suse.de>
Fixed! It's amazing how I consistently get this sort of thing wrong... |
Thanks - I'll back-port to 5.10. |
popcornmix
added a commit
to raspberrypi/firmware
that referenced
this pull request
Mar 23, 2021
kernel: Make rpi poe fan less noisy in cool environments See: raspberrypi/linux#4222 kernel: overlays: Add pcie-32bit-dma overlay See: raspberrypi/linux#4216 kernel: ARM: dts: bcm2711: Add aliases for additional SPIs kernel: Revert i2c: bcm2835: Handle untimely DONE signal See: Hexxeh/rpi-firmware#261
popcornmix
added a commit
to Hexxeh/rpi-firmware
that referenced
this pull request
Mar 23, 2021
kernel: Make rpi poe fan less noisy in cool environments See: raspberrypi/linux#4222 kernel: overlays: Add pcie-32bit-dma overlay See: raspberrypi/linux#4216 kernel: ARM: dts: bcm2711: Add aliases for additional SPIs kernel: Revert i2c: bcm2835: Handle untimely DONE signal See: #261
This was referenced Jan 25, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
In order to accommodate full PCI DMA access to memory on newer BCM2711
revisions, we're forced to map PCIe's view of physical memory with an
offset. This offset makes DMA addressing dependent on having 64bit
support on the PCI device's side. Which isn't always the case.
In order to mitigate this, introduce the pcie-32bit-dma overlay which
will forbid firmware from updating the default inbound memory window.
The default setting, albeit limited to accessing the lower 3GB of
memory, will allow for 32bit DMA addresses at the expense of having to
bounce buffers.
Link: #4197
Signed-off-by: Nicolas Saenz Julienne nsaenzjulienne@suse.de