Lines Matching defs:value
24 * of a single 32-bit value between two processors. Each value has a single
58 * @value: content of the entry
72 u32 value;
81 * @value: pointer to smp2p_smem_item entry value
82 * @last_value: last handled value
88 * @lock: spinlock to protect read-modify-write of the value
95 u32 *value;
205 entry->value = &in->entries[i].value;
212 /* Fire interrupts based on any value changes */
215 if (!entry->value)
218 val = readl(entry->value);
318 static int smp2p_update_bits(void *data, u32 mask, u32 value)
326 val = orig = readl(entry->value);
328 val |= value;
329 writel(val, entry->value);
353 /* Make the logical entry reference the physical value */
354 entry->value = &out->entries[out->valid_entries].value;