diff mbox

[4/4] acpi: mcfg: split into two distinct tests

Message ID 1350762841-5702-5-git-send-email-colin.king@canonical.com
State Accepted
Headers show

Commit Message

Colin Ian King Oct. 20, 2012, 7:54 p.m. UTC
From: Colin Ian King <colin.king@canonical.com>

Currently the mcfg tests does quite a bit of checking for one
test, so lets instead break it into two distinct tests; the first
does general MCFG table sanity checking, the second checks it
against the PCI space.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 src/acpi/mcfg/mcfg.c |   39 ++++++++++++++++++++++++++++++++-------
 1 file changed, 32 insertions(+), 7 deletions(-)

Comments

Alex Hung Oct. 25, 2012, 3:07 a.m. UTC | #1
On 10/21/2012 03:54 AM, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
>
> Currently the mcfg tests does quite a bit of checking for one
> test, so lets instead break it into two distinct tests; the first
> does general MCFG table sanity checking, the second checks it
> against the PCI space.
>
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
>   src/acpi/mcfg/mcfg.c |   39 ++++++++++++++++++++++++++++++++-------
>   1 file changed, 32 insertions(+), 7 deletions(-)
>
> diff --git a/src/acpi/mcfg/mcfg.c b/src/acpi/mcfg/mcfg.c
> index 1b96b26..9dfd9fd 100644
> --- a/src/acpi/mcfg/mcfg.c
> +++ b/src/acpi/mcfg/mcfg.c
> @@ -120,17 +120,11 @@ static int mcfg_deinit(fwts_framework *fw)
>   static int mcfg_test1(fwts_framework *fw)
>   {
>   	int nr, i;
> -	uint8_t *mapped_table_page;
>   	fwts_acpi_table_mcfg *mcfg = (fwts_acpi_table_mcfg*)mcfg_table->data;
>   	fwts_acpi_mcfg_configuration *config;
>   	bool failed = false;
>   	ssize_t mcfg_size;
>   	const char *memory_map_name;
> -	int page_size;
> -
> -	page_size = sysconf(_SC_PAGESIZE);
> -	if (page_size == -1)
> -		page_size = 4096;
>
>   	memory_map_name = fwts_memory_map_name(fw->firmware_type);
>
> @@ -231,9 +225,39 @@ static int mcfg_test1(fwts_framework *fw)
>   	if (!failed)
>   		fwts_passed(fw, "MCFG mmio config space is reserved in memory map table.");
>
> -	/* Sanity check on first config */
> +
> +	return FWTS_OK;
> +}
> +
> +#define SINGLE_CONFIG_TABLE_SIZE \
> +	(sizeof(fwts_acpi_table_mcfg) + sizeof(fwts_acpi_mcfg_configuration))
> +
> +static int mcfg_test2(fwts_framework *fw)
> +{
> +	fwts_acpi_table_mcfg *mcfg = (fwts_acpi_table_mcfg *)mcfg_table->data;
> +	fwts_acpi_mcfg_configuration *config;
> +	uint8_t *mapped_table_page;
> +	size_t page_size;
> +
> +	page_size = fwts_page_size();
> +
> +	if (mcfg == NULL) {
> +		fwts_failed(fw, LOG_LEVEL_HIGH, "MCFGInvalidTable",
> +			"Invalid MCFG ACPI table");
> +		fwts_tag_failed(fw, FWTS_TAG_ACPI_INVALID_TABLE);
> +		return FWTS_ERROR;
> +	}
> +
> +	/* Need at least one config entry */
> +	if (mcfg_table->length < SINGLE_CONFIG_TABLE_SIZE) {
> +		fwts_failed(fw, LOG_LEVEL_MEDIUM, "MCFGNoEntries",
> +			"No MCFG ACPI table entries");
> +		return FWTS_ERROR;
> +	}
> +
>   	config = &mcfg->configuration[0];
>
> +	/* Sanity check on first config */
>   	if ((mapped_table_page = fwts_mmap(config->base_address, page_size)) == FWTS_MAP_FAILED) {
>   		fwts_log_error(fw, "Cannot mmap table at 0x%" PRIx64 ".", config->base_address);
>   		return FWTS_ERROR;
> @@ -246,6 +270,7 @@ static int mcfg_test1(fwts_framework *fw)
>
>   static fwts_framework_minor_test mcfg_tests[] = {
>   	{ mcfg_test1, "Validate MCFG table." },
> +	{ mcfg_test2, "Validate MCFG PCI config space." },
>   	{ NULL, NULL }
>   };
>
>

Acked-by: Alex Hung <alex.hung@canonical.com>
Keng-Yu Lin Oct. 25, 2012, 7:59 a.m. UTC | #2
On Sun, Oct 21, 2012 at 3:54 AM, Colin King <colin.king@canonical.com> wrote:
> From: Colin Ian King <colin.king@canonical.com>
>
> Currently the mcfg tests does quite a bit of checking for one
> test, so lets instead break it into two distinct tests; the first
> does general MCFG table sanity checking, the second checks it
> against the PCI space.
>
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
>  src/acpi/mcfg/mcfg.c |   39 ++++++++++++++++++++++++++++++++-------
>  1 file changed, 32 insertions(+), 7 deletions(-)
>
> diff --git a/src/acpi/mcfg/mcfg.c b/src/acpi/mcfg/mcfg.c
> index 1b96b26..9dfd9fd 100644
> --- a/src/acpi/mcfg/mcfg.c
> +++ b/src/acpi/mcfg/mcfg.c
> @@ -120,17 +120,11 @@ static int mcfg_deinit(fwts_framework *fw)
>  static int mcfg_test1(fwts_framework *fw)
>  {
>         int nr, i;
> -       uint8_t *mapped_table_page;
>         fwts_acpi_table_mcfg *mcfg = (fwts_acpi_table_mcfg*)mcfg_table->data;
>         fwts_acpi_mcfg_configuration *config;
>         bool failed = false;
>         ssize_t mcfg_size;
>         const char *memory_map_name;
> -       int page_size;
> -
> -       page_size = sysconf(_SC_PAGESIZE);
> -       if (page_size == -1)
> -               page_size = 4096;
>
>         memory_map_name = fwts_memory_map_name(fw->firmware_type);
>
> @@ -231,9 +225,39 @@ static int mcfg_test1(fwts_framework *fw)
>         if (!failed)
>                 fwts_passed(fw, "MCFG mmio config space is reserved in memory map table.");
>
> -       /* Sanity check on first config */
> +
> +       return FWTS_OK;
> +}
> +
> +#define SINGLE_CONFIG_TABLE_SIZE \
> +       (sizeof(fwts_acpi_table_mcfg) + sizeof(fwts_acpi_mcfg_configuration))
> +
> +static int mcfg_test2(fwts_framework *fw)
> +{
> +       fwts_acpi_table_mcfg *mcfg = (fwts_acpi_table_mcfg *)mcfg_table->data;
> +       fwts_acpi_mcfg_configuration *config;
> +       uint8_t *mapped_table_page;
> +       size_t page_size;
> +
> +       page_size = fwts_page_size();
> +
> +       if (mcfg == NULL) {
> +               fwts_failed(fw, LOG_LEVEL_HIGH, "MCFGInvalidTable",
> +                       "Invalid MCFG ACPI table");
> +               fwts_tag_failed(fw, FWTS_TAG_ACPI_INVALID_TABLE);
> +               return FWTS_ERROR;
> +       }
> +
> +       /* Need at least one config entry */
> +       if (mcfg_table->length < SINGLE_CONFIG_TABLE_SIZE) {
> +               fwts_failed(fw, LOG_LEVEL_MEDIUM, "MCFGNoEntries",
> +                       "No MCFG ACPI table entries");
> +               return FWTS_ERROR;
> +       }
> +
>         config = &mcfg->configuration[0];
>
> +       /* Sanity check on first config */
>         if ((mapped_table_page = fwts_mmap(config->base_address, page_size)) == FWTS_MAP_FAILED) {
>                 fwts_log_error(fw, "Cannot mmap table at 0x%" PRIx64 ".", config->base_address);
>                 return FWTS_ERROR;
> @@ -246,6 +270,7 @@ static int mcfg_test1(fwts_framework *fw)
>
>  static fwts_framework_minor_test mcfg_tests[] = {
>         { mcfg_test1, "Validate MCFG table." },
> +       { mcfg_test2, "Validate MCFG PCI config space." },
>         { NULL, NULL }
>  };
>
> --
> 1.7.10.4
>
Acked-by: Keng-Yu Lin <kengyu@canonical.com>
diff mbox

Patch

diff --git a/src/acpi/mcfg/mcfg.c b/src/acpi/mcfg/mcfg.c
index 1b96b26..9dfd9fd 100644
--- a/src/acpi/mcfg/mcfg.c
+++ b/src/acpi/mcfg/mcfg.c
@@ -120,17 +120,11 @@  static int mcfg_deinit(fwts_framework *fw)
 static int mcfg_test1(fwts_framework *fw)
 {
 	int nr, i;
-	uint8_t *mapped_table_page;
 	fwts_acpi_table_mcfg *mcfg = (fwts_acpi_table_mcfg*)mcfg_table->data;
 	fwts_acpi_mcfg_configuration *config;
 	bool failed = false;
 	ssize_t mcfg_size;
 	const char *memory_map_name;
-	int page_size;
-
-	page_size = sysconf(_SC_PAGESIZE);
-	if (page_size == -1)
-		page_size = 4096;
 
 	memory_map_name = fwts_memory_map_name(fw->firmware_type);
 
@@ -231,9 +225,39 @@  static int mcfg_test1(fwts_framework *fw)
 	if (!failed)
 		fwts_passed(fw, "MCFG mmio config space is reserved in memory map table.");
 
-	/* Sanity check on first config */
+
+	return FWTS_OK;
+}
+
+#define SINGLE_CONFIG_TABLE_SIZE \
+	(sizeof(fwts_acpi_table_mcfg) + sizeof(fwts_acpi_mcfg_configuration))
+
+static int mcfg_test2(fwts_framework *fw)
+{
+	fwts_acpi_table_mcfg *mcfg = (fwts_acpi_table_mcfg *)mcfg_table->data;
+	fwts_acpi_mcfg_configuration *config;
+	uint8_t *mapped_table_page;
+	size_t page_size;
+
+	page_size = fwts_page_size();
+
+	if (mcfg == NULL) {
+		fwts_failed(fw, LOG_LEVEL_HIGH, "MCFGInvalidTable",
+			"Invalid MCFG ACPI table");
+		fwts_tag_failed(fw, FWTS_TAG_ACPI_INVALID_TABLE);
+		return FWTS_ERROR;
+	}
+
+	/* Need at least one config entry */
+	if (mcfg_table->length < SINGLE_CONFIG_TABLE_SIZE) {
+		fwts_failed(fw, LOG_LEVEL_MEDIUM, "MCFGNoEntries",
+			"No MCFG ACPI table entries");
+		return FWTS_ERROR;
+	}
+
 	config = &mcfg->configuration[0];
 
+	/* Sanity check on first config */
 	if ((mapped_table_page = fwts_mmap(config->base_address, page_size)) == FWTS_MAP_FAILED) {
 		fwts_log_error(fw, "Cannot mmap table at 0x%" PRIx64 ".", config->base_address);
 		return FWTS_ERROR;
@@ -246,6 +270,7 @@  static int mcfg_test1(fwts_framework *fw)
 
 static fwts_framework_minor_test mcfg_tests[] = {
 	{ mcfg_test1, "Validate MCFG table." },
+	{ mcfg_test2, "Validate MCFG PCI config space." },
 	{ NULL, NULL }
 };