You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by GitBox <gi...@apache.org> on 2022/01/05 19:08:42 UTC

[GitHub] [incubator-nuttx] gustavonihei commented on a change in pull request #5165: CEVA: add ceva platform xc5 xm6 support

gustavonihei commented on a change in pull request #5165:
URL: https://github.com/apache/incubator-nuttx/pull/5165#discussion_r779070441



##########
File path: arch/ceva/Kconfig
##########
@@ -0,0 +1,133 @@
+#
+# For a description of the syntax of this configuration file,
+# see the file kconfig-language.txt in the NuttX tools repository.
+#
+
+if ARCH_CEVA
+comment "CEVA Options"
+
+config ARCH_XC5
+	bool
+	default n
+	---help---
+		CEVA-XC5 is a licensable DSP and memory subsystem (MSS) platform
+		designed for advanced wireless communication, with low power and
+		flexible architecture support for both legacy and next-generation
+		wireless standards.
+
+config ARCH_XM6
+	bool
+	default n
+	select ARCH_HAVE_HARDFAULT_DEBUG
+	select ARCH_HAVE_MPU
+	select ARCH_HAVE_MULTICPU
+	---help---
+		CEVA-XM6 is a licensable DSP and memory subsystem (MSS) platform
+		targeted for high-performance computer vision and image-processing
+		applications that provide very high processing power while
+		maintaining a small footprint and low power consumption.
+
+config ARCH_FAMILY
+	string
+	default "xc5"		if ARCH_XC5
+	default "xm6"		if ARCH_XM6
+
+config ARCH_ITCM_SIZE
+	int "ITCM Size"
+
+config ARCH_DTCM_SIZE
+	int "DTCM Size"
+
+config CEVA_ICACHE
+	bool "Use I-Cache"
+	default n
+	select ARCH_ICACHE
+
+config CEVA_DCACHE
+	bool "Use D-Cache"
+	default n
+	select ARCH_DCACHE
+
+config ARCH_NR_FPUS
+	int "FPU Number"
+	default 1
+	depends on ARCH_HAVE_FPU
+	---help---
+		Build in support for the number of Floating Point Unit.

Review comment:
       ```suggestion
   		Built-in support for the number of Floating Point Unit.
   ```




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@nuttx.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org