Lines Matching defs:rdbase
158 gits_command_mapc(struct gicv3_its *its, uint16_t icid, uint64_t rdbase, bool v)
162 KASSERT((rdbase & 0xffff) == 0);
171 cmd.dw[2] |= rdbase;
175 DPRINTF(("ITS #%u: MAPC icid 0x%x rdbase 0x%lx valid %u\n",
176 its->its_id, icid, rdbase, v));
282 gits_command_sync(struct gicv3_its *its, uint64_t rdbase)
286 KASSERT((rdbase & 0xffff) == 0);
295 cmd.dw[2] = rdbase;
297 DPRINTF(("ITS #%u: SYNC rdbase 0x%lx\n", its->its_id, rdbase));
980 uint64_t rdbase;
986 rdbase = vtophys((vaddr_t)va);
988 rdbase = (uint64_t)sc->sc_processor_id[cpu_index(ci)] << 16;
990 its->its_rdbase[cpu_index(ci)] = rdbase;
996 gits_command_mapc(its, cpu_index(ci), rdbase, true);