Re: [PATCH] bsps/aarch64: Remove erroneous cache feature

2021-12-11 Thread Gedare Bloom
On Sat, Dec 11, 2021 at 11:18 AM Gedare Bloom wrote: > > On Fri, Dec 10, 2021 at 10:19 AM Sebastian Huber > wrote: > > > > On 10/12/2021 16:49, Kinsey Moore wrote: > > > The AArch64 cache implementation does not define > > > rtems_cache_disable_data(), but declares that it does via > > > CPU_CACH

Re: [PATCH] bsps/aarch64: Remove erroneous cache feature

2021-12-11 Thread Gedare Bloom
On Fri, Dec 10, 2021 at 10:19 AM Sebastian Huber wrote: > > On 10/12/2021 16:49, Kinsey Moore wrote: > > The AArch64 cache implementation does not define > > rtems_cache_disable_data(), but declares that it does via > > CPU_CACHE_SUPPORT_PROVIDES_DISABLE_DATA. The existing implementation of > > _C

Re: [PATCH] bsps/aarch64: Remove erroneous cache feature

2021-12-10 Thread Sebastian Huber
On 10/12/2021 16:49, Kinsey Moore wrote: The AArch64 cache implementation does not define rtems_cache_disable_data(), but declares that it does via CPU_CACHE_SUPPORT_PROVIDES_DISABLE_DATA. The existing implementation of _CPU_cache_disable_data() is sufficient to enable this functionality without

[PATCH] bsps/aarch64: Remove erroneous cache feature

2021-12-10 Thread Kinsey Moore
The AArch64 cache implementation does not define rtems_cache_disable_data(), but declares that it does via CPU_CACHE_SUPPORT_PROVIDES_DISABLE_DATA. The existing implementation of _CPU_cache_disable_data() is sufficient to enable this functionality without the erroneous cache feature flag. Closes #