diff options
Diffstat (limited to 'Documentation/powerpc')
-rw-r--r-- | Documentation/powerpc/booting-without-of.txt | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/Documentation/powerpc/booting-without-of.txt b/Documentation/powerpc/booting-without-of.txt index a96e85397eb7..2233e3d5e5f3 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 | ||
861 | instructions operate. Historically, this document used the cache | ||
862 | "line" size here which is incorrect. The kernel will prefer the cache | ||
863 | block size and will fallback to cache line size for backward | ||
864 | compatibility. | ||
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 |