Home
last modified time | relevance | path

Searched refs:rs (Results 1 – 7 of 7) sorted by relevance

/rk3399_rockchip-uboot/post/lib_powerpc/
H A Dcpu_asm.h118 #define ASM_11(opcode, rd, rs) ((opcode) + \ argument
120 ((rs) << 16))
124 #define ASM_11X(opcode, rd, rs) ((opcode) + \ argument
125 ((rs) << 21) + \
127 #define ASM_11I(opcode, rd, rs, simm) ((opcode) + \ argument
129 ((rs) << 16) + \
131 #define ASM_11IF(opcode, rd, rs, simm) ((opcode) + \ argument
133 ((rs) << 16) + \
135 #define ASM_11S(opcode, rd, rs, sh) ((opcode) + \ argument
136 ((rs) << 21) + \
[all …]
/rk3399_rockchip-uboot/arch/mips/include/asm/
H A Dasm.h183 #define MOVN(rd, rs, rt) \ argument
187 move rd, rs; \
190 #define MOVZ(rd, rs, rt) \ argument
194 move rd, rs; \
199 #define MOVN(rd, rs, rt) \ argument
203 move rd, rs; \
206 #define MOVZ(rd, rs, rt) \ argument
210 move rd, rs; \
216 #define MOVN(rd, rs, rt) \ argument
217 movn rd, rs, rt
[all …]
/rk3399_rockchip-uboot/drivers/video/
H A Ds6e63d6.c18 static int send_word(struct s6e63d6 *data, u8 rs, u16 word) in send_word() argument
25 u32 buf8 = 0x70 | data->id | (rs & 2); in send_word()
/rk3399_rockchip-uboot/drivers/misc/
H A Dcros_ec.c158 struct ec_host_response *rs = (struct ec_host_response *)dev->din; in handle_proto3_response() local
162 cros_ec_dump_data("in-header", -1, dev->din, sizeof(*rs)); in handle_proto3_response()
165 if (rs->struct_version != EC_HOST_RESPONSE_VERSION) { in handle_proto3_response()
170 if (rs->reserved) { in handle_proto3_response()
175 if (rs->data_len > din_len) { in handle_proto3_response()
180 cros_ec_dump_data("in-data", -1, dev->din + sizeof(*rs), rs->data_len); in handle_proto3_response()
183 in_bytes = sizeof(*rs) + rs->data_len; in handle_proto3_response()
194 if (rs->result) in handle_proto3_response()
195 return -(int)rs->result; in handle_proto3_response()
198 *dinp = (uint8_t *)(rs + 1); in handle_proto3_response()
[all …]
/rk3399_rockchip-uboot/arch/sh/include/asm/
H A Dptrace.h79 unsigned long rs; member
/rk3399_rockchip-uboot/doc/
H A DREADME.kwbimage59 NAND_ECC_MODE default/rs/hamming/disabled
/rk3399_rockchip-uboot/drivers/mtd/spi/
H A Dspi_flash.c34 static int read_sr(struct spi_flash *flash, u8 *rs) in read_sr() argument
40 ret = spi_flash_read_common(flash, &cmd, 1, rs, 1); in read_sr()