Lines Matching full:lower
30 * @lower: The lowest address that the MAAR pair will affect. Must be
38 * specified by attrs to the range of addresses from lower to higher.
40 static inline void write_maar_pair(unsigned idx, phys_addr_t lower, in write_maar_pair() argument
44 BUG_ON(lower & (0xffff | ~(MIPS_MAAR_ADDR << 4))); in write_maar_pair()
65 /* Write the lower address & attributes */ in write_maar_pair()
68 write_c0_maar((lower >> 4) | attrs); in write_maar_pair()
71 lower >>= MIPS_MAARX_ADDR_SHIFT; in write_maar_pair()
72 writex_c0_maar(((lower >> 4) & MIPS_MAARX_ADDR) | MIPS_MAARX_VH); in write_maar_pair()
88 * @lower: The lowest address that the MAAR pair will affect. Must be
97 * addresses from lower to upper inclusive.
100 phys_addr_t lower; member
122 write_maar_pair(i, cfg[i].lower, cfg[i].upper, cfg[i].attrs); in maar_config()