Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5dc68e55 authored by Dan Williams's avatar Dan Williams
Browse files

tools/testing/nvdimm: add manufacturing_{date|location} dimm properties



New for ACPI 6.1, these fields are used in the common dimm
representation format defined by section 5.2.25.9 "NVDIMM representation
format".

Signed-off-by: default avatarDan Williams <dan.j.williams@intel.com>
parent 7bfe97c7
Loading
Loading
Loading
Loading
+21 −33
Original line number Original line Diff line number Diff line
@@ -639,6 +639,16 @@ static int nfit_test1_alloc(struct nfit_test *t)
	return ars_state_init(&t->pdev.dev, &t->ars_state);
	return ars_state_init(&t->pdev.dev, &t->ars_state);
}
}


static void dcr_common_init(struct acpi_nfit_control_region *dcr)
{
	dcr->vendor_id = 0xabcd;
	dcr->device_id = 0;
	dcr->revision_id = 1;
	dcr->valid_fields = 1;
	dcr->manufacturing_location = 0xa;
	dcr->manufacturing_date = cpu_to_be16(2016);
}

static void nfit_test0_setup(struct nfit_test *t)
static void nfit_test0_setup(struct nfit_test *t)
{
{
	const int flush_hint_size = sizeof(struct acpi_nfit_flush_address)
	const int flush_hint_size = sizeof(struct acpi_nfit_flush_address)
@@ -967,9 +977,7 @@ static void nfit_test0_setup(struct nfit_test *t)
	dcr->header.type = ACPI_NFIT_TYPE_CONTROL_REGION;
	dcr->header.type = ACPI_NFIT_TYPE_CONTROL_REGION;
	dcr->header.length = sizeof(struct acpi_nfit_control_region);
	dcr->header.length = sizeof(struct acpi_nfit_control_region);
	dcr->region_index = 0+1;
	dcr->region_index = 0+1;
	dcr->vendor_id = 0xabcd;
	dcr_common_init(dcr);
	dcr->device_id = 0;
	dcr->revision_id = 1;
	dcr->serial_number = ~handle[0];
	dcr->serial_number = ~handle[0];
	dcr->code = NFIT_FIC_BLK;
	dcr->code = NFIT_FIC_BLK;
	dcr->windows = 1;
	dcr->windows = 1;
@@ -984,9 +992,7 @@ static void nfit_test0_setup(struct nfit_test *t)
	dcr->header.type = ACPI_NFIT_TYPE_CONTROL_REGION;
	dcr->header.type = ACPI_NFIT_TYPE_CONTROL_REGION;
	dcr->header.length = sizeof(struct acpi_nfit_control_region);
	dcr->header.length = sizeof(struct acpi_nfit_control_region);
	dcr->region_index = 1+1;
	dcr->region_index = 1+1;
	dcr->vendor_id = 0xabcd;
	dcr_common_init(dcr);
	dcr->device_id = 0;
	dcr->revision_id = 1;
	dcr->serial_number = ~handle[1];
	dcr->serial_number = ~handle[1];
	dcr->code = NFIT_FIC_BLK;
	dcr->code = NFIT_FIC_BLK;
	dcr->windows = 1;
	dcr->windows = 1;
@@ -1001,9 +1007,7 @@ static void nfit_test0_setup(struct nfit_test *t)
	dcr->header.type = ACPI_NFIT_TYPE_CONTROL_REGION;
	dcr->header.type = ACPI_NFIT_TYPE_CONTROL_REGION;
	dcr->header.length = sizeof(struct acpi_nfit_control_region);
	dcr->header.length = sizeof(struct acpi_nfit_control_region);
	dcr->region_index = 2+1;
	dcr->region_index = 2+1;
	dcr->vendor_id = 0xabcd;
	dcr_common_init(dcr);
	dcr->device_id = 0;
	dcr->revision_id = 1;
	dcr->serial_number = ~handle[2];
	dcr->serial_number = ~handle[2];
	dcr->code = NFIT_FIC_BLK;
	dcr->code = NFIT_FIC_BLK;
	dcr->windows = 1;
	dcr->windows = 1;
@@ -1018,9 +1022,7 @@ static void nfit_test0_setup(struct nfit_test *t)
	dcr->header.type = ACPI_NFIT_TYPE_CONTROL_REGION;
	dcr->header.type = ACPI_NFIT_TYPE_CONTROL_REGION;
	dcr->header.length = sizeof(struct acpi_nfit_control_region);
	dcr->header.length = sizeof(struct acpi_nfit_control_region);
	dcr->region_index = 3+1;
	dcr->region_index = 3+1;
	dcr->vendor_id = 0xabcd;
	dcr_common_init(dcr);
	dcr->device_id = 0;
	dcr->revision_id = 1;
	dcr->serial_number = ~handle[3];
	dcr->serial_number = ~handle[3];
	dcr->code = NFIT_FIC_BLK;
	dcr->code = NFIT_FIC_BLK;
	dcr->windows = 1;
	dcr->windows = 1;
@@ -1037,9 +1039,7 @@ static void nfit_test0_setup(struct nfit_test *t)
	dcr->header.length = offsetof(struct acpi_nfit_control_region,
	dcr->header.length = offsetof(struct acpi_nfit_control_region,
			window_size);
			window_size);
	dcr->region_index = 4+1;
	dcr->region_index = 4+1;
	dcr->vendor_id = 0xabcd;
	dcr_common_init(dcr);
	dcr->device_id = 0;
	dcr->revision_id = 1;
	dcr->serial_number = ~handle[0];
	dcr->serial_number = ~handle[0];
	dcr->code = NFIT_FIC_BYTEN;
	dcr->code = NFIT_FIC_BYTEN;
	dcr->windows = 0;
	dcr->windows = 0;
@@ -1051,9 +1051,7 @@ static void nfit_test0_setup(struct nfit_test *t)
	dcr->header.length = offsetof(struct acpi_nfit_control_region,
	dcr->header.length = offsetof(struct acpi_nfit_control_region,
			window_size);
			window_size);
	dcr->region_index = 5+1;
	dcr->region_index = 5+1;
	dcr->vendor_id = 0xabcd;
	dcr_common_init(dcr);
	dcr->device_id = 0;
	dcr->revision_id = 1;
	dcr->serial_number = ~handle[1];
	dcr->serial_number = ~handle[1];
	dcr->code = NFIT_FIC_BYTEN;
	dcr->code = NFIT_FIC_BYTEN;
	dcr->windows = 0;
	dcr->windows = 0;
@@ -1065,9 +1063,7 @@ static void nfit_test0_setup(struct nfit_test *t)
	dcr->header.length = offsetof(struct acpi_nfit_control_region,
	dcr->header.length = offsetof(struct acpi_nfit_control_region,
			window_size);
			window_size);
	dcr->region_index = 6+1;
	dcr->region_index = 6+1;
	dcr->vendor_id = 0xabcd;
	dcr_common_init(dcr);
	dcr->device_id = 0;
	dcr->revision_id = 1;
	dcr->serial_number = ~handle[2];
	dcr->serial_number = ~handle[2];
	dcr->code = NFIT_FIC_BYTEN;
	dcr->code = NFIT_FIC_BYTEN;
	dcr->windows = 0;
	dcr->windows = 0;
@@ -1079,9 +1075,7 @@ static void nfit_test0_setup(struct nfit_test *t)
	dcr->header.length = offsetof(struct acpi_nfit_control_region,
	dcr->header.length = offsetof(struct acpi_nfit_control_region,
			window_size);
			window_size);
	dcr->region_index = 7+1;
	dcr->region_index = 7+1;
	dcr->vendor_id = 0xabcd;
	dcr_common_init(dcr);
	dcr->device_id = 0;
	dcr->revision_id = 1;
	dcr->serial_number = ~handle[3];
	dcr->serial_number = ~handle[3];
	dcr->code = NFIT_FIC_BYTEN;
	dcr->code = NFIT_FIC_BYTEN;
	dcr->windows = 0;
	dcr->windows = 0;
@@ -1176,9 +1170,7 @@ static void nfit_test0_setup(struct nfit_test *t)
		dcr->header.type = ACPI_NFIT_TYPE_CONTROL_REGION;
		dcr->header.type = ACPI_NFIT_TYPE_CONTROL_REGION;
		dcr->header.length = sizeof(struct acpi_nfit_control_region);
		dcr->header.length = sizeof(struct acpi_nfit_control_region);
		dcr->region_index = 8+1;
		dcr->region_index = 8+1;
		dcr->vendor_id = 0xabcd;
		dcr_common_init(dcr);
		dcr->device_id = 0;
		dcr->revision_id = 1;
		dcr->serial_number = ~handle[4];
		dcr->serial_number = ~handle[4];
		dcr->code = NFIT_FIC_BLK;
		dcr->code = NFIT_FIC_BLK;
		dcr->windows = 1;
		dcr->windows = 1;
@@ -1195,9 +1187,7 @@ static void nfit_test0_setup(struct nfit_test *t)
		dcr->header.length = offsetof(struct acpi_nfit_control_region,
		dcr->header.length = offsetof(struct acpi_nfit_control_region,
				window_size);
				window_size);
		dcr->region_index = 9+1;
		dcr->region_index = 9+1;
		dcr->vendor_id = 0xabcd;
		dcr_common_init(dcr);
		dcr->device_id = 0;
		dcr->revision_id = 1;
		dcr->serial_number = ~handle[4];
		dcr->serial_number = ~handle[4];
		dcr->code = NFIT_FIC_BYTEN;
		dcr->code = NFIT_FIC_BYTEN;
		dcr->windows = 0;
		dcr->windows = 0;
@@ -1375,9 +1365,7 @@ static void nfit_test1_setup(struct nfit_test *t)
	dcr->header.length = offsetof(struct acpi_nfit_control_region,
	dcr->header.length = offsetof(struct acpi_nfit_control_region,
			window_size);
			window_size);
	dcr->region_index = 0+1;
	dcr->region_index = 0+1;
	dcr->vendor_id = 0xabcd;
	dcr_common_init(dcr);
	dcr->device_id = 0;
	dcr->revision_id = 1;
	dcr->serial_number = ~0;
	dcr->serial_number = ~0;
	dcr->code = NFIT_FIC_BYTE;
	dcr->code = NFIT_FIC_BYTE;
	dcr->windows = 0;
	dcr->windows = 0;