Skip to content

Commit

Permalink
driver: video-memory: reorganize the code structure
Browse files Browse the repository at this point in the history
soc: xuantie: th1520 use it.

Signed-off-by: Han Gao <[email protected]>
Signed-off-by: Han Gao <[email protected]>
  • Loading branch information
RevySR committed Sep 27, 2024
1 parent d1fe4fe commit 1d88b44
Show file tree
Hide file tree
Showing 13 changed files with 3 additions and 841 deletions.
2 changes: 1 addition & 1 deletion drivers/soc/xuantie/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ obj-$(CONFIG_TH1520_IOPMP) += th1520-iopmp.o

# npu-ax3386-gpl driver
obj-y += nna/
obj-$(CONFIG_VIDEO_MEMORY) += video_memory/driver/
obj-$(CONFIG_VIDEO_MEMORY) += video_memory/
obj-$(CONFIG_VIDEO_VC8000D) += vpu-vc8000d-kernel/linux/subsys_driver/ vpu-vc8000d-kernel/linux/memalloc/
obj-$(CONFIG_VIDEO_VC8000E) += vpu-vc8000e-kernel/linux/kernel_module/
118 changes: 2 additions & 116 deletions drivers/soc/xuantie/video_memory/Makefile
Original file line number Diff line number Diff line change
@@ -1,116 +1,2 @@
##
# Copyright (C) 2020 Alibaba Group Holding Limited
##
ifneq ($(wildcard ../.param),)
include ../.param
endif

#CONFIG_DEBUG_MODE=1
CONFIG_OUT_ENV=hwlinux

CONFIG_BUILD_DRV_EXTRA_PARAM:=""
CONFIG_BUILD_LIB_EXTRA_PARAM:=""
CONFIG_BUILD_TST_EXTRA_PARAM:=""

DIR_TARGET_BASE=bsp/vidmem
DIR_TARGET_KO =bsp/vidmem/ko
DIR_TARGET_TEST=bsp/vidmem/test

MODULE_NAME=vidmem
BUILD_LOG_START="\033[47;30m>>> $(MODULE_NAME) $@ begin\033[0m"
BUILD_LOG_END ="\033[47;30m<<< $(MODULE_NAME) $@ end\033[0m"

#
# Do a parallel build with multiple jobs, based on the number of CPUs online
# in this system: 'make -j8' on a 8-CPU system, etc.
#
# (To override it, run 'make JOBS=1' and similar.)
#

ifeq ($(JOBS),)
JOBS := $(shell grep -c ^processor /proc/cpuinfo 2>/dev/null)
ifeq ($(JOBS),)
JOBS := 1
endif
endif

all: info driver lib test install_local_output install_rootfs
.PHONY: info driver lib test install_local_output install_rootfs \
install_prepare install_addons clean_driver clean_test clean_output clean

info:
@echo $(BUILD_LOG_START)
@echo " ====== Build Info from repo project ======"
@echo " BUILDROOT_DIR="$(BUILDROOT_DIR)
@echo " CROSS_COMPILE="$(CROSS_COMPILE)
@echo " LINUX_DIR="$(LINUX_DIR)
@echo " ARCH="$(ARCH)
@echo " BOARD_NAME="$(BOARD_NAME)
@echo " KERNEL_ID="$(KERNELVERSION)
@echo " KERNEL_DIR="$(LINUX_DIR)
@echo " INSTALL_DIR_ROOTFS="$(INSTALL_DIR_ROOTFS)
@echo " INSTALL_DIR_SDK="$(INSTALL_DIR_SDK)
@echo " ====== Build configuration by settings ======"
# @echo " CONFIG_DEBUG_MODE="$(CONFIG_DEBUG_MODE)
@echo " CONFIG_OUT_ENV="$(CONFIG_OUT_ENV)
@echo " JOBS="$(JOBS)
@echo $(BUILD_LOG_END)

driver:
@echo $(BUILD_LOG_START)
make -C $(LINUX_DIR) M=$(PWD)/driver ARCH=$(ARCH) modules
@echo $(BUILD_LOG_END)

clean_driver:
@echo $(BUILD_LOG_START)
make -C driver KDIR=$(LINUX_DIR) clean
@echo $(BUILD_LOG_END)

lib:
@echo $(BUILD_LOG_START)
make -w -C lib
@echo $(BUILD_LOG_END)

clean_lib:
@echo $(BUILD_LOG_START)
make -C lib KDIR=$(LINUX_DIR) clean
@echo $(BUILD_LOG_END)

test: driver
@echo $(BUILD_LOG_START)
make -w -C test hwlinux
@echo $(BUILD_LOG_END)

clean_test:
@echo $(BUILD_LOG_START)
make clean -C test
@echo $(BUILD_LOG_END)

install_prepare:
mkdir -p ./output/rootfs/$(DIR_TARGET_KO)
mkdir -p ./output/rootfs/$(DIR_TARGET_TEST)

install_addons: install_prepare
@echo $(BUILD_LOG_START)
@echo $(BUILD_LOG_END)

install_local_output: driver lib test install_addons
@echo $(BUILD_LOG_START)
find ./driver -name "*.ko" | xargs -i cp -f {} ./output/rootfs/$(DIR_TARGET_KO)
cp -f ./test/vidmem_test ./output/rootfs/$(DIR_TARGET_TEST)
@if [ `command -v tree` != "" ]; then \
tree ./output/rootfs; \
fi
@echo $(BUILD_LOG_END)

install_rootfs: install_local_output
@echo $(BUILD_LOG_START)
@echo $(BUILD_LOG_END)

clean_output:
@echo $(BUILD_LOG_START)
rm -rf ./output
@echo $(BUILD_LOG_END)

clean: clean_output clean_driver clean_lib clean_test

vidmem-objs := video_memory.o rsvmem_pool.o
obj-$(CONFIG_VIDEO_MEMORY) += vidmem.o
47 changes: 0 additions & 47 deletions drivers/soc/xuantie/video_memory/driver/Makefile

This file was deleted.

16 changes: 0 additions & 16 deletions drivers/soc/xuantie/video_memory/lib/Makefile

This file was deleted.

Loading

0 comments on commit 1d88b44

Please sign in to comment.