Device Driver Porting
This section describes how to port device drivers.
LCD Driver Porting
To port an LCD driver, write the driver, create an instance of the corresponding model in the driver, and complete the registration.
The LCD drivers are stored in //drivers/framework/model/display/driver/panel.
-
Create a panel driver.
Create an HDF driver and call the RegisterPanel method to register a model instance during driver initialization.
int32_t LCDxxEntryInit(struct HdfDeviceObject *object) { struct PanelData *panel = CreateYourPanel(); // Register a model instance. if (RegisterPanel(panel) != HDF_SUCCESS) { HDF_LOGE("%s: RegisterPanel failed", __func__); return HDF_FAILURE; } return HDF_SUCCESS; } struct HdfDriverEntry g_xxxxDevEntry = { .moduleVersion = 1, .moduleName = "LCD_XXXX", .Init = LCDxxEntryInit, }; HDF_INIT(g_xxxxDevEntry);
-
Configure and load the panel driver.
Modify the source code file //vendor/vendor_name/product_name/config/device_info/device_info.hcs. Add configurations for the device named device_lcd for the display host.
CAUTION: Make sure the value of moduleName is the same as that of moduleName in the panel driver.
root { ... display :: host { device_lcd :: device { deviceN :: deviceNode { policy = 0; priority = 100; preload = 2; moduleName = "LCD_XXXX"; } } } }
Touchscreen Driver Porting
This section describes how to port a touchscreen driver. The touchscreen drivers are stored in the source code directory //drivers/framework/model/input/driver/touchscreen. To port a touchscreen driver, register a ChipDevice model instance with the system.
For details about how to develop a touchscreen driver, see Touchscreen Development Guidelines.
-
Create a touchscreen driver.
Create the touch_ic_name.c file in the touchscreen directory. Write the following content:
#include "hdf_touch.h" static int32_t HdfXXXXChipInit(struct HdfDeviceObject *device) { ChipDevice *tpImpl = CreateXXXXTpImpl(); if(RegisterChipDevice(tpImpl) != HDF_SUCCESS) {// Register the ChipDevice model instance. ReleaseXXXXTpImpl(tpImpl); return HDF_FAILURE; } return HDF_SUCCESS; } struct HdfDriverEntry g_touchXXXXChipEntry = { .moduleVersion = 1, .moduleName = "HDF_TOUCH_XXXX", // Make sure the value is the same as that in the subsequent configuration. .Init = HdfXXXXChipInit, }; HDF_INIT(g_touchXXXXChipEntry);
The following methods need to be implemented in ChipDevice:
Reads data from the device and writes touch point data to device > driver > frameData.
-
Configure the product and load the driver.
All device information of the product is defined in the source code file //vendor/vendor_name/product_name/config/device_info/device_info.hcs. Modify the file and add configurations to the device named device_touch_chip in the host of the input command.
NOTE: Make sure the value of moduleName is the same as that of moduleName in the touchscreen driver.
deviceN :: deviceNode { policy = 0; priority = 130; preload = 0; permission = 0660; moduleName = "HDF_TOUCH_XXXX"; deviceMatchAttr = "touch_XXXX_configs"; }
WLAN Driver Porting
The WLAN driver is divided into two parts. One of the parts manages WLAN devices, and the other part manages WLAN traffic.
Figure 1 OpenHarmony WLAN driver architecture
As shown in Figure 1, the part on the left manages WLAN devices, and the part on the right manages WLAN traffic. The HDF WLAN framework abstracts these two parts. The porting process of the driver can be considered as the implementation of the APIs required by the two parts. These APIs are described as follows:
NOTE: For details about the API development, see WLAN Development Guidelines.
The porting procedure is as follows:
-
Create a WLAN chip driver.
Create the hdf_wlan_chip_name.c file in /device/vendor_name/peripheral/wifi/chip_name/. The sample code is as follows:
static int32_t HdfWlanHisiChipDriverInit(struct HdfDeviceObject *device) { static struct HdfChipDriverFactory factory = CreateChipDriverFactory(); // Implement the method. struct HdfChipDriverManager *driverMgr = HdfWlanGetChipDriverMgr(); if (driverMgr->RegChipDriver(&factory) != HDF_SUCCESS) {// Register the driver factory. HDF_LOGE("%s fail: driverMgr is NULL!", __func__); return HDF_FAILURE; } return HDF_SUCCESS; } struct HdfDriverEntry g_hdfXXXChipEntry = { .moduleVersion = 1, .Init = HdfWlanXXXChipDriverInit, .Release = HdfWlanXXXChipRelease, .moduleName = "HDF_WIFI_CHIP_XXX" // Make sure the name is the same as the configured one. }; HDF_INIT(g_hdfXXXChipEntry);
In the CreateChipDriverFactory method, create an object of the HdfChipDriverFactory type. This object provides the following methods:
The Build method creates an HdfChipDriver object that manages the specified network interface. This object needs to provide the following methods:
-
Create a configuration file to describe the chips supported by the driver.
Create a chip configuration file in the product configuration directory and save it to the source code path //vendor/vendor_name/product_name/config/wifi/wlan_chip_chip_name.hcs.
The sample code is as follows:
root { wlan_config { chip_name :& chipList { chip_name :: chipInst { match_attr = "hdf_wlan_chips_chip_name"; /* Indicates the configuration matching attribute, which is used to provide the configuration root of the driver.*/ driverName = "driverName"; /* Indicates the driver name, which must be the same as that of driverName in HdfChipDriverFactory.*/ sdio { vendorId = 0xXXXX; /* your vendor id */ deviceId = [0xXXXX]; /*your supported devices */ } } } } }
NOTE: Replace the values of vendor_name, product_name, and chip_name in the path and file with the actual names. Set vendorId and deviceId to the actual vendor ID and chip ID, respectively.
-
Edit the configuration file and load the driver.
All device information of the product is defined in the source code file //vendor/vendor_name/product_name/config/device_info/device_info.hcs. Modify the file and add configurations to the device named device_wlan_chips in the host of the network command. The sample code is as follows:
deviceN :: deviceNode { policy = 0; preload = 2; moduleName = "HDF_WLAN_CHIPS"; deviceMatchAttr = "hdf_wlan_chips_chip_name"; serviceName = "driverName"; }
NOTE: Make sure the value of moduleName is the same as that of moduleName in the WLAN driver.
-
Modify the Kconfig file to make the ported WLAN driver appear in the kernel configuration.
Add configurations to device/vendor_name/drivers/Kconfig. The sample code is as follows:
config DRIVERS_HDF_WIFI_chip_name bool "Enable chip_name Host driver" default n depends on DRIVERS_HDF_WLAN help Answer Y to enable chip_name Host driver.
NOTE: Replace chip_name with the actual chip name.
-
Modify the build script to enable the driver to participate in the kernel build.
Add the following content to the end of the source code file //device/vendor_name/drivers/lite.mk:
ifeq ($(LOSCFG_DRIVERS_HDF_WIFI_chip_name), y) # After the build is complete, an object named hdf_wlan_chipdriver_chip_name needs to be linked. You are advised to use this name to prevent conflicts. LITEOS_BASELIB += -lhdf_wlan_chipdriver_chip_name # Add the build directory gpio. LIB_SUBDIRS += ../peripheral/wifi/chip_name endif
NOTE: Replace chip_name with the actual chip name.