Lines Matching defs:value

27  * or higher value'.
186 * Scan the scrub rate mapping table for a close or matching bandwidth value to
187 * issue. If requested is too big, then use last maximum value found.
195 * map the configured rate (new_bw) to a value specific to the AMD64
300 /* The K8 treats this as a 40-bit value. However, bits 63-40 will be
332 * The value of this field should be the same for all DRAM Base
349 amd64_warn("DRAM Base[IntlvEn] junk value: 0x%x, BIOS bug?\n", intlv_en);
580 * hole. If not, skip to step 3 below. Else get the value of the
582 * offset defined by this value from the SysAddr.
614 * section 3.4.4 (p. 70). Although sys_addr is a 64-bit value, the k8
629 * @intlv_en is the value of the IntlvEn field from a DRAM Base register
762 * value of '0' here to get dcsm value.
1101 * We use a Chip Select value of '0' to obtain dcsm.
1103 * 'Rank' value on a DCT. But this is not the common case. So,
1388 * Basically, it calculates a value with which to shift the
2216 * calculation. We pass dimm value to the dbam_to_cs
2687 * F1 (AddrMap) and F2 (Dct) devices. Return negative value on error.
3158 u32 value, mask = 0x3; /* UECC/CECC enable */
3165 amd64_read_pci_cfg(F3, NBCTL, &value);
3167 s->old_nbctl = value & mask;
3170 value |= mask;
3171 amd64_write_pci_cfg(F3, NBCTL, value);
3173 amd64_read_pci_cfg(F3, NBCFG, &value);
3176 nid, value, !!(value & NBCFG_ECC_ENABLE));
3178 if (!(value & NBCFG_ECC_ENABLE)) {
3184 value |= NBCFG_ECC_ENABLE;
3185 amd64_write_pci_cfg(F3, NBCFG, value);
3187 amd64_read_pci_cfg(F3, NBCFG, &value);
3189 if (!(value & NBCFG_ECC_ENABLE)) {
3201 nid, value, !!(value & NBCFG_ECC_ENABLE));
3209 u32 value, mask = 0x3; /* UECC/CECC enable */
3214 amd64_read_pci_cfg(F3, NBCTL, &value);
3215 value &= ~mask;
3216 value |= s->old_nbctl;
3218 amd64_write_pci_cfg(F3, NBCTL, value);
3222 amd64_read_pci_cfg(F3, NBCFG, &value);
3223 value &= ~NBCFG_ECC_ENABLE;
3224 amd64_write_pci_cfg(F3, NBCFG, value);
3237 u32 value;
3265 amd64_read_pci_cfg(pvt->F3, NBCFG, &value);
3267 ecc_en = !!(value & NBCFG_ECC_ENABLE);