Fwd: Deprecation/removal of nios2 target support

2024-04-17 Thread Joel Sherrill
We should track this but if the GNU tools drop support, this is normally the trigger for RTEMS. Unless the support situation changes, I think we will have to remove nios2 in RTEMS 7 --joel -- Forwarded message - From: Sandra Loosemore Date: Wed, Apr 17, 2024, 10:28 PM Subject:

Re: [PATCH] bsps/powerpc: Introduction of interrupt locks

2024-04-17 Thread Chris Johns
Hi Vincenzo, Welcome to RTEMS. What hardware in the shared VME PowerPC family of BSPS has this change been tested on? Thanks Chris On 17/4/2024 5:34 pm, Vincenzo Calabretta wrote: > Interrupt locks are introduced in shared vme device drivers to enable > compilation in an SMP configuration of

Re: [RFC] rtems: Add options to kernel output char handler

2024-04-17 Thread Chris Johns
On 17/4/2024 11:06 pm, Sebastian Huber wrote: > Make the kernel I/O output character device processing configurable > through an option set parameter. Add RTEMS_NO_OUTPUT and RTEMS_FLUSH > options. The goal of this API change is to enable flushing the kernel > output device in the system

Re: 6.1rc3 CentOS 7 Build Sweep Report

2024-04-17 Thread Chris Johns
On 18/4/2024 4:13 am, Joel Sherrill wrote: > Hi > > 6.1rc3 appears to be in pretty good shape on CentOS 7 (w/GCC 8 and Python 3 > SCL). Results should be on the build@ list. One odd issue appears to be in the > rtems-tester. > > Testing a riscv-bsp with spike, I get this output. It is repeated

Re: 6.1rc3 CentOS 7 Build Sweep Report

2024-04-17 Thread John Howard
UTF-8 start byte cannot be 0xff. Off-by-1 bug is possible. Maybe a hidden control character is throwing off the count but being stripped away prior to the attempt to convert to UTF-8. On Apr 17, 2024, at 1:13 PM, Joel Sherrill wrote: Hi 6.1rc3 appears to be in pretty good shape on CentOS 7

6.1rc3 CentOS 7 Build Sweep Report

2024-04-17 Thread Joel Sherrill
Hi 6.1rc3 appears to be in pretty good shape on CentOS 7 (w/GCC 8 and Python 3 SCL). Results should be on the build@ list. One odd issue appears to be in the rtems-tester. Testing a riscv-bsp with spike, I get this output. It is repeated with other spike/risc-v bsp tests. Any ideas? Exception

Re: [PATCH] bsps/arm: Improve GICv3 support

2024-04-17 Thread Kinsey Moore
On Wed, Apr 17, 2024 at 12:51 AM Sebastian Huber < sebastian.hu...@embedded-brains.de> wrote: > On 16.04.24 16:51, Kinsey Moore wrote: > > This adds warnings for arm_interrupt_enable_interrupts and > > arm_interrupt_restore_interrupts. I suspect a missing header. They also > > generate a link

[RFC] rtems: Add options to kernel output char handler

2024-04-17 Thread Sebastian Huber
Make the kernel I/O output character device processing configurable through an option set parameter. Add RTEMS_NO_OUTPUT and RTEMS_FLUSH options. The goal of this API change is to enable flushing the kernel output device in the system termination process before a reset is issued. A use case for

[PATCH] bsps/powerpc: Introduction of interrupt locks

2024-04-17 Thread Vincenzo Calabretta
Interrupt locks are introduced in shared vme device drivers to enable compilation in an SMP configuration of the qoriq BSP. --- bsps/powerpc/shared/vme/vmeTsi148.c | 44 ++- bsps/powerpc/shared/vme/vmeUniverse.c | 40 +--- 2 files changed, 45