You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by xi...@apache.org on 2022/05/30 11:58:49 UTC

[incubator-nuttx] branch master updated (360e319959 -> eb02528a39)

This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git


    from 360e319959 arm/tlsr82: ble performance optimize and problems solve.
     new 571e66d03f arch/risc-v: Remove unused rv32m1_vectors.S
     new eb02528a39 arch/risc-v/qemu-rv: Fix a typo in Make.defs

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 arch/risc-v/src/qemu-rv/Make.defs       |  2 +-
 arch/risc-v/src/rv32m1/rv32m1_vectors.S | 86 ---------------------------------
 2 files changed, 1 insertion(+), 87 deletions(-)
 delete mode 100644 arch/risc-v/src/rv32m1/rv32m1_vectors.S


[incubator-nuttx] 02/02: arch/risc-v/qemu-rv: Fix a typo in Make.defs

Posted by xi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git

commit eb02528a39b03739bbe1e300ea3e5b676b1f6ff2
Author: Huang Qi <hu...@xiaomi.com>
AuthorDate: Mon May 30 18:15:09 2022 +0800

    arch/risc-v/qemu-rv: Fix a typo in Make.defs
---
 arch/risc-v/src/qemu-rv/Make.defs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/risc-v/src/qemu-rv/Make.defs b/arch/risc-v/src/qemu-rv/Make.defs
index 7482134b26..7fb8ae50e4 100644
--- a/arch/risc-v/src/qemu-rv/Make.defs
+++ b/arch/risc-v/src/qemu-rv/Make.defs
@@ -1,5 +1,5 @@
 ############################################################################
-# arch/risc-v/src/qemu-rv32/Make.defs
+# arch/risc-v/src/qemu-rv/Make.defs
 #
 # Licensed to the Apache Software Foundation (ASF) under one or more
 # contributor license agreements.  See the NOTICE file distributed with


[incubator-nuttx] 01/02: arch/risc-v: Remove unused rv32m1_vectors.S

Posted by xi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git

commit 571e66d03fab236049b41cd0313172311a3f068f
Author: Huang Qi <hu...@xiaomi.com>
AuthorDate: Mon May 30 18:13:51 2022 +0800

    arch/risc-v: Remove unused rv32m1_vectors.S
    
    Since it had been merged into rv32m1_head.S
    
    Signed-off-by: Huang Qi <hu...@xiaomi.com>
---
 arch/risc-v/src/rv32m1/rv32m1_vectors.S | 86 ---------------------------------
 1 file changed, 86 deletions(-)

diff --git a/arch/risc-v/src/rv32m1/rv32m1_vectors.S b/arch/risc-v/src/rv32m1/rv32m1_vectors.S
deleted file mode 100644
index 4161131753..0000000000
--- a/arch/risc-v/src/rv32m1/rv32m1_vectors.S
+++ /dev/null
@@ -1,86 +0,0 @@
-/****************************************************************************
- * arch/risc-v/src/rv32m1/rv32m1_vectors.S
- *
- * 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
- *
- *   http://www.apache.org/licenses/LICENSE-2.0
- *
- * 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.
- *
- ****************************************************************************/
-
-/****************************************************************************
- * Included Files
- ****************************************************************************/
-
-#include "chip.h"
-
-  /* Imported Symbols */
-
-  .extern __start
-  .extern exception_common
-
-#ifdef CONFIG_RV32M1_ITCM
-  .section .boot, "ax"
-  .option norvc
-  .org 0x80
-  j __start
-
-  .section SECTION_ITCM
-__reset:
-  lui t0, %hi(__start)
-  addi t0, t0, %lo(__start)
-  jalr x0, 0(t0)
-#endif
-
-  .section .vectors, "ax"
-  .option norvc
-  j exception_common  /* 0  */
-  j exception_common  /* 1  */
-  j exception_common  /* 2  */
-  j exception_common  /* 3  */
-  j exception_common  /* 4  */
-  j exception_common  /* 5  */
-  j exception_common  /* 6  */
-  j exception_common  /* 7  */
-  j exception_common  /* 8  */
-  j exception_common  /* 9  */
-  j exception_common  /* 10 */
-  j exception_common  /* 11 */
-  j exception_common  /* 12 */
-  j exception_common  /* 13 */
-  j exception_common  /* 14 */
-  j exception_common  /* 15 */
-  j exception_common  /* 16 */
-  j exception_common  /* 17 */
-  j exception_common  /* 18 */
-  j exception_common  /* 19 */
-  j exception_common  /* 20 */
-  j exception_common  /* 21 */
-  j exception_common  /* 22 */
-  j exception_common  /* 23 */
-  j exception_common  /* 24 */
-  j exception_common  /* 25 */
-  j exception_common  /* 26 */
-  j exception_common  /* 27 */
-  j exception_common  /* 28 */
-  j exception_common  /* 29 */
-  j exception_common  /* 30 */
-  j exception_common  /* 31 */
-#ifdef CONFIG_RV32M1_ITCM
-  j __reset
-#else
-  j __start
-#endif
-  j exception_common  /* Illegal instruction */
-  j exception_common  /* Ecall */
-  j exception_common  /* LSU error */