075-ARM-8391-1-l2c-add-options-to-overwrite-prefetching-.patch 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. From ec3bd0e68a679a7af2c46af1ddc9af8b534a8b0e Mon Sep 17 00:00:00 2001
  2. From: Hauke Mehrtens <hauke@hauke-m.de>
  3. Date: Wed, 10 Jun 2015 20:23:24 +0100
  4. Subject: [PATCH] ARM: 8391/1: l2c: add options to overwrite prefetching
  5. behavior
  6. These options make it possible to overwrites the data and instruction
  7. prefetching behavior of the arm pl310 cache controller.
  8. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
  9. Acked-by: Florian Fainelli <f.fainelli@gmail.com>
  10. Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
  11. ---
  12. Documentation/devicetree/bindings/arm/l2cc.txt | 5 +++++
  13. arch/arm/mm/cache-l2x0.c | 20 ++++++++++++++++++++
  14. 2 files changed, 25 insertions(+)
  15. --- a/Documentation/devicetree/bindings/arm/l2cc.txt
  16. +++ b/Documentation/devicetree/bindings/arm/l2cc.txt
  17. @@ -67,6 +67,11 @@ Optional properties:
  18. disable if zero.
  19. - arm,prefetch-offset : Override prefetch offset value. Valid values are
  20. 0-7, 15, 23, and 31.
  21. +- prefetch-data : Data prefetch. Value: <0> (forcibly disable), <1>
  22. + (forcibly enable), property absent (retain settings set by firmware)
  23. +- prefetch-instr : Instruction prefetch. Value: <0> (forcibly disable),
  24. + <1> (forcibly enable), property absent (retain settings set by
  25. + firmware)
  26. Example:
  27. --- a/arch/arm/mm/cache-l2x0.c
  28. +++ b/arch/arm/mm/cache-l2x0.c
  29. @@ -1221,6 +1221,26 @@ static void __init l2c310_of_parse(const
  30. pr_err("L2C-310 OF arm,prefetch-offset property value is missing\n");
  31. }
  32. + ret = of_property_read_u32(np, "prefetch-data", &val);
  33. + if (ret == 0) {
  34. + if (val)
  35. + prefetch |= L310_PREFETCH_CTRL_DATA_PREFETCH;
  36. + else
  37. + prefetch &= ~L310_PREFETCH_CTRL_DATA_PREFETCH;
  38. + } else if (ret != -EINVAL) {
  39. + pr_err("L2C-310 OF prefetch-data property value is missing\n");
  40. + }
  41. +
  42. + ret = of_property_read_u32(np, "prefetch-instr", &val);
  43. + if (ret == 0) {
  44. + if (val)
  45. + prefetch |= L310_PREFETCH_CTRL_INSTR_PREFETCH;
  46. + else
  47. + prefetch &= ~L310_PREFETCH_CTRL_INSTR_PREFETCH;
  48. + } else if (ret != -EINVAL) {
  49. + pr_err("L2C-310 OF prefetch-instr property value is missing\n");
  50. + }
  51. +
  52. l2x0_saved_regs.prefetch_ctrl = prefetch;
  53. }