]> git.baikalelectronics.ru Git - uboot.git/commit
video: add nexell video driver (display/video driver)
authorStefan Bosch <stefan_b@posteo.net>
Fri, 10 Jul 2020 17:07:36 +0000 (19:07 +0200)
committerTom Rini <trini@konsulko.com>
Wed, 29 Jul 2020 12:43:40 +0000 (08:43 -0400)
commit6d7912f699137086ff3408978f43c69e028d536d
treef473516a6e136546beeac0f522e8cf200b27fae2
parent162576de2d616a6eff7f119f942fcae5bac6d68e
video: add nexell video driver (display/video driver)

Changes in relation to FriendlyARM's U-Boot nanopi2-v2016.01:
- nexell_display.c: Changed to DM, CONFIG_FB_ADDR can not be used
  anymore because framebuffer is allocated by video_reserve() in
  video-uclass.c. Therefore code changed appropriately.
- '#ifdef CONFIG...' changed to 'if (IS_ENABLED(CONFIG...))' where
  possible (and similar).
- livetree API (dev_read_...) is used instead of fdt one (fdt...).

Signed-off-by: Stefan Bosch <stefan_b@posteo.net>
drivers/video/Kconfig
drivers/video/Makefile
drivers/video/nexell/Kconfig [new file with mode: 0644]
drivers/video/nexell/Makefile [new file with mode: 0644]
drivers/video/nexell/s5pxx18_dp.c [new file with mode: 0644]
drivers/video/nexell/s5pxx18_dp_hdmi.c [new file with mode: 0644]
drivers/video/nexell/s5pxx18_dp_lvds.c [new file with mode: 0644]
drivers/video/nexell/s5pxx18_dp_mipi.c [new file with mode: 0644]
drivers/video/nexell/s5pxx18_dp_rgb.c [new file with mode: 0644]
drivers/video/nexell_display.c [new file with mode: 0644]