Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
Cannot see both DIMMS on Dell DX0Q
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Kernel & Hardware
View previous topic :: View next topic  
Author Message
dbmcintosh
n00b
n00b


Joined: 19 Jan 2019
Posts: 13

PostPosted: Tue Nov 24, 2020 5:02 pm    Post subject: Cannot see both DIMMS on Dell DX0Q Reply with quote

Hi all...

I've recently installed Gentoo on a refurbished Dell DX0Q machine. All looking good so far (got X/openbox running now and all the apps I need) but unfortunately I cannot see all available memory, so it is a bit sluggish.

There are two DIMMS of 2GB but all I can see is less that 2 GB instead of 4GB. The BIOS thinks there is 4 GB and so does the dmidecode, but top and /proc/meminfo and conky all report less than 2GB.

I noticed they run at different speeds, but the BIOS is set to run at the 1066 (the lower speed), so from my forum browsing I believe this means that both should be accessible.

Anyone seen this before or have any suggestions on what the issue might be?

Code:

# dmidecode -t memory
# dmidecode 3.2
Getting SMBIOS data from sysfs.
SMBIOS 2.7 present.

Handle 0x001B, DMI type 16, 23 bytes
Physical Memory Array
        Location: System Board Or Motherboard
        Use: System Memory
        Error Correction Type: None
        Maximum Capacity: 32 GB
        Error Information Handle: Not Provided
        Number Of Devices: 2

Handle 0x001C, DMI type 17, 34 bytes
Memory Device
        Array Handle: 0x001B
        Error Information Handle: Not Provided
        Total Width: 64 bits
        Data Width: 64 bits
        Size: 2048 MB
        Form Factor: SODIMM
        Set: 1
        Locator: DIMM 0
        Bank Locator: CHANNEL A
        Type: DDR3
        Type Detail: Synchronous
        Speed: 1600 MT/s
        Manufacturer: Elpida
        Serial Number: 20F920C4
        Asset Tag: 0918
        Part Number: EBJ20UF8BDU0-GN-F
        Rank: Unknown
        Configured Memory Speed: 1600 MT/s

Handle 0x001E, DMI type 17, 34 bytes
Memory Device
        Array Handle: 0x001B
        Error Information Handle: Not Provided
        Total Width: 64 bits
        Data Width: 64 bits
        Size: 2048 MB
        Form Factor: SODIMM
        Set: 2
        Locator: DIMM 1
        Bank Locator: CHANNEL A
        Type: DDR3
        Type Detail: Synchronous
        Speed: 1066 MT/s
        Manufacturer: Kingston
        Serial Number: 4F281B8A
        Asset Tag: 0918
        Part Number: 9905428-026.A02LF
        Rank: Unknown
        Configured Memory Speed: 1066 MT/s



Code:

head -n 1 /proc/meminfo
MemTotal:        1436440 kB


Code:

dmesg output...
[    0.382875] Memory: 1340596K/1495328K available (16388K kernel code, 1425K rwdata, 4640K rodata, 1328K init, 2276K bss, 154732K reserved, 0K cma-reserved


Thanks,
Donald
Back to top
View user's profile Send private message
NeddySeagoon
Administrator
Administrator


Joined: 05 Jul 2003
Posts: 55457
Location: 56N 3W

PostPosted: Tue Nov 24, 2020 5:49 pm    Post subject: Reply with quote

dbmcintosh,

Post the part numbers of the two DIMMS and ideally the writing from the DIMM chips themselves.
Good clear photos on an image sharing site will do. I want to check that both DIMMS have the same geometry.

Also, swap them over. Many brain dead BIOSes run the RAM at the speed of the first stick of RAM read.
That's OK if its your slow stick detected first.

Boot into memtent86.
How much RAM does it see?
Run a few test cycles if it sees all 4G. If not, which 2G does it see, the fast or slow?
_________________
Regards,

NeddySeagoon

Computer users fall into two groups:-
those that do backups
those that have never had a hard drive fail.
Back to top
View user's profile Send private message
dbmcintosh
n00b
n00b


Joined: 19 Jan 2019
Posts: 13

PostPosted: Wed Nov 25, 2020 11:16 am    Post subject: Reply with quote

NeddySeagoon...

Thanks for this.

I was going to swap them over as you suggested but happened to read this blog https://www.parkytowers.me.uk/thin/wyse/d/dx0q/ about that very thing and decided to hold off. The guy had to do a bit of bodging (which I am happy to do if necessary), but I am not at that stage yet. The lower board is tricky to access and then difficult to remove the DIMM from, apparently.

Here is a picture of it though, for reference. The lower DIMM is just visible.

https://www.donaldmcintosh.net/content/dell-dx0q-memory-web.jpg

So, I moved from thinking it was an OS issue to it being a hardware issue, after getting your response. So - and I should have checked this before - I booted a second similar machine from boot USB today and found all memory running at same speed there and 4GB showing up. So, I just moved over the SDD drive this morning and now I can use the build I had but on 4GB hardware. I should have tried that earlier but for some reason thought it was an OS/BIOS/firmware thing I could maybe fix.

Once I've finished the build of the 4GB machine, I will return to the memory issue and try switching them around as you suggested.

Also, the part numbers you requested are on the original post btw under dcidecode output.

Thanks,
Donald
Back to top
View user's profile Send private message
NeddySeagoon
Administrator
Administrator


Joined: 05 Jul 2003
Posts: 55457
Location: 56N 3W

PostPosted: Wed Nov 25, 2020 12:29 pm    Post subject: Reply with quote

dbmcintosh,

Your DIMMs are both 1 rank by 8 chips to get 2G. That's a start. I need the numbers off the top of the chips to check the geometry.

Geometry is a property of DRAMs dues to the way they are addressed. The address is applied in two parts, called the row address and column address. There is no need to have the same number of bits in a row as a column, so the geometry need not be 'square'.
In fact, it can only be square if the chip size is 2^n

Its a given that all the chips on the DRAM module have the same geometry but on two different sticks they may not.
The individual chips on your DIMMs are 256MB ... now it starts to get a bit tricky.

Some chip vendors sell imperfect chips smaller than they wore designed to be. That gets very very messy for the geometry.

Further, the memory controller in the CPU needs to know the geometry to drive the memory chips correctly.
Some memory controllers don't mind a mix, some do. Hence mixing memory modules can be a minefield.

memtest86 will provide some useful information. It does not need a HDD as it loads from the boot media in place of the kernel.
_________________
Regards,

NeddySeagoon

Computer users fall into two groups:-
those that do backups
those that have never had a hard drive fail.
Back to top
View user's profile Send private message
dbmcintosh
n00b
n00b


Joined: 19 Jan 2019
Posts: 13

PostPosted: Sun Dec 27, 2020 5:26 pm    Post subject: Reply with quote

Apologies for the delay. Only got back to this today.

Here is a photo of both DIMMs now that I have been able to remove them.

https://www.donaldmcintosh.net/image/bothdimms-web.jpg

I'd still be interested to confirm they are both compatible but actually I think the lower one in the photo is possibly defective. When I switched them around the machine would not initialise at all. Not even to the BIOS. I had two spare DIMMS now that I knew worked so I switched these in the machine is now running with 4GB. ( A friend game me 2 x 4GB DIMMS laptop memory and these worked on a diff machine so I had then had to 2 x 2GB spare. )

Thanks,
Donald
Back to top
View user's profile Send private message
APolozov
Apprentice
Apprentice


Joined: 28 Sep 2006
Posts: 194
Location: Voronezh, Russia

PostPosted: Sun Dec 27, 2020 8:30 pm    Post subject: Reply with quote

Your memory DIMMs have different numbers of chips, many motherboards (especially with SoDIMM memory) do not like this combination and want paired (identical) DIMMs. In extreme cases, DIMMs with the same number of chips are allowed.
_________________
Excuse my bad English, I only study it.
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Kernel & Hardware All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum