Commit 4d1b28a8 authored by Heiner Kallweit's avatar Heiner Kallweit Committed by Jean Delvare
Browse files

firmware: dmi: Add info message for number of populated and total memory slots



As part of adding support for calling i2c_register_spd() on muxed SMBUS
segments the same message has been removed from i2c_register_spd().
However users may find it useful, therefore reintroduce it as part of
the DMI scan code.

[JD: Static variable dmi_memdev_populated_nr is only used in __init
 functions, so it can be marked __initdata.]

Signed-off-by: default avatarHeiner Kallweit <hkallweit1@gmail.com>
Signed-off-by: default avatarJean Delvare <jdelvare@suse.de>
parent 0ef11f60
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -42,6 +42,7 @@ static struct dmi_memdev_info {
	u8 type;		/* DDR2, DDR3, DDR4 etc */
} *dmi_memdev;
static int dmi_memdev_nr;
static int dmi_memdev_populated_nr __initdata;

static const char * __init dmi_string_nosave(const struct dmi_header *dm, u8 s)
{
@@ -459,6 +460,9 @@ static void __init save_mem_devices(const struct dmi_header *dm, void *v)
	else
		bytes = (u64)get_unaligned((u32 *)&d[0x1C]) << 20;

	if (bytes)
		dmi_memdev_populated_nr++;

	dmi_memdev[nr].size = bytes;
	nr++;
}
@@ -835,6 +839,8 @@ void __init dmi_setup(void)
		return;

	dmi_memdev_walk();
	pr_info("DMI: Memory slots populated: %d/%d\n",
		dmi_memdev_populated_nr, dmi_memdev_nr);
	dump_stack_set_arch_desc("%s", dmi_ids_string);
}