Hi,
Say I have a gpu driver (mali400) that I can reverse engineer on a SoC (raspberry pi like). On that SoC, there is a HDMi output.
Now, to be able to stream data (a video, a game) to a hdmi monitor or a TV connected to the gpu output, should I implement hdmi in my OS or is the gpu able to sort everything out by itself, converting image to the right format automatically?
I don't get who is responsible for what here.
Thanks,
Bye
Gpu & hdmi related question
-
- Member
- Posts: 45
- Joined: Wed Dec 25, 2013 11:51 am
Re: Gpu & hdmi related question
On Raspberry Pi the GPU (VideoCore) handles the communication with the display device. Everything you have to do is to send some "commands" to the GPU to set the video mode and get the address for the video memory. Pixels written in the video memory are drawn in the display (no need for additional commands).JulienDarc wrote:Hi,
Say I have a gpu driver (mali400) that I can reverse engineer on a SoC (raspberry pi like). On that SoC, there is a HDMi output.
Now, to be able to stream data (a video, a game) to a hdmi monitor or a TV connected to the gpu output, should I implement hdmi in my OS or is the gpu able to sort everything out by itself, converting image to the right format automatically?
I don't get who is responsible for what here.
Thanks,
Bye
Edit:
I believe the most SoCs with GPU works this way. Anyway, you should look for the documentation of your SoC (this kind of information is there).
Machina - https://github.com/brunexgeek/machina
-
- Member
- Posts: 97
- Joined: Tue Mar 10, 2015 10:08 am
Re: Gpu & hdmi related question
brunexgeek, I am very happy then.
Now, the tests are soon to begin.
Thank you!
Now, the tests are soon to begin.
Thank you!