mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-16 09:54:35 +00:00
soc: add info to identify the am62p SoC family
Include the part number for TI's am62px family of SoCs so we can properly identify it during boot Reviewed-by: Igor Opaniuk <igor.opaniuk@foundries.io> Reviewed-by: Neha Malcom Francis <n-francis@ti.com> Signed-off-by: Bryan Brattlof <bb@ti.com>
This commit is contained in:
parent
20a0ce574d
commit
026c972fa3
2 changed files with 5 additions and 0 deletions
|
@ -43,6 +43,7 @@
|
|||
#define JTAG_ID_PARTNO_SHIFT 12
|
||||
#define JTAG_ID_PARTNO_MASK (0xffff << 12)
|
||||
#define JTAG_ID_PARTNO_AM62AX 0xbb8d
|
||||
#define JTAG_ID_PARTNO_AM62PX 0xbb9d
|
||||
#define JTAG_ID_PARTNO_AM62X 0xbb7e
|
||||
#define JTAG_ID_PARTNO_AM64X 0xbb38
|
||||
#define JTAG_ID_PARTNO_AM65X 0xbb5a
|
||||
|
@ -65,6 +66,7 @@ K3_SOC_ID(am64x, AM64X)
|
|||
K3_SOC_ID(j721s2, J721S2)
|
||||
K3_SOC_ID(am62x, AM62X)
|
||||
K3_SOC_ID(am62ax, AM62AX)
|
||||
K3_SOC_ID(am62px, AM62PX)
|
||||
|
||||
#define K3_SEC_MGR_SYS_STATUS 0x44234100
|
||||
#define SYS_STATUS_DEV_TYPE_SHIFT 0
|
||||
|
|
|
@ -48,6 +48,9 @@ static const char *get_family_string(u32 idreg)
|
|||
case JTAG_ID_PARTNO_J784S4:
|
||||
family = "J784S4";
|
||||
break;
|
||||
case JTAG_ID_PARTNO_AM62PX:
|
||||
family = "AM62PX";
|
||||
break;
|
||||
default:
|
||||
family = "Unknown Silicon";
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue