mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH 1/2] i.MX habv3: sort hab status codes numerically
@ 2016-02-08 10:15 Marc Kleine-Budde
  2016-02-08 10:15 ` [PATCH 2/2] i.MX habv3: add some more status codes Marc Kleine-Budde
  0 siblings, 1 reply; 3+ messages in thread
From: Marc Kleine-Budde @ 2016-02-08 10:15 UTC (permalink / raw)
  To: barebox; +Cc: kernel

Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
---
 drivers/hab/habv3.c | 44 ++++++++++++++++++++++----------------------
 1 file changed, 22 insertions(+), 22 deletions(-)

diff --git a/drivers/hab/habv3.c b/drivers/hab/habv3.c
index 70f31a3c4d98..204b9095b393 100644
--- a/drivers/hab/habv3.c
+++ b/drivers/hab/habv3.c
@@ -20,35 +20,35 @@ struct hab_status {
 };
 
 static struct hab_status hab_status[] = {
-	{ 0x8d, "data specified is out of bounds" },
-	{ 0x55, "error during assert verification" },
-	{ 0x36, "hash verification failed" },
-	{ 0x33, "certificate parsing failed or the certificate contained an unsupported key" },
-	{ 0x35, "signature verification failed" },
-	{ 0x4B, "CSF command sequence contains unsupported command identifier" },
-	{ 0x4e, "absence of expected CSF header" },
-	{ 0x4d, "CSF length is unsupported" },
-	{ 0x2e, "CSF TYPE does not match processor TYPE" },
-	{ 0x2d, "CSF UID does not match either processor UID or generic UID" },
-	{ 0x3a, "CSF customer/product code does not match processor customer/product code" },
-	{ 0x87, "key indexis either unsupported, or an attempt is made to overwrite the SRK from a CSF command" },
 	{ 0x17, "SCC unexpectedly not in secure state" },
-	{ 0x1e, "secureRAM secret key invalid" },
-	{ 0x1d, "secureRAM initialization failure" },
 	{ 0x1b, "secureRAM self test failure" },
-	{ 0x2b, "secureRAM internal failure" },
+	{ 0x1d, "secureRAM initialization failure" },
+	{ 0x1e, "secureRAM secret key invalid" },
 	{ 0x27, "secureRAM secrect key unexpectedly in use" },
-	{ 0x8b, "an attempt is made to read a key from the list of subordinate public keys at a location "
-		"where no key is installed" },
-	{ 0x8e, "algorithm type is either invalid or ortherwise unsupported" },
-	{ 0x66, "write operation to register failed" },
+	{ 0x2b, "secureRAM internal failure" },
+	{ 0x2d, "CSF UID does not match either processor UID or generic UID" },
+	{ 0x2e, "CSF TYPE does not match processor TYPE" },
+	{ 0x33, "certificate parsing failed or the certificate contained an unsupported key" },
+	{ 0x35, "signature verification failed" },
+	{ 0x36, "hash verification failed" },
+	{ 0x3a, "CSF customer/product code does not match processor customer/product code" },
+	{ 0x4b, "CSF command sequence contains unsupported command identifier" },
+	{ 0x4d, "CSF length is unsupported" },
+	{ 0x4e, "absence of expected CSF header" },
+	{ 0x55, "error during assert verification" },
 	{ 0x63, "DCD invalid" },
-	{ 0x6f, "RAM application pointer is NULL or ERASED_FLASH" },
+	{ 0x66, "write operation to register failed" },
+	{ 0x67, "INT_BOOT fuse is blown but BOOT pins are set for external boot" },
 	{ 0x69, "CSF missing when HAB TYPE is not HAB-disabled" },
 	{ 0x6a, "NANDFC boot buffer load failed" },
 	{ 0x6c, "Exception has occured" },
-	{ 0x67, "INT_BOOT fuse is blown but BOOT pins are set for external boot" },
+	{ 0x6f, "RAM application pointer is NULL or ERASED_FLASH" },
+	{ 0x87, "key indexis either unsupported, or an attempt is made to overwrite the SRK from a CSF command" },
 	{ 0x88, "Successful download completion" },
+	{ 0x8b, "an attempt is made to read a key from the list of subordinate public keys at a location "
+	  "where no key is installed" },
+	{ 0x8d, "data specified is out of bounds" },
+	{ 0x8e, "algorithm type is either invalid or ortherwise unsupported" },
 };
 
 int imx_habv3_get_status(uint32_t status)
@@ -75,4 +75,4 @@ int imx_habv3_get_status(uint32_t status)
 int imx25_hab_get_status(void)
 {
 	return imx_habv3_get_status(readl(IOMEM(0x780018d4)));
-}
\ No newline at end of file
+}
-- 
2.7.0.rc3


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH 2/2] i.MX habv3: add some more status codes
  2016-02-08 10:15 [PATCH 1/2] i.MX habv3: sort hab status codes numerically Marc Kleine-Budde
@ 2016-02-08 10:15 ` Marc Kleine-Budde
  2016-02-09  8:17   ` Sascha Hauer
  0 siblings, 1 reply; 3+ messages in thread
From: Marc Kleine-Budde @ 2016-02-08 10:15 UTC (permalink / raw)
  To: barebox; +Cc: kernel

Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
---
 drivers/hab/habv3.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/drivers/hab/habv3.c b/drivers/hab/habv3.c
index 204b9095b393..82ae245f8a03 100644
--- a/drivers/hab/habv3.c
+++ b/drivers/hab/habv3.c
@@ -20,6 +20,7 @@ struct hab_status {
 };
 
 static struct hab_status hab_status[] = {
+	{ 0x12, "Download code can't be executed, please check the HAB type" },
 	{ 0x17, "SCC unexpectedly not in secure state" },
 	{ 0x1b, "secureRAM self test failure" },
 	{ 0x1d, "secureRAM initialization failure" },
@@ -31,11 +32,14 @@ static struct hab_status hab_status[] = {
 	{ 0x33, "certificate parsing failed or the certificate contained an unsupported key" },
 	{ 0x35, "signature verification failed" },
 	{ 0x36, "hash verification failed" },
+	{ 0x39, "Failure not matching any other description" },
 	{ 0x3a, "CSF customer/product code does not match processor customer/product code" },
+	{ 0x47, "installation or comparison of SRKs failed" },
 	{ 0x4b, "CSF command sequence contains unsupported command identifier" },
 	{ 0x4d, "CSF length is unsupported" },
 	{ 0x4e, "absence of expected CSF header" },
 	{ 0x55, "error during assert verification" },
+	{ 0x56, "Download code can't be executed, please check the HAB type" },
 	{ 0x63, "DCD invalid" },
 	{ 0x66, "write operation to register failed" },
 	{ 0x67, "INT_BOOT fuse is blown but BOOT pins are set for external boot" },
-- 
2.7.0.rc3


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH 2/2] i.MX habv3: add some more status codes
  2016-02-08 10:15 ` [PATCH 2/2] i.MX habv3: add some more status codes Marc Kleine-Budde
@ 2016-02-09  8:17   ` Sascha Hauer
  0 siblings, 0 replies; 3+ messages in thread
From: Sascha Hauer @ 2016-02-09  8:17 UTC (permalink / raw)
  To: Marc Kleine-Budde; +Cc: barebox, kernel

On Mon, Feb 08, 2016 at 11:15:24AM +0100, Marc Kleine-Budde wrote:
> Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
> ---
>  drivers/hab/habv3.c | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/drivers/hab/habv3.c b/drivers/hab/habv3.c
> index 204b9095b393..82ae245f8a03 100644
> --- a/drivers/hab/habv3.c
> +++ b/drivers/hab/habv3.c
> @@ -20,6 +20,7 @@ struct hab_status {

Applied, thanks

Sascha


-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-02-09  8:18 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-02-08 10:15 [PATCH 1/2] i.MX habv3: sort hab status codes numerically Marc Kleine-Budde
2016-02-08 10:15 ` [PATCH 2/2] i.MX habv3: add some more status codes Marc Kleine-Budde
2016-02-09  8:17   ` Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox