Home
last modified time | relevance | path

Searched refs:clb (Results 1 – 8 of 8) sorted by relevance

/openbmc/linux/arch/xtensa/include/asm/
H A Dcoprocessor.h36 .macro save_xtregs_opt ptr clb at1 at2 at3 at4 offset
38 addi \clb, \ptr, \offset
39 xchal_ncp_store \clb \at1 \at2 \at3 \at4 select=_SELECT
43 .macro load_xtregs_opt ptr clb at1 at2 at3 at4 offset
45 addi \clb, \ptr, \offset
46 xchal_ncp_load \clb \at1 \at2 \at3 \at4 select=_SELECT
55 .macro save_xtregs_user ptr clb at1 at2 at3 at4 offset
57 addi \clb, \ptr, \offset
58 xchal_ncp_store \clb \at1 \at2 \at3 \at4 select=_SELECT
62 .macro load_xtregs_user ptr clb at1 at2 at3 at4 offset
[all …]
/openbmc/linux/arch/x86/include/asm/
H A Drmwcc.h7 #define __CLOBBERS_MEM(clb...) "memory", ## clb argument
/openbmc/qemu/tests/qtest/libqos/
H A Dahci.c173 if (ahci->port[port].clb) { in ahci_clean_mem()
177 ahci_free(ahci, ahci->port[port].clb); in ahci_clean_mem()
178 ahci->port[port].clb = 0; in ahci_clean_mem()
285 ahci->port[i].clb = ahci_alloc(ahci, num_cmd_slots * 0x20); in ahci_hba_enable()
286 qtest_memset(ahci->parent->qts, ahci->port[i].clb, 0x00, in ahci_hba_enable()
288 g_test_message("CLB: 0x%08" PRIx64, ahci->port[i].clb); in ahci_hba_enable()
289 ahci_px_wreg(ahci, i, AHCI_PX_CLB, ahci->port[i].clb); in ahci_hba_enable()
290 g_assert_cmphex(ahci->port[i].clb, ==, in ahci_hba_enable()
578 uint64_t ba = ahci->port[port].clb; in ahci_get_command_header()
593 uint64_t ba = ahci->port[port].clb; in ahci_set_command_header()
H A Dahci.h330 uint64_t clb; member
/openbmc/linux/drivers/iio/adc/
H A Dat91-sama5d2_adc.c1869 struct at91_adc_temp_sensor_clb *clb = &st->soc_info.temp_sensor_clb; in at91_adc_read_temp() local
1913 div1 = DIV_ROUND_CLOSEST_ULL(((u64)vtemp * clb->p6), vbg); in at91_adc_read_temp()
1915 div2 = DIV_ROUND_CLOSEST_ULL((u64)clb->p4, AT91_ADC_TS_VTEMP_DT); in at91_adc_read_temp()
1917 *val = clb->p1 + (int)div1 - (int)div2; in at91_adc_read_temp()
2262 struct at91_adc_temp_sensor_clb *clb = &st->soc_info.temp_sensor_clb; in at91_adc_temp_sensor_init() local
2292 clb->p1 = buf[AT91_ADC_TS_CLB_IDX_P1]; in at91_adc_temp_sensor_init()
2293 clb->p4 = buf[AT91_ADC_TS_CLB_IDX_P4]; in at91_adc_temp_sensor_init()
2294 clb->p6 = buf[AT91_ADC_TS_CLB_IDX_P6]; in at91_adc_temp_sensor_init()
2299 clb->p1 = clb->p1 * 1000; in at91_adc_temp_sensor_init()
/openbmc/qemu/target/hexagon/imported/
H A Dshift.idef1019 Q6INSN(S4_clbaddi,"Rd32=add(clb(Rs32),#s6)",ATTRIBS(A_ARCHV2),
1027 Q6INSN(S4_clbpaddi,"Rd32=add(clb(Rss32),#s6)",ATTRIBS(A_ARCHV2),
1079 Q6INSN(S2_clb,"Rd32=clb(Rs32)",ATTRIBS(),
1089 Q6INSN(S2_clbp,"Rd32=clb(Rss32)",ATTRIBS(),
/openbmc/u-boot/drivers/ata/
H A Ddwc_ahsata.c25 u32 clb; member
484 writel_with_flush((u32)pp->cmd_slot, &port_mmio->clb); in ahci_port_start()
/openbmc/qemu/tests/qtest/
H A Dahci-test.c106 ahci->port[i].clb); in verify_state()