diff mbox

[U-Boot,v2,4/5] arm: omap3: Add board revision output to tao3530

Message ID 1386145657-27146-4-git-send-email-sr@denx.de
State Accepted
Delegated to: Tom Rini
Headers show

Commit Message

Stefan Roese Dec. 4, 2013, 8:27 a.m. UTC
Signed-off-by: Stefan Roese <sr@denx.de>
Cc: Tapani Utriainen <tapani@technexion.com>
Cc: Thorsten Eisbein <thorsten.eisbein@head-acoustics.de>
Cc: Tom Rini <trini@ti.com>
---
v2:
- Use puts instead of printf when possible

 board/technexion/tao3530/tao3530.c | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

Comments

Tom Rini Dec. 13, 2013, 12:48 p.m. UTC | #1
On Wed, Dec 04, 2013 at 09:27:36AM +0100, Stefan Roese wrote:

> Signed-off-by: Stefan Roese <sr@denx.de>
> Cc: Tapani Utriainen <tapani@technexion.com>
> Cc: Thorsten Eisbein <thorsten.eisbein@head-acoustics.de>
> Cc: Tom Rini <trini@ti.com>
> 
> ---
> v2:
> - Use puts instead of printf when possible
> 
>  board/technexion/tao3530/tao3530.c | 17 +++++++++++++++++
>  1 file changed, 17 insertions(+)

Applied to u-boot-ti/master, thanks!
diff mbox

Patch

diff --git a/board/technexion/tao3530/tao3530.c b/board/technexion/tao3530/tao3530.c
index 814537b..5041eaf 100644
--- a/board/technexion/tao3530/tao3530.c
+++ b/board/technexion/tao3530/tao3530.c
@@ -131,6 +131,23 @@  int misc_init_r(void)
 	writel(GPIO31 | GPIO30 | GPIO29 | GPIO28 | GPIO22 | GPIO21 |
 	       GPIO15 | GPIO14 | GPIO13 | GPIO12, &gpio5_base->setdataout);
 
+	switch (tao3530_revision()) {
+	case 0:
+		puts("TAO-3530 REV Reserve 1\n");
+		break;
+	case 1:
+		puts("TAO-3530 REV Reserve 2\n");
+		break;
+	case 2:
+		puts("TAO-3530 REV Cx\n");
+		break;
+	case 3:
+		puts("TAO-3530 REV Ax/Bx\n");
+		break;
+	default:
+		puts("Unknown board revision\n");
+	}
+
 	dieid_num_r();
 
 	return 0;