/linux-6.12.1/drivers/misc/sgi-gru/ |
D | grufault.c | 296 static void gru_flush_cache_cbe(struct gru_control_block_extended *cbe) in gru_flush_cache_cbe() argument 298 if (unlikely(cbe)) { in gru_flush_cache_cbe() 299 cbe->cbrexecstatus = 0; /* make CL dirty */ in gru_flush_cache_cbe() 300 gru_flush_cache(cbe); in gru_flush_cache_cbe() 314 struct gru_control_block_extended *cbe) in gru_preload_tlb() argument 319 if (cbe->opccpy != OP_BCOPY) in gru_preload_tlb() 322 if (fault_vaddr == cbe->cbe_baddr0) in gru_preload_tlb() 323 vaddr = fault_vaddr + GRU_CACHE_LINE_BYTES * cbe->cbe_src_cl - 1; in gru_preload_tlb() 324 else if (fault_vaddr == cbe->cbe_baddr1) in gru_preload_tlb() 325 vaddr = fault_vaddr + (1 << cbe->xtypecpy) * cbe->cbe_nelemcur - 1; in gru_preload_tlb() [all …]
|
D | grumain.c | 459 static void gru_prefetch_context(void *gseg, void *cb, void *cbe, in gru_prefetch_context() argument 469 prefetch_data(cbe + i * GRU_HANDLE_STRIDE, 1, in gru_prefetch_context() 479 void *gseg, *cb, *cbe; in gru_load_context_data() local 485 cbe = grubase + GRU_CBE_BASE; in gru_load_context_data() 487 gru_prefetch_context(gseg, cb, cbe, cbrmap, length); in gru_load_context_data() 492 save += gru_copy_handle(cbe + i * GRU_HANDLE_STRIDE, in gru_load_context_data() 496 memset(cbe + i * GRU_HANDLE_STRIDE, 0, in gru_load_context_data() 501 gru_flush_cache(cbe + i * GRU_HANDLE_STRIDE); in gru_load_context_data() 514 void *gseg, *cb, *cbe; in gru_unload_context_data() local 520 cbe = grubase + GRU_CBE_BASE; in gru_unload_context_data() [all …]
|
D | grukservices.c | 388 struct gru_control_block_extended *cbe; in gru_get_cb_exception_detail() local 411 cbe = get_cbe(GRUBASE(cb), cbrnum); in gru_get_cb_exception_detail() 412 gru_flush_cache(cbe); /* CBE not coherent */ in gru_get_cb_exception_detail() 414 excdet->opc = cbe->opccpy; in gru_get_cb_exception_detail() 415 excdet->exopc = cbe->exopccpy; in gru_get_cb_exception_detail() 416 excdet->ecause = cbe->ecause; in gru_get_cb_exception_detail() 417 excdet->exceptdet0 = cbe->idef1upd; in gru_get_cb_exception_detail() 418 excdet->exceptdet1 = cbe->idef3upd; in gru_get_cb_exception_detail() 419 gru_flush_cache(cbe); in gru_get_cb_exception_detail()
|
D | grukdump.c | 40 void *cb, *cbe, *tfh, *gseg; in gru_dump_context_data() local 45 cbe = grubase + GRU_CBE_BASE; in gru_dump_context_data() 55 if (gru_user_copy_handle(&ubuf, cbe + i * GRU_HANDLE_STRIDE)) in gru_dump_context_data()
|
D | gruhandles.h | 157 unsigned long cbe; in gru_tfh_to_cbe() local 159 cbe = (unsigned long)tfh - GRU_TFH_BASE + GRU_CBE_BASE; in gru_tfh_to_cbe() 160 return (struct gru_control_block_extended*)cbe; in gru_tfh_to_cbe()
|
/linux-6.12.1/arch/powerpc/platforms/cell/ |
D | spu_manage.c | 414 static struct spu *__init devnode_spu(int cbe, struct device_node *dn) in devnode_spu() argument 418 list_for_each_entry(spu, &cbe_spu_info[cbe].spus, cbe_list) in devnode_spu() 425 neighbour_spu(int cbe, struct device_node *target, struct device_node *avoid) in neighbour_spu() argument 432 list_for_each_entry(spu, &cbe_spu_info[cbe].spus, cbe_list) { in neighbour_spu() 445 static void __init init_affinity_node(int cbe) in init_affinity_node() argument 453 last_spu = list_first_entry(&cbe_spu_info[cbe].spus, struct spu, in init_affinity_node() 456 for (added = 1; added < cbe_spu_info[cbe].n_spus; added++) { in init_affinity_node() 473 spu = devnode_spu(cbe, vic_dn); in init_affinity_node() 482 spu = neighbour_spu(cbe, vic_dn, last_spu_dn); in init_affinity_node() 503 int cbe; in init_affinity_fw() local [all …]
|
/linux-6.12.1/drivers/net/ethernet/netronome/nfp/bpf/ |
D | offload.c | 448 struct cmsg_bpf_event *cbe = (void *)data; in nfp_bpf_event_output() local 456 pkt_size = be32_to_cpu(cbe->pkt_size); in nfp_bpf_event_output() 457 data_size = be32_to_cpu(cbe->data_size); in nfp_bpf_event_output() 458 map_id_full = be64_to_cpu(cbe->map_ptr); in nfp_bpf_event_output() 463 if (cbe->hdr.ver != NFP_CCM_ABI_VERSION) in nfp_bpf_event_output() 476 bpf_event_output(record->ptr, be32_to_cpu(cbe->cpu_id), in nfp_bpf_event_output() 477 &cbe->data[round_up(pkt_size, 4)], data_size, in nfp_bpf_event_output() 478 cbe->data, pkt_size, nfp_bpf_perf_event_copy); in nfp_bpf_event_output()
|
/linux-6.12.1/drivers/cpufreq/ |
D | Makefile | 92 obj-$(CONFIG_CPU_FREQ_CBE) += ppc-cbe-cpufreq.o 93 ppc-cbe-cpufreq-y += ppc_cbe_cpufreq_pervasive.o ppc_cbe_cpufreq.o
|
/linux-6.12.1/arch/alpha/kernel/ |
D | core_t2.c | 536 cpu_regs->cbe |= cpu_regs->cbe; in t2_clear_errors()
|
/linux-6.12.1/arch/alpha/include/asm/ |
D | core_t2.h | 150 unsigned long cbe; long fill_07[3]; /* CBus Error */ member
|
/linux-6.12.1/arch/m68k/ifpsp060/ |
D | ftest.sa | 154 dc.l $00000cbe,$f23bd0ff,$01700000,$0cf4f23b
|