Home
last modified time | relevance | path

Searched refs:esel (Results 1 – 4 of 4) sorted by relevance

/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/
H A Dtlb.c139 u8 ts, u8 esel, u8 tsize, u8 iprot) in set_tlb() argument
144 use_tlb_cam(esel); in set_tlb()
153 _mas0 = FSL_BOOKE_MAS0(tlb, esel, 0); in set_tlb()
163 addrmap_set_entry(epn, rpn, TSIZE_TO_BYTES(tsize), esel); in set_tlb()
167 void disable_tlb(u8 esel) in disable_tlb() argument
171 free_tlb_cam(esel); in disable_tlb()
173 _mas0 = FSL_BOOKE_MAS0(1, esel, 0); in disable_tlb()
189 addrmap_set_entry(0, 0, 0, esel); in disable_tlb()
H A Dstart.S178 .macro create_tlb1_entry esel ts tsize epn wimg rpn perm phy_high scratch
179 lis \scratch, FSL_BOOKE_MAS0(1, \esel, 0)@h
180 ori \scratch, \scratch, FSL_BOOKE_MAS0(1, \esel, 0)@l
200 .macro create_tlb0_entry esel ts tsize epn wimg rpn perm phy_high scratch
201 lis \scratch, FSL_BOOKE_MAS0(0, \esel, 0)@h
202 ori \scratch, \scratch, FSL_BOOKE_MAS0(0, \esel, 0)@l
222 .macro delete_tlb1_entry esel scratch
223 lis \scratch, FSL_BOOKE_MAS0(1, \esel, 0)@h
224 ori \scratch, \scratch, FSL_BOOKE_MAS0(1, \esel, 0)@l
234 .macro delete_tlb0_entry esel epn wimg scratch
[all …]
/rk3399_rockchip-uboot/arch/powerpc/include/asm/
H A Dmmu.h444 #define FSL_BOOKE_MAS0(tlbsel,esel,nv) \ argument
445 (MAS0_TLBSEL(tlbsel) | MAS0_ESEL(esel) | MAS0_NV(nv))
500 u8 ts, u8 esel, u8 tsize, u8 iprot);
501 extern void disable_tlb(u8 esel);
/rk3399_rockchip-uboot/board/freescale/qemu-ppce500/
H A Dqemu-ppce500.c33 static void map_fdt_as(int esel) in map_fdt_as() argument
40 mas0 = MAS0_TLBSEL(1) | MAS0_ESEL(esel); in map_fdt_as()