Home | History | Annotate | Download | only in tsarm

Lines Matching defs:bootconfig

104 #include <acorn32/include/bootconfig.h>
148 struct bootconfig bootconfig; /* Boot config storage */
358 struct bootconfig *passed_bootconfig = arg;
411 /* Fake bootconfig structure for the benefit of pmap.c */
413 bootconfig.dramblocks = 4;
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 +
437 (bootconfig.dram[0].pages * PAGE_SIZE);
832 for (i = 0; i < bootconfig.dramblocks; i++) {
833 tsarm_dma_ranges[i].dr_sysbase = bootconfig.dram[i].address;
834 tsarm_dma_ranges[i].dr_busbase = bootconfig.dram[i].address;
835 tsarm_dma_ranges[i].dr_len = bootconfig.dram[i].pages *
842 dmat->_nranges = bootconfig.dramblocks;