[linux] porting cvitek asic chips.
1. update cv182x/cv183x configuration file 2. update cv181x/cv180x configuration file 3. update clk driver for cvitek 4. update dma driver for cvitek 5. update soc driver for cvitek 6. porting cvitek ion driver from kernel-4.19 7. compatible with riscv Change-Id: Icff9fafe0ebe7d6bab824bbadb952e08bdc66c19
This commit is contained in:
committed by
sam.xiang
parent
4bc998a131
commit
4f810186ab
1
linux_5.10/scripts/dtc/include-prefixes/cvi_board_memmap.h
Symbolic link
1
linux_5.10/scripts/dtc/include-prefixes/cvi_board_memmap.h
Symbolic link
@ -0,0 +1 @@
|
||||
../../../../build/output/cv1800b_wdmb_0008a_spinor/cvi_board_memmap.h
|
||||
@ -25,6 +25,38 @@ xconfig: $(obj)/qconf
|
||||
gconfig: $(obj)/gconf
|
||||
$(Q)$< $(silent) $(Kconfig)
|
||||
|
||||
PHONY += scriptconfig iscriptconfig kmenuconfig guiconfig dumpvarsconfig setconfig
|
||||
|
||||
PYTHONCMD ?= python
|
||||
kpython := PYTHONPATH=$(srctree)/Kconfiglib:$$PYTHONPATH $(PYTHONCMD)
|
||||
|
||||
ifneq ($(filter scriptconfig,$(MAKECMDGOALS)),)
|
||||
ifndef SCRIPT
|
||||
$(error Use "make scriptconfig SCRIPT=<path to script> [SCRIPT_ARG=<argument>]")
|
||||
endif
|
||||
endif
|
||||
|
||||
scriptconfig:
|
||||
$(Q)$(kpython) $(SCRIPT) $(Kconfig) $(if $(SCRIPT_ARG),"$(SCRIPT_ARG)")
|
||||
|
||||
setconfig:
|
||||
$(Q)$(kpython) $(srctree)/Kconfiglib/setconfig.py --kconfig $(Kconfig) $(SCRIPT_ARG)
|
||||
|
||||
iscriptconfig:
|
||||
$(Q)$(kpython) -i -c \
|
||||
"import kconfiglib; \
|
||||
kconf = kconfiglib.Kconfig('$(Kconfig)'); \
|
||||
print('A Kconfig instance \'kconf\' for the architecture $(ARCH) has been created.')"
|
||||
|
||||
kmenuconfig:
|
||||
$(Q)$(kpython) $(srctree)/Kconfiglib/menuconfig.py $(Kconfig)
|
||||
|
||||
guiconfig:
|
||||
$(Q)$(kpython) $(srctree)/Kconfiglib/guiconfig.py $(Kconfig)
|
||||
|
||||
dumpvarsconfig:
|
||||
$(Q)$(kpython) $(srctree)/Kconfiglib/examples/dumpvars.py $(Kconfig)
|
||||
|
||||
menuconfig: $(obj)/mconf
|
||||
$(Q)$< $(silent) $(Kconfig)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user