提交 d84676a9 编写于 作者: Q Qiuxu Zhuo 提交者: Borislav Petkov

EDAC, pnd2: Mask off the lower four bits of a BAR

Bit[0] of BAR is always zero. Bit[2:1] and bit[3] of BAR contain the
information of 'type' and the 'prefetchable' accordingly. Therefore,
mask the lower four bits to retrieve the actual base address of a BAR.
Signed-off-by: NQiuxu Zhuo <qiuxu.zhuo@intel.com>
Cc: Tony Luck <tony.luck@intel.com>
Cc: linux-edac <linux-edac@vger.kernel.org>
Link: http://lkml.kernel.org/r/20170814154813.21619-1-qiuxu.zhuo@intel.comSigned-off-by: NBorislav Petkov <bp@suse.de>
上级 3eaef0fa
...@@ -241,6 +241,7 @@ static u64 get_sideband_reg_base_addr(void) ...@@ -241,6 +241,7 @@ static u64 get_sideband_reg_base_addr(void)
if (pdev) { if (pdev) {
pci_read_config_dword(pdev, 0x10, &lo); pci_read_config_dword(pdev, 0x10, &lo);
pci_read_config_dword(pdev, 0x14, &hi); pci_read_config_dword(pdev, 0x14, &hi);
lo &= 0xfffffff0;
pci_dev_put(pdev); pci_dev_put(pdev);
return (U64_LSHIFT(hi, 32) | U64_LSHIFT(lo, 0)); return (U64_LSHIFT(hi, 32) | U64_LSHIFT(lo, 0));
} else { } else {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册