34fa7e83e1
Implement ITC as a single object consisting of two memory regions: 1) tag_io: ITC Configuration Tags (i.e. ITCAddressMap{0,1} registers) which are accessible by the CPU via CACHE instruction. Also adding MemoryRegion *itc_tag to the CPUMIPSState so that CACHE instruction will dispatch reads/writes directly. 2) storage_io: memory-mapped ITC Storage whose address space is configurable (i.e. enabled/remapped/resized) by writing to ITCAddressMap{0,1} registers. ITC Storage contains FIFO and Semaphore cells. Read-only FIFO bit in the ITC cell tag indicates the type of the cell. If the ITC Storage contains both types of cells then FIFOs are located before Semaphores. Since issuing thread can get blocked on the access to a cell (in E/F Synchronized and P/V Synchronized Views) each cell has a bitmap to track which threads are currently blocked. Signed-off-by: Leon Alrae <leon.alrae@imgtec.com>
53 lines
1.7 KiB
Makefile
53 lines
1.7 KiB
Makefile
common-obj-$(CONFIG_APPLESMC) += applesmc.o
|
|
common-obj-$(CONFIG_MAX111X) += max111x.o
|
|
common-obj-$(CONFIG_TMP105) += tmp105.o
|
|
common-obj-$(CONFIG_ISA_DEBUG) += debugexit.o
|
|
common-obj-$(CONFIG_SGA) += sga.o
|
|
common-obj-$(CONFIG_ISA_TESTDEV) += pc-testdev.o
|
|
common-obj-$(CONFIG_PCI_TESTDEV) += pci-testdev.o
|
|
|
|
obj-$(CONFIG_VMPORT) += vmport.o
|
|
|
|
# ARM devices
|
|
common-obj-$(CONFIG_PL310) += arm_l2x0.o
|
|
common-obj-$(CONFIG_INTEGRATOR_DEBUG) += arm_integrator_debug.o
|
|
common-obj-$(CONFIG_A9SCU) += a9scu.o
|
|
common-obj-$(CONFIG_ARM11SCU) += arm11scu.o
|
|
|
|
# PKUnity SoC devices
|
|
common-obj-$(CONFIG_PUV3) += puv3_pm.o
|
|
|
|
common-obj-$(CONFIG_MACIO) += macio/
|
|
|
|
obj-$(CONFIG_IVSHMEM) += ivshmem.o
|
|
|
|
obj-$(CONFIG_REALVIEW) += arm_sysctl.o
|
|
obj-$(CONFIG_NSERIES) += cbus.o
|
|
obj-$(CONFIG_ECCMEMCTL) += eccmemctl.o
|
|
obj-$(CONFIG_EXYNOS4) += exynos4210_pmu.o
|
|
obj-$(CONFIG_IMX) += imx_ccm.o
|
|
obj-$(CONFIG_IMX) += imx31_ccm.o
|
|
obj-$(CONFIG_IMX) += imx25_ccm.o
|
|
obj-$(CONFIG_IMX) += imx6_ccm.o
|
|
obj-$(CONFIG_MILKYMIST) += milkymist-hpdmc.o
|
|
obj-$(CONFIG_MILKYMIST) += milkymist-pfpu.o
|
|
obj-$(CONFIG_MAINSTONE) += mst_fpga.o
|
|
obj-$(CONFIG_OMAP) += omap_clk.o
|
|
obj-$(CONFIG_OMAP) += omap_gpmc.o
|
|
obj-$(CONFIG_OMAP) += omap_l4.o
|
|
obj-$(CONFIG_OMAP) += omap_sdrc.o
|
|
obj-$(CONFIG_OMAP) += omap_tap.o
|
|
obj-$(CONFIG_RASPI) += bcm2835_mbox.o
|
|
obj-$(CONFIG_RASPI) += bcm2835_property.o
|
|
obj-$(CONFIG_SLAVIO) += slavio_misc.o
|
|
obj-$(CONFIG_ZYNQ) += zynq_slcr.o
|
|
obj-$(CONFIG_ZYNQ) += zynq-xadc.o
|
|
obj-$(CONFIG_STM32F2XX_SYSCFG) += stm32f2xx_syscfg.o
|
|
obj-$(CONFIG_MIPS_CPS) += mips_cmgcr.o
|
|
obj-$(CONFIG_MIPS_CPS) += mips_cpc.o
|
|
obj-$(CONFIG_MIPS_ITU) += mips_itu.o
|
|
|
|
obj-$(CONFIG_PVPANIC) += pvpanic.o
|
|
obj-$(CONFIG_EDU) += edu.o
|
|
obj-$(CONFIG_HYPERV_TESTDEV) += hyperv_testdev.o
|