Lines Matching defs:value
29 * 0x184 / The vendor driver uses these to set the initial value of LPF low
33 * Only the lower 24 bits of the resulting value will be used. In addition, the
38 * frequency - register value
73 u32 value;
75 value = ioread16(cpupll->base + reg + 4) << 16;
76 value |= ioread16(cpupll->base + reg);
78 return value;
81 static void msc313_cpupll_reg_write32(struct msc313_cpupll *cpupll, unsigned int reg, u32 value)
83 u16 l = value & 0xffff, h = (value >> 16) & 0xffff;