修改说明:1.增加mipi_csi 文件交互功能

Signed-off-by: YOUR_NAME <wangyeyu1@huawei.com>
This commit is contained in:
YOUR_NAME
2021-09-22 15:35:26 +08:00
parent 0544dd6619
commit c6ebbf5a8b
4 changed files with 1250 additions and 0 deletions
+7
View File
@@ -12,6 +12,13 @@ config DRIVERS_HDF_PLATFORM_MIPI_DSI
help
Answer Y to enable HDF platform mipi dsi driver.
config DRIVERS_HDF_PLATFORM_MIPI_CSI
bool "Enable HDF platform mipi csi driver"
default n
depends on DRIVERS_HDF_PLATFORM
help
Answer Y to enable HDF platform mipi csi driver.
config DRIVERS_HDF_PLATFORM_GPIO
bool "Enable HDF platform gpio driver"
default n
+1
View File
@@ -14,6 +14,7 @@
obj-$(CONFIG_DRIVERS_HDF_PLATFORM) += common/
obj-$(CONFIG_DRIVERS_HDF_PLATFORM_MIPI_DSI) += mipi_dsi/
obj-$(CONFIG_DRIVERS_HDF_PLATFORM_MIPI_CSI) += mipi_csi/
obj-$(CONFIG_DRIVERS_HDF_PLATFORM_GPIO) += gpio/
obj-$(CONFIG_DRIVERS_HDF_PLATFORM_I2C) += i2c/
obj-$(CONFIG_DRIVERS_HDF_PLATFORM_WATCHDOG) += watchdog/
+22
View File
@@ -0,0 +1,22 @@
#
# Copyright (c) 2020-2021 Huawei Device Co., Ltd.
#
# This software is licensed under the terms of the GNU General Public
# License version 2, as published by the Free Software Foundation, and
# may be copied, distributed, and modified under those terms.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
#
include drivers/hdf/khdf/platform/platform.mk
obj-y += $(HDF_PLATFORM_FRAMEWORKS_ROOT)/src/mipi_csi_core.o \
$(HDF_PLATFORM_FRAMEWORKS_ROOT)/src/mipi_csi_if.o
obj-y += mipi_csi_dev.o \
EXTRA_CFLAGS += -Wno-error=date-time
+1220
View File
File diff suppressed because it is too large Load Diff