Lines Matching refs:src
57 static __pmusramfunc void sram_regcpy(uintptr_t dst, uintptr_t src, in sram_regcpy() argument
61 mmio_write_32(dst, mmio_read_32(src)); in sram_regcpy()
63 src += sizeof(uint32_t); in sram_regcpy()
72 static void dram_regcpy(uintptr_t dst, uintptr_t src, uint32_t num) in dram_regcpy() argument
75 mmio_write_32(dst, mmio_read_32(src)); in dram_regcpy()
77 src += sizeof(uint32_t); in dram_regcpy()
653 __pmusramfunc static void pmusram_restore_pll(int pll_id, uint32_t *src) in pmusram_restore_pll() argument
657 mmio_write_32(CRU_BASE + CRU_PLL_CON(pll_id, 0), src[0] | REG_SOC_WMSK); in pmusram_restore_pll()
658 mmio_write_32(CRU_BASE + CRU_PLL_CON(pll_id, 1), src[1] | REG_SOC_WMSK); in pmusram_restore_pll()
659 mmio_write_32(CRU_BASE + CRU_PLL_CON(pll_id, 2), src[2]); in pmusram_restore_pll()
660 mmio_write_32(CRU_BASE + CRU_PLL_CON(pll_id, 4), src[4] | REG_SOC_WMSK); in pmusram_restore_pll()
661 mmio_write_32(CRU_BASE + CRU_PLL_CON(pll_id, 5), src[5] | REG_SOC_WMSK); in pmusram_restore_pll()
663 mmio_write_32(CRU_BASE + CRU_PLL_CON(pll_id, 3), src[3] | REG_SOC_WMSK); in pmusram_restore_pll()