Edit online

menuconfig 配置

使能显示模块驱动

在 luban 根目录下执行 make linux-menuconfig,进入 kernel 的功能配置,使能显示模块驱动:
Linux
    Device Drivers
        Graphics support
            ArtInChip Graphics  --->
                <*> ArtInChip Framebuffer support

编译显示接口

使能显示模块的驱动后,需要将显示接口编译进内核。
<*> ArtInChip Framebuffer support
    [*]   ArtInChip display rgb support
    [*]   ArtInChip display lvds support
    [*]   ArtInChip display mipi-dsi support

可以将三个显示接口都编译进内核,但系统运行时,只有 panel 驱动所对应的显示接口能生效。

Panel 配置

Luban SDK 不仅为 RGB/LVDS 等显示接口提供了通用的 panel 驱动,也为部分屏驱 IC 提供专用 panel 驱动。

选择特定的 panel 驱动,要先使能 panel 对应的显示接口和 pwm-backlight,否则 panel 在 menuconfig 中不可见。
<*> ArtInChip Framebuffer support
    <*>   ArtInChip Panel Drivers (ArtInChip general RGB panel)  --->

背光配置

PWM 配置。

显示模块驱动使用 pwm-backlight 框架进行背光控制

  • 使能 PWM
    Device Drivers
        [*] Pulse-Width Modulation (PWM) Support  --->
             <*>   ArtInChip PWM support
    
  • 使能 pwm-backlight
    Device Drivers
        Graphics support
            Backlight & LCD device support
                <*> Lowlevel Backlight controls
                    <*> Generic PWM based Backlight Driver

驱动依赖项

显示模块驱动依赖 CMA 和 DMA-BUF 功能。
  1. 配置 CMA

    在 luban 根目录下执行 make kernel-menuconfig,使能 CMA:

    Linux
        Memory Management options
            [*] Contiguous Memory Allocator
    

    配置 CMA 内存区域的大小,在内核配置的另一个地方,以下配置为 12MB:

    Linux
        Library routines
        [*] DMA Contiguous Memory Allocator
        (12)  Size in Mega Bytes
    
    注:

    CMA 内存区域无法随意设置大小, Size 需要 4M 对齐。

    Linux 启动时会对 CMA size 进行 4M 对齐,对齐操作与 CONFIG_FORCE_MAX_ZONEORDER 设置相关。 ArtInChip 平台上,该配置为 11,意思为一次最大分配内存为 2^10 pages,即 4M。

  2. 使能 DMA-BUF
    在 luban 根目录下执行 make kernel-menuconfig,进入 kernel 的功能配置,按如下选择:
    Linux
        Device Drivers
            DMABUF options
                [*] Explicit Synchronization Framework
                [*]   Sync File Validation Framework
                [*] userspace dmabuf misc driver
                [*] DMA-BUF Userland Memory Heaps
                    [*]   DMA-BUF CMA Heap