commonlib: Make CBMEM_ID_CSE_BP_INFO little endian, fix id for string
This patch fixes the mistake introduced with 'commit17cea380d9("commonlib: Add CBMEM ID to store CSE Boot Partition Info")' where single CBMEM ID name `CBMEM_ID_CSE_INFO` is associated with two different name description. Additionally, use little endian format for `CBMEM_ID_CSE_INFO` cbmem id. TEST=Build and boot google/rex. Able to fix the issue introduced in commit17cea380d9while running cbmem --list and verify that the associated name string is proper. Change-Id: I4235f1f6881ab86ccb252065e922d5d526f7f1f7 Signed-off-by: Subrata Banik <subratabanik@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/78110 Reviewed-by: Patrick Georgi <patrick@coreboot.org> Reviewed-by: Dinesh Gehlot <digehlot@google.com> Reviewed-by: sridhar siricilla <siricillasridhar@gmail.com> Reviewed-by: Paul Menzel <paulepanter@mailbox.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Krishna P Bhat D <krishna.p.bhat.d@intel.com>
This commit is contained in:
		| @@ -88,7 +88,7 @@ | |||||||
| #define CBMEM_ID_AMD_STB	0x5f425453 | #define CBMEM_ID_AMD_STB	0x5f425453 | ||||||
| #define CBMEM_ID_AMD_MP2	0x5f32504d | #define CBMEM_ID_AMD_MP2	0x5f32504d | ||||||
| #define CBMEM_ID_CSE_INFO	0x4553435F | #define CBMEM_ID_CSE_INFO	0x4553435F | ||||||
| #define CBMEM_ID_CSE_BP_INFO	0x43534542 | #define CBMEM_ID_CSE_BP_INFO	0x42455343 | ||||||
|  |  | ||||||
| #define CBMEM_ID_TO_NAME_TABLE				 \ | #define CBMEM_ID_TO_NAME_TABLE				 \ | ||||||
| 	{ CBMEM_ID_ACPI,		"ACPI       " }, \ | 	{ CBMEM_ID_ACPI,		"ACPI       " }, \ | ||||||
| @@ -170,5 +170,5 @@ | |||||||
| 	{ CBMEM_ID_AMD_STB,		"AMD STB"},\ | 	{ CBMEM_ID_AMD_STB,		"AMD STB"},\ | ||||||
| 	{ CBMEM_ID_AMD_MP2,		"AMD MP2 BUFFER"},\ | 	{ CBMEM_ID_AMD_MP2,		"AMD MP2 BUFFER"},\ | ||||||
| 	{ CBMEM_ID_CSE_INFO,		"CSE SPECIFIC INFO"},\ | 	{ CBMEM_ID_CSE_INFO,		"CSE SPECIFIC INFO"},\ | ||||||
| 	{ CBMEM_ID_CSE_INFO,		"CSE BP INFO"} | 	{ CBMEM_ID_CSE_BP_INFO,		"CSE BP INFO"} | ||||||
| #endif /* _CBMEM_ID_H_ */ | #endif /* _CBMEM_ID_H_ */ | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user