xref: /openbmc/libcper/generator/sections/gen-section-generic.c (revision 2d4d3b65396596d8939bacaea54ed529530362f9)
102c801a5SLawrence Tang /**
2efe17e2cSLawrence Tang  * Functions for generating pseudo-random CPER generic processor sections.
302c801a5SLawrence Tang  *
402c801a5SLawrence Tang  * Author: Lawrence.Tang@arm.com
502c801a5SLawrence Tang  **/
602c801a5SLawrence Tang 
702c801a5SLawrence Tang #include <stdlib.h>
8e42fb487SThu Nguyen #include <libcper/BaseTypes.h>
9e42fb487SThu Nguyen #include <libcper/generator/gen-utils.h>
10e42fb487SThu Nguyen #include <libcper/generator/sections/gen-section.h>
1102c801a5SLawrence Tang 
12efe17e2cSLawrence Tang //Generates a single pseudo-random generic processor section, saving the resulting address to the given
1302c801a5SLawrence Tang //location. Returns the size of the newly created section.
generate_section_generic(void ** location,GEN_VALID_BITS_TEST_TYPE validBitsType)14ae8f6d9aSAushim Nagarkatti size_t generate_section_generic(void **location,
15ae8f6d9aSAushim Nagarkatti 				GEN_VALID_BITS_TEST_TYPE validBitsType)
1602c801a5SLawrence Tang {
1702c801a5SLawrence Tang 	//Create random bytes.
1802c801a5SLawrence Tang 	size_t size = generate_random_section(location, 192);
1902c801a5SLawrence Tang 
2002c801a5SLawrence Tang 	//Set reserved locations to zero.
2102c801a5SLawrence Tang 	UINT8 *start_byte = (UINT8 *)*location;
22ae8f6d9aSAushim Nagarkatti 	UINT64 *validation = (UINT64 *)*location;
23ae8f6d9aSAushim Nagarkatti 	*validation &= 0x1FFF;
24ae8f6d9aSAushim Nagarkatti 	if (validBitsType == ALL_VALID) {
25ae8f6d9aSAushim Nagarkatti 		*validation = 0x1FFF;
26ae8f6d9aSAushim Nagarkatti 	} else if (validBitsType == SOME_VALID) {
27ae8f6d9aSAushim Nagarkatti 		*validation = 0x1555;
28ae8f6d9aSAushim Nagarkatti 	}
29f8fc7052SJohn Chung 	*(start_byte + 12) &= 0x7;
3002c801a5SLawrence Tang 	*((UINT16 *)(start_byte + 14)) = 0x0;
3102c801a5SLawrence Tang 
32aacf0e26SLawrence Tang 	//Ensure CPU brand string does not terminate early.
33f8fc7052SJohn Chung 	for (int i = 0; i < 128; i++) {
34aacf0e26SLawrence Tang 		UINT8 *byte = start_byte + 24 + i;
35ae8f6d9aSAushim Nagarkatti 		//Ensure only ascii is used
36*2d4d3b65SEd Tanous 		*byte = cper_rand() % 127 + 1;
37aacf0e26SLawrence Tang 
38aacf0e26SLawrence Tang 		//Null terminate last byte.
39f8fc7052SJohn Chung 		if (i == 127) {
40aacf0e26SLawrence Tang 			*byte = 0x0;
41aacf0e26SLawrence Tang 		}
42f8fc7052SJohn Chung 	}
43aacf0e26SLawrence Tang 
4402c801a5SLawrence Tang 	return size;
4502c801a5SLawrence Tang }
46