#include <sys/param.h>
#include <sys/systm.h>
#include <sys/bus.h>
#include <sys/rman.h>
#include <sys/kernel.h>
#include <sys/module.h>
#include <machine/bus.h>
#include <arm64/coresight/coresight.h>
#include "coresight_if.h"
extern struct coresight_device_list cs_devs;
static struct coresight_device *
coresight_next_device(struct coresight_device *cs_dev,
struct coresight_event *event)
{
struct coresight_device *out;
struct endpoint *out_endp;
struct endpoint *endp;
TAILQ_FOREACH(endp, &cs_dev->pdata->endpoints, link) {
if (endp->input != 0)
continue;
out = coresight_get_output_device(endp, &out_endp);
if (out != NULL) {
if (LIST_EMPTY(&event->endplist)) {
endp->cs_dev = cs_dev;
LIST_INSERT_HEAD(&event->endplist, endp,
endplink);
}
if (bootverbose)
printf("Adding device %s to the chain\n",
device_get_nameunit(out->dev));
out_endp->cs_dev = out;
LIST_INSERT_HEAD(&event->endplist, out_endp, endplink);
return (out);
}
}
return (NULL);
}
static int
coresight_build_list(struct coresight_device *cs_dev,
struct coresight_event *event)
{
struct coresight_device *out;
out = cs_dev;
while (out != NULL)
out = coresight_next_device(out, event);
return (0);
}
int
coresight_init_event(int cpu, struct coresight_event *event)
{
struct coresight_device *cs_dev;
struct endpoint *endp;
TAILQ_FOREACH(cs_dev, &cs_devs, link) {
if (cs_dev->dev_type == event->src &&
cs_dev->pdata->cpu == cpu) {
LIST_INIT(&event->endplist);
coresight_build_list(cs_dev, event);
break;
}
}
TAILQ_FOREACH(cs_dev, &cs_devs, link) {
if (cs_dev->dev_type == CORESIGHT_CPU_DEBUG &&
cs_dev->pdata->cpu == cpu)
CORESIGHT_INIT(cs_dev->dev);
}
LIST_FOREACH(endp, &event->endplist, endplink) {
cs_dev = endp->cs_dev;
CORESIGHT_INIT(cs_dev->dev);
}
return (0);
}
void
coresight_enable(int cpu, struct coresight_event *event)
{
struct coresight_device *cs_dev;
struct endpoint *endp;
LIST_FOREACH(endp, &event->endplist, endplink) {
cs_dev = endp->cs_dev;
CORESIGHT_ENABLE(cs_dev->dev, endp, event);
}
}
void
coresight_disable(int cpu, struct coresight_event *event)
{
struct coresight_device *cs_dev;
struct endpoint *endp;
LIST_FOREACH(endp, &event->endplist, endplink) {
cs_dev = endp->cs_dev;
CORESIGHT_DISABLE(cs_dev->dev, endp, event);
}
}
void
coresight_read(int cpu, struct coresight_event *event)
{
struct endpoint *endp;
LIST_FOREACH(endp, &event->endplist, endplink)
CORESIGHT_READ(endp->cs_dev->dev, endp, event);
}