Lines Matching refs:tokens
84 * @tokens: Sequence of tokens to be written to the device
85 * @num_tokens: Number of tokens
103 u32 tokens[2];
122 i2c->tokens[0] = 0;
123 i2c->tokens[1] = 0;
130 i2c->tokens[0] |= (token & 0xf) << (i2c->num_tokens * 4);
132 i2c->tokens[1] |= (token & 0xf) << ((i2c->num_tokens % 8) * 4);
224 writel(i2c->tokens[0], i2c->regs + REG_TOK_LIST0);
225 writel(i2c->tokens[1], i2c->regs + REG_TOK_LIST1);