Tizen 2.0 Release
[sdk/emulator/qemu.git] / Makefile.target
1 # -*- Mode: makefile -*-
2
3 GENERATED_HEADERS = config-target.h
4 CONFIG_NO_PCI = $(if $(subst n,,$(CONFIG_PCI)),n,y)
5 CONFIG_NO_KVM = $(if $(subst n,,$(CONFIG_KVM)),n,y)
6 CONFIG_NO_XEN = $(if $(subst n,,$(CONFIG_XEN)),n,y)
7
8 include ../config-host.mak
9 include config-devices.mak
10 include config-target.mak
11 include $(SRC_PATH)/rules.mak
12 ifneq ($(HWDIR),)
13 include $(HWDIR)/config.mak
14 endif
15
16 TARGET_PATH=$(SRC_PATH)/target-$(TARGET_BASE_ARCH)
17 $(call set-vpath, $(SRC_PATH):$(TARGET_PATH):$(SRC_PATH)/hw)
18
19 ifdef CONFIG_LINUX
20 QEMU_CFLAGS += -I../linux-headers
21 endif
22 QEMU_CFLAGS += -I.. -I$(TARGET_PATH) -DNEED_CPU_H
23
24 include $(SRC_PATH)/Makefile.objs
25
26 ifdef CONFIG_USER_ONLY
27 # user emulator name
28 QEMU_PROG=qemu-$(TARGET_ARCH2)
29 else
30 # system emulator name
31 QEMU_PROG=qemu-system-$(TARGET_ARCH2)$(EXESUF)
32 endif
33
34 PROGS=$(QEMU_PROG)
35 STPFILES=
36
37 ifndef CONFIG_HAIKU
38 LIBS+=-lm
39 endif
40
41 config-target.h: config-target.h-timestamp
42 config-target.h-timestamp: config-target.mak
43
44 ifdef CONFIG_TRACE_SYSTEMTAP
45 stap: $(QEMU_PROG).stp
46
47 ifdef CONFIG_USER_ONLY
48 TARGET_TYPE=user
49 else
50 TARGET_TYPE=system
51 endif
52
53 $(QEMU_PROG).stp:
54         $(call quiet-command,sh $(SRC_PATH)/scripts/tracetool \
55                 --$(TRACE_BACKEND) \
56                 --binary $(bindir)/$(QEMU_PROG) \
57                 --target-arch $(TARGET_ARCH) \
58                 --target-type $(TARGET_TYPE) \
59                 --stap < $(SRC_PATH)/trace-events > $(QEMU_PROG).stp,"  GEN   $(QEMU_PROG).stp")
60 else
61 stap:
62 endif
63
64 all: $(PROGS) stap
65
66 # Dummy command so that make thinks it has done something
67         @true
68
69 #########################################################
70 # cpu emulator library
71 libobj-y = exec.o translate-all.o cpu-exec.o translate.o
72 libobj-y += tcg/tcg.o tcg/optimize.o
73 libobj-$(CONFIG_TCG_INTERPRETER) += tci.o
74 libobj-y += fpu/softfloat.o
75 libobj-y += op_helper.o helper.o
76 ifeq ($(TARGET_BASE_ARCH), i386)
77 libobj-y += cpuid.o
78 endif
79 libobj-$(TARGET_SPARC64) += vis_helper.o
80 libobj-$(CONFIG_NEED_MMU) += mmu.o
81 libobj-$(TARGET_ARM) += neon_helper.o iwmmxt_helper.o
82 ifeq ($(TARGET_BASE_ARCH), sparc)
83 libobj-y += fop_helper.o cc_helper.o win_helper.o mmu_helper.o ldst_helper.o
84 libobj-y += cpu_init.o
85 endif
86 libobj-$(TARGET_SPARC) += int32_helper.o
87 libobj-$(TARGET_SPARC64) += int64_helper.o
88
89 libobj-y += disas.o
90 libobj-$(CONFIG_TCI_DIS) += tci-dis.o
91
92 tci-dis.o: QEMU_CFLAGS += -I$(SRC_PATH)/tcg -I$(SRC_PATH)/tcg/tci
93
94 $(libobj-y): $(GENERATED_HEADERS)
95
96 # libqemu
97
98 translate.o: translate.c cpu.h
99
100 translate-all.o: translate-all.c cpu.h
101
102 tcg/tcg.o: cpu.h
103
104 # HELPER_CFLAGS is used for all the code compiled with static register
105 # variables
106 op_helper.o ldst_helper.o user-exec.o: QEMU_CFLAGS += $(HELPER_CFLAGS)
107
108 # Note: this is a workaround. The real fix is to avoid compiling
109 # cpu_signal_handler() in user-exec.c.
110 signal.o: QEMU_CFLAGS += $(HELPER_CFLAGS)
111
112 #########################################################
113 # Linux user emulator target
114
115 ifdef CONFIG_LINUX_USER
116
117 $(call set-vpath, $(SRC_PATH)/linux-user:$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR))
118
119 QEMU_CFLAGS+=-I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR) -I$(SRC_PATH)/linux-user
120 obj-y = main.o syscall.o strace.o mmap.o signal.o thunk.o \
121       elfload.o linuxload.o uaccess.o gdbstub.o cpu-uname.o \
122       user-exec.o $(oslib-obj-y)
123
124 obj-$(TARGET_HAS_BFLT) += flatload.o
125
126 obj-$(TARGET_I386) += vm86.o
127
128 obj-i386-y += ioport-user.o
129
130 nwfpe-obj-y = fpa11.o fpa11_cpdo.o fpa11_cpdt.o fpa11_cprt.o fpopcode.o
131 nwfpe-obj-y += single_cpdo.o double_cpdo.o extended_cpdo.o
132 obj-arm-y +=  $(addprefix nwfpe/, $(nwfpe-obj-y))
133 obj-arm-y += arm-semi.o
134
135 obj-m68k-y += m68k-sim.o m68k-semi.o
136
137 $(obj-y) $(obj-$(TARGET_BASE_ARCH)-y): $(GENERATED_HEADERS)
138
139 obj-y += $(addprefix ../libuser/, $(user-obj-y))
140 obj-y += $(addprefix ../libdis-user/, $(libdis-y))
141 obj-y += $(libobj-y)
142
143 endif #CONFIG_LINUX_USER
144
145 #########################################################
146 # Darwin user emulator target
147
148 ifdef CONFIG_DARWIN_USER
149
150 $(call set-vpath, $(SRC_PATH)/darwin-user)
151
152 QEMU_CFLAGS+=-I$(SRC_PATH)/darwin-user -I$(SRC_PATH)/darwin-user/$(TARGET_ARCH)
153
154 # Leave some space for the regular program loading zone
155 LDFLAGS+=-Wl,-segaddr,__STD_PROG_ZONE,0x1000 -image_base 0x0e000000
156
157 LIBS+=-lmx
158
159 obj-y = main.o commpage.o machload.o mmap.o signal.o syscall.o thunk.o \
160         gdbstub.o user-exec.o
161
162 obj-i386-y += ioport-user.o
163
164 $(obj-y) $(obj-$(TARGET_BASE_ARCH)-y): $(GENERATED_HEADERS)
165
166 obj-y += $(addprefix ../libuser/, $(user-obj-y))
167 obj-y += $(addprefix ../libdis-user/, $(libdis-y))
168 obj-y += $(libobj-y)
169
170 endif #CONFIG_DARWIN_USER
171
172 #########################################################
173 # BSD user emulator target
174
175 ifdef CONFIG_BSD_USER
176
177 $(call set-vpath, $(SRC_PATH)/bsd-user)
178
179 QEMU_CFLAGS+=-I$(SRC_PATH)/bsd-user -I$(SRC_PATH)/bsd-user/$(TARGET_ARCH)
180
181 obj-y = main.o bsdload.o elfload.o mmap.o signal.o strace.o syscall.o \
182         gdbstub.o uaccess.o user-exec.o
183
184 obj-i386-y += ioport-user.o
185
186 $(obj-y) $(obj-$(TARGET_BASE_ARCH)-y): $(GENERATED_HEADERS)
187
188 obj-y += $(addprefix ../libuser/, $(user-obj-y))
189 obj-y += $(addprefix ../libdis-user/, $(libdis-y))
190 obj-y += $(libobj-y)
191
192 endif #CONFIG_BSD_USER
193
194 #########################################################
195 # System emulator target
196 ifdef CONFIG_SOFTMMU
197
198 obj-y = arch_init.o cpus.o monitor.o machine.o gdbstub.o balloon.o ioport.o
199 # virtio has to be here due to weird dependency between PCI and virtio-net.
200 # need to fix this properly
201 obj-$(CONFIG_NO_PCI) += pci-stub.o
202 obj-$(CONFIG_VIRTIO) += virtio.o virtio-blk.o virtio-balloon.o virtio-net.o virtio-serial-bus.o
203 obj-y += vhost_net.o
204 obj-$(CONFIG_VHOST_NET) += vhost.o
205 obj-$(CONFIG_REALLY_VIRTFS) += 9pfs/virtio-9p-device.o
206 obj-$(CONFIG_KVM) += kvm.o kvm-all.o
207 obj-$(CONFIG_NO_KVM) += kvm-stub.o
208 obj-y += memory.o
209 LIBS+=-lz
210
211 QEMU_CFLAGS += $(VNC_TLS_CFLAGS)
212 QEMU_CFLAGS += $(VNC_SASL_CFLAGS)
213 QEMU_CFLAGS += $(VNC_JPEG_CFLAGS)
214 QEMU_CFLAGS += $(VNC_PNG_CFLAGS)
215 QEMU_CFLAGS += $(GLIB_CFLAGS)
216
217 # xen support
218 obj-$(CONFIG_XEN) += xen-all.o xen_machine_pv.o xen_domainbuild.o xen-mapcache.o
219 obj-$(CONFIG_NO_XEN) += xen-stub.o
220
221 obj-i386-$(CONFIG_XEN) += xen_platform.o
222
223
224 # HAX support
225 ifeq ($(TARGET_ARCH), i386)
226 ifdef CONFIG_WIN32
227 obj-$(CONFIG_HAX) += \
228         hax-all.o       \
229         hax-windows.o
230 endif
231 endif
232
233 # Inter-VM PCI shared memory
234 CONFIG_IVSHMEM =
235 ifeq ($(CONFIG_KVM), y)
236   ifeq ($(CONFIG_PCI), y)
237     CONFIG_IVSHMEM = y
238   endif
239 endif
240 obj-$(CONFIG_IVSHMEM) += ivshmem.o
241
242 # Hardware support
243 obj-i386-y += vga.o
244 obj-i386-y += mc146818rtc.o pc.o
245 obj-i386-y += cirrus_vga.o sga.o apic.o ioapic.o piix_pci.o
246 obj-i386-y += vmport.o
247 obj-i386-y += device-hotplug.o pci-hotplug.o smbios.o wdt_ib700.o
248 obj-i386-y += debugcon.o multiboot.o
249 obj-i386-y += pc_piix.o
250 obj-i386-$(CONFIG_KVM) += kvmclock.o
251 obj-i386-$(CONFIG_SPICE) += qxl.o qxl-logger.o qxl-render.o
252
253 # shared objects
254 obj-ppc-y = ppc.o ppc_booke.o
255 obj-ppc-y += vga.o
256 # PREP target
257 obj-ppc-y += mc146818rtc.o
258 obj-ppc-y += ppc_prep.o
259 # OldWorld PowerMac
260 obj-ppc-y += ppc_oldworld.o
261 # NewWorld PowerMac
262 obj-ppc-y += ppc_newworld.o
263 # IBM pSeries (sPAPR)
264 obj-ppc-$(CONFIG_PSERIES) += spapr.o spapr_hcall.o spapr_rtas.o spapr_vio.o
265 obj-ppc-$(CONFIG_PSERIES) += xics.o spapr_vty.o spapr_llan.o spapr_vscsi.o
266 obj-ppc-$(CONFIG_PSERIES) += spapr_pci.o device-hotplug.o pci-hotplug.o
267 # PowerPC 4xx boards
268 obj-ppc-y += ppc4xx_devs.o ppc4xx_pci.o ppc405_uc.o ppc405_boards.o
269 obj-ppc-y += ppc440.o ppc440_bamboo.o
270 # PowerPC E500 boards
271 obj-ppc-y += ppce500_mpc8544ds.o mpc8544_guts.o ppce500_spin.o
272 # PowerPC 440 Xilinx ML507 reference board.
273 obj-ppc-y += virtex_ml507.o
274 obj-ppc-$(CONFIG_KVM) += kvm_ppc.o
275 obj-ppc-$(CONFIG_FDT) += device_tree.o
276 # PowerPC OpenPIC
277 obj-ppc-y += openpic.o
278
279 # Xilinx PPC peripherals
280 obj-ppc-y += xilinx_intc.o
281 obj-ppc-y += xilinx_timer.o
282 obj-ppc-y += xilinx_uartlite.o
283 obj-ppc-y += xilinx_ethlite.o
284
285 # LM32 boards
286 obj-lm32-y += lm32_boards.o
287 obj-lm32-y += milkymist.o
288
289 # LM32 peripherals
290 obj-lm32-y += lm32_pic.o
291 obj-lm32-y += lm32_juart.o
292 obj-lm32-y += lm32_timer.o
293 obj-lm32-y += lm32_uart.o
294 obj-lm32-y += lm32_sys.o
295 obj-lm32-y += milkymist-ac97.o
296 obj-lm32-y += milkymist-hpdmc.o
297 obj-lm32-y += milkymist-memcard.o
298 obj-lm32-y += milkymist-minimac2.o
299 obj-lm32-y += milkymist-pfpu.o
300 obj-lm32-y += milkymist-softusb.o
301 obj-lm32-y += milkymist-sysctl.o
302 obj-lm32-$(CONFIG_OPENGL) += milkymist-tmu2.o
303 obj-lm32-y += milkymist-uart.o
304 obj-lm32-y += milkymist-vgafb.o
305 obj-lm32-y += framebuffer.o
306
307 obj-mips-y = mips_r4k.o mips_jazz.o mips_malta.o mips_mipssim.o
308 obj-mips-y += mips_addr.o mips_timer.o mips_int.o
309 obj-mips-y += vga.o
310 obj-mips-y += jazz_led.o
311 obj-mips-y += gt64xxx.o mc146818rtc.o
312 obj-mips-y += cirrus_vga.o
313 obj-mips-$(CONFIG_FULONG) += bonito.o vt82c686.o mips_fulong2e.o
314
315 obj-microblaze-y = petalogix_s3adsp1800_mmu.o
316 obj-microblaze-y += petalogix_ml605_mmu.o
317
318 obj-microblaze-y += microblaze_pic_cpu.o
319 obj-microblaze-y += xilinx_intc.o
320 obj-microblaze-y += xilinx_timer.o
321 obj-microblaze-y += xilinx_uartlite.o
322 obj-microblaze-y += xilinx_ethlite.o
323 obj-microblaze-y += xilinx_axidma.o
324 obj-microblaze-y += xilinx_axienet.o
325
326 obj-microblaze-$(CONFIG_FDT) += device_tree.o
327
328 # Boards
329 obj-cris-y = cris_pic_cpu.o
330 obj-cris-y += cris-boot.o
331 obj-cris-y += axis_dev88.o
332
333 # IO blocks
334 obj-cris-y += etraxfs_dma.o
335 obj-cris-y += etraxfs_pic.o
336 obj-cris-y += etraxfs_eth.o
337 obj-cris-y += etraxfs_timer.o
338 obj-cris-y += etraxfs_ser.o
339
340 ifeq ($(TARGET_ARCH), sparc64)
341 obj-sparc-y = sun4u.o apb_pci.o
342 obj-sparc-y += vga.o
343 obj-sparc-y += mc146818rtc.o
344 obj-sparc-y += cirrus_vga.o
345 else
346 obj-sparc-y = sun4m.o lance.o tcx.o sun4m_iommu.o slavio_intctl.o
347 obj-sparc-y += slavio_timer.o slavio_misc.o sparc32_dma.o
348 obj-sparc-y += cs4231.o eccmemctl.o sbi.o sun4c_intctl.o leon3.o
349
350 # GRLIB
351 obj-sparc-y += grlib_gptimer.o grlib_irqmp.o grlib_apbuart.o
352 endif
353
354 obj-arm-y = integratorcp.o versatilepb.o arm_pic.o arm_timer.o
355 obj-arm-y += arm_boot.o pl011.o pl031.o pl050.o pl080.o pl110.o pl181.o pl190.o
356 obj-arm-y += versatile_pci.o
357 obj-arm-y += realview_gic.o realview.o arm_sysctl.o arm11mpcore.o a9mpcore.o
358 obj-arm-y += armv7m.o armv7m_nvic.o stellaris.o pl022.o stellaris_enet.o
359 obj-arm-y += pl061.o
360 obj-arm-y += arm-semi.o
361 obj-arm-y += pxa2xx.o pxa2xx_pic.o pxa2xx_gpio.o pxa2xx_timer.o pxa2xx_dma.o
362 obj-arm-y += pxa2xx_lcd.o pxa2xx_mmci.o pxa2xx_pcmcia.o pxa2xx_keypad.o
363 obj-arm-y += gumstix.o
364 obj-arm-y += zaurus.o ide/microdrive.o spitz.o tosa.o tc6393xb.o
365 obj-arm-y += omap1.o omap_lcdc.o omap_dma.o omap_clk.o omap_mmc.o omap_i2c.o \
366                 omap_gpio.o omap_intc.o omap_uart.o
367 obj-arm-y += omap2.o omap_dss.o soc_dma.o omap_gptimer.o omap_synctimer.o \
368                 omap_gpmc.o omap_sdrc.o omap_spi.o omap_tap.o omap_l4.o
369 obj-arm-y += omap_sx1.o palm.o tsc210x.o
370 obj-arm-y += nseries.o blizzard.o onenand.o vga.o cbus.o tusb6010.o usb-musb.o
371 obj-arm-y += mst_fpga.o mainstone.o
372 obj-arm-y += z2.o
373 obj-arm-y += musicpal.o bitbang_i2c.o marvell_88w8618_audio.o
374 obj-arm-y += framebuffer.o
375 obj-arm-y += syborg.o syborg_fb.o syborg_interrupt.o syborg_keyboard.o
376 obj-arm-y += syborg_serial.o syborg_timer.o syborg_pointer.o syborg_rtc.o
377 obj-arm-y += syborg_virtio.o
378 obj-arm-y += vexpress.o
379 obj-arm-y += strongarm.o
380 obj-arm-y += collie.o
381 obj-arm-y += pl041.o lm4549.o
382
383 obj-sh4-y = shix.o r2d.o sh7750.o sh7750_regnames.o tc58128.o
384 obj-sh4-y += sh_timer.o sh_serial.o sh_intc.o sh_pci.o sm501.o
385 obj-sh4-y += ide/mmio.o
386
387 obj-m68k-y = an5206.o mcf5206.o mcf_uart.o mcf_intc.o mcf5208.o mcf_fec.o
388 obj-m68k-y += m68k-semi.o dummy_m68k.o
389
390 obj-s390x-y = s390-virtio-bus.o s390-virtio.o
391
392 obj-alpha-y = mc146818rtc.o
393 obj-alpha-y += vga.o cirrus_vga.o
394 obj-alpha-y += alpha_pci.o alpha_dp264.o alpha_typhoon.o
395
396 obj-xtensa-y += xtensa_pic.o
397 obj-xtensa-y += xtensa_sim.o
398 obj-xtensa-y += xtensa_lx60.o
399 obj-xtensa-y += xtensa-semi.o
400 obj-xtensa-y += core-dc232b.o
401 obj-xtensa-y += core-fsf.o
402
403 main.o: QEMU_CFLAGS+=$(GPROF_CFLAGS)
404
405 monitor.o: hmp-commands.h qmp-commands-old.h
406
407 $(obj-y) $(obj-$(TARGET_BASE_ARCH)-y): $(GENERATED_HEADERS)
408
409 obj-y += $(addprefix ../, $(common-obj-y))
410 obj-y += $(addprefix ../libdis/, $(libdis-y))
411 obj-y += $(libobj-y)
412 obj-y += $(addprefix $(HWDIR)/, $(hw-obj-y))
413 obj-y += $(addprefix ../, $(trace-obj-y))
414
415 # Makefile for TIZEN-maru
416 ifdef CONFIG_MARU
417 include $(SRC_PATH)/tizen/src/Makefile.tizen
418 endif
419 ##
420
421 endif # CONFIG_SOFTMMU
422
423 ifndef CONFIG_LINUX_USER
424 ifndef CONFIG_BSD_USER
425 # libcacard needs qemu-thread support, and besides is only needed by devices
426 # so not requires with linux-user / bsd-user targets
427 obj-$(CONFIG_SMARTCARD_NSS) += $(addprefix ../libcacard/, $(libcacard-y))
428 endif # CONFIG_BSD_USER
429 endif # CONFIG_LINUX_USER
430
431 obj-$(CONFIG_GDBSTUB_XML) += gdbstub-xml.o
432
433 $(QEMU_PROG): $(obj-y) $(obj-$(TARGET_BASE_ARCH)-y)
434         $(call LINK,$^)
435
436
437 gdbstub-xml.c: $(TARGET_XML_FILES) $(SRC_PATH)/scripts/feature_to_c.sh
438         $(call quiet-command,rm -f $@ && $(SHELL) $(SRC_PATH)/scripts/feature_to_c.sh $@ $(TARGET_XML_FILES),"  GEN   $(TARGET_DIR)$@")
439
440 hmp-commands.h: $(SRC_PATH)/hmp-commands.hx
441         $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@,"  GEN   $(TARGET_DIR)$@")
442
443 qmp-commands-old.h: $(SRC_PATH)/qmp-commands.hx
444         $(call quiet-command,sh $(SRC_PATH)/scripts/hxtool -h < $< > $@,"  GEN   $(TARGET_DIR)$@")
445
446 clean:
447         rm -f *.o *.a *~ $(PROGS) nwfpe/*.o fpu/*.o
448         rm -f *.d */*.d tcg/*.o ide/*.o 9pfs/*.o
449         rm -f hmp-commands.h qmp-commands-old.h gdbstub-xml.c
450 ifdef CONFIG_TRACE_SYSTEMTAP
451         rm -f *.stp
452 endif
453
454 install: all
455 ifneq ($(PROGS),)
456         $(INSTALL) -m 755 $(PROGS) "$(DESTDIR)$(bindir)"
457 ifneq ($(STRIP),)
458         $(STRIP) $(patsubst %,"$(DESTDIR)$(bindir)/%",$(PROGS))
459 endif
460 endif
461 ifdef CONFIG_TRACE_SYSTEMTAP
462         $(INSTALL_DIR) "$(DESTDIR)$(datadir)/../systemtap/tapset"
463         $(INSTALL_DATA) $(QEMU_PROG).stp "$(DESTDIR)$(datadir)/../systemtap/tapset"
464 endif
465
466 # Include automatically generated dependency files
467 -include $(wildcard *.d */*.d)