Skip to content

Commit

Permalink
hw: move DMA controllers to hw/dma/, configure with default-configs/
Browse files Browse the repository at this point in the history
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
  • Loading branch information
bonzini committed Apr 8, 2013
1 parent ba25df8 commit d2c0bd8
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 10 deletions.
2 changes: 2 additions & 0 deletions default-configs/sparc-softmmu.mak
Expand Up @@ -13,3 +13,5 @@ CONFIG_TCX=y
CONFIG_SLAVIO=y
CONFIG_CS4231=y
CONFIG_GRLIB=y
CONFIG_STP2000=y
CONFIG_SUN4M=y
7 changes: 2 additions & 5 deletions hw/arm/Makefile.objs
Expand Up @@ -6,13 +6,10 @@ obj-y += exynos4210_gic.o exynos4210_combiner.o
obj-y += exynos4210_pmu.o
obj-y += a15mpcore.o
obj-y += armv7m_nvic.o
obj-y += pxa2xx_dma.o
obj-y += pxa2xx_pcmcia.o
obj-y += zaurus.o
obj-y += omap_dma.o omap_clk.o \
omap_gpio.o omap_intc.o
obj-y += soc_dma.o \
omap_gpmc.o omap_sdrc.o omap_tap.o omap_l4.o
obj-y += omap_clk.o omap_gpio.o omap_intc.o
obj-y += omap_gpmc.o omap_sdrc.o omap_tap.o omap_l4.o
obj-y += cbus.o
obj-y += mst_fpga.o
obj-y += strongarm.o
Expand Down
1 change: 0 additions & 1 deletion hw/cris/Makefile.objs
@@ -1,5 +1,4 @@
# IO blocks
obj-y += etraxfs_dma.o
obj-y += etraxfs_pic.o

obj-y := $(addprefix ../,$(obj-y))
Expand Down
6 changes: 6 additions & 0 deletions hw/dma/Makefile.objs
Expand Up @@ -5,3 +5,9 @@ common-obj-$(CONFIG_PL330) += pl330.o
common-obj-$(CONFIG_I82374) += i82374.o
common-obj-$(CONFIG_I8257) += i8257.o
common-obj-$(CONFIG_XILINX_AXI) += xilinx_axidma.o
common-obj-$(CONFIG_ETRAXFS) += etraxfs_dma.o
common-obj-$(CONFIG_STP2000) += sparc32_dma.o
common-obj-$(CONFIG_SUN4M) += sun4m_iommu.o

obj-$(CONFIG_OMAP) += omap_dma.o soc_dma.o
obj-$(CONFIG_PXA2XX) += pxa2xx_dma.o
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
3 changes: 1 addition & 2 deletions hw/sun4m_iommu.c → hw/dma/sun4m_iommu.c
Expand Up @@ -258,8 +258,7 @@ static uint32_t iommu_page_get_flags(IOMMUState *s, hwaddr addr)
iopte = s->regs[IOMMU_BASE] << 4;
addr &= ~s->iostart;
iopte += (addr >> (IOMMU_PAGE_SHIFT - 2)) & ~3;
cpu_physical_memory_read(iopte, (uint8_t *)&ret, 4);
tswap32s(&ret);
ret = ldl_be_phys(iopte);
trace_sun4m_iommu_page_get_flags(pa, iopte, ret);
return ret;
}
Expand Down
4 changes: 2 additions & 2 deletions hw/sparc/Makefile.objs
@@ -1,5 +1,5 @@
obj-y = sun4m_iommu.o slavio_intctl.o
obj-y += slavio_misc.o sparc32_dma.o
obj-y = slavio_intctl.o
obj-y += slavio_misc.o
obj-y += eccmemctl.o sbi.o sun4c_intctl.o

# GRLIB
Expand Down

0 comments on commit d2c0bd8

Please sign in to comment.