Symbol: rpb
sys/arch/alpha/alpha/machdep.c
360
((struct rpb *)v1p->hwrpb)->rpb_phys;
sys/arch/alpha/alpha/machdep.c
364
((struct rpb *)HWRPB_ADDR)->rpb_phys;
sys/arch/alpha/alpha/machdep.c
366
((struct rpb *)HWRPB_ADDR)->rpb_size;
sys/arch/alpha/alpha/machdep.c
375
init_prom_interface(ptb, (struct rpb *)
sys/arch/alpha/alpha/machdep.c
390
bootinfo.hwrpb_phys = ((struct rpb *)HWRPB_ADDR)->rpb_phys;
sys/arch/alpha/alpha/machdep.c
391
bootinfo.hwrpb_size = ((struct rpb *)HWRPB_ADDR)->rpb_size;
sys/arch/alpha/alpha/machdep.c
392
init_prom_interface(ptb, (struct rpb *)HWRPB_ADDR);
sys/arch/alpha/alpha/machdep.c
417
hwrpb = (struct rpb *)ALPHA_PHYS_TO_K0SEG(bootinfo.hwrpb_phys);
sys/arch/alpha/alpha/prom.c
101
cputype = rpb->rpb_type;
sys/arch/alpha/alpha/prom.c
113
prom_check_qemu(const struct rpb * const rpb)
sys/arch/alpha/alpha/prom.c
116
if (rpb->rpb_ssn[0] == 'Q' &&
sys/arch/alpha/alpha/prom.c
117
rpb->rpb_ssn[1] == 'E' &&
sys/arch/alpha/alpha/prom.c
118
rpb->rpb_ssn[2] == 'M' &&
sys/arch/alpha/alpha/prom.c
119
rpb->rpb_ssn[3] == 'U') {
sys/arch/alpha/alpha/prom.c
126
init_prom_interface(u_long ptb_pfn, struct rpb *rpb)
sys/arch/alpha/alpha/prom.c
134
prom_init_cputype(rpb);
sys/arch/alpha/alpha/prom.c
135
prom_check_qemu(rpb);
sys/arch/alpha/alpha/prom.c
137
c = (struct crb *)((char *)rpb + rpb->rpb_crb_off);
sys/arch/alpha/alpha/prom.c
421
i < (offsetof(struct rpb, rpb_checksum) / sizeof (uint64_t));
sys/arch/alpha/alpha/prom.c
57
struct rpb *hwrpb __read_mostly;
sys/arch/alpha/alpha/prom.c
99
prom_init_cputype(const struct rpb * const rpb)
sys/arch/alpha/include/alpha.h
106
void init_prom_interface(unsigned long, struct rpb *);
sys/arch/alpha/include/alpha.h
75
struct rpb;
sys/arch/alpha/include/cpu.h
253
struct rpb;
sys/arch/alpha/include/rpb.h
510
extern struct rpb *hwrpb;
sys/arch/alpha/stand/common/OSFpal.c
45
struct rpb *r;
sys/arch/alpha/stand/common/OSFpal.c
48
r = (struct rpb *)HWRPB_ADDR;
sys/arch/alpha/stand/common/boot.c
160
bootinfo_v1.hwrpbsize = ((struct rpb *)HWRPB_ADDR)->rpb_size;
sys/arch/alpha/stand/common/prom.c
49
struct rpb *r;
sys/arch/alpha/stand/common/prom.c
53
r = (struct rpb *)HWRPB_ADDR;
sys/arch/alpha/stand/netboot/getsecs.c
28
((struct rpb *)HWRPB_ADDR)->rpb_cc_freq) + 1;
sys/arch/alpha/stand/netboot/getsecs.c
30
((struct rpb *)HWRPB_ADDR)->rpb_cc_freq, wrapsecs);
sys/arch/alpha/stand/netboot/getsecs.c
38
tnsec += ((curpcc - lastpcc) * 1000000000) / ((struct rpb *)HWRPB_ADDR)->rpb_cc_freq;
sys/arch/vax/boot/boot/autoconf.c
108
struct rpb *prpb = (struct rpb *)bootregs[11];
sys/arch/vax/boot/boot/autoconf.c
109
memcpy(&bootrpb, (void *)prpb, sizeof(struct rpb));
sys/arch/vax/boot/boot/boot.c
91
struct rpb bootrpb;
sys/arch/vax/boot/boot/rom.c
80
int romwrite_uvax(int, int, void *, struct rpb *);
sys/arch/vax/boot/boot/rom.c
81
int romread_uvax(int, int, void *, struct rpb *);
sys/arch/vax/boot/boot/vaxstand.h
29
extern struct rpb bootrpb;
sys/arch/vax/boot/xxboot/bootxx.c
109
rpb = (void *)0xf0000; /* Safe address right now */
sys/arch/vax/boot/xxboot/bootxx.c
115
bcopy ((void *)bootregs[11], rpb, sizeof(struct rpb));
sys/arch/vax/boot/xxboot/bootxx.c
116
bcopy ((void*)rpb->iovec, bqo, rpb->iovecsz);
sys/arch/vax/boot/xxboot/bootxx.c
118
memset(rpb, 0, sizeof(struct rpb));
sys/arch/vax/boot/xxboot/bootxx.c
119
rpb->devtyp = bootregs[0];
sys/arch/vax/boot/xxboot/bootxx.c
120
rpb->unit = bootregs[3];
sys/arch/vax/boot/xxboot/bootxx.c
121
rpb->rpb_bootr5 = bootregs[5];
sys/arch/vax/boot/xxboot/bootxx.c
122
rpb->csrphy = bootregs[2];
sys/arch/vax/boot/xxboot/bootxx.c
123
rpb->adpphy = bootregs[1]; /* BI node on 8200 */
sys/arch/vax/boot/xxboot/bootxx.c
124
if (rpb->devtyp != BDEV_HP && vax_cputype == VAX_TYP_750)
sys/arch/vax/boot/xxboot/bootxx.c
125
rpb->adpphy =
sys/arch/vax/boot/xxboot/bootxx.c
128
rpb->rpb_base = rpb;
sys/arch/vax/boot/xxboot/bootxx.c
129
rpb->iovec = (int)bqo;
sys/arch/vax/boot/xxboot/bootxx.c
241
initfn = rpb->iovec + bqo->unit_init;
sys/arch/vax/boot/xxboot/bootxx.c
242
if (rpb->devtyp == BDEV_UDA || rpb->devtyp == BDEV_TK) {
sys/arch/vax/boot/xxboot/bootxx.c
247
csr = (struct udadevice *)rpb->csrphy;
sys/arch/vax/boot/xxboot/bootxx.c
256
unit_init(initfn, rpb, bootregs[12]);
sys/arch/vax/boot/xxboot/bootxx.c
282
romread_uvax(block, size, cbuf, rpb);
sys/arch/vax/boot/xxboot/bootxx.c
285
if (rpb->devtyp == BDEV_HP)
sys/arch/vax/boot/xxboot/bootxx.c
70
void romread_uvax(int lbn, int size, void *buf, struct rpb *rpb);
sys/arch/vax/boot/xxboot/bootxx.c
73
int unit_init(int, struct rpb *, int);
sys/arch/vax/boot/xxboot/bootxx.c
78
struct rpb *rpb;
sys/arch/vax/include/rpb.h
121
extern struct rpb rpb;
sys/arch/vax/include/rpb.h
37
struct rpb *rpb_base; /* 4 physical base address of block */
sys/arch/vax/vax/autoconf.c
148
if (rpb.rpb_base == (void *)-1)
sys/arch/vax/vax/autoconf.c
257
if (rpb.rpb_base == (void *)-1)
sys/arch/vax/vax/autoconf.c
275
if (rpb.devtyp != nr)
sys/arch/vax/vax/autoconf.c
287
if (rpb.csrphy != p)
sys/arch/vax/vax/autoconf.c
299
if (jmfr("ni", dev, BDEV_NI) || (kvtophys(ba->ba_ioh) != rpb.csrphy))
sys/arch/vax/vax/autoconf.c
372
if (sa->sa_periph->periph_target != (rpb.unit/100) ||
sys/arch/vax/vax/autoconf.c
373
sa->sa_periph->periph_lun != (rpb.unit % 100))
sys/arch/vax/vax/autoconf.c
382
(device_cfdata(ppdev)->cf_loc[VSBUSCF_CSR] == rpb.csrphy))
sys/arch/vax/vax/autoconf.c
402
if (raa->hwid != rpb.unit)
sys/arch/vax/vax/autoconf.c
422
if (da->da_mp->mscp_unit != rpb.unit)
sys/arch/vax/vax/autoconf.c
426
if (rpb.devtyp == BDEV_UDA && rpb.csrphy == ioaddr)
sys/arch/vax/vax/autoconf.c
451
if (((struct mba_attach_args *)aux)->ma_unit != rpb.unit)
sys/arch/vax/vax/autoconf.c
454
if (mbaaddr != rpb.adpphy)
sys/arch/vax/vax/autoconf.c
469
if (*nr != rpb.unit)
sys/arch/vax/vax/autoconf.c
94
rpb.devtyp, rpb.unit, rpb.csrphy, rpb.adpphy, rpb.slave);
sys/arch/vax/vax/db_machdep.c
220
rpb.wait = 0;
sys/arch/vax/vax/ka6400.c
162
mapaddr = (cca ? (int)cca : rpb.cca_addr);
sys/arch/vax/vax/ka6400.c
306
cca = (void *)rpb.cca_addr;
sys/arch/vax/vax/locore.c
326
memset((void *)uv, 0, sizeof(struct rpb));
sys/arch/vax/vax/locore.c
327
prpb = (struct rpb *)uv;
sys/arch/vax/vax/locore.c
332
memcpy((void *)uv, prpb, sizeof(struct rpb));
sys/arch/vax/vax/locore.c
49
void _start(struct rpb *);
sys/arch/vax/vax/locore.c
87
_start(struct rpb *prpb)
sys/arch/vax/vax/pmap.c
355
*(struct rpb *)0 = *(struct rpb *)(uvm_lwp_getuarea(&lwp0) + REDZONEADDR);
sys/arch/vax/vax/pmap.c
428
rpb.sbr = mfpr(PR_SBR);
sys/arch/vax/vax/pmap.c
429
rpb.slr = mfpr(PR_SLR);
sys/arch/vax/vax/pmap.c
430
rpb.wait = 0; /* DDB signal */