树莓派3是独占缓存还是包容缓存?

Raspberry Pi3 is exclusive or inclusive cache?

Raspberry Pi3 Model B 采用四核 64 位 ARM Cortex A53,主频为 1.2 GHz,具有 32kB 一级缓存和 512kB 二级缓存。

我的问题是缓存是什么类型,独占还是包容?我在哪里可以找到这些信息?

NXP site (arm site 中找到答案):

For data accesses, the Cortex-A53 uses "tends towards exclusive" cache allocation policy:
  "Data is allocated to the L2 cache only when evicted from the L1 memory system, not when first fetched from the system. The only exceptions to this rule are for memory marked with the inner transient hint, or for non-temporal loads, see Non-temporal loads, that are only ever allocated to the L2 cache. The L1 cache can prefetch data from the system, without data being evicted from the L2 cache."

For instruction fetches, the Cortex-A53 uses "tends towards inclusive" cache allocation policy:
   "Instructions are allocated to the L2 cache when fetched from the system and can be invalidated during maintenance operations."

It is impossible to modify the this cache policy, this is non-configurable.