blob: 63c8cca7189414d0a5a5438e11f26194e1e59043 [file] [log] [blame]
Ben Skeggs6ee73862009-12-11 19:24:15 +10001#
2# Makefile for the drm device driver. This driver provides support for the
3# Direct Rendering Infrastructure (DRI) in XFree86 4.1.0 and higher.
4
Ben Skeggs9274f4a2012-07-06 07:36:43 +10005ccflags-y := -Iinclude/drm -DCONFIG_NOUVEAU_DEBUG=7 -DCONFIG_NOUVEAU_DEBUG_DEFAULT=3
Ben Skeggs02a841d2012-07-04 23:44:54 +10006ccflags-y += -I$(src)/core/include
7ccflags-y += -I$(src)
8
Ben Skeggs9274f4a2012-07-06 07:36:43 +10009nouveau-y := core/core/client.o
10nouveau-y += core/core/engine.o
11nouveau-y += core/core/handle.o
12nouveau-y += core/core/mm.o
13nouveau-y += core/core/namedb.o
14nouveau-y += core/core/object.o
15nouveau-y += core/core/option.o
16nouveau-y += core/core/parent.o
17nouveau-y += core/core/printk.o
Ben Skeggs02a841d2012-07-04 23:44:54 +100018nouveau-y += core/core/ramht.o
Ben Skeggs9274f4a2012-07-06 07:36:43 +100019nouveau-y += core/core/subdev.o
Ben Skeggs02a841d2012-07-04 23:44:54 +100020
Ben Skeggs9274f4a2012-07-06 07:36:43 +100021nouveau-y += core/subdev/device/base.o
22nouveau-y += core/subdev/device/nv04.o
23nouveau-y += core/subdev/device/nv10.o
24nouveau-y += core/subdev/device/nv20.o
25nouveau-y += core/subdev/device/nv30.o
26nouveau-y += core/subdev/device/nv40.o
27nouveau-y += core/subdev/device/nv50.o
28nouveau-y += core/subdev/device/nvc0.o
29nouveau-y += core/subdev/device/nve0.o
Ben Skeggs02a841d2012-07-04 23:44:54 +100030nouveau-y += core/subdev/fb/nv04.o
31nouveau-y += core/subdev/fb/nv10.o
32nouveau-y += core/subdev/fb/nv20.o
33nouveau-y += core/subdev/fb/nv30.o
34nouveau-y += core/subdev/fb/nv40.o
35nouveau-y += core/subdev/fb/nv50.o
36nouveau-y += core/subdev/fb/nvc0.o
37nouveau-y += core/subdev/fb/nv50_vram.o
38nouveau-y += core/subdev/fb/nvc0_vram.o
39nouveau-y += core/subdev/gpio/base.o
40nouveau-y += core/subdev/gpio/nv10.o
41nouveau-y += core/subdev/gpio/nv50.o
42nouveau-y += core/subdev/i2c/base.o
43nouveau-y += core/subdev/instmem/nv04.o
44nouveau-y += core/subdev/instmem/nv50.o
45nouveau-y += core/subdev/instmem/nvc0.o
46nouveau-y += core/subdev/mc/nv04.o
47nouveau-y += core/subdev/mc/nv40.o
48nouveau-y += core/subdev/mc/nv50.o
49nouveau-y += core/subdev/timer/nv04.o
50nouveau-y += core/subdev/vm/base.o
51nouveau-y += core/subdev/vm/nv50.o
52nouveau-y += core/subdev/vm/nvc0.o
53
54nouveau-y += core/engine/bsp/nv84.o
55nouveau-y += core/engine/copy/nva3.o
56nouveau-y += core/engine/copy/nvc0.o
57nouveau-y += core/engine/crypt/nv84.o
58nouveau-y += core/engine/crypt/nv98.o
59nouveau-y += core/engine/fifo/nv04.o
60nouveau-y += core/engine/fifo/nv10.o
61nouveau-y += core/engine/fifo/nv17.o
62nouveau-y += core/engine/fifo/nv40.o
63nouveau-y += core/engine/fifo/nv50.o
64nouveau-y += core/engine/fifo/nv84.o
65nouveau-y += core/engine/fifo/nvc0.o
66nouveau-y += core/engine/fifo/nve0.o
67nouveau-y += core/engine/graph/ctxnv40.o
68nouveau-y += core/engine/graph/ctxnv50.o
69nouveau-y += core/engine/graph/ctxnvc0.o
70nouveau-y += core/engine/graph/ctxnve0.o
71nouveau-y += core/engine/graph/nv04.o
72nouveau-y += core/engine/graph/nv10.o
73nouveau-y += core/engine/graph/nv20.o
74nouveau-y += core/engine/graph/nv40.o
75nouveau-y += core/engine/graph/nv50.o
76nouveau-y += core/engine/graph/nvc0.o
77nouveau-y += core/engine/graph/nve0.o
78nouveau-y += core/engine/mpeg/nv31.o
79nouveau-y += core/engine/mpeg/nv50.o
80nouveau-y += core/engine/ppp/nv98.o
81nouveau-y += core/engine/vp/nv84.o
82
Ben Skeggs94580292012-07-06 12:14:00 +100083nouveau-y += nouveau_drm.o \
84 nouveau_drv.o nouveau_state.o nouveau_channel.o nouveau_mem.o \
Ben Skeggsce22af02012-05-05 22:19:20 +100085 nouveau_gpuobj.o nouveau_irq.o nouveau_notifier.o \
Ben Skeggsd7facf92010-11-03 10:06:43 +100086 nouveau_sgdma.o nouveau_dma.o nouveau_util.o \
Ben Skeggs6ee73862009-12-11 19:24:15 +100087 nouveau_bo.o nouveau_fence.o nouveau_gem.o nouveau_ttm.o \
Ben Skeggs02a841d2012-07-04 23:44:54 +100088 nouveau_hw.o nouveau_calc.o \
Ben Skeggs054b93e2009-12-15 22:02:47 +100089 nouveau_display.o nouveau_connector.o nouveau_fbcon.o \
Ben Skeggs02a841d2012-07-04 23:44:54 +100090 nouveau_hdmi.o nouveau_dp.o \
Ben Skeggsfade7ad2010-09-27 11:18:14 +100091 nouveau_pm.o nouveau_volt.o nouveau_perf.o nouveau_temp.o \
Ben Skeggsaa4cc5d22012-07-05 21:36:32 +100092 nouveau_mxm.o nouveau_agp.o \
Ben Skeggs2a259a32012-05-08 10:24:27 +100093 nouveau_abi16.o \
Ben Skeggs02a841d2012-07-04 23:44:54 +100094 nouveau_bios.o \
Ben Skeggs5e120f62012-04-30 13:55:29 +100095 nv04_fence.o nv10_fence.o nv84_fence.o nvc0_fence.o \
Ben Skeggs20abd162012-04-30 11:33:43 -050096 nv04_software.o nv50_software.o nvc0_software.o \
Ben Skeggs6ee73862009-12-11 19:24:15 +100097 nv04_dac.o nv04_dfp.o nv04_tv.o nv17_tv.o nv17_tv_modes.o \
Ben Skeggsddbaf792010-11-24 10:52:43 +100098 nv04_crtc.o nv04_display.o nv04_cursor.o \
Ben Skeggs37b034a2011-07-08 14:43:19 +100099 nv50_evo.o nv50_crtc.o nv50_dac.o nv50_sor.o \
100 nv50_cursor.o nv50_display.o \
Ben Skeggs26f6d882011-07-04 16:25:18 +1000101 nvd0_display.o \
Ben Skeggs37b034a2011-07-08 14:43:19 +1000102 nv04_fbcon.o nv50_fbcon.o nvc0_fbcon.o \
Ben Skeggs02c30ca2010-09-16 16:17:35 +1000103 nv50_calc.o \
Ben Skeggs1262a202011-07-18 15:15:34 +1000104 nv04_pm.o nv40_pm.o nv50_pm.o nva3_pm.o nvc0_pm.o \
Ben Skeggs02a841d2012-07-04 23:44:54 +1000105 nouveau_prime.o
Ben Skeggs6ee73862009-12-11 19:24:15 +1000106
107nouveau-$(CONFIG_DRM_NOUVEAU_DEBUG) += nouveau_debugfs.o
108nouveau-$(CONFIG_COMPAT) += nouveau_ioc32.o
109nouveau-$(CONFIG_DRM_NOUVEAU_BACKLIGHT) += nouveau_backlight.o
110nouveau-$(CONFIG_ACPI) += nouveau_acpi.o
111
112obj-$(CONFIG_DRM_NOUVEAU)+= nouveau.o