Blame view

arch/arm/mach-shmobile/Makefile 1.55 KB
c793c1b0c   Magnus Damm   ARM: mach-shmobil...
1
2
3
4
5
  #
  # Makefile for the linux kernel.
  #
  
  # Common objects
815fc8c06   Geert Uytterhoeven   ARM: shmobile: Re...
6
  obj-y				:= timer.o
c793c1b0c   Magnus Damm   ARM: mach-shmobil...
7
8
  
  # CPU objects
9a9863987   Geert Uytterhoeven   ARM: shmobile: Re...
9
  obj-$(CONFIG_ARCH_SH73A0)	+= setup-sh73a0.o
a360feb9e   Magnus Damm   ARM: shmobile: On...
10
  obj-$(CONFIG_ARCH_R8A73A4)	+= setup-r8a73a4.o
44d88c754   Geert Uytterhoeven   ARM: shmobile: Re...
11
  obj-$(CONFIG_ARCH_R8A7740)	+= setup-r8a7740.o
a360feb9e   Magnus Damm   ARM: shmobile: On...
12
  obj-$(CONFIG_ARCH_R8A7778)	+= setup-r8a7778.o
1a950ca53   Magnus Damm   ARM: shmobile: Cl...
13
  obj-$(CONFIG_ARCH_R8A7779)	+= setup-r8a7779.o pm-r8a7779.o
a8caad669   Gaku Inami   ARM: shmobile: Co...
14
15
  obj-$(CONFIG_ARCH_R8A7790)	+= setup-r8a7790.o
  obj-$(CONFIG_ARCH_R8A7791)	+= setup-r8a7791.o
ec60d95b4   Ulrich Hecht   ARM: shmobile: Ba...
16
  obj-$(CONFIG_ARCH_R8A7793)	+= setup-r8a7793.o
5923abb20   Ulrich Hecht   ARM: shmobile: In...
17
  obj-$(CONFIG_ARCH_R8A7794)	+= setup-r8a7794.o
a360feb9e   Magnus Damm   ARM: shmobile: On...
18
  obj-$(CONFIG_ARCH_EMEV2)	+= setup-emev2.o
0086df273   Magnus Damm   ARM: shmobile: In...
19
  obj-$(CONFIG_ARCH_R7S72100)	+= setup-r7s72100.o
a360feb9e   Magnus Damm   ARM: shmobile: On...
20

8b438bcb9   Magnus Damm   ARM: shmobile: Al...
21
22
  # CPU reset vector handling objects
  cpu-y				:= platsmp.o headsmp.o
0d9184334   Magnus Damm   ARM: shmobile: In...
23
24
25
  
  # Shared SoC family objects
  obj-$(CONFIG_ARCH_RCAR_GEN2)	+= setup-rcar-gen2.o platsmp-apmu.o $(cpu-y)
e3d163329   Arnd Bergmann   ARM: shmobile: al...
26
  CFLAGS_setup-rcar-gen2.o	+= -march=armv7-a
663fbb521   Geert Uytterhoeven   ARM: shmobile: R-...
27
28
  obj-$(CONFIG_ARCH_R8A7790)	+= regulator-quirk-rcar-gen2.o
  obj-$(CONFIG_ARCH_R8A7791)	+= regulator-quirk-rcar-gen2.o
765b50030   Ulrich Hecht   ARM: shmobile: go...
29
  obj-$(CONFIG_ARCH_R8A7793)	+= regulator-quirk-rcar-gen2.o
8b438bcb9   Magnus Damm   ARM: shmobile: Al...
30

1c51ed4fb   Magnus Damm   ARM: mach-shmobil...
31
  # SMP objects
8b438bcb9   Magnus Damm   ARM: shmobile: Al...
32
  smp-y				:= $(cpu-y)
12eb84743   Magnus Damm   ARM: shmobile: Us...
33
  smp-$(CONFIG_ARCH_SH73A0)	+= smp-sh73a0.o headsmp-scu.o platsmp-scu.o
0ca2894b5   Magnus Damm   ARM: shmobile: Us...
34
  smp-$(CONFIG_ARCH_R8A7779)	+= smp-r8a7779.o headsmp-scu.o platsmp-scu.o
06f2c5dcc   Magnus Damm   ARM: shmobile: Al...
35
  smp-$(CONFIG_ARCH_R8A7790)	+= smp-r8a7790.o
bfe4cfa8a   Magnus Damm   ARM: shmobile: Al...
36
  smp-$(CONFIG_ARCH_R8A7791)	+= smp-r8a7791.o
0da60225d   Magnus Damm   ARM: shmobile: Us...
37
  smp-$(CONFIG_ARCH_EMEV2)	+= smp-emev2.o headsmp-scu.o platsmp-scu.o
1c51ed4fb   Magnus Damm   ARM: mach-shmobil...
38

c3dada189   Magnus Damm   ARM: mach-shmobil...
39
40
  # PM objects
  obj-$(CONFIG_SUSPEND)		+= suspend.o
06e32c91d   Gaku Inami   ARM: shmobile: ad...
41
  obj-$(CONFIG_CPU_FREQ)		+= cpufreq.o
1a950ca53   Magnus Damm   ARM: shmobile: Cl...
42
  obj-$(CONFIG_PM_RCAR)		+= pm-rcar.o
abebbc4a0   Magnus Damm   ARM: shmobile: Cl...
43
  obj-$(CONFIG_PM_RMOBILE)	+= pm-rmobile.o
a8caad669   Gaku Inami   ARM: shmobile: Co...
44
  obj-$(CONFIG_ARCH_RCAR_GEN2)	+= pm-rcar-gen2.o
c3dada189   Magnus Damm   ARM: mach-shmobil...
45

09dd7ded6   Magnus Damm   ARM: mach-shmobil...
46
  # Framework support
1c51ed4fb   Magnus Damm   ARM: mach-shmobil...
47
  obj-$(CONFIG_SMP)		+= $(smp-y)