Go to file
openharmony_ci a942bd2a24 !48 Audio Driver Model代码提交
Merge pull request !48 from vb6174/master
2021-07-09 09:12:05 +00:00
config update openharmony 1.0.1 2021-03-11 18:38:32 +08:00
hcs update hcs/hdf.hcs. 2021-07-07 13:28:52 +00:00
manager sync l2 code to l1 code 2021-05-18 10:58:42 +08:00
model audio driver model makefile and config file 2021-07-07 12:56:33 +00:00
network update OpenHarmony 2.0 Canary 2021-06-02 02:57:21 +08:00
osal modify bug that delete the timer when it is pending 2021-06-28 19:21:09 +08:00
platform detec i2c adapter atomaticly 2021-06-21 20:57:12 +08: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 update Kconfig. 2021-07-07 13:01:01 +00:00
LICENSE update openharmony 1.0.1 2021-03-11 18:38:32 +08:00
Makefile audio driver model makefile and config file 2021-07-07 12:56:33 +00: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