-
Notifications
You must be signed in to change notification settings - Fork 411
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
pigpio will not run on a Pi 5 #589
Comments
... seems fairly rash given the installed base of a bazillion working devices vs the literal handful of pi5.
I have the aspiration to do so but my first quick read of the available docs suggest this will be a huge task, if not impossible without breaking compatibility.
Given the potentially monumental task, I think it would be wise to lean into the community for help. At a minimum, we would want to retain architectural oversight of the project. |
@guymcswain what would be so different between thos pi's 4 and 4 ? Isn't the pi meant to be backwards compatible? |
@sworteu pi4 is supported. You need to open a separate issue and give details around the failure.
Yes but this meaning ends at the os level. pigpio touches the metal. |
i tried libgpiod and that seems to work..;) |
Maybe better to list the full log:
Looks like the revision code for the Pi 5 isn't whitelisted. This is the 8GB model; I think the 4GB model uses c04170. |
Or more precisely, the code for the BCM2712. Lines 13791 to 13830 in c33738a
I would create a PR, but I don't know what values to provide. I suspect the BCM2711 values won't work, now that GPIO is handled by the RP1 southbridge? |
pi5 is not supported by pigpio. pi5 is built with a new chip architecture that is incompatible with previous iterations. |
Some thoughts of a user: |
Although I recommend the use of libgpiod, for direct hardware access you may find the RP1 support in pinctrl (https://github.com/raspberrypi/utils) useful as a starting point. |
I would generally agree with this strategy, however, there are features/capabilities of pigpio that distinguish it from all other gpio libraries: the DMA read engine for sampling gpio and the DMA write engine for pwm, servo and custom waveforms. I have not taken the time to look into it yet but I'm hoping there exists compatible interfaces on Pi5 such as the VPU mailbox registers allowing the DMA peripheral (and supporting peripherals to pace DMA) to be memory mapped. If a more kernel friendly approach is available, that should be explored as well. |
I have just experienced this problem too
so I am currently snookered |
Simply, I would like to add that I would appreciate seeing pigpio support the Pi 5. In addition, I would be happy to provide testing support for any update to pigpio. While I'm not familiar with the architecture and design of pigpio, I would be willing to contribute to the development of the Pi 5 support. |
Between this repo https://github.com/G33KatWork/RP1-Reverse-Engineering and the pinctrl source, it shouldn't be too hard to implement basic GPIO features... on the other hand, re-implementing servo control etc can become a little harder... |
IS rpi-lgpio a near drop in replacement for basic functionality? |
I don't mind contributing to coffee/beer or even a fancy dinner fund to support this project. Just put up a buy me a coffee link or may be setup Github Sponsors |
Beer and coffee are not the problem. I'd do it for free if the Raspberry Pi Foundation would publish APIs to access the internal peripherals - like DMA in particular - and memory mapping IO. All of this was done using a mailbox interface to the VC processor in generations 1-4. That's all changed in gen 5. Thus, a new standard (architecture). |
Hi,
Do you have a suggested contact at the Foundation where I can write to add my voice to encouraging the Foundation to share the API information you and the rest of world of Raspberry developers can leverage the full capabilities of the wonderful devices? Perhaps if enough of us offer up this encouragement we would be able to help them see the value to sharing.
Thanks,
David
On Jun 26, 2024, at 10:30 AM, Guy McSwain ***@***.***> wrote:
Is there a beer/coffee fund to which one could contribute to support RPi5 development? Appreciate it's a monumental task, but this is an excellent library and it would be a shame to see the ecosystem of RPi GPIO libraries grow ever larger!
Beer and coffee are not the problem. I'd do it for free if the Raspberry Pi Foundation would publish APIs to access the internal peripherals - like DMA in particular - and memory mapping IO. All of this was done using a mailbox interface to the VC processor in generations 1-4. That's all changed in gen 5. Thus, a new standard (architecture).
—
Reply to this email directly, view it on GitHub <#589 (comment)>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/AFTANNT6YLNT2UPQHNUHLTDZJLGBBAVCNFSM6AAAAAA7A2YJRGVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDCOJRHA3DCMJYGY>.
You are receiving this because you commented.
|
Unfortunately, I don't have any working relationship or contacts within the foundation. The author of this library, @joan2937, perhaps does. |
|
Thanks Phil, the problem is not the gpio control but all of the DMA control that is at the core of pigpio. All that was done through facilities known as mailbox registers via the video core processor. All is that is gone with pi5. It will be a huge lift to rewrite the core part of this library and a non starter if there is no assurance that it changes again in the future. People smarter than me wrote this code. I’d be happy to take a look if someone could point me to documentation that allows the same functionality on the pi5. |
With Pi 5 the role of the firmware has reduced. Apart from some basic power and clocks management, its job is basically to load the kernel and get out of the way. Having said that, I think it's only the memory allocation that is performed by the firmware - there is no "DMA this data to here" API. Since RP1 has access to all of system RAM there is no need for a special allocator. AFAIK we aren't permitted to publish the documentation for the Synopsys DMA controller, but the Linux driver is available as executable documentation: https://github.com/raspberrypi/linux/blob/rpi-6.1.y/drivers/dma/dw-axi-dmac/dw-axi-dmac-platform.c |
@pelwell I think the DMA feature that is being referred to here is the clever usage of it to achieve hardware timed PWM. See https://stackoverflow.com/a/53033272/539972 PIO is supposed to come to the Pi5, right? If so, I think that would make pigpio less relevant for the Pi5, or at least provide a way to implement the features that pigpio currently provides for the Pi4 and earlier. |
在 py 中使用gpiod
|
pigpio is hard-coded to not run on a Pi5. See
pigpio/pigpio.c
Lines 7353 to 7356 in c33738a
Do the maintainers plan to update pigpio to support the Pi5? Will this repository entertain pull requests to port pigpio to the pi5?
If not, please update the README and/or archive this repository to let users know.
The text was updated successfully, but these errors were encountered: