How to check if system supports 64-bit PCIe decoding?Problems with my poweredge 2970PCI configurationPCI SATA Controller Card Locking Up at BootBooting from firmware-based PCI RAID controller in SeaBIOS
Am I allowed to have a creature have 0 toughness, but still assign combat damage?
How will the next Sanhedrin function if we lost the original Semicha?
Exactly what does "diatonic" mean?
Is it possible to plot complicated functions with TikZ datavisualization?
Is it possible to remove the trash icon from the dock on macOS Catalina?
What is the economic interpretation of this utility function?
Is a borosilicate glass pot safe to use on a gas burner stovetop?
Why does the forward voltage drop in a diode vary slightly when there is a change in the diode current?
Which Grows Faster: Factorial or Double Exponentiation
How many flight hours do the first retiring A380s have?
How to help a male-presenting person shop for women's clothes?
Is the worst version of the accusations against President Trump impeachable?
Usage of "tour de force"
Lazav Ability on the Stack
Aliens kill as an art form, surprised that humans don't appreciate
How to create a new file via touch if it is in a directory which doesn't exist?
What do you call candidates in elections who don't actually have a chance to win and only create an illusion of competition?
Could anyone judge whether or not what I have experienced are types of abuse?
Why voltage regulators instead of voltage dividers for supplying power to loads?
Feeling burned-out in PhD. program and thinking about dropping out
Storing info in JWT payload
GIMP using command line
Why are old computers so vulnerable to temperature changes and moisture?
Will a falling rod stay in contact with the frictionless floor?
How to check if system supports 64-bit PCIe decoding?
Problems with my poweredge 2970PCI configurationPCI SATA Controller Card Locking Up at BootBooting from firmware-based PCI RAID controller in SeaBIOS
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty
margin-bottom:0;
In my motherboard's manual, I see the following under BIOS configuration
Above 4G Decoding (Available if the system supports 64-bit PCI decoding)
Select Enabled to decode a PCI device that supports 64-bit in the space above 4G Address. The options are Enabled and Disabled.
Other than checking if this option is available or not, how can I check if my system supports 64-bit PCI decoding?
pci
add a comment
|
In my motherboard's manual, I see the following under BIOS configuration
Above 4G Decoding (Available if the system supports 64-bit PCI decoding)
Select Enabled to decode a PCI device that supports 64-bit in the space above 4G Address. The options are Enabled and Disabled.
Other than checking if this option is available or not, how can I check if my system supports 64-bit PCI decoding?
pci
add a comment
|
In my motherboard's manual, I see the following under BIOS configuration
Above 4G Decoding (Available if the system supports 64-bit PCI decoding)
Select Enabled to decode a PCI device that supports 64-bit in the space above 4G Address. The options are Enabled and Disabled.
Other than checking if this option is available or not, how can I check if my system supports 64-bit PCI decoding?
pci
In my motherboard's manual, I see the following under BIOS configuration
Above 4G Decoding (Available if the system supports 64-bit PCI decoding)
Select Enabled to decode a PCI device that supports 64-bit in the space above 4G Address. The options are Enabled and Disabled.
Other than checking if this option is available or not, how can I check if my system supports 64-bit PCI decoding?
pci
pci
asked Sep 19 at 21:26
guest321guest321
211 bronze badge
211 bronze badge
add a comment
|
add a comment
|
1 Answer
1
active
oldest
votes
Was it manufactured in the last 10-15 years? If so, it likely supports 64-bit PCI decoding. 64-bit PCI, PCI-X and PCI Express buses all support 64-bit decoding.
You can verify 64-bit decoding is in use with a Linux command like:
sudo lspci -v | grep "Memory.*64-bit"
While this BIOS option is disabled, you will see that all of the memory has been decoded below the 4GiB boundary. If you see no output, then no 64-bit memory decoding has been done.
BTW, you should leave this BIOS option disabled unless you have PCI Express device configurations which require it, such as multiple installed GPGPUs. Some older Linux kernels might not boot with it enabled, as well, so you may need to update your OS before enabling this option.
add a comment
|
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "2"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f984937%2fhow-to-check-if-system-supports-64-bit-pcie-decoding%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Was it manufactured in the last 10-15 years? If so, it likely supports 64-bit PCI decoding. 64-bit PCI, PCI-X and PCI Express buses all support 64-bit decoding.
You can verify 64-bit decoding is in use with a Linux command like:
sudo lspci -v | grep "Memory.*64-bit"
While this BIOS option is disabled, you will see that all of the memory has been decoded below the 4GiB boundary. If you see no output, then no 64-bit memory decoding has been done.
BTW, you should leave this BIOS option disabled unless you have PCI Express device configurations which require it, such as multiple installed GPGPUs. Some older Linux kernels might not boot with it enabled, as well, so you may need to update your OS before enabling this option.
add a comment
|
Was it manufactured in the last 10-15 years? If so, it likely supports 64-bit PCI decoding. 64-bit PCI, PCI-X and PCI Express buses all support 64-bit decoding.
You can verify 64-bit decoding is in use with a Linux command like:
sudo lspci -v | grep "Memory.*64-bit"
While this BIOS option is disabled, you will see that all of the memory has been decoded below the 4GiB boundary. If you see no output, then no 64-bit memory decoding has been done.
BTW, you should leave this BIOS option disabled unless you have PCI Express device configurations which require it, such as multiple installed GPGPUs. Some older Linux kernels might not boot with it enabled, as well, so you may need to update your OS before enabling this option.
add a comment
|
Was it manufactured in the last 10-15 years? If so, it likely supports 64-bit PCI decoding. 64-bit PCI, PCI-X and PCI Express buses all support 64-bit decoding.
You can verify 64-bit decoding is in use with a Linux command like:
sudo lspci -v | grep "Memory.*64-bit"
While this BIOS option is disabled, you will see that all of the memory has been decoded below the 4GiB boundary. If you see no output, then no 64-bit memory decoding has been done.
BTW, you should leave this BIOS option disabled unless you have PCI Express device configurations which require it, such as multiple installed GPGPUs. Some older Linux kernels might not boot with it enabled, as well, so you may need to update your OS before enabling this option.
Was it manufactured in the last 10-15 years? If so, it likely supports 64-bit PCI decoding. 64-bit PCI, PCI-X and PCI Express buses all support 64-bit decoding.
You can verify 64-bit decoding is in use with a Linux command like:
sudo lspci -v | grep "Memory.*64-bit"
While this BIOS option is disabled, you will see that all of the memory has been decoded below the 4GiB boundary. If you see no output, then no 64-bit memory decoding has been done.
BTW, you should leave this BIOS option disabled unless you have PCI Express device configurations which require it, such as multiple installed GPGPUs. Some older Linux kernels might not boot with it enabled, as well, so you may need to update your OS before enabling this option.
edited Sep 19 at 22:04
answered Sep 19 at 21:45
Michael Hampton♦Michael Hampton
190k29 gold badges356 silver badges692 bronze badges
190k29 gold badges356 silver badges692 bronze badges
add a comment
|
add a comment
|
Thanks for contributing an answer to Server Fault!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f984937%2fhow-to-check-if-system-supports-64-bit-pcie-decoding%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown