Commit d087e0e26293a34752a6279da85f94a97084686c

Authored by vijay rai
Committed by York Sun
1 parent 47d3debe1a

powerpc/t104xrdb: Add Support of rcw for T1042RDB in u-boot

This patch adds support of rcw for T1042RDB, it makes following changes :
- Adds t1042_rcw.cfg file for serdes protocol 0x86 for T1042RDB
- Renames t1042_pi_rcw.cfg file from t1042_rcw.cfg and also updates
  comments for valid serdes protocol which is 0x06
- Also updates CONFIG_SYS_FSL_PBL_RCW for T1042RDB

Signed-off-by: Vijay Rai <vijay.rai@freescale.com>
Signed-off-by: Priyanka Jain <Priyanka.Jain@freescale.com>
Reviewed-by: York Sun <yorksun@freescale.com>

Showing 3 changed files with 14 additions and 4 deletions Side-by-side Diff

board/freescale/t104xrdb/t1042_pi_rcw.cfg
  1 +#PBL preamble and RCW header
  2 +aa55aa55 010e0100
  3 +# serdes protocol 0x06
  4 +0c18000e 0e000000 00000000 00000000
  5 +06000002 00400002 e8106000 01000000
  6 +00000000 00000000 00000000 00030810
  7 +00000000 01fe0a06 00000000 00000000
board/freescale/t104xrdb/t1042_rcw.cfg
1 1 #PBL preamble and RCW header
2 2 aa55aa55 010e0100
3   -# serdes protocol 0x66
  3 +# serdes protocol 0x86
4 4 0c18000e 0e000000 00000000 00000000
5   -06000002 00400002 e8106000 01000000
6   -00000000 00000000 00000000 00030810
7   -00000000 01fe0a06 00000000 00000000
  5 +86000002 80000002 ec027000 01000000
  6 +00000000 00000000 00000000 00032810
  7 +00000000 0342500f 00000000 00000000
include/configs/T104xRDB.h
... ... @@ -19,6 +19,9 @@
19 19 #define CONFIG_SYS_FSL_PBL_RCW $(SRCTREE)/board/freescale/t104xrdb/t1040_rcw.cfg
20 20 #endif
21 21 #ifdef CONFIG_T1042RDB_PI
  22 +#define CONFIG_SYS_FSL_PBL_RCW $(SRCTREE)/board/freescale/t104xrdb/t1042_pi_rcw.cfg
  23 +#endif
  24 +#ifdef CONFIG_T1042RDB
22 25 #define CONFIG_SYS_FSL_PBL_RCW $(SRCTREE)/board/freescale/t104xrdb/t1042_rcw.cfg
23 26 #endif
24 27