cache_sram.txt 559 B

1234567891011121314151617181920
  1. * Freescale PQ3 and QorIQ based Cache SRAM
  2. Freescale's mpc85xx and some QorIQ platforms provide an
  3. option of configuring a part of (or full) cache memory
  4. as SRAM. This cache SRAM representation in the device
  5. tree should be done as under:-
  6. Required properties:
  7. - compatible : should be "fsl,p2020-cache-sram"
  8. - fsl,cache-sram-ctlr-handle : points to the L2 controller
  9. - reg : offset and length of the cache-sram.
  10. Example:
  11. cache-sram@fff00000 {
  12. fsl,cache-sram-ctlr-handle = <&L2>;
  13. reg = <0 0xfff00000 0 0x10000>;
  14. compatible = "fsl,p2020-cache-sram";
  15. };