summaryrefslogtreecommitdiff
path: root/board/ti/omap5_uevm
diff options
context:
space:
mode:
authorPaul Kocialkowski <contact@paulk.fr>2015-08-27 19:37:11 +0200
committerTom Rini <trini@konsulko.com>2015-10-22 14:17:21 -0400
commit9fd5401659c34b9b07f5d729ad35611b002830ff (patch)
treeb51bdbfec1ce51d8c3c32e83633dd20ea5985b38 /board/ti/omap5_uevm
parent987a40d52ea617ee609fafcee5463274983d2827 (diff)
omap5: omap_die_id support
This introduces omap5 support for omap_die_id, which matches the common omap_die_id definition. It replaces board-specific code to grab the die id bits. Signed-off-by: Paul Kocialkowski <contact@paulk.fr> Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'board/ti/omap5_uevm')
-rw-r--r--board/ti/omap5_uevm/evm.c12
1 files changed, 3 insertions, 9 deletions
diff --git a/board/ti/omap5_uevm/evm.c b/board/ti/omap5_uevm/evm.c
index 659877c807..04840875d6 100644
--- a/board/ti/omap5_uevm/evm.c
+++ b/board/ti/omap5_uevm/evm.c
@@ -189,20 +189,14 @@ static void enable_host_clocks(void)
*/
int misc_init_r(void)
{
- int reg;
- u32 id[4];
+ unsigned int die_id[4] = { 0 };
#ifdef CONFIG_PALMAS_POWER
palmas_init_settings();
#endif
- reg = DIE_ID_REG_BASE + DIE_ID_REG_OFFSET;
-
- id[0] = readl(reg);
- id[1] = readl(reg + 0x8);
- id[2] = readl(reg + 0xC);
- id[3] = readl(reg + 0x10);
- usb_fake_mac_from_die_id(id);
+ omap_die_id(die_id);
+ usb_fake_mac_from_die_id(die_id);
return 0;
}