Lines Matching refs:rz
95 static int ldh_c(struct pt_regs *regs, uint32_t rz, uint32_t addr)
106 put_ptreg(regs, rz, byte0);
117 static int sth_c(struct pt_regs *regs, uint32_t rz, uint32_t addr)
121 byte0 = byte1 = get_ptreg(regs, rz);
142 static int ldw_c(struct pt_regs *regs, uint32_t rz, uint32_t addr)
165 put_ptreg(regs, rz, byte0);
176 static int stw_c(struct pt_regs *regs, uint32_t rz, uint32_t addr)
180 byte0 = byte1 = byte2 = byte3 = get_ptreg(regs, rz);
218 uint32_t rz = 0;
255 rz = (opcode >> 8) & 0xf;
258 if (rx == 0 || rx == 1 || rz == 0 || rz == 1)
264 ret = ldh_c(regs, rz, addr);
268 ret = ldw_c(regs, rz, addr);
272 ret = sth_c(regs, rz, addr);
276 ret = stw_c(regs, rz, addr);
293 pr_alert("%s opcode: %x, rz: %d, rx: %d, imm: %d, addr: %x.\n",
294 __func__, opcode, rz, rx, imm, addr);