@@ -67,6 +67,10 @@ Optional properties:
disable if zero.
- arm,prefetch-offset : Override prefetch offset value. Valid values are
0-7, 15, 23, and 31.
+- arm,prefetch-data : Enable data prefetch. Enabling prefetching
+ can improve performance.
+- arm,prefetch-instr : Enable instruction prefetch. Enabling prefetching
+ can improve performance.
Example:
@@ -1199,6 +1199,36 @@ static void __init l2c310_of_parse(const struct device_node *np,
pr_err("L2C-310 OF arm,prefetch-offset property value is missing\n");
}
+ ret = of_property_read_u32(np, "arm,prefetch-data", &val);
+ if (ret == 0) {
+ if (val) {
+ prefetch |= L310_PREFETCH_CTRL_DATA_PREFETCH;
+ *aux_val |= L310_AUX_CTRL_DATA_PREFETCH;
+ *aux_mask &= ~L310_AUX_CTRL_DATA_PREFETCH;
+ } else {
+ prefetch &= ~L310_PREFETCH_CTRL_DATA_PREFETCH;
+ *aux_val &= ~L310_AUX_CTRL_DATA_PREFETCH;
+ *aux_mask |= L310_AUX_CTRL_DATA_PREFETCH;
+ }
+ } else if (ret != -EINVAL) {
+ pr_err("L2C-310 OF arm,prefetch-data property value is missing\n");
+ }
+
+ ret = of_property_read_u32(np, "arm,prefetch-instr", &val);
+ if (ret == 0) {
+ if (val) {
+ prefetch |= L310_PREFETCH_CTRL_INSTR_PREFETCH;
+ *aux_val |= L310_AUX_CTRL_INSTR_PREFETCH;
+ *aux_mask &= ~L310_AUX_CTRL_INSTR_PREFETCH;
+ } else {
+ prefetch &= ~L310_PREFETCH_CTRL_INSTR_PREFETCH;
+ *aux_val &= ~L310_AUX_CTRL_INSTR_PREFETCH;
+ *aux_mask |= L310_AUX_CTRL_INSTR_PREFETCH;
+ }
+ } else if (ret != -EINVAL) {
+ pr_err("L2C-310 OF arm,prefetch-instr property value is missing\n");
+ }
+
l2x0_saved_regs.prefetch_ctrl = prefetch;
}
These options make it possible to overwrites the data and instruction prefetching behavior of the arm pl310 cache controller. We have to set these values in the aux and the prefetch register, because these two bits in the aux registers are mapped to the prefetch register. If only the prefetch register is changed there is an inconsistence in the state in this driver. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> --- Documentation/devicetree/bindings/arm/l2cc.txt | 4 ++++ arch/arm/mm/cache-l2x0.c | 30 ++++++++++++++++++++++++++ 2 files changed, 34 insertions(+)