2013-12-10 00:51:22 +08:00
|
|
|
############################################################################
|
2021-03-09 05:29:12 +08:00
|
|
|
# drivers/video/Make.defs
|
2013-12-10 00:51:22 +08:00
|
|
|
#
|
2021-03-04 14:10:42 +08:00
|
|
|
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
# contributor license agreements. See the NOTICE file distributed with
|
|
|
|
# this work for additional information regarding copyright ownership. The
|
|
|
|
# ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
# "License"); you may not use this file except in compliance with the
|
|
|
|
# License. You may obtain a copy of the License at
|
2013-12-10 00:51:22 +08:00
|
|
|
#
|
2021-03-04 14:10:42 +08:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2013-12-10 00:51:22 +08:00
|
|
|
#
|
2021-03-04 14:10:42 +08:00
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
# License for the specific language governing permissions and limitations
|
|
|
|
# under the License.
|
2013-12-10 00:51:22 +08:00
|
|
|
#
|
|
|
|
############################################################################
|
|
|
|
|
|
|
|
# Include video drivers
|
|
|
|
|
2017-09-13 04:03:51 +08:00
|
|
|
ifeq ($(CONFIG_DRIVERS_VIDEO),y)
|
2013-12-10 00:51:22 +08:00
|
|
|
|
2017-09-12 06:26:18 +08:00
|
|
|
ifeq ($(CONFIG_VIDEO_FB),y)
|
|
|
|
CSRCS += fb.c
|
|
|
|
endif
|
|
|
|
|
2019-07-04 21:30:50 +08:00
|
|
|
ifeq ($(CONFIG_VIDEO_STREAM),y)
|
|
|
|
CSRCS += video.c video_framebuff.c
|
|
|
|
endif
|
|
|
|
|
2013-12-10 00:51:22 +08:00
|
|
|
# These video drivers depend on I2C support
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_I2C),y)
|
|
|
|
|
2021-09-15 11:02:33 +08:00
|
|
|
ifeq ($(CONFIG_VIDEO_ISX012),y)
|
|
|
|
CSRCS += isx012.c
|
|
|
|
endif
|
|
|
|
|
2022-05-11 15:59:27 +08:00
|
|
|
ifeq ($(CONFIG_VIDEO_ISX019),y)
|
|
|
|
CSRCS += isx019.c
|
|
|
|
endif
|
|
|
|
|
2013-12-10 00:51:22 +08:00
|
|
|
ifeq ($(CONFIG_VIDEO_OV2640),y)
|
|
|
|
CSRCS += ov2640.c
|
|
|
|
endif
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
2023-06-29 19:18:09 +08:00
|
|
|
ifeq ($(CONFIG_GOLDFISH_FB),y)
|
|
|
|
CSRCS += goldfish_fb.c
|
|
|
|
endif
|
|
|
|
|
2019-03-24 20:49:34 +08:00
|
|
|
# These video drivers depend on SPI support
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_SPI),y)
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_VIDEO_MAX7456),y)
|
|
|
|
CSRCS += max7456.c
|
|
|
|
endif
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
2023-06-13 11:18:51 +08:00
|
|
|
ifeq ($(CONFIG_GOLDFISH_CAMERA),y)
|
|
|
|
CSRCS += goldfish_camera.c
|
|
|
|
endif
|
|
|
|
|
2021-12-31 16:22:11 +08:00
|
|
|
include video/vnc/Make.defs
|
2022-12-28 18:57:02 +08:00
|
|
|
include video/mipidsi/Make.defs
|
2021-12-31 16:22:11 +08:00
|
|
|
|
2013-12-10 00:51:22 +08:00
|
|
|
# Include video driver build support
|
|
|
|
|
|
|
|
DEPPATH += --dep-path video
|
|
|
|
VPATH += :video
|
2022-11-01 21:47:53 +08:00
|
|
|
CFLAGS += ${INCDIR_PREFIX}$(TOPDIR)$(DELIM)drivers$(DELIM)video
|
2013-12-10 00:51:22 +08:00
|
|
|
|
|
|
|
endif
|