Go to file
openharmony_ci ea66dfd060 !113 optimize khdf build process
Merge pull request !113 from yuanbo/master
2021-09-14 07:02:54 +00:00
config update openharmony 1.0.1 2021-03-11 18:38:32 +08:00
manager optimize khdf build process 2021-09-13 17:16:48 +08:00
model optimize khdf build process 2021-09-13 17:16:48 +08:00
network optimize khdf build process 2021-09-13 17:16:48 +08:00
osal optimize khdf build process 2021-09-13 17:16:48 +08:00
platform optimize khdf build process 2021-09-13 17:16:48 +08:00
test optimize khdf build process 2021-09-13 17:16:48 +08: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 modify hdf menuconfig 2021-09-11 18:13:50 +08:00
LICENSE update openharmony 1.0.1 2021-03-11 18:38:32 +08:00
Makefile optimize khdf build process 2021-09-13 17:16:48 +08:00
OAT.xml add oat 2021-07-31 18:05:55 +08:00
patch_hdf.sh optimize khdf build process 2021-09-13 17:16:48 +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