Lines Matching defs:address
794 * allow complete unrestricted access to all address space, including
968 * @address: Address to write to
979 int zynqmp_pm_fpga_load(const u64 address, const u32 size, const u32 flags)
984 ret = zynqmp_pm_invoke_fn(PM_FPGA_LOAD, lower_32_bits(address),
985 upper_32_bits(address), size, flags,
1358 * @set_addr: Specifies whether the address argument is relevant
1359 * @address: Address from which to resume when woken up
1366 const u64 address,
1369 /* set_addr flag is encoded into 1st bit of address */
1370 return zynqmp_pm_invoke_fn(PM_REQUEST_WAKEUP, node, address | set_addr,
1371 address >> 32, ack, NULL);
1399 * @address: PDI src address
1405 int zynqmp_pm_load_pdi(const u32 src, const u64 address)
1408 lower_32_bits(address),
1409 upper_32_bits(address), 0, NULL);
1416 * @address: Address of the AesParams structure.
1421 int zynqmp_pm_aes_engine(const u64 address, u32 *out)
1429 ret = zynqmp_pm_invoke_fn(PM_SECURE_AES, upper_32_bits(address),
1430 lower_32_bits(address),
1440 * @address: Address of the data/ Address of output buffer where
1444 * BIT(0) - for initializing csudma driver and SHA3(Here address
1449 * Hash will be overwritten at provided address with
1454 int zynqmp_pm_sha_hash(const u64 address, const u32 size, const u32 flags)
1456 u32 lower_addr = lower_32_bits(address);
1457 u32 upper_addr = upper_32_bits(address);