Lines Matching refs:sram
1 /* $NetBSD: sram.c,v 1.1 2026/06/27 13:28:35 rkujawa Exp $ */
33 * Driver and allocator for the MPC5200B on-chip SRAM (16KB at MBAR+0x8000).
37 __KERNEL_RCSID(0, "$NetBSD: sram.c,v 1.1 2026/06/27 13:28:35 rkujawa Exp $");
56 CFATTACH_DECL_NEW(sram, sizeof(struct sram_softc),
69 if (strcmp(oba->obio_name, "sram") == 0)
74 (strcmp(compat, "mpc5200-sram") == 0 ||
75 strcmp(compat, "mpc5200b-sram") == 0))
103 * Arena addresses are the physical SRAM addresses, so an allocation
116 aprint_normal(": %ju KB on-chip SRAM\n", (uintmax_t)(size / 1024));
126 * Allocate "size" bytes of SRAM with the given power-of-two alignment (0 or 1
154 * Translate a physical SRAM address to a CPU pointer in mapped window.