summaryrefslogtreecommitdiffstats
path: root/hw/etraxfs_dma.c
diff options
context:
space:
mode:
authoredgar_igl <edgar_igl@c046a42c-6fe2-441c-8c8c-71466251a162>2008-06-30 11:51:12 +0000
committeredgar_igl <edgar_igl@c046a42c-6fe2-441c-8c8c-71466251a162>2008-06-30 11:51:12 +0000
commitd27b2e5044b143f9e522d6c3e80f498eb083a618 (patch)
treebc31ec480e2fb9fe1ee1b0160ea8e07da791eb96 /hw/etraxfs_dma.c
parentd077b6f759d6758e0d2a80f053448f152ca2ba6d (diff)
downloadhqemu-d27b2e5044b143f9e522d6c3e80f498eb083a618.zip
hqemu-d27b2e5044b143f9e522d6c3e80f498eb083a618.tar.gz
Avoid refering to CRIS specific cpu-state to be able to use these blocks with other cores.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4806 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/etraxfs_dma.c')
-rw-r--r--hw/etraxfs_dma.c22
1 files changed, 10 insertions, 12 deletions
diff --git a/hw/etraxfs_dma.c b/hw/etraxfs_dma.c
index 39d1123..a275038 100644
--- a/hw/etraxfs_dma.c
+++ b/hw/etraxfs_dma.c
@@ -353,8 +353,8 @@ static void channel_stream_cmd(struct fs_dma_ctrl *ctrl, int c, uint32_t v)
{
unsigned int cmd = v & ((1 << 10) - 1);
- D(printf("%s ch=%d cmd=%x pc=%x\n",
- __func__, c, cmd, ctrl->env->pc));
+ D(printf("%s ch=%d cmd=%x\n",
+ __func__, c, cmd));
if (cmd & regk_dma_load_d) {
channel_load_d(ctrl, c);
if (cmd & regk_dma_burst)
@@ -541,8 +541,8 @@ static uint32_t dma_rinvalid (void *opaque, target_phys_addr_t addr)
{
struct fs_dma_ctrl *ctrl = opaque;
CPUState *env = ctrl->env;
- cpu_abort(env, "Unsupported short access. reg=" TARGET_FMT_plx
- " pc=%x.\n", addr, env->pc);
+ cpu_abort(env, "Unsupported short access. reg=" TARGET_FMT_plx "\n",
+ addr);
return 0;
}
@@ -566,8 +566,8 @@ dma_readl (void *opaque, target_phys_addr_t addr)
default:
r = ctrl->channels[c].regs[addr];
- D(printf ("%s c=%d addr=%x pc=%x\n",
- __func__, c, addr, ctrl->env->pc));
+ D(printf ("%s c=%d addr=%x\n",
+ __func__, c, addr));
break;
}
return r;
@@ -578,8 +578,8 @@ dma_winvalid (void *opaque, target_phys_addr_t addr, uint32_t value)
{
struct fs_dma_ctrl *ctrl = opaque;
CPUState *env = ctrl->env;
- cpu_abort(env, "Unsupported short access. reg=" TARGET_FMT_plx
- " pc=%x.\n", addr, env->pc);
+ cpu_abort(env, "Unsupported short access. reg=" TARGET_FMT_plx "\n",
+ addr);
}
static void
@@ -623,14 +623,12 @@ dma_writel (void *opaque, target_phys_addr_t addr, uint32_t value)
case RW_STREAM_CMD:
ctrl->channels[c].regs[addr] = value;
- D(printf("stream_cmd ch=%d pc=%x\n",
- c, ctrl->env->pc));
+ D(printf("stream_cmd ch=%d\n", c));
channel_stream_cmd(ctrl, c, value);
break;
default:
- D(printf ("%s c=%d %x %x pc=%x\n",
- __func__, c, addr, value, ctrl->env->pc));
+ D(printf ("%s c=%d %x %x\n", __func__, c, addr));
break;
}
}
OpenPOWER on IntegriCloud