summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 2dbf7b1)
raw | patch | inline | side by side (parent: 2dbf7b1)
author | Vishal Mahaveer <vishalm@ti.com> | |
Tue, 4 Aug 2015 21:11:38 +0000 (16:11 -0500) | ||
committer | Praneeth Bajjuri <praneeth@ti.com> | |
Tue, 4 Aug 2015 21:12:48 +0000 (16:12 -0500) |
ES2.0 is a minor variant of ES1.1. ES2.0 is an incremental revision
with various fixes including the following:
- reset logic fixes
- few assymetric aging logic fixes
- MMC clock rate fixes
- Ethernet speed fixes
- edma fixes for mcasp
Signed-off-by: Vishal Mahaveer <vishalm@ti.com>
Signed-off-by: Nishanth Menon <nm@ti.com>
[rebase and pick to 3.14]
Signed-off-by: Praneeth Bajjuri <praneeth@ti.com>
Change-Id: Ib80ed2639797b5dce07a370f27b0fd529c550f37
with various fixes including the following:
- reset logic fixes
- few assymetric aging logic fixes
- MMC clock rate fixes
- Ethernet speed fixes
- edma fixes for mcasp
Signed-off-by: Vishal Mahaveer <vishalm@ti.com>
Signed-off-by: Nishanth Menon <nm@ti.com>
[rebase and pick to 3.14]
Signed-off-by: Praneeth Bajjuri <praneeth@ti.com>
Change-Id: Ib80ed2639797b5dce07a370f27b0fd529c550f37
arch/arm/mach-omap2/id.c | patch | blob | history | |
arch/arm/mach-omap2/soc.h | patch | blob | history |
index 2fc4912f7b75547fe555370d4a64d367a506774a..6e0876915a3fbf832ab6febcf8c04aad10a0d464 100644 (file)
--- a/arch/arm/mach-omap2/id.c
+++ b/arch/arm/mach-omap2/id.c
omap_revision = DRA752_REV_ES1_0;
break;
case 1:
- default:
omap_revision = DRA752_REV_ES1_1;
+ break;
+ case 2:
+ default:
+ omap_revision = DRA752_REV_ES2_0;
+ break;
}
break;
/* Unknown default to latest silicon rev as default*/
pr_warn("%s: unknown idcode=0x%08x (hawkeye=0x%08x,rev=0x%d)\n",
__func__, idcode, hawkeye, rev);
- omap_revision = DRA752_REV_ES1_1;
+ omap_revision = DRA752_REV_ES2_0;
}
sprintf(soc_name, "DRA%03x", omap_rev() >> 16);
index c1a3b44163116859845e7a990c6fb1274b0daa58..ac15ea9c94601c2b423df20d47dc46dacc7e7c3d 100644 (file)
#define DRA7XX_CLASS 0x07000000
#define DRA752_REV_ES1_0 (DRA7XX_CLASS | (0x52 << 16) | (0x10 << 8))
#define DRA752_REV_ES1_1 (DRA7XX_CLASS | (0x52 << 16) | (0x11 << 8))
+#define DRA752_REV_ES2_0 (DRA7XX_CLASS | (0x52 << 16) | (0x20 << 8))
+#define DRA722_REV_ES1_0 (DRA7XX_CLASS | (0x22 << 16) | (0x10 << 8))
#define DRA722_REV_ES1_0 (DRA7XX_CLASS | (0x22 << 16) | (0x10 << 8))
void omap2xxx_check_revision(void);