HomeSort by: relevance | last modified time | path
    Searched defs:sram_io (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/arch/x68k/include/
sram.h 43 struct sram_io { struct
48 #define SIOPSRAM _IOW('V', 0x0, struct sram_io)
49 #define SIOGSRAM _IOWR('V', 0x1, struct sram_io)
  /src/sys/arch/x68k/dev/
sram.c 191 struct sram_io *sram_io; local in function:sramioctl
200 sram_io = (struct sram_io *)data;
201 if (sram_io == NULL)
211 ("Sram ioctl SIOGSRAM offset=%x\n", sram_io->offset));
212 if (sram_io->offset + SRAM_IO_SIZE > SRAM_SIZE)
214 bus_space_read_region_1(sc->sc_iot, sc->sc_ioh, sram_io->offset,
215 (uint8_t *)&sram_io->sram, SRAM_IO_SIZE);
223 ("Sram ioctl SIOPSRAM offset=%x\n", sram_io->offset))
    [all...]

Completed in 37 milliseconds