diff options
author | Hauke Mehrtens <hauke@hauke-m.de> | 2015-06-10 15:23:24 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2015-06-10 18:53:26 -0400 |
commit | ec3bd0e68a679a7af2c46af1ddc9af8b534a8b0e (patch) | |
tree | ffe9d99b2cfd8a25f557dd1908bafbbe2921a746 /arch/arm/mm/cache-l2x0.c | |
parent | 55af8a91640d362b20f2491336fce128c48f4079 (diff) |
ARM: 8391/1: l2c: add options to overwrite prefetching behavior
These options make it possible to overwrites the data and instruction
prefetching behavior of the arm pl310 cache controller.
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
Acked-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mm/cache-l2x0.c')
-rw-r--r-- | arch/arm/mm/cache-l2x0.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/arch/arm/mm/cache-l2x0.c b/arch/arm/mm/cache-l2x0.c index 90599f60ff02..71b3d3309024 100644 --- a/arch/arm/mm/cache-l2x0.c +++ b/arch/arm/mm/cache-l2x0.c | |||
@@ -1221,6 +1221,26 @@ static void __init l2c310_of_parse(const struct device_node *np, | |||
1221 | pr_err("L2C-310 OF arm,prefetch-offset property value is missing\n"); | 1221 | pr_err("L2C-310 OF arm,prefetch-offset property value is missing\n"); |
1222 | } | 1222 | } |
1223 | 1223 | ||
1224 | ret = of_property_read_u32(np, "prefetch-data", &val); | ||
1225 | if (ret == 0) { | ||
1226 | if (val) | ||
1227 | prefetch |= L310_PREFETCH_CTRL_DATA_PREFETCH; | ||
1228 | else | ||
1229 | prefetch &= ~L310_PREFETCH_CTRL_DATA_PREFETCH; | ||
1230 | } else if (ret != -EINVAL) { | ||
1231 | pr_err("L2C-310 OF prefetch-data property value is missing\n"); | ||
1232 | } | ||
1233 | |||
1234 | ret = of_property_read_u32(np, "prefetch-instr", &val); | ||
1235 | if (ret == 0) { | ||
1236 | if (val) | ||
1237 | prefetch |= L310_PREFETCH_CTRL_INSTR_PREFETCH; | ||
1238 | else | ||
1239 | prefetch &= ~L310_PREFETCH_CTRL_INSTR_PREFETCH; | ||
1240 | } else if (ret != -EINVAL) { | ||
1241 | pr_err("L2C-310 OF prefetch-instr property value is missing\n"); | ||
1242 | } | ||
1243 | |||
1224 | l2x0_saved_regs.prefetch_ctrl = prefetch; | 1244 | l2x0_saved_regs.prefetch_ctrl = prefetch; |
1225 | } | 1245 | } |
1226 | 1246 | ||