Lines Matching defs:value
25 * of a single 32-bit value between two processors. Each value has a single
62 * @value: content of the entry
76 u32 value;
85 * @value: pointer to smp2p_smem_item entry value
86 * @last_value: last handled value
92 * @lock: spinlock to protect read-modify-write of the value
99 u32 *value;
236 entry->value = &in->entries[i].value;
243 /* Fire interrupts based on any value changes */
246 if (!entry->value)
249 val = readl(entry->value);
393 static int smp2p_update_bits(void *data, u32 mask, u32 value)
401 val = orig = readl(entry->value);
403 val |= value;
404 writel(val, entry->value);
428 /* Make the logical entry reference the physical value */
429 entry->value = &out->entries[out->valid_entries].value;