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>
35 lines
608 B
Makefile
35 lines
608 B
Makefile
# Common mips*-softmmu CONFIG defines
|
|
|
|
include pci.mak
|
|
include sound.mak
|
|
include usb.mak
|
|
CONFIG_ESP=y
|
|
CONFIG_VGA_ISA=y
|
|
CONFIG_VGA_ISA_MM=y
|
|
CONFIG_VGA_CIRRUS=y
|
|
CONFIG_VMWARE_VGA=y
|
|
CONFIG_SERIAL=y
|
|
CONFIG_PARALLEL=y
|
|
CONFIG_I8254=y
|
|
CONFIG_PCSPK=y
|
|
CONFIG_PCKBD=y
|
|
CONFIG_FDC=y
|
|
CONFIG_ACPI=y
|
|
CONFIG_ACPI_X86=y
|
|
CONFIG_ACPI_MEMORY_HOTPLUG=y
|
|
CONFIG_ACPI_CPU_HOTPLUG=y
|
|
CONFIG_APM=y
|
|
CONFIG_I8257=y
|
|
CONFIG_PIIX4=y
|
|
CONFIG_IDE_ISA=y
|
|
CONFIG_IDE_PIIX=y
|
|
CONFIG_NE2000_ISA=y
|
|
CONFIG_MIPSNET=y
|
|
CONFIG_PFLASH_CFI01=y
|
|
CONFIG_I8259=y
|
|
CONFIG_MC146818RTC=y
|
|
CONFIG_ISA_TESTDEV=y
|
|
CONFIG_EMPTY_SLOT=y
|
|
CONFIG_MIPS_CPS=y
|
|
CONFIG_MIPS_ITU=y
|