aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation
diff options
context:
space:
mode:
authorBenjamin Herrenschmidt <benh@au1.ibm.com>2007-10-27 17:49:28 -0400
committerPaul Mackerras <paulus@samba.org>2007-11-07 22:15:30 -0500
commit20474abda6bb11396434593daf2f52679cf62edf (patch)
treec2d4c2bd279ea26abe06cb78138558f9273f59e3 /Documentation
parentfb293ae1c02dab78e714d50f2c37d7852d6f328a (diff)
[POWERPC] Fix cache line vs. block size confusion
We had an historical confusion in the kernel between cache line and cache block size. The former is an implementation detail of the L1 cache which can be useful for performance optimisations, the later is the actual size on which the cache control instructions operate, which can be different. For some reason, we had a weird hack reading the right property on powermac and the wrong one on any other 64 bits (32 bits is unaffected as it only uses the cputable for cache block size infos at this stage). This fixes the booting-without-of.txt documentation to mention the right properties, and fixes the 64 bits initialization code to look for the block size first, with a fallback to the line size if the property is missing. Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org> Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/powerpc/booting-without-of.txt14
1 files changed, 12 insertions, 2 deletions
diff --git a/Documentation/powerpc/booting-without-of.txt b/Documentation/powerpc/booting-without-of.txt
index a96e85397eb..2233e3d5e5f 100644
--- a/Documentation/powerpc/booting-without-of.txt
+++ b/Documentation/powerpc/booting-without-of.txt
@@ -851,12 +851,18 @@ address which can extend beyond that limit.
851 /cpus/PowerPC,970FX@0 851 /cpus/PowerPC,970FX@0
852 /cpus/PowerPC,970FX@1 852 /cpus/PowerPC,970FX@1
853 (unit addresses do not require leading zeroes) 853 (unit addresses do not require leading zeroes)
854 - d-cache-line-size : one cell, L1 data cache line size in bytes 854 - d-cache-block-size : one cell, L1 data cache block size in bytes (*)
855 - i-cache-line-size : one cell, L1 instruction cache line size in 855 - i-cache-block-size : one cell, L1 instruction cache block size in
856 bytes 856 bytes
857 - d-cache-size : one cell, size of L1 data cache in bytes 857 - d-cache-size : one cell, size of L1 data cache in bytes
858 - i-cache-size : one cell, size of L1 instruction cache in bytes 858 - i-cache-size : one cell, size of L1 instruction cache in bytes
859 859
860(*) The cache "block" size is the size on which the cache management
861instructions operate. Historically, this document used the cache
862"line" size here which is incorrect. The kernel will prefer the cache
863block size and will fallback to cache line size for backward
864compatibility.
865
860 Recommended properties: 866 Recommended properties:
861 867
862 - timebase-frequency : a cell indicating the frequency of the 868 - timebase-frequency : a cell indicating the frequency of the
@@ -870,6 +876,10 @@ address which can extend beyond that limit.
870 for the above, the common code doesn't use that property, but 876 for the above, the common code doesn't use that property, but
871 you are welcome to re-use the pSeries or Maple one. A future 877 you are welcome to re-use the pSeries or Maple one. A future
872 kernel version might provide a common function for this. 878 kernel version might provide a common function for this.
879 - d-cache-line-size : one cell, L1 data cache line size in bytes
880 if different from the block size
881 - i-cache-line-size : one cell, L1 instruction cache line size in
882 bytes if different from the block size
873 883
874 You are welcome to add any property you find relevant to your board, 884 You are welcome to add any property you find relevant to your board,
875 like some information about the mechanism used to soft-reset the 885 like some information about the mechanism used to soft-reset the