OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:bootconfig
(Results
1 - 25
of
42
) sorted by relevancy
1
2
/src/sys/arch/arm/ofw/
ofwgencfg_machdep.c
64
#include <machine/
bootconfig
.h>
100
BootConfig
bootconfig
;
variable in typeref:typename:BootConfig
/src/sys/arch/evbarm/mmnet/
mmnet_machdep.c
107
#include <machine/
bootconfig
.h>
136
BootConfig
bootconfig
; /* Boot config storage */
variable in typeref:typename:BootConfig
257
/* Fake
bootconfig
structure for the benefit of pmap.c */
259
bootconfig
.dramblocks = 1;
260
bootconfig
.dram[0].address = 0x20000000UL;
261
bootconfig
.dram[0].pages = 0x04000000UL / PAGE_SIZE;
262
sp = at91bus_setup(&
bootconfig
);
281
for (i = 0; i <
bootconfig
.dramblocks; i++) {
282
mmnet_dma_ranges[i].dr_sysbase =
bootconfig
.dram[i].address
[
all
...]
/src/sys/arch/evbarm/mpcsa/
mpcsa_machdep.c
118
#include <machine/
bootconfig
.h>
159
BootConfig
bootconfig
; /* Boot config storage */
variable in typeref:typename:BootConfig
280
/* Fake
bootconfig
structure for the benefit of pmap.c */
282
bootconfig
.dramblocks = 1;
283
bootconfig
.dram[0].address = 0x20000000UL;
284
bootconfig
.dram[0].pages = 0x04000000UL / PAGE_SIZE;
285
sp = at91bus_setup(&
bootconfig
);
304
for (i = 0; i <
bootconfig
.dramblocks; i++) {
305
mpcsa_dma_ranges[i].dr_sysbase =
bootconfig
.dram[i].address
[
all
...]
/src/sys/arch/hpcarm/hpcarm/
hpc_machdep.c
63
#include <machine/
bootconfig
.h>
74
BootConfig
bootconfig
; /* Boot config storage */
variable in typeref:typename:BootConfig
/src/sys/arch/shark/shark/
shark_machdep.c
75
#include <machine/
bootconfig
.h>
122
BootConfig
bootconfig
;
variable in typeref:typename:BootConfig
/src/sys/arch/evbarm/integrator/
integrator_machdep.c
99
#include <machine/
bootconfig
.h>
119
BootConfig
bootconfig
; /* Boot config storage */
variable in typeref:typename:BootConfig
355
/* Fake
bootconfig
structure for the benefit of pmap.c */
357
bootconfig
.dramblocks = 1;
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)
[
all
...]
/src/sys/arch/cats/cats/
cats_machdep.c
71
#include <machine/
bootconfig
.h>
120
BootConfig
bootconfig
; /* Boot config storage */
variable in typeref:typename:BootConfig
253
/* Fake
bootconfig
structure for the benefit of pmap.c */
255
bootconfig
.dramblocks = 1;
256
bootconfig
.dram[0].address = ebsabootinfo.bt_memstart;
257
bootconfig
.dram[0].pages = (ebsabootinfo.bt_memend
/src/sys/arch/acorn32/eb7500atx/
eb7500atx_machdep.c
89
#include <machine/
bootconfig
.h>
122
struct
bootconfig
bootconfig
; /* Boot config storage */
variable in typeref:struct:bootconfig
173
static void canonicalise_bootconfig(struct
bootconfig
*, struct
bootconfig
*);
289
* u_int initarm(
BootConfig
*bootconf)
313
* XXX supposed to be mapped into
bootconfig
.dram[0].
344
canonicalise_bootconfig(struct
bootconfig
*bootconf, struct
bootconfig
*raw_bootconf)
346
/* check for
bootconfig
v2+ structure *
[
all
...]
/src/sys/arch/acorn32/include/
bootconfig.h
1
/* $NetBSD:
bootconfig
.h,v 1.7 2006/10/24 20:39:13 bjh21 Exp $ */
35
#include <arm/
bootconfig
.h>
52
struct
bootconfig
{
struct
99
extern struct
bootconfig
bootconfig
;
101
/* End of
bootconfig
.h */
/src/sys/arch/iyonix/include/
bootconfig.h
1
/* $NetBSD:
bootconfig
.h,v 1.4 2006/10/24 20:39:14 bjh21 Exp $ */
35
#include <arm/
bootconfig
.h>
52
struct
bootconfig
{
struct
99
extern struct
bootconfig
bootconfig
;
101
/* End of
bootconfig
.h */
/src/sys/arch/epoc32/epoc32/
machdep.c
61
#include <machine/
bootconfig
.h>
86
BootConfig
bootconfig
; /* Boot config storage */
variable in typeref:typename:BootConfig
181
bootconfig
.dramblocks = 0;
196
* Fake
bootconfig
structure for the benefit of pmap.c
198
i =
bootconfig
.dramblocks;
199
bootconfig
.dram[i].address = memory->address;
200
bootconfig
.dram[i].pages = memory->size / PAGE_SIZE;
201
bootconfig
.dramblocks++;
226
if (
bootconfig
.dramblocks == 0
[
all
...]
/src/sys/arch/evbarm/imx31/
imx31lk_machdep.c
148
#include <machine/
bootconfig
.h>
170
BootConfig
bootconfig
; /* Boot config storage */
variable in typeref:typename:BootConfig
382
/* Fake
bootconfig
structure for the benefit of pmap.c */
384
bootconfig
.dramblocks = 1;
385
bootconfig
.dram[0].address = MEMSTART;
386
bootconfig
.dram[0].pages = MEMSIZE / PAGE_SIZE;
401
physical_start =
bootconfig
.dram[0].address;
402
physical_end = physical_start + (
bootconfig
.dram[0].pages * PAGE_SIZE);
/src/sys/arch/evbarm/marvell/
marvell_machdep.c
57
#include <machine/
bootconfig
.h>
96
BootConfig
bootconfig
; /* Boot config storage */
variable in typeref:typename:BootConfig
454
bootconfig
.dramblocks = 0;
464
bootconfig
.dram[
bootconfig
.dramblocks].address = base;
465
bootconfig
.dram[
bootconfig
.dramblocks].pages = size / PAGE_SIZE;
473
bootconfig
.dramblocks++;
/src/sys/arch/evbarm/ixm1200/
ixm1200_machdep.c
97
#include <machine/
bootconfig
.h>
146
BootConfig
bootconfig
; /* Boot config storage */
variable in typeref:typename:BootConfig
336
/* XXX overwrite
bootconfig
to hardcoded values */
337
bootconfig
.dram[0].address = 0xc0000000;
338
bootconfig
.dram[0].pages = 0x10000000 / PAGE_SIZE; /* SDRAM 256MB */
339
bootconfig
.dramblocks = 1;
372
physical_start =
bootconfig
.dram[0].address;
373
physical_end = physical_start + (
bootconfig
.dram[0].pages * PAGE_SIZE);
/src/sys/arch/evbarm/hdl_g/
hdlg_machdep.c
104
#include <machine/
bootconfig
.h>
131
BootConfig
bootconfig
; /* Boot config storage */
variable in typeref:typename:BootConfig
264
/* Fake
bootconfig
structure for the benefit of pmap.c */
266
bootconfig
.dramblocks = 1;
267
bootconfig
.dram[0].address = memstart;
268
bootconfig
.dram[0].pages = memsize / PAGE_SIZE;
282
physical_start =
bootconfig
.dram[0].address;
283
physical_end = physical_start + (
bootconfig
.dram[0].pages * PAGE_SIZE);
/src/sys/arch/evbarm/iq80321/
iq80321_machdep.c
105
#include <machine/
bootconfig
.h>
131
BootConfig
bootconfig
; /* Boot config storage */
variable in typeref:typename:BootConfig
408
/* Fake
bootconfig
structure for the benefit of pmap.c */
410
bootconfig
.dramblocks = 1;
411
bootconfig
.dram[0].address = memstart;
412
bootconfig
.dram[0].pages = memsize / PAGE_SIZE;
426
physical_start =
bootconfig
.dram[0].address;
427
physical_end = physical_start + (
bootconfig
.dram[0].pages * PAGE_SIZE);
/src/sys/arch/evbarm/ixdp425/
ixdp425_machdep.c
95
#include <machine/
bootconfig
.h>
125
BootConfig
bootconfig
; /* Boot config storage */
variable in typeref:typename:BootConfig
396
/* XXX overwrite
bootconfig
to hardcoded values */
397
bootconfig
.dramblocks = 1;
398
bootconfig
.dram[0].address = 0x10000000;
399
bootconfig
.dram[0].pages = ixp425_sdram_size() / PAGE_SIZE;
420
physical_start =
bootconfig
.dram[0].address;
421
physical_end = physical_start + (
bootconfig
.dram[0].pages * PAGE_SIZE);
/src/sys/arch/evbarm/nslu2/
nslu2_machdep.c
125
#include <machine/
bootconfig
.h>
155
BootConfig
bootconfig
; /* Boot config storage */
variable in typeref:typename:BootConfig
453
/* XXX overwrite
bootconfig
to hardcoded values */
454
bootconfig
.dramblocks = 1;
455
bootconfig
.dram[0].address = 0x10000000;
456
bootconfig
.dram[0].pages = ixp425_sdram_size() / PAGE_SIZE;
477
physical_start =
bootconfig
.dram[0].address;
478
physical_end = physical_start + (
bootconfig
.dram[0].pages * PAGE_SIZE);
/src/sys/arch/evbarm/bcm53xx/
bcm53xx_machdep.c
64
#include <machine/
bootconfig
.h>
84
BootConfig
bootconfig
;
variable in typeref:typename:BootConfig
/src/sys/arch/evbarm/adi_brh/
brh_machdep.c
103
#include <machine/
bootconfig
.h>
133
BootConfig
bootconfig
; /* Boot config storage */
variable in typeref:typename:BootConfig
384
/* Fake
bootconfig
structure for the benefit of pmap.c */
386
bootconfig
.dramblocks = 1;
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
[
all
...]
/src/sys/arch/evbarm/iq80310/
iq80310_machdep.c
103
#include <machine/
bootconfig
.h>
130
BootConfig
bootconfig
; /* Boot config storage */
variable in typeref:typename:BootConfig
384
/* Fake
bootconfig
structure for the benefit of pmap.c */
386
bootconfig
.dramblocks = 1;
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);
/src/sys/arch/evbarm/lubbock/
lubbock_machdep.c
152
#include <machine/
bootconfig
.h>
175
BootConfig
bootconfig
; /* Boot config storage */
variable in typeref:typename:BootConfig
567
/* Fake
bootconfig
structure for the benefit of pmap.c */
569
bootconfig
.dramblocks = 1;
570
bootconfig
.dram[0].address = memstart;
571
bootconfig
.dram[0].pages = memsize / PAGE_SIZE;
585
physical_start =
bootconfig
.dram[0].address;
586
physical_end = physical_start + (
bootconfig
.dram[0].pages * PAGE_SIZE);
/src/sys/arch/evbarm/smdk2xx0/
smdk2800_machdep.c
143
#include <machine/
bootconfig
.h>
176
BootConfig
bootconfig
; /* Boot config storage */
variable in typeref:typename:BootConfig
411
/* Fake
bootconfig
structure for the benefit of pmap.c */
413
bootconfig
.dramblocks = 1;
414
bootconfig
.dram[0].address = SDRAM_START;
415
bootconfig
.dram[0].pages = SDRAM_SIZE / PAGE_SIZE;
429
physical_start =
bootconfig
.dram[0].address;
430
physical_end = physical_start + (
bootconfig
.dram[0].pages * PAGE_SIZE);
/src/sys/arch/evbarm/tsarm/
tsarm_machdep.c
104
#include <acorn32/include/
bootconfig
.h>
148
struct
bootconfig
bootconfig
; /* Boot config storage */
variable in typeref:struct:bootconfig
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
[
all
...]
/src/sys/arch/evbarm/viper/
viper_machdep.c
152
#include <machine/
bootconfig
.h>
174
BootConfig
bootconfig
; /* Boot config storage */
variable in typeref:typename:BootConfig
432
/* Fake
bootconfig
structure for the benefit of pmap.c */
434
bootconfig
.dramblocks = 1;
435
bootconfig
.dram[0].address = MEMSTART;
436
bootconfig
.dram[0].pages = MEMSIZE / PAGE_SIZE;
451
physical_start =
bootconfig
.dram[0].address;
452
physical_end = physical_start + (
bootconfig
.dram[0].pages * PAGE_SIZE);
Completed in 22 milliseconds
1
2
Indexes created Mon Sep 22 13:09:51 GMT 2025