sram.txt 297 B

12345678910111213141516
  1. Generic on-chip SRAM
  2. Simple IO memory regions to be managed by the genalloc API.
  3. Required properties:
  4. - compatible : mmio-sram
  5. - reg : SRAM iomem address range
  6. Example:
  7. sram: sram@5c000000 {
  8. compatible = "mmio-sram";
  9. reg = <0x5c000000 0x40000>; /* 256 KiB SRAM at address 0x5c000000 */
  10. };