qualcomm/ipq806x: report versions of RPM and DDR init components
DDR init blob version string can be found at a fixed location in memory once the blob is loaded. Maximum size of the string is 48 bytes. The RPM RW version is defined in a 32 bit version stored at yet another fixed address once RPM RW has started. BRANCH=storm BUG=chrome-os-partner:30623 TEST=ran this command on the booted system: localhost ~ # egrep '(DDR|RPM)' /sys/firmware/log Loaded DDR init blob version 99ce41d@-AAABANAZA DDR initialized Starting RPM Started RPM version 1.0.128 localhost ~ # Change-Id: If3c3c8368845b978605ccfda7e09c21ae2e5ab9a Signed-off-by: Patrick Georgi <pgeorgi@chromium.org> Original-Commit-Id: 328c9c57cf93110bc0fdd267134d72e386d70834 Original-Change-Id: If411f6f7bca53ea20390b7e851cb3d120681eade Original-Signed-off-by: Vadim Bendebury <vbendeb@chromium.org> Original-Reviewed-on: https://chromium-review.googlesource.com/256738 Original-Reviewed-by: Varadarajan Narayanan <varada@qti.qualcomm.com> Reviewed-on: http://review.coreboot.org/9860 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
This commit is contained in:
parent
116da27431
commit
b16a6c4f5b
|
@ -65,6 +65,9 @@ static void *load_ipq_blob(const char *file_name)
|
|||
|
||||
#ifdef __PRE_RAM__
|
||||
|
||||
#define DDR_VERSION() ((const char *)0x2a03f600)
|
||||
#define MAX_DDR_VERSION_SIZE 48
|
||||
|
||||
int initialize_dram(void)
|
||||
{
|
||||
void *cdt;
|
||||
|
@ -82,7 +85,12 @@ int initialize_dram(void)
|
|||
if (ddr_init_function(cdt) < 0)
|
||||
die("Fail to Initialize DDR\n");
|
||||
|
||||
printk(BIOS_INFO, "DDR initialized\n");
|
||||
/*
|
||||
* Once DDR initializer finished, its verison can be found at a fixed
|
||||
* address in SRAM.
|
||||
*/
|
||||
printk(BIOS_INFO, "DDR version %.*s initialized\n",
|
||||
MAX_DDR_VERSION_SIZE, DDR_VERSION());
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
@ -101,10 +109,14 @@ void start_tzbsp(void)
|
|||
tz_init_wrapper(0, 0, tzbsp);
|
||||
}
|
||||
|
||||
/* RPM version is encoded in a 32 bit word at the fixed address */
|
||||
#define RPM_VERSION() (*((u32 *)(0x00108008)))
|
||||
void start_rpm(void)
|
||||
{
|
||||
u32 load_addr;
|
||||
u32 ready_mask = 1 << 10;
|
||||
u32 rpm_version;
|
||||
|
||||
struct stopwatch sw;
|
||||
|
||||
if (read32(RPM_SIGNAL_COOKIE) == RPM_FW_MAGIC_NUM) {
|
||||
|
@ -134,5 +146,12 @@ void start_rpm(void)
|
|||
|
||||
/* Acknowledge RPM initialization */
|
||||
write32(RPM_INT_ACK, ready_mask);
|
||||
|
||||
/* Report RPM version, it is encoded in a 32 bit value. */
|
||||
rpm_version = RPM_VERSION();
|
||||
printk(BIOS_INFO, "Started RPM version %d.%d.%d\n",
|
||||
rpm_version >> 24,
|
||||
(rpm_version >> 16) & 0xff,
|
||||
rpm_version & 0xffff);
|
||||
}
|
||||
#endif /* !__PRE_RAM__ */
|
||||
|
|
Loading…
Reference in New Issue