mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 10:39:08 +00:00
arm: dra76: Add support for ES1.0 detection
dra76 family is a high-performance, infotainment application device, based on OMAP architecture on a 28-nm technology. This contains most of the subsystems, peripherals that are available on dra74, dra72 family. This SoC mainly features Subsystems: - 2 x Cortex-A15 with max speed of 1.8GHz - 2 X DSP - 2 X Cortex-M4 IPU - ISS - CAL - DSS - VPE - VIP Connectivity peripherals: - 1 USB3.0 and 3 USB2.0 subsystems - 1 x SATA - 2 x PCI Express Gen2 - 3-port Gigabit ethernet switch - 2 x CAN - MCAN Adding CPU detection support for the dra76 ES1.0 soc and update prcm, control module, dplls data. Reviewed-by: Tom Rini <trini@konsulko.com> Signed-off-by: Praneeth Bajjuri <praneeth@ti.com> Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
This commit is contained in:
parent
0537e097c9
commit
0f9e6aee9d
4 changed files with 39 additions and 0 deletions
|
@ -722,6 +722,7 @@ static inline u8 is_omap54xx(void)
|
|||
|
||||
#define DRA7XX 0x07000000
|
||||
#define DRA72X 0x07200000
|
||||
#define DRA76X 0x07600000
|
||||
|
||||
static inline u8 is_dra7xx(void)
|
||||
{
|
||||
|
@ -734,6 +735,12 @@ static inline u8 is_dra72x(void)
|
|||
extern u32 *const omap_si_rev;
|
||||
return (*omap_si_rev & 0xFFF00000) == DRA72X;
|
||||
}
|
||||
|
||||
static inline u8 is_dra76x(void)
|
||||
{
|
||||
extern u32 *const omap_si_rev;
|
||||
return (*omap_si_rev & 0xFFF00000) == DRA76X;
|
||||
}
|
||||
#endif
|
||||
|
||||
/*
|
||||
|
@ -761,6 +768,7 @@ static inline u8 is_dra72x(void)
|
|||
#define OMAP5432_ES2_0 0x54320200
|
||||
|
||||
/* DRA7XX */
|
||||
#define DRA762_ES1_0 0x07620100
|
||||
#define DRA752_ES1_0 0x07520100
|
||||
#define DRA752_ES1_1 0x07520110
|
||||
#define DRA752_ES2_0 0x07520200
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue