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

LVGL using standard HAL TFT IO (SPI and FSMC) #18974

Merged

Conversation

rhapsodyv
Copy link
Sponsor Member

@rhapsodyv rhapsodyv commented Aug 10, 2020

Description

We have a lot of TFT/XPT IO repeated code in STM32F1. This PR begins to change that.

Now LVGL uses the standard HAL TFT IO - FSMC and SPI, and XPT2046.

Standard HAL TFT and TOUCH IO are in:

#include HAL_PATH(../../HAL, tft/xpt2046.h) 
#include HAL_PATH(../../HAL, tft/tft_spi.h)
#include HAL_PATH(../../HAL, tft/tft_fsmc.h)

Next PR I will see to migrate emulated DOGM.

Benefits

  • less repeated code
  • more performance (HAL TFT SPI uses 16 bit DMA, the old LVGL SPI DMA were 8 bit, so it became very fast now)
  • less errors
  • more easily to port LVGL to others HAL

Related Issues

#18958
#18952

@looxonline
Copy link
Contributor

Yes. Waiting for this to be used in a LP1678 SPI port.

@rhapsodyv
Copy link
Sponsor Member Author

Yes. Waiting for this to be used in a LP1678 SPI port.

Which board?

@looxonline
Copy link
Contributor

Yes. Waiting for this to be used in a LP1678 SPI port.

Which board?

Have not checked DMA access on the SPI port exposed on the EXP header of the SKR1.4 but if there is access then it would be great to use it with that board.

@rhapsodyv
Copy link
Sponsor Member Author

Yes. Waiting for this to be used in a LP1678 SPI port.

Which board?

Have not checked DMA access on the SPI port exposed on the EXP header of the SKR1.4 but if there is access then it would be great to use it with that board.

I wil test it. But to run LVGL UI, you need access to spi flash too. The SKR 1.4 board only have spi flash in the TFT, not in the board. I dont know if it expose too.

@looxonline
Copy link
Contributor

looxonline commented Aug 10, 2020

Yes. Waiting for this to be used in a LP1678 SPI port.

Which board?

Have not checked DMA access on the SPI port exposed on the EXP header of the SKR1.4 but if there is access then it would be great to use it with that board.

I wil test it. But to run LVGL UI, you need access to spi flash too. The SKR 1.4 board only have spi flash in the TFT, not in the board. I dont know if it expose too.

Yes, there is an exposed SPI header which is shared with the SD card. P0.26, P0.7, P0.8, and P0.9. I believe that these could easily be interfaced with a cheap, external W25Q32.

@rhapsodyv rhapsodyv marked this pull request as draft August 12, 2020 03:31
@rhapsodyv rhapsodyv marked this pull request as ready for review August 12, 2020 04:16
@rhapsodyv
Copy link
Sponsor Member Author

rhapsodyv commented Aug 12, 2020

@thinkyhead I have finished the emulated DOGM to use the same HAL TFT IO classes.

Now, we have only one FSMC and SPI TFT in STM32F1, that follow this interface:

#include HAL_PATH(../../HAL, tft/tft_spi.h)
#include HAL_PATH(../../HAL, tft/tft_fsmc.h)

And it is already available in STM32.

Any other HAL that wants TFT, just need implement this two classes, and LVGL + emulated dogm will work!

Do I commit it here? Or wait the merge and do another PR, specific for dogm?

@rhapsodyv
Copy link
Sponsor Member Author

LVGL, Emulated DOGM and the new Color UI, now all are using the same low level IO abstraction. To use any of those UI, the HAL just need the low level TFT IO classes. STM32 and STM32F1 already have it, so all 3 UI are available for them.

@rhapsodyv
Copy link
Sponsor Member Author

rhapsodyv commented Aug 12, 2020

@thinkyhead
This port emulated DOGM to use the same tft io: rhapsodyv@6bd3d04

Do I push it here? Or do you prefere separated PR to better organize merges?

After that commit, we have only two things to finish that refactoring:

  1. I will join all xpt code
  2. we can make a cleanup of the defines LCD_ and TFT_ defines

Lots of repeated code removed!!

@rhapsodyv
Copy link
Sponsor Member Author

It's containable. I see from this that the FSMC_UPSCALE pertains to how the screen will be drawn and how touches will be interpreted, but also that FSMC_UPSCALE is not tied specifically to the pixel-size. One should be able to decide to do 2x or even 1x scaling on a 480x320 screen and make it work, after all….

Sure, after this refactoring, we can handle upscale at a low level, making it available for all UI.

Speaka pushed a commit to Speaka/Marlin that referenced this pull request Aug 28, 2020
@rhapsodyv rhapsodyv mentioned this pull request Aug 30, 2020
30 tasks
albertogg pushed a commit to albertogg/Marlin that referenced this pull request Aug 31, 2020
Speaka pushed a commit to Speaka/Marlin that referenced this pull request Sep 7, 2020
Speaka pushed a commit to Speaka/Marlin that referenced this pull request Sep 28, 2020
Speaka added a commit to Speaka/Marlin that referenced this pull request Sep 28, 2020
Speaka pushed a commit to Speaka/Marlin that referenced this pull request Oct 8, 2020
Speaka added a commit to Speaka/Marlin that referenced this pull request Oct 8, 2020
Speaka pushed a commit to Speaka/Marlin that referenced this pull request Oct 20, 2020
Speaka added a commit to Speaka/Marlin that referenced this pull request Oct 20, 2020
Speaka pushed a commit to Speaka/Marlin that referenced this pull request Oct 20, 2020
Speaka added a commit to Speaka/Marlin that referenced this pull request Oct 20, 2020
Speaka pushed a commit to Speaka/Marlin that referenced this pull request Oct 24, 2020
Speaka added a commit to Speaka/Marlin that referenced this pull request Oct 24, 2020
Speaka pushed a commit to Speaka/Marlin that referenced this pull request Oct 24, 2020
Speaka added a commit to Speaka/Marlin that referenced this pull request Oct 24, 2020
Speaka pushed a commit to Speaka/Marlin that referenced this pull request Oct 24, 2020
Speaka added a commit to Speaka/Marlin that referenced this pull request Oct 24, 2020
Speaka pushed a commit to Speaka/Marlin that referenced this pull request Oct 24, 2020
Speaka added a commit to Speaka/Marlin that referenced this pull request Oct 24, 2020
@rhapsodyv rhapsodyv deleted the lvgl-use-standard-tft-io branch October 25, 2020 00:30
vgadreau pushed a commit to vgadreau/Marlin that referenced this pull request Dec 9, 2020
kageurufu pushed a commit to CR30-Users/Marlin-CR30 that referenced this pull request Apr 30, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants