Skip to content

Commit

Permalink
drm/starfive: Add StarFive drm driver
Browse files Browse the repository at this point in the history
1. Add starfive DRM Display driver framework
2. Support M31 Phy and tda998x

Signed-off-by: jack.zhu <[email protected]>
Signed-off-by: keith.zhao <[email protected]>
Signed-off-by: Emil Renner Berthing <[email protected]>
  • Loading branch information
sw.multimedia authored and esmil committed Dec 27, 2021
1 parent ebcaa4f commit d0d3267
Show file tree
Hide file tree
Showing 19 changed files with 3,469 additions and 0 deletions.
2 changes: 2 additions & 0 deletions drivers/gpu/drm/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -330,6 +330,8 @@ source "drivers/gpu/drm/shmobile/Kconfig"

source "drivers/gpu/drm/sun4i/Kconfig"

source "drivers/gpu/drm/starfive/Kconfig"

source "drivers/gpu/drm/omapdrm/Kconfig"

source "drivers/gpu/drm/tilcdc/Kconfig"
Expand Down
1 change: 1 addition & 0 deletions drivers/gpu/drm/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ obj-y += rcar-du/
obj-$(CONFIG_DRM_SHMOBILE) +=shmobile/
obj-y += omapdrm/
obj-$(CONFIG_DRM_SUN4I) += sun4i/
obj-$(CONFIG_DRM_STARFIVE) += starfive/
obj-y += tilcdc/
obj-$(CONFIG_DRM_QXL) += qxl/
obj-$(CONFIG_DRM_VIRTIO_GPU) += virtio/
Expand Down
16 changes: 16 additions & 0 deletions drivers/gpu/drm/starfive/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# SPDX-License-Identifier: GPL-2.0
# Copyright (C) 2021 StarFive Technology Co., Ltd.

config DRM_STARFIVE
tristate "DRM Support for StarFive SoCs"
depends on DRM
depends on SOC_STARFIVE || COMPILE_TEST
select DRM_GEM_CMA_HELPER
select DRM_KMS_HELPER
select DRM_MIPI_DSI
select DRM_PANEL
help
Choose this option if you have a StarFive SoCs.
The module will be called starfive-drm
This driver provides kernel mode setting and
buffer management to userspace.
13 changes: 13 additions & 0 deletions drivers/gpu/drm/starfive/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# SPDX-License-Identifier: GPL-2.0
#
# Copyright (C) 2021 StarFive Technology Co., Ltd.
#
starfive-drm-y := starfive_drm_drv.o \
starfive_drm_gem.o \
starfive_drm_crtc.o \
starfive_drm_encoder.o \
starfive_drm_plane.o \
starfive_drm_lcdc.o \
starfive_drm_vpp.o

obj-$(CONFIG_DRM_STARFIVE) += starfive-drm.o
56 changes: 56 additions & 0 deletions drivers/gpu/drm/starfive/README.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
Display Subsystem:(default FBdev)

Steps switch to DRM:
1、Disable fbdev,close below config items:
CONFIG_FB_STARFIVE=y
CONFIG_FB_STARFIVE_HDMI_TDA998X=y
CONFIG_FB_STARFIVE_VIDEO=y

2、open DRM hdmi pipeline,enable items:
CONFIG_DRM_I2C_NXP_TDA998X=y
CONFIG_DRM_I2C_NXP_TDA9950=y
CONFIG_DRM_STARFIVE=y
CONFIG_FRAMEBUFFER_CONSOLE=y

Precautions:when use DRM hdmi pipeline,please make sure CONFIG_DRM_STARFIVE_MIPI_DSI is disable ,
or will cause color abnormal.

3、open DRM mipi pipeline

enable items:
CONFIG_PHY_M31_DPHY_RX0=y
CONFIG_DRM_STARFIVE_MIPI_DSI=y


change jh7100.dtsi display-encoder as below:

display-encoder {
compatible = "starfive,display-encoder";
encoder-type = <6>; //2-TMDS, 3-LVDS, 6-DSI, 8-DPI
status = "okay";

ports {
port@0 {
endpoint {
remote-endpoint = <&dsi_out_port>;
};
};

port@1 {
endpoint {
remote-endpoint = <&crtc_0_out>;
};
};
};
};

install libdrm:
make buildroot_initramfs-menuconfig
choose:
BR2_PACKAGE_LIBDRM=y
BR2_PACKAGE_LIBDRM_RADEON=y
BR2_PACKAGE_LIBDRM_AMDGPU=y
BR2_PACKAGE_LIBDRM_NOUVEAU=y
BR2_PACKAGE_LIBDRM_ETNAVIV=y
BR2_PACKAGE_LIBDRM_INSTALL_TESTS=y

Loading

0 comments on commit d0d3267

Please sign in to comment.