Ver código fonte

board: ti: dra71x-evm: Add epprom support

The dra71x-evm is a board based on TI's DRA718 processor targeting BOM-optimized
entry infotainment systems such as display audio and is a software compatible
derivative of the highly successful DRA74 and DRA72 processor families.
More information can be found here[1].

Add epprom detection for dra71-evm.

[1] http://www.ti.com/product/dra718

Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Lokesh Vutla 8 anos atrás
pai
commit
463dd22531
1 arquivos alterados com 5 adições e 0 exclusões
  1. 5 0
      board/ti/dra7xx/evm.c

+ 5 - 0
board/ti/dra7xx/evm.c

@@ -36,6 +36,7 @@
 
 
 #define board_is_dra74x_evm()		board_ti_is("5777xCPU")
 #define board_is_dra74x_evm()		board_ti_is("5777xCPU")
 #define board_is_dra72x_evm()		board_ti_is("DRA72x-T")
 #define board_is_dra72x_evm()		board_ti_is("DRA72x-T")
+#define board_is_dra71x_evm()		board_ti_is("DRA79x,D")
 #define board_is_dra74x_revh_or_later() (board_is_dra74x_evm() &&	\
 #define board_is_dra74x_revh_or_later() (board_is_dra74x_evm() &&	\
 				(strncmp("H", board_ti_get_rev(), 1) <= 0))
 				(strncmp("H", board_ti_get_rev(), 1) <= 0))
 #define board_is_dra72x_revc_or_later() (board_is_dra72x_evm() &&	\
 #define board_is_dra72x_revc_or_later() (board_is_dra72x_evm() &&	\
@@ -469,6 +470,8 @@ int board_late_init(void)
 	if (is_dra72x()) {
 	if (is_dra72x()) {
 		if (board_is_dra72x_revc_or_later())
 		if (board_is_dra72x_revc_or_later())
 			name = "dra72x-revc";
 			name = "dra72x-revc";
+		else if (board_is_dra71x_evm())
+			name = "dra71x";
 		else
 		else
 			name = "dra72x";
 			name = "dra72x";
 	} else {
 	} else {
@@ -516,6 +519,8 @@ void do_board_detect(void)
 		bname = "DRA74x EVM";
 		bname = "DRA74x EVM";
 	} else if (board_is_dra72x_evm()) {
 	} else if (board_is_dra72x_evm()) {
 		bname = "DRA72x EVM";
 		bname = "DRA72x EVM";
+	} else if (board_is_dra71x_evm()) {
+		bname = "DRA71x EVM";
 	} else {
 	} else {
 		/* If EEPROM is not populated */
 		/* If EEPROM is not populated */
 		if (is_dra72x())
 		if (is_dra72x())