351 lines
8.8 KiB
C
351 lines
8.8 KiB
C
/*
|
|
* This file is part of the Black Magic Debug project.
|
|
*
|
|
* Copyright (C) 2015 Black Sphere Technologies Ltd.
|
|
* Written by Gareth McMullin <gareth@blacksphere.co.nz>
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/* This file implements the transport generic functions of the
|
|
* ARM Debug Interface v5 Architecure Specification, ARM doc IHI0031A.
|
|
*/
|
|
#include "general.h"
|
|
#include "jtag_scan.h"
|
|
#include "gdb_packet.h"
|
|
#include "adiv5.h"
|
|
#include "cortexm.h"
|
|
|
|
#ifndef DO_RESET_SEQ
|
|
#define DO_RESET_SEQ 0
|
|
#endif
|
|
|
|
/* ROM table CIDR values */
|
|
#define CIDR_ROM_TABLE 0xb105100d
|
|
#define CIDR_GENERIC_IP 0xb105e00d
|
|
#define CIDR_DEBUG 0xb105900d
|
|
|
|
#define PIDR_REV_MASK 0x0FFF00000ULL
|
|
#define PIDR_ARMv7M 0x4000BB000ULL
|
|
#define PIDR_ARMv7MF 0x4000BB00CULL
|
|
#define PIDR_ARMv7A 0x4000BBC09ULL
|
|
|
|
extern bool cortexa_probe(ADIv5_AP_t *apb, uint32_t debug_base);
|
|
|
|
void adiv5_dp_ref(ADIv5_DP_t *dp)
|
|
{
|
|
dp->refcnt++;
|
|
}
|
|
|
|
void adiv5_ap_ref(ADIv5_AP_t *ap)
|
|
{
|
|
ap->refcnt++;
|
|
}
|
|
|
|
void adiv5_dp_unref(ADIv5_DP_t *dp)
|
|
{
|
|
if (--(dp->refcnt) == 0)
|
|
free(dp);
|
|
}
|
|
|
|
void adiv5_ap_unref(ADIv5_AP_t *ap)
|
|
{
|
|
if (--(ap->refcnt) == 0) {
|
|
adiv5_dp_unref(ap->dp);
|
|
free(ap);
|
|
}
|
|
}
|
|
|
|
void adiv5_dp_write(ADIv5_DP_t *dp, uint16_t addr, uint32_t value)
|
|
{
|
|
dp->low_access(dp, ADIV5_LOW_WRITE, addr, value);
|
|
}
|
|
|
|
static uint32_t adiv5_mem_read32(ADIv5_AP_t *ap, uint32_t addr)
|
|
{
|
|
uint32_t ret;
|
|
adiv5_mem_read(ap, &ret, addr, sizeof(ret));
|
|
return ret;
|
|
}
|
|
|
|
static void adiv5_component_probe(ADIv5_AP_t *ap, uint32_t addr)
|
|
{
|
|
addr &= ~3;
|
|
uint64_t pidr = 0;
|
|
uint32_t cidr = 0;
|
|
for (int i = 0; i < 4; i++) {
|
|
uint32_t x = adiv5_mem_read32(ap, addr + 0xfe0 + 4*i);
|
|
pidr |= (x & 0xff) << (i * 8);
|
|
}
|
|
pidr |= (uint64_t)adiv5_mem_read32(ap, addr + 0xfd0) << 32;
|
|
for (int i = 0; i < 4; i++) {
|
|
uint32_t x = adiv5_mem_read32(ap, addr + 0xff0 + 4*i);
|
|
cidr |= ((uint64_t)(x & 0xff)) << (i * 8);
|
|
}
|
|
|
|
switch (cidr) {
|
|
case CIDR_ROM_TABLE: /* This is a ROM table, probe recursively */
|
|
for (int i = 0; i < 256; i++) {
|
|
uint32_t entry = adiv5_mem_read32(ap, addr + i*4);
|
|
if (entry == 0)
|
|
break;
|
|
|
|
if ((entry & 1) == 0)
|
|
continue;
|
|
|
|
adiv5_component_probe(ap, addr + (entry & ~0xfff));
|
|
}
|
|
break;
|
|
case CIDR_GENERIC_IP:
|
|
switch (pidr & ~PIDR_REV_MASK) {
|
|
case PIDR_ARMv7MF:
|
|
case PIDR_ARMv7M:
|
|
cortexm_probe(ap);
|
|
break;
|
|
}
|
|
break;
|
|
case CIDR_DEBUG:
|
|
switch (pidr & ~PIDR_REV_MASK) {
|
|
case PIDR_ARMv7A:
|
|
cortexa_probe(ap, addr);
|
|
break;
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
|
|
ADIv5_AP_t *adiv5_new_ap(ADIv5_DP_t *dp, uint8_t apsel)
|
|
{
|
|
ADIv5_AP_t *ap, tmpap;
|
|
|
|
/* Assume valid and try to read IDR */
|
|
memset(&tmpap, 0, sizeof(tmpap));
|
|
tmpap.dp = dp;
|
|
tmpap.apsel = apsel;
|
|
tmpap.idr = adiv5_ap_read(&tmpap, ADIV5_AP_IDR);
|
|
|
|
if(!tmpap.idr) /* IDR Invalid - Should we not continue here? */
|
|
return NULL;
|
|
|
|
/* Check for ARM Mem-AP */
|
|
uint16_t mfg = (tmpap.idr >> 17) & 0x3ff;
|
|
uint8_t cls = (tmpap.idr >> 13) & 0xf;
|
|
uint8_t type = tmpap.idr & 0xf;
|
|
if (mfg != 0x23B) /* Ditch if not ARM */
|
|
return NULL;
|
|
if ((cls != 8) || (type == 0)) /* Ditch if not Mem-AP */
|
|
return NULL;
|
|
|
|
/* It's valid to so create a heap copy */
|
|
ap = malloc(sizeof(*ap));
|
|
memcpy(ap, &tmpap, sizeof(*ap));
|
|
adiv5_dp_ref(dp);
|
|
|
|
ap->cfg = adiv5_ap_read(ap, ADIV5_AP_CFG);
|
|
ap->base = adiv5_ap_read(ap, ADIV5_AP_BASE);
|
|
ap->csw = adiv5_ap_read(ap, ADIV5_AP_CSW) &
|
|
~(ADIV5_AP_CSW_SIZE_MASK | ADIV5_AP_CSW_ADDRINC_MASK);
|
|
|
|
DEBUG("%3d: IDR=%08X CFG=%08X BASE=%08X CSW=%08X\n",
|
|
apsel, ap->idr, ap->cfg, ap->base, ap->csw);
|
|
|
|
return ap;
|
|
}
|
|
|
|
|
|
void adiv5_dp_init(ADIv5_DP_t *dp)
|
|
{
|
|
uint32_t ctrlstat;
|
|
|
|
adiv5_dp_ref(dp);
|
|
|
|
ctrlstat = adiv5_dp_read(dp, ADIV5_DP_CTRLSTAT);
|
|
|
|
/* Write request for system and debug power up */
|
|
adiv5_dp_write(dp, ADIV5_DP_CTRLSTAT,
|
|
ctrlstat |= ADIV5_DP_CTRLSTAT_CSYSPWRUPREQ |
|
|
ADIV5_DP_CTRLSTAT_CDBGPWRUPREQ);
|
|
/* Wait for acknowledge */
|
|
while(((ctrlstat = adiv5_dp_read(dp, ADIV5_DP_CTRLSTAT)) &
|
|
(ADIV5_DP_CTRLSTAT_CSYSPWRUPACK | ADIV5_DP_CTRLSTAT_CDBGPWRUPACK)) !=
|
|
(ADIV5_DP_CTRLSTAT_CSYSPWRUPACK | ADIV5_DP_CTRLSTAT_CDBGPWRUPACK));
|
|
|
|
if(DO_RESET_SEQ) {
|
|
/* This AP reset logic is described in ADIv5, but fails to work
|
|
* correctly on STM32. CDBGRSTACK is never asserted, and we
|
|
* just wait forever.
|
|
*/
|
|
|
|
/* Write request for debug reset */
|
|
adiv5_dp_write(dp, ADIV5_DP_CTRLSTAT,
|
|
ctrlstat |= ADIV5_DP_CTRLSTAT_CDBGRSTREQ);
|
|
/* Wait for acknowledge */
|
|
while(!((ctrlstat = adiv5_dp_read(dp, ADIV5_DP_CTRLSTAT)) &
|
|
ADIV5_DP_CTRLSTAT_CDBGRSTACK));
|
|
|
|
/* Write request for debug reset release */
|
|
adiv5_dp_write(dp, ADIV5_DP_CTRLSTAT,
|
|
ctrlstat &= ~ADIV5_DP_CTRLSTAT_CDBGRSTREQ);
|
|
/* Wait for acknowledge */
|
|
while(adiv5_dp_read(dp, ADIV5_DP_CTRLSTAT) &
|
|
ADIV5_DP_CTRLSTAT_CDBGRSTACK);
|
|
}
|
|
|
|
/* Probe for APs on this DP */
|
|
for(int i = 0; i < 256; i++) {
|
|
ADIv5_AP_t *ap = adiv5_new_ap(dp, i);
|
|
if (ap == NULL)
|
|
continue;
|
|
|
|
if (ap->base == 0xffffffff) {
|
|
/* No debug entries... useless AP */
|
|
adiv5_ap_unref(ap);
|
|
continue;
|
|
}
|
|
|
|
/* Should probe further here to make sure it's a valid target.
|
|
* AP should be unref'd if not valid.
|
|
*/
|
|
|
|
/* The rest sould only be added after checking ROM table */
|
|
adiv5_component_probe(ap, ap->base);
|
|
}
|
|
adiv5_dp_unref(dp);
|
|
}
|
|
|
|
enum align {
|
|
ALIGN_BYTE = 0,
|
|
ALIGN_HALFWORD = 1,
|
|
ALIGN_WORD = 2
|
|
};
|
|
#define ALIGNOF(x) (((x) & 3) == 0 ? ALIGN_WORD : \
|
|
(((x) & 1) == 0 ? ALIGN_HALFWORD : ALIGN_BYTE))
|
|
|
|
/* Program the CSW and TAR for sequencial access at a given width */
|
|
static void ap_mem_access_setup(ADIv5_AP_t *ap, uint32_t addr, enum align align)
|
|
{
|
|
uint32_t csw = ap->csw | ADIV5_AP_CSW_ADDRINC_SINGLE;
|
|
|
|
switch (align) {
|
|
case ALIGN_BYTE:
|
|
csw |= ADIV5_AP_CSW_SIZE_BYTE;
|
|
break;
|
|
case ALIGN_HALFWORD:
|
|
csw |= ADIV5_AP_CSW_SIZE_HALFWORD;
|
|
break;
|
|
case ALIGN_WORD:
|
|
csw |= ADIV5_AP_CSW_SIZE_WORD;
|
|
break;
|
|
}
|
|
adiv5_ap_write(ap, ADIV5_AP_CSW, csw);
|
|
adiv5_dp_low_access(ap->dp, ADIV5_LOW_WRITE, ADIV5_AP_TAR, addr);
|
|
}
|
|
|
|
/* Extract read data from data lane based on align and src address */
|
|
static void * extract(void *dest, uint32_t src, uint32_t val, enum align align)
|
|
{
|
|
switch (align) {
|
|
case ALIGN_BYTE:
|
|
*(uint8_t *)dest = (val >> ((src & 0x3) << 3) & 0xFF);
|
|
break;
|
|
case ALIGN_HALFWORD:
|
|
*(uint16_t *)dest = (val >> ((src & 0x2) << 3) & 0xFFFF);
|
|
break;
|
|
case ALIGN_WORD:
|
|
*(uint32_t *)dest = val;
|
|
break;
|
|
}
|
|
return (uint8_t *)dest + (1 << align);
|
|
}
|
|
|
|
void
|
|
adiv5_mem_read(ADIv5_AP_t *ap, void *dest, uint32_t src, size_t len)
|
|
{
|
|
uint32_t tmp;
|
|
uint32_t osrc = src;
|
|
enum align align = MIN(ALIGNOF(src), ALIGNOF(len));
|
|
|
|
len >>= align;
|
|
ap_mem_access_setup(ap, src, align);
|
|
adiv5_dp_low_access(ap->dp, ADIV5_LOW_READ, ADIV5_AP_DRW, 0);
|
|
while (--len) {
|
|
tmp = adiv5_dp_low_access(ap->dp, ADIV5_LOW_READ, ADIV5_AP_DRW, 0);
|
|
dest = extract(dest, src, tmp, align);
|
|
|
|
src += (1 << align);
|
|
/* Check for 10 bit address overflow */
|
|
if ((src ^ osrc) & 0xfffffc00) {
|
|
osrc = src;
|
|
adiv5_dp_low_access(ap->dp,
|
|
ADIV5_LOW_WRITE, ADIV5_AP_TAR, src);
|
|
adiv5_dp_low_access(ap->dp,
|
|
ADIV5_LOW_READ, ADIV5_AP_DRW, 0);
|
|
}
|
|
}
|
|
tmp = adiv5_dp_low_access(ap->dp, ADIV5_LOW_READ, ADIV5_DP_RDBUFF, 0);
|
|
extract(dest, src, tmp, align);
|
|
}
|
|
|
|
void
|
|
adiv5_mem_write(ADIv5_AP_t *ap, uint32_t dest, const void *src, size_t len)
|
|
{
|
|
uint32_t odest = dest;
|
|
enum align align = MIN(ALIGNOF(dest), ALIGNOF(len));
|
|
|
|
len >>= align;
|
|
ap_mem_access_setup(ap, dest, align);
|
|
while (len--) {
|
|
uint32_t tmp = 0;
|
|
/* Pack data into correct data lane */
|
|
switch (align) {
|
|
case ALIGN_BYTE:
|
|
tmp = ((uint32_t)*(uint8_t *)src) << ((dest & 3) << 3);
|
|
break;
|
|
case ALIGN_HALFWORD:
|
|
tmp = ((uint32_t)*(uint16_t *)src) << ((dest & 2) << 3);
|
|
break;
|
|
case ALIGN_WORD:
|
|
tmp = *(uint32_t *)src;
|
|
break;
|
|
}
|
|
src = (uint8_t *)src + (1 << align);
|
|
dest += (1 << align);
|
|
adiv5_dp_low_access(ap->dp, ADIV5_LOW_WRITE, ADIV5_AP_DRW, tmp);
|
|
|
|
/* Check for 10 bit address overflow */
|
|
if ((dest ^ odest) & 0xfffffc00) {
|
|
odest = dest;
|
|
adiv5_dp_low_access(ap->dp,
|
|
ADIV5_LOW_WRITE, ADIV5_AP_TAR, dest);
|
|
}
|
|
}
|
|
}
|
|
|
|
void adiv5_ap_write(ADIv5_AP_t *ap, uint16_t addr, uint32_t value)
|
|
{
|
|
adiv5_dp_write(ap->dp, ADIV5_DP_SELECT,
|
|
((uint32_t)ap->apsel << 24)|(addr & 0xF0));
|
|
adiv5_dp_write(ap->dp, addr, value);
|
|
}
|
|
|
|
uint32_t adiv5_ap_read(ADIv5_AP_t *ap, uint16_t addr)
|
|
{
|
|
uint32_t ret;
|
|
adiv5_dp_write(ap->dp, ADIV5_DP_SELECT,
|
|
((uint32_t)ap->apsel << 24)|(addr & 0xF0));
|
|
ret = adiv5_dp_read(ap->dp, addr);
|
|
return ret;
|
|
}
|
|
|