/src/sys/arch/evbarm/stand/board/ |
gemini_mem.c | 53 * constrain MEMSIZE to avoid stepping out of smallest-case 58 #define MEMSIZE (32 * 1024 * 1024) /* 32MB */ 65 size = MEMSIZE;
|
/src/sys/arch/sparc/dev/ |
if_le_obio.c | 69 #define MEMSIZE 0x4000 /* LANCE memory size */ 151 if ((error = bus_dmamap_create(dmatag, MEMSIZE, 1, MEMSIZE, 0, 158 if ((error = bus_dmamem_alloc(dmatag, MEMSIZE, PAGE_SIZE, 0, 164 if ((error = bus_dmamem_map(dmatag, &seg, rseg, MEMSIZE, 171 sc->sc_mem, MEMSIZE, NULL, BUS_DMA_NOWAIT)) != 0) { 177 sc->sc_memsize = MEMSIZE; 204 bus_dmamem_unmap(dmatag, (void *)sc->sc_mem, MEMSIZE);
|
/src/sys/dev/sbus/ |
if_le.c | 77 #define MEMSIZE 0x4000 /* LANCE memory size */ 224 if ((error = bus_dmamap_create(dmatag, MEMSIZE, 1, MEMSIZE, 0, 231 if ((error = bus_dmamem_alloc(dmatag, MEMSIZE, 0, 0, 240 if ((error = bus_dmamem_map(dmatag, &seg, rseg, MEMSIZE, 251 sc->sc_mem, MEMSIZE, NULL, BUS_DMA_NOWAIT)) != 0) { 253 bus_dmamem_unmap(dmatag, sc->sc_mem, MEMSIZE); 260 sc->sc_memsize = MEMSIZE;
|
if_le_ledma.c | 87 #define MEMSIZE (16*1024) /* LANCE memory size */ 349 sc->sc_memsize = MEMSIZE; 352 if ((error = bus_dmamap_create(dmatag, MEMSIZE, 1, MEMSIZE, 359 if ((error = bus_dmamem_alloc(dmatag, MEMSIZE, 0, LEDMA_BOUNDARY, 366 if ((error = bus_dmamem_map(dmatag, &seg, rseg, MEMSIZE, 374 MEMSIZE, NULL, BUS_DMA_NOWAIT | BUS_DMA_COHERENT)) != 0) { 417 bus_dmamem_unmap(dmatag, sc->sc_mem, MEMSIZE);
|
/src/sys/arch/evbmips/adm5120/ |
machdep.c | 123 #ifndef MEMSIZE 124 #define MEMSIZE 4 * 1024 * 1024 125 #endif /* !MEMSIZE */ 204 *memsizep = MEMSIZE; 272 uint32_t memsize; local in function:mach_init 327 parse_args(NULL, argc, argv, &memsize); 337 if (GET_MEMSIZE(memsize) == 0) { 345 memsize = 4 * 1024 * 1024; 348 memsize = 8 * 1024 * 1024; 351 memsize = 16 * 1024 * 1024 [all...] |
/src/sys/arch/evbarm/imx31/ |
imx31lk_machdep.c | 317 #ifndef MEMSIZE 318 #define MEMSIZE 0x8000000 386 bootconfig.dram[0].pages = MEMSIZE / PAGE_SIZE;
|
/src/sys/arch/evbarm/viper/ |
viper_machdep.c | 364 #ifndef MEMSIZE 365 #define MEMSIZE 0x4000000 436 bootconfig.dram[0].pages = MEMSIZE / PAGE_SIZE;
|
/src/sys/arch/evbarm/kobo/ |
kobo_machdep.c | 209 #ifndef MEMSIZE 210 #define MEMSIZE 256 467 bootconfig.dram[0].pages = (MEMSIZE * 1024 * 1024) / PAGE_SIZE;
|
/src/sys/arch/evbarm/armadaxp/ |
armadaxp_machdep.c | 128 * Put some bogus settings of the MEMSTART and MEMSIZE 134 #ifndef MEMSIZE 135 #define MEMSIZE 0x40000000UL 362 psize_t memsize = MEMSIZE; local in function:initarm 363 if (mapallmem_p && memsize > KERNEL_VM_BASE - KERNEL_BASE) { 365 __func__, (unsigned long) (memsize >> 20), 367 memsize = KERNEL_VM_BASE - KERNEL_BASE; 372 bootconfig.dram[0].pages = memsize / PAGE_SIZE;
|
/src/sys/arch/evbarm/netwalker/ |
netwalker_machdep.c | 223 #ifndef MEMSIZE 224 #define MEMSIZE 512 304 bootconfig.dram[0].pages = (MEMSIZE * 1024 * 1024) / PAGE_SIZE;
|
/src/sys/arch/amiga/dev/ |
grf_rhreg.h | 40 #define MEMSIZE 4 /* Set this to 1 or 4 (MB), according to the 60 #define PAT_MEM_OFF (MEMSIZE*1024*1024 - PAT_MEM_SIZE)
|