| /src/sys/arch/netwinder/include/ |
| bootconfig.h | 55 PhysMem dram[DRAM_BLOCKS]; member in struct:_BootConfig
|
| /src/sys/arch/cats/include/ |
| bootconfig.h | 57 PhysMem dram[DRAM_BLOCKS]; member in struct:_BootConfig
|
| /src/sys/arch/epoc32/include/ |
| bootconfig.h | 52 PhysMem dram[DRAM_BLOCKS]; member in struct:_BootConfig
|
| /src/sys/arch/evbarm/include/ |
| bootconfig.h | 62 PhysMem dram[DRAM_BLOCKS]; member in struct:_BootConfig
|
| /src/sys/arch/hpcarm/include/ |
| bootconfig.h | 57 PhysMem dram[DRAM_BLOCKS]; member in struct:_BootConfig
|
| /src/sys/arch/shark/include/ |
| bootconfig.h | 72 PhysMem dram[DRAM_BLOCKS]; member in struct:_BootConfig
|
| /src/sys/arch/zaurus/include/ |
| bootconfig.h | 59 PhysMem dram[DRAM_BLOCKS]; member in struct:_BootConfig
|
| /src/sys/arch/epoc32/epoc32/ |
| machdep.c | 199 bootconfig.dram[i].address = memory->address; 200 bootconfig.dram[i].pages = memory->size / PAGE_SIZE; 234 physical_start = bootconfig.dram[0].address; 235 physical_freestart = bootconfig.dram[0].address; 308 PhysMem *dram = bootconfig.dram; local in function:initarm 318 size = dram[i].pages * PAGE_SIZE - physical; 322 KERNEL_BASE + logical, dram[i].address + physical, 328 if (physical >= dram[i].pages * PAGE_SIZE) { 330 size = dram[i].pages * PAGE_SIZE [all...] |
| /src/sys/arch/acorn32/acorn32/ |
| rpc_machdep.c | 140 u_int videodram_size = 0; /* Amount of DRAM to reserve for video */ 336 * XXX supposed to be mapped into bootconfig.dram[0]. 515 printf("0x%x + 0x%0x, type = 0x%08x\n", bootconfig.dram[loop].address, 516 bootconfig.dram[loop].pages * PAGE_SIZE, 517 bootconfig.dram[loop].flags); 519 if (bootconfig.dram[loop].address < physical_start) 520 physical_start = bootconfig.dram[loop].address; 521 memoryblock_end = bootconfig.dram[loop].address + 522 bootconfig.dram[loop].pages * PAGE_SIZE; 525 physmem += bootconfig.dram[loop].pages [all...] |
| /src/sys/arch/evbarm/integrator/ |
| int_bus_dma.c | 73 if (bootconfig.dram[i].flags & BOOT_DRAM_CAN_DMA) { 74 dr[nranges].dr_sysbase = bootconfig.dram[i].address; 77 dr[nranges].dr_len = bootconfig.dram[i].pages * NBPG;
|
| integrator_machdep.c | 358 bootconfig.dram[0].address = memstart; 359 bootconfig.dram[0].pages = memsize / PAGE_SIZE; 360 bootconfig.dram[0].flags = BOOT_DRAM_CAN_DMA; 362 arm32_bootmem_init(bootconfig.dram[0].address, 363 bootconfig.dram[0].pages * PAGE_SIZE, (unsigned int) KERNEL_BASE_phys);
|
| /src/sys/arch/acorn32/eb7500atx/ |
| eb7500atx_machdep.c | 146 u_int videodram_size = 0; /* Amount of DRAM to reserve for video */ 313 * XXX supposed to be mapped into bootconfig.dram[0]. 426 * physical address 0x01000000 -> 0x01ffffff (DRAM0a, dram[0]) 464 if (bootconfig.dram[loop].address < physical_start) 465 physical_start = bootconfig.dram[loop].address; 466 memoryblock_end = bootconfig.dram[loop].address + 467 bootconfig.dram[loop].pages * PAGE_SIZE; 470 physmem += bootconfig.dram[loop].pages; 478 if (physical_start != bootconfig.dram[0].address) { 485 /* hack hack - throw away the slow dram */ [all...] |
| /src/sys/arch/aarch64/aarch64/ |
| aarch64_machdep.c | 170 start = trunc_page(bootconfig.dram[blk].address); 171 end = round_page(bootconfig.dram[blk].address + 172 (uint64_t)bootconfig.dram[blk].pages * PAGE_SIZE); 293 physical_start = bootconfig.dram[0].address; 294 physical_end = bootconfig.dram[bootconfig.dramblocks - 1].address + 295 ptoa(bootconfig.dram[bootconfig.dramblocks - 1].pages); 304 if (bootconfig.dram[i].pages < atop(round_page(MSGBUFSIZE))) 308 bootconfig.dram[i].pages -= atop(round_page(MSGBUFSIZE)); 309 msgbufaddr = bootconfig.dram[i].address + 310 ptoa(bootconfig.dram[i].pages) [all...] |
| /src/sys/arch/evbarm/tsarm/ |
| tsarm_machdep.c | 414 bootconfig.dram[0].address = 0x0UL; 415 bootconfig.dram[0].pages = 0x800000UL / PAGE_SIZE; 416 bootconfig.dram[1].address = 0x1000000UL; 417 bootconfig.dram[1].pages = 0x800000UL / PAGE_SIZE; 418 bootconfig.dram[2].address = 0x4000000UL; 419 bootconfig.dram[2].pages = 0x800000UL / PAGE_SIZE; 420 bootconfig.dram[3].address = 0x5000000UL; 421 bootconfig.dram[3].pages = 0x800000UL / PAGE_SIZE; 435 physical_start = bootconfig.dram[0].address; 436 physical_end = bootconfig.dram[0].address [all...] |
| /src/sys/arch/arm/arm32/ |
| stubs.c | 164 memsegp[i].start = bootconfig.dram[i].address; 165 memsegp[i].size = bootconfig.dram[i].pages * PAGE_SIZE; 198 n += bootconfig.dram[i].pages; 264 addr = bootconfig.dram[block].address; 265 for (;addr < (bootconfig.dram[block].address 266 + (bootconfig.dram[block].pages * PAGE_SIZE));
|
| /src/sys/arch/evbarm/mmnet/ |
| mmnet_machdep.c | 260 bootconfig.dram[0].address = 0x20000000UL; 261 bootconfig.dram[0].pages = 0x04000000UL / PAGE_SIZE; 282 mmnet_dma_ranges[i].dr_sysbase = bootconfig.dram[i].address; 283 mmnet_dma_ranges[i].dr_busbase = bootconfig.dram[i].address; 284 mmnet_dma_ranges[i].dr_len = bootconfig.dram[i].pages *
|
| /src/sys/arch/evbarm/mpcsa/ |
| mpcsa_machdep.c | 283 bootconfig.dram[0].address = 0x20000000UL; 284 bootconfig.dram[0].pages = 0x04000000UL / PAGE_SIZE; 305 mpcsa_dma_ranges[i].dr_sysbase = bootconfig.dram[i].address; 306 mpcsa_dma_ranges[i].dr_busbase = bootconfig.dram[i].address; 307 mpcsa_dma_ranges[i].dr_len = bootconfig.dram[i].pages *
|
| /src/sys/arch/evbarm/armadillo/ |
| armadillo9_machdep.c | 490 printf("dram[%d]: address=0x%08lx, size=0x%08lx\n", 495 bootconfig.dram[bootconfig.dramblocks].address = 497 bootconfig.dram[bootconfig.dramblocks].pages = 533 physical_start = bootconfig.dram[0].address; 534 physical_end = bootconfig.dram[0].address 535 + (bootconfig.dram[0].pages * PAGE_SIZE); 818 physmem = bootconfig.dram[0].pages; 820 size_t start = bootconfig.dram[loop].address; 821 size_t size = bootconfig.dram[loop].pages * PAGE_SIZE; 825 physmem += bootconfig.dram[loop].pages [all...] |
| /src/sys/arch/hpcarm/hpcarm/ |
| sa11x0_hpc_machdep.c | 147 /* Number of DRAM pages which are installed */ 201 bootconfig.dram[0].address = 0xc0000000; 202 bootconfig.dram[0].pages = DRAM_PAGES; 239 physical_start = bootconfig.dram[0].address; 242 physical_end = bootconfig.dram[bootconfig.dramblocks - 1].address 243 + bootconfig.dram[bootconfig.dramblocks - 1].pages * PAGE_SIZE; 247 physmem += bootconfig.dram[loop].pages; 548 paddr_t dblk_start = (paddr_t)bootconfig.dram[loop].address; 550 + (bootconfig.dram[loop].pages * PAGE_SIZE);
|
| pxa2x0_hpc_machdep.c | 146 /* Number of DRAM pages which are installed */ 247 bootconfig.dram[0].address = 0xa0000000; 248 bootconfig.dram[0].pages = DRAM_PAGES; 296 physical_start = bootconfig.dram[0].address; 299 physical_end = bootconfig.dram[bootconfig.dramblocks - 1].address 300 + bootconfig.dram[bootconfig.dramblocks - 1].pages * PAGE_SIZE; 304 physmem += bootconfig.dram[loop].pages; 595 paddr_t dblk_start = (paddr_t)bootconfig.dram[loop].address; 597 + (bootconfig.dram[loop].pages * PAGE_SIZE);
|
| /src/sys/arch/acorn32/include/ |
| bootconfig.h | 90 phys_mem dram[DRAM_BLOCKS]; member in struct:bootconfig
|
| /src/sys/arch/iyonix/include/ |
| bootconfig.h | 90 phys_mem dram[DRAM_BLOCKS]; member in struct:bootconfig
|
| /src/sys/arch/evbarm/imx23_olinuxino/ |
| imx23_olinuxino_machdep.c | 173 bootconfig.dram[0].address = DRAM_BASE; 174 bootconfig.dram[0].pages = ram_size / PAGE_SIZE; 175 bootconfig.dram[0].flags = BOOT_DRAM_CAN_DMA; 177 arm32_bootmem_init(bootconfig.dram[0].address, ram_size,
|
| /src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/allwinner/ |
| sun50i-a100-allwinner-perf1.dts | 72 regulator-name = "vcc-dram-1"; 105 regulator-name = "vdd-sys-usb-dram"; 112 regulator-name = "vcc-dram-2";
|
| /src/sys/arch/evbarm/adi_brh/ |
| brh_machdep.c | 387 bootconfig.dram[0].address = memstart; 388 bootconfig.dram[0].pages = memsize / PAGE_SIZE; 402 physical_start = bootconfig.dram[0].address; 403 physical_end = physical_start + (bootconfig.dram[0].pages * PAGE_SIZE); 657 bootconfig.dram[0].pages = memsize / PAGE_SIZE; 659 (bootconfig.dram[0].pages * PAGE_SIZE);
|