Home
last modified time | relevance | path

Searched refs:prd (Results 1 – 7 of 7) sorted by relevance

/openbmc/qemu/hw/ide/
H A Dpci.c229 } prd; in bmdma_prepare_buf() local
242 pci_dma_read(pci_dev, bm->cur_addr, &prd, 8); in bmdma_prepare_buf()
244 prd.addr = le32_to_cpu(prd.addr); in bmdma_prepare_buf()
245 prd.size = le32_to_cpu(prd.size); in bmdma_prepare_buf()
246 len = prd.size & 0xfffe; in bmdma_prepare_buf()
250 bm->cur_prd_addr = prd.addr; in bmdma_prepare_buf()
251 bm->cur_prd_last = (prd.size & 0x80000000); in bmdma_prepare_buf()
281 } prd; in bmdma_rw_buf() local
293 pci_dma_read(pci_dev, bm->cur_addr, &prd, 8); in bmdma_rw_buf()
295 prd.addr = le32_to_cpu(prd.addr); in bmdma_rw_buf()
[all …]
/openbmc/u-boot/cmd/
H A Dmii.c123 const MII_reg_desc_t *prd,
147 const MII_reg_desc_t *prd, in dump_reg() argument
155 prd->regno, regval, prd->name); in dump_reg()
165 prd->regno); in dump_reg()
167 if (special_field(prd->regno, pdesc, regval)) { in dump_reg()
/openbmc/openbmc-test-automation/lib/
H A Dos_utils_config.robot57 [Documentation] Check whether opal-prd.service is running on OS.
58 ${output} ${stderr}= Execute Command systemctl status opal-prd.service
63 ... msg=Error: opal-prd.service is not installed.
H A Dos_utils_install.robot94 [Documentation] Download and install opal prd tool.
97 OS Execute Command sudo apt-get install opal-prd
103 # Verify opal prd installation working.
/openbmc/openbmc-test-automation/docs/
H A Dopenbmc_test_tools.md70 ## The opal-prd Tool:
72 opal-prd is a tool used by the Energy Scale and RAS tests. It should be
75 opal-prd may be installed on Ubuntu with: `apt install opal-prd` and on RedHat
76 with: `yum install opal-prd`
/openbmc/openbmc-test-automation/redfish/extended/
H A Dtest_power_capping.robot43 Tool Exist opal-prd
57 ${output} ${stderr} ${rc}= OS Execute Command opal-prd occ disable
63 ${output} ${stderr} ${rc}= OS Execute Command opal-prd occ enable
/openbmc/qemu/tests/qtest/libqos/
H A Dahci.c1190 PRD prd; in ahci_command_commit() local
1223 prd.dba = cpu_to_le64(cmd->buffer + (cmd->prd_size * i)); in ahci_command_commit()
1224 prd.res = 0; in ahci_command_commit()
1227 prd.dbc = cpu_to_le32(cmd->prd_size - 1); in ahci_command_commit()
1231 prd.dbc = cpu_to_le32(remaining - 1); in ahci_command_commit()
1234 prd.dbc |= cpu_to_le32(0x80000000); /* Request DPS Interrupt */ in ahci_command_commit()
1238 &prd, sizeof(PRD)); in ahci_command_commit()