Re: [PATCH 4/4] OMAP3: PM: export chip IDCODE, Production ID and Die ID

2010-04-27 Thread Eduardo Valentin
Hello Tony, On Mon, Apr 26, 2010 at 08:28:12PM +0200, ext Tony Lindgren wrote: * Eduardo Valentin eduardo.valen...@nokia.com [100426 01:20]: From: Eduardo Valentin eduardo.valen...@nokia.com This patch exports the OMAP3 IDCODE, Production ID and Die ID to userspace via /proc/cpuinfo

Re: [PATCH 4/4] OMAP3: PM: export chip IDCODE, Production ID and Die ID

2010-04-27 Thread Tony Lindgren
* Eduardo Valentin eduardo.valen...@nokia.com [100427 03:08]: Hello Tony, On Mon, Apr 26, 2010 at 08:28:12PM +0200, ext Tony Lindgren wrote: * Eduardo Valentin eduardo.valen...@nokia.com [100426 01:20]: + + /* Append OMAP3 IDCODE, Production ID and Die ID to system_soc_info */ + sz

[PATCH 4/4] OMAP3: PM: export chip IDCODE, Production ID and Die ID

2010-04-26 Thread Eduardo Valentin
From: Eduardo Valentin eduardo.valen...@nokia.com This patch exports the OMAP3 IDCODE, Production ID and Die ID to userspace via /proc/cpuinfo using the system_soc_info. This can be used to track down silicon specific issues. The info is exported via /proc/cpuinfo because then it can be possible

RE: [PATCH 4/4] OMAP3: PM: export chip IDCODE, Production ID and Die ID

2010-04-26 Thread Shilimkar, Santosh
Subject: [PATCH 4/4] OMAP3: PM: export chip IDCODE, Production ID and Die ID From: Eduardo Valentin eduardo.valen...@nokia.com This patch exports the OMAP3 IDCODE, Production ID and Die ID to userspace via /proc/cpuinfo using the system_soc_info. This can be used to track down silicon

RE: [PATCH 4/4] OMAP3: PM: export chip IDCODE, Production ID and Die ID

2010-04-26 Thread Shilimkar, Santosh
+ /* Append OMAP3 IDCODE, Production ID and Die ID to system_soc_info */ + sz = strlen(system_soc_info); + snprintf(system_soc_info + sz, SYSTEM_SOC_INFO_SIZE - sz, + \n\tIDCODE\t: %08x\n\tPr. ID\t: %08x %08x %08x %08x\n + \tDie ID\t: %08x %08x

Re: [PATCH 4/4] OMAP3: PM: export chip IDCODE, Production ID and Die ID

2010-04-26 Thread Tony Lindgren
* Eduardo Valentin eduardo.valen...@nokia.com [100426 01:20]: From: Eduardo Valentin eduardo.valen...@nokia.com This patch exports the OMAP3 IDCODE, Production ID and Die ID to userspace via /proc/cpuinfo using the system_soc_info. This can be used to track down silicon specific issues.