├── LANGS.md ├── book.json └── zh ├── README.md ├── SUMMARY.md ├── bringup_edp_panel.md ├── component_connector.md ├── component_crtc.md ├── component_encoder.md ├── component_framebuffer.md ├── component_framework.md ├── component_planes.md ├── crtc_driver.md ├── drm_config_drm.md ├── drm_config_fbdev_emulation.md ├── drm_config_ignore_ioctl_premit.md ├── drm_config_load_firmware.md ├── drm_devices_node.md ├── drm_devicetree.md ├── drm_display_clock.md ├── drm_display_gpio.md ├── drm_dump_mm.md ├── drm_dump_summary.md ├── drm_force_enable.md ├── drm_log_level.md ├── drm_modetest.md ├── drm_suspend.md ├── drm_userspace_memory.md ├── generic_panel.md ├── introduce.md ├── ioctls_setcrtc.md ├── logo_devicetree.md ├── logo_dualdisplay.md ├── lvds_panel.md ├── multi_grab_and_hotplug.md ├── picture ├── component_connector.jpg ├── component_crtc.jpg ├── component_encoder.jpg ├── component_framebuffer.jpg ├── component_planes.jpg ├── drm.png ├── drm_ioctl_setcrtc.jpg └── kernel_logo_boot_up.png ├── reference.md ├── rockchip_code_list.md ├── rockchip_drm_drv.md ├── rockchip_drm_probe.md ├── rockchip_drm_vop.md ├── rockchip_hardware_vop.md ├── rockchip_hardware_vop_version.md └── supported_logo.md /LANGS.md: -------------------------------------------------------------------------------- 1 | * [中文](zh) 2 | -------------------------------------------------------------------------------- /book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markyzq/rockchip_drm_integration_helper/HEAD/book.json -------------------------------------------------------------------------------- /zh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markyzq/rockchip_drm_integration_helper/HEAD/zh/README.md -------------------------------------------------------------------------------- /zh/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markyzq/rockchip_drm_integration_helper/HEAD/zh/SUMMARY.md -------------------------------------------------------------------------------- /zh/bringup_edp_panel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markyzq/rockchip_drm_integration_helper/HEAD/zh/bringup_edp_panel.md -------------------------------------------------------------------------------- /zh/component_connector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markyzq/rockchip_drm_integration_helper/HEAD/zh/component_connector.md -------------------------------------------------------------------------------- /zh/component_crtc.md: -------------------------------------------------------------------------------- 1 | # Crtc 2 | 3 | ![](picture/component_crtc.jpg) 4 | -------------------------------------------------------------------------------- /zh/component_encoder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markyzq/rockchip_drm_integration_helper/HEAD/zh/component_encoder.md -------------------------------------------------------------------------------- /zh/component_framebuffer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markyzq/rockchip_drm_integration_helper/HEAD/zh/component_framebuffer.md -------------------------------------------------------------------------------- /zh/component_framework.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markyzq/rockchip_drm_integration_helper/HEAD/zh/component_framework.md -------------------------------------------------------------------------------- /zh/component_planes.md: -------------------------------------------------------------------------------- 1 | # Plane 2 | 3 | ![](picture/component_planes.jpg) 4 | -------------------------------------------------------------------------------- /zh/crtc_driver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markyzq/rockchip_drm_integration_helper/HEAD/zh/crtc_driver.md -------------------------------------------------------------------------------- /zh/drm_config_drm.md: -------------------------------------------------------------------------------- 1 | CONFIG_DRM 2 | 3 | drm主驱动配置 4 | -------------------------------------------------------------------------------- /zh/drm_config_fbdev_emulation.md: -------------------------------------------------------------------------------- 1 | CONFIG_DRM_FBDEV_EMULATION 2 | 3 | 使能该功能后, drm将模拟一个framebuffer设备, 可用于基于fbdev的基础显示框架. 4 | -------------------------------------------------------------------------------- /zh/drm_config_ignore_ioctl_premit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markyzq/rockchip_drm_integration_helper/HEAD/zh/drm_config_ignore_ioctl_premit.md -------------------------------------------------------------------------------- /zh/drm_config_load_firmware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markyzq/rockchip_drm_integration_helper/HEAD/zh/drm_config_load_firmware.md -------------------------------------------------------------------------------- /zh/drm_devices_node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markyzq/rockchip_drm_integration_helper/HEAD/zh/drm_devices_node.md -------------------------------------------------------------------------------- /zh/drm_devicetree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markyzq/rockchip_drm_integration_helper/HEAD/zh/drm_devicetree.md -------------------------------------------------------------------------------- /zh/drm_display_clock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markyzq/rockchip_drm_integration_helper/HEAD/zh/drm_display_clock.md -------------------------------------------------------------------------------- /zh/drm_display_gpio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markyzq/rockchip_drm_integration_helper/HEAD/zh/drm_display_gpio.md -------------------------------------------------------------------------------- /zh/drm_dump_mm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markyzq/rockchip_drm_integration_helper/HEAD/zh/drm_dump_mm.md -------------------------------------------------------------------------------- /zh/drm_dump_summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markyzq/rockchip_drm_integration_helper/HEAD/zh/drm_dump_summary.md -------------------------------------------------------------------------------- /zh/drm_force_enable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markyzq/rockchip_drm_integration_helper/HEAD/zh/drm_force_enable.md -------------------------------------------------------------------------------- /zh/drm_log_level.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markyzq/rockchip_drm_integration_helper/HEAD/zh/drm_log_level.md -------------------------------------------------------------------------------- /zh/drm_modetest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markyzq/rockchip_drm_integration_helper/HEAD/zh/drm_modetest.md -------------------------------------------------------------------------------- /zh/drm_suspend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markyzq/rockchip_drm_integration_helper/HEAD/zh/drm_suspend.md -------------------------------------------------------------------------------- /zh/drm_userspace_memory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markyzq/rockchip_drm_integration_helper/HEAD/zh/drm_userspace_memory.md -------------------------------------------------------------------------------- /zh/generic_panel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markyzq/rockchip_drm_integration_helper/HEAD/zh/generic_panel.md -------------------------------------------------------------------------------- /zh/introduce.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markyzq/rockchip_drm_integration_helper/HEAD/zh/introduce.md -------------------------------------------------------------------------------- /zh/ioctls_setcrtc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markyzq/rockchip_drm_integration_helper/HEAD/zh/ioctls_setcrtc.md -------------------------------------------------------------------------------- /zh/logo_devicetree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markyzq/rockchip_drm_integration_helper/HEAD/zh/logo_devicetree.md -------------------------------------------------------------------------------- /zh/logo_dualdisplay.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markyzq/rockchip_drm_integration_helper/HEAD/zh/logo_dualdisplay.md -------------------------------------------------------------------------------- /zh/lvds_panel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markyzq/rockchip_drm_integration_helper/HEAD/zh/lvds_panel.md -------------------------------------------------------------------------------- /zh/multi_grab_and_hotplug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markyzq/rockchip_drm_integration_helper/HEAD/zh/multi_grab_and_hotplug.md -------------------------------------------------------------------------------- /zh/picture/component_connector.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markyzq/rockchip_drm_integration_helper/HEAD/zh/picture/component_connector.jpg -------------------------------------------------------------------------------- /zh/picture/component_crtc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markyzq/rockchip_drm_integration_helper/HEAD/zh/picture/component_crtc.jpg -------------------------------------------------------------------------------- /zh/picture/component_encoder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markyzq/rockchip_drm_integration_helper/HEAD/zh/picture/component_encoder.jpg -------------------------------------------------------------------------------- /zh/picture/component_framebuffer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markyzq/rockchip_drm_integration_helper/HEAD/zh/picture/component_framebuffer.jpg -------------------------------------------------------------------------------- /zh/picture/component_planes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markyzq/rockchip_drm_integration_helper/HEAD/zh/picture/component_planes.jpg -------------------------------------------------------------------------------- /zh/picture/drm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markyzq/rockchip_drm_integration_helper/HEAD/zh/picture/drm.png -------------------------------------------------------------------------------- /zh/picture/drm_ioctl_setcrtc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markyzq/rockchip_drm_integration_helper/HEAD/zh/picture/drm_ioctl_setcrtc.jpg -------------------------------------------------------------------------------- /zh/picture/kernel_logo_boot_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markyzq/rockchip_drm_integration_helper/HEAD/zh/picture/kernel_logo_boot_up.png -------------------------------------------------------------------------------- /zh/reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markyzq/rockchip_drm_integration_helper/HEAD/zh/reference.md -------------------------------------------------------------------------------- /zh/rockchip_code_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markyzq/rockchip_drm_integration_helper/HEAD/zh/rockchip_code_list.md -------------------------------------------------------------------------------- /zh/rockchip_drm_drv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markyzq/rockchip_drm_integration_helper/HEAD/zh/rockchip_drm_drv.md -------------------------------------------------------------------------------- /zh/rockchip_drm_probe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markyzq/rockchip_drm_integration_helper/HEAD/zh/rockchip_drm_probe.md -------------------------------------------------------------------------------- /zh/rockchip_drm_vop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markyzq/rockchip_drm_integration_helper/HEAD/zh/rockchip_drm_vop.md -------------------------------------------------------------------------------- /zh/rockchip_hardware_vop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markyzq/rockchip_drm_integration_helper/HEAD/zh/rockchip_hardware_vop.md -------------------------------------------------------------------------------- /zh/rockchip_hardware_vop_version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markyzq/rockchip_drm_integration_helper/HEAD/zh/rockchip_hardware_vop_version.md -------------------------------------------------------------------------------- /zh/supported_logo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markyzq/rockchip_drm_integration_helper/HEAD/zh/supported_logo.md --------------------------------------------------------------------------------