Lines Matching refs:LCD
1 # LCD chapter
7 The Liquid Crystal Display (LCD) driver performs operations such as powering on the LCD and initial…
11 - Provides a basic framework for LCD driver development to improve development efficiency.
21 … LCD panel driver layer. The HDF-based display driver model shields the differences between kernel…
25 … to the chip platform, and passes the calls from the platform driver layer to the LCD driver layer.
27 - LCD panel driver layer: provides LCD-related APIs for sending the initialization sequence, poweri…
33 The LCD interfaces include the Mobile Industry Processor Interface (MIPI) Display Serial Interface …
51 …ignals, frame synchronization signals, and data validity signals). For the LCD with the TTL, addit…
55 …LCD peripheral circuit design, LCD interface unit of the baseband chip, backlight IC control, and …
61 … system, you need to perform LCD driver adaption. The HDF-based display driver model provides a un…
65 To adjust the parameters of the LCD, establish a display channel with the display, and implement th…
67 Table 1 APIs required for LCD driver adaptation
78 1. Add the device configuration related to the LCD driver.
82 3. Add the LCD panel driver and register the panel driver data in the driver entry function **Init*…
83 - Powering on/off the LCD device
85 …LCD hardware connection, use the GPIO APIs provided by the platform to perform operations on the L…
89 …LCD hardware interfaces, use the I2C, SPI, and MIPI interfaces provided by the platform to downloa…
97 The following uses the Hi35xx series chips as an example to describe how to perform LCD driver adap…
123 /* Configuration of the LCD driver */
221 enum LcdIntfType intfType; // LCD interface type
229 - Initialize the LCD (**drivers/hdf_core/framework/model/display/driver/panel/mipi_icn9700.c**).