Lines Matching defs:value
245 * Return: Shutdown scope value.
546 * @value: Value to write.
556 uint32_t value)
561 PM_PACK_PAYLOAD4(payload, PM_MMIO_WRITE, address, mask, value);
566 * pm_mmio_read() - Read value from protected mmio.
568 * @value: Value to write.
576 enum pm_ret_status pm_mmio_read(uintptr_t address, uint32_t *value)
582 return pm_ipi_send_sync(primary_proc, payload, value, 1);
611 * pm_fpga_get_status() - Read value from fpga status register.
612 * @value: Value to read.
620 enum pm_ret_status pm_fpga_get_status(uint32_t *value)
626 return pm_ipi_send_sync(primary_proc, payload, value, 1);
631 * @value: Buffer for return values. Must be large enough to hold 8 bytes.
636 enum pm_ret_status pm_get_chipid(uint32_t *value)
642 return pm_ipi_send_sync(primary_proc, payload, value, 2);
675 * @value: Returned output value.
685 uint32_t *value)
691 return pm_ipi_send_sync(primary_proc, payload, value, 1);
699 * Read value from ipi buffer response buffer.
722 * @value: Returned output value.
733 uint32_t *value)
735 return pm_api_ioctl(nid, ioctl_id, arg1, arg2, value);
967 * This function is used by master to get maximum supported value.
1032 * @mul: Multiplication value.
1033 * @div: Divisor value.
1217 * @divider: divider value.
1266 * @divider: divider value.
1593 uint32_t *value)
1600 return pm_ipi_send_sync(primary_proc, payload, value, 2);
1611 * @value: Value to read.
1623 uint32_t *value)
1630 return pm_ipi_send_sync(primary_proc, payload, value, 1);
1634 * pm_pll_set_parameter() - Set the PLL parameter value.
1637 * @value: Parameter value to be set.
1648 uint32_t value)
1663 PM_PACK_PAYLOAD4(payload, PM_PLL_SET_PARAMETER, nid, param_id, value);
1668 * pm_pll_get_parameter() - Get the PLL parameter value.
1671 * @value: Location to store the parameter value.
1679 uint32_t *value)
1695 return pm_ipi_send_sync(primary_proc, payload, value, 1);
1758 * @mask: Mask value to be used while writing value.
1759 * @value: Value to be written to register.
1770 uint32_t value,
1784 ret = pm_mmio_write(address, mask, value);
1803 * @value: Returned output value.
1810 uint32_t *value)
1817 return pm_ipi_send_sync(primary_proc, payload, value, 1);