Lines Matching defs:pgs
53 * Note that pgs=0b10 is 16KB and pgs=0b01 is 64KB, this is not a typo.
66 gpccr_pgs_e pgs;
704 gpccr_el3 |= SET_GPCCR_PGS(gpt_config.pgs);
810 * pgs PGS value to use for table generation.
819 int gpt_init_pas_l1_tables(gpccr_pgs_e pgs, uintptr_t l1_mem_base,
830 if (pgs > GPT_PGS_MAX) {
831 ERROR("[GPT] Invalid PGS: 0x%x\n", pgs);
834 gpt_config.pgs = pgs;
835 gpt_config.p = gpt_p_lookup[pgs];
866 INFO(" PGS/P: 0x%x/%u\n", gpt_config.pgs, gpt_config.p);
944 gpt_config.pgs = (reg >> GPCCR_PGS_SHIFT) & GPCCR_PGS_MASK;
945 gpt_config.p = gpt_p_lookup[gpt_config.pgs];
949 VERBOSE(" PGS/P: 0x%x/%u\n", gpt_config.pgs, gpt_config.p);