Lines Matching defs:addr_1
83 #define SLV_ADDR_DEC_SA1E BIT(2) /* ACK to addr_1 enabled */
84 #define SLV_ADDR_DEC_SA1M BIT(3) /* 10-bit addressing for addr_1 enabled */
90 #define SLV_RX_ACSA1 BIT(0) /* Generate ACK for writes to addr_1 */
95 #define SLV_FIFO_DV1 BIT(0) /* Data Valid for addr_1 */
438 u32 addr_1, addr_2;
442 * addr_1: 5'b11110 | addr[9:8] | (R/nW)
445 addr_1 = 0xF0 | ((msg->addr >> 7) & 0x06);
447 addr_1 |= 1; /* Set the R/nW bit of the address */
451 * addr_1: addr[6:0] | (R/nW)
454 addr_1 = i2c_8bit_addr_from_msg(msg);
458 writel(addr_1, idev->base + MST_ADDR_1);