cortex_a: delete dbgbase hack vestiges
authorØyvind Harboe <oyvind.harboe@zylin.com>
Fri, 1 Apr 2011 19:00:44 +0000 (21:00 +0200)
committerØyvind Harboe <oyvind.harboe@zylin.com>
Fri, 1 Apr 2011 19:00:44 +0000 (21:00 +0200)
Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
src/target/cortex_a.c

index 033bdc1697af8af0f2741617101e3c27d7696a6b..55f4fe5febd8542122e7d986107f8a95bfa8a55d 100644 (file)
@@ -1888,21 +1888,6 @@ static int cortex_a8_examine_first(struct target *target)
                armv7a->debug_base = target->dbgbase;
        }
 
-#if 0
-       /*
-        * FIXME: assuming omap4430
-        *
-        * APB DBGBASE reads 0x80040000, but this points to an empty ROM table.
-        * 0x80000000 is cpu0 coresight region
-        */
-       if (target->coreid > 3) {
-               LOG_ERROR("cortex_a8 supports up to 4 cores");
-               return ERROR_INVALID_ARGUMENTS;
-       }
-       armv7a->debug_base = 0x80000000 |
-                       ((target->coreid & 0x3) << CORTEX_A8_PADDRDBG_CPU_SHIFT);
-#endif
-
        retval = mem_ap_sel_read_atomic_u32(swjdp, swjdp_debugap,
                        armv7a->debug_base + CPUDBG_CPUID, &cpuid);
        if (retval != ERROR_OK)