Go to file
openharmony_ci bcaa516551 !33 not use product name for L1 compile
Merge pull request !33 from yuanbo/master
2021-06-15 08:35:59 +08:00
config update openharmony 1.0.1 2021-03-11 18:38:32 +08:00
hcs !30 fix kernel build failed after remove hc-gen from PATH 2021-06-09 21:06:20 +08:00
manager sync l2 code to l1 code 2021-05-18 10:58:42 +08:00
model not use product name for L1 compile 2021-06-11 16:38:43 +08:00
network update OpenHarmony 2.0 Canary 2021-06-02 02:57:21 +08:00
osal check the max size of memory 2021-06-07 17:47:58 +08:00
platform mmc driver linux adapter 2021-06-08 06:31:50 +00:00
test sync code to master 2021-05-19 15:22:30 +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 mmc driver linux adapter 2021-06-08 06:28:34 +00:00
LICENSE update openharmony 1.0.1 2021-03-11 18:38:32 +08:00
Makefile not use product name for L1 compile 2021-06-11 16:38:43 +08:00
OAT.xml update OpenHarmony 2.0 Canary 2021-06-02 02:57:21 +08:00
README_zh.md sync code to master 2021-05-19 15:22:30 +08:00
README.md sync code to master 2021-05-19 15:22:30 +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