Go to file
YOUR_NAME 19520d244d update audio include
Signed-off-by: YOUR_NAME <zhanglei179@huawei.com>
2021-09-11 09:24:09 +00:00
config update openharmony 1.0.1 2021-03-11 18:38:32 +08:00
manager fix hdf power management feature on kernel 2021-07-15 20:05:18 +08:00
model update audio include 2021-09-11 09:24:09 +00:00
network adapter hi3516dv300 for linux-5.10 2021-08-28 19:27:41 +08:00
osal modify OsalGetTime implementation from do_gettimeofday to ktime_get_ts64 2021-07-09 16:37:15 +08:00
platform resolve error of panel off 2021-09-09 11:34:21 +00:00
test audio driver model makefile and config file 2021-07-07 12:56:33 +00:00
.gitattributes update OpenHarmony 2.0 Canary 2021-06-02 02:57:21 +08:00
.gitignore sync code to master 2021-05-19 15:22:30 +08:00
Kconfig Description:add dsoftbus kernel driver module 2021-09-06 01:17:06 +00:00
LICENSE update openharmony 1.0.1 2021-03-11 18:38:32 +08:00
Makefile Description:add dsoftbus kernel driver module 2021-09-06 01:17:06 +00:00
OAT.xml add oat 2021-07-31 18:05:55 +08:00
README_zh.md modify hyperlinks in the warehouse 2021-08-23 19:44:28 +08:00
README.md modify hyperlinks in the warehouse 2021-08-23 19:44:28 +08:00

linux_khdf

Introduction

This repository stores the code and compilation scripts for the OpenHarmony driver subsystem to adapt to the Linux kernel and to deploy the hardware driver foundation HDF.

Directory Structure

/drivers/adapter/khdf/linux
├── config               # Compilation scripts for building and configuring the parsing code
├── hcs                  # HDF configuration and management
├── manager              # Code for starting and adapting to the HDF
├── model                # Code for adapting to Linux
│   ├── display          # Display driver model
│   ├── input            # Input driver model
│   ├── network          # WLAN driver model
│   ├── sensor           # Sensor driver model
├── network              # Code for adapting to the Linux kernel network
├── osal                 # POSIX APIs for adapting to the Linux kernel
├── platform             # Code for adapting the platform APIs to the Linux kernel
│   ├── emmc             # EMMC APIs
│   ├── gpio             # GPIO APIs
│   ├── i2c              # I2C APIs
│   ├── mipi_dsi         # MIPI DSI APIs
│   ├── pwm              # PWM APIs
│   ├── rtc              # RTC APIs
│   ├── sdio             # SDIO APIs
│   ├── spi              # SPI APIs
│   ├── uart             # UART APIs
│   └── watchdog         # WATCHDOG APIs

Repositories Involved

Driver subsystem

drivers_framework

drivers_adapter

drivers_adapter_khdf_linux

drivers_peripheral