52 lines
1.7 KiB
Makefile
Executable File
52 lines
1.7 KiB
Makefile
Executable File
#
|
|
# Makefile for the sprd staging modem files
|
|
#
|
|
#EXTRA_CFLAGS += -Wno-error -Wno-packed-bitfield-compat -Wno-unused-result -Wno-format
|
|
ccflags-y += -DCONFIG_SPRD_PCIE_EP_DEVICE
|
|
ccflags-y += -DCONFIG_SPRD_SIPA
|
|
|
|
|
|
########## Option feature ##########
|
|
# For NSS feature of some Qualcom platform(eg.ipq5018)
|
|
#ccflags-y += -DCONFIG_QCA_NSS_DRV
|
|
|
|
# define is normal mode, net dev type is ethernet;
|
|
# undefine is direct mode, net dev type is rawip, should set module to direct by
|
|
# using AT command[AT+QCFG="pcie/direct",1];
|
|
ccflags-y += -DCONFIG_SPRD_ETHERNET
|
|
|
|
# For pcie msi type interrupt
|
|
#ccflags-y += -DCONFIG_PCI_IRQ_MSI
|
|
|
|
# For big endian platform
|
|
#ccflags-y += -DCONFIG_SIPC_BIG_TO_LITTLE
|
|
|
|
|
|
obj-y += sprd_pcie.o
|
|
sprd_pcie-objs := pcie/sprd_pcie_ep_device.o pcie/pcie_host_resource.o pcie/sprd_pcie_quirks.o sipc/sipc.o sipc/sblock.o sipc/sbuf.o \
|
|
sipc/sipc_debugfs.o sipc/smem.o sipc/smsg.o sipc/spipe.o sipc/spool.o power_manager/power_manager.o \
|
|
sipa/sipa_core.o sipa/sipa_eth.o sipa/sipa_nic.o sipa/sipa_skb_send.o sipa/sipa_skb_recv.o sipa/sipa_dummy.o sipa/sipa_debugfs.o sipa/sipa_dele_cmn.o \
|
|
sipa/sipa_phy_v0/sipa_fifo_irq_hal.o sipa/sipa_phy_v0/sipa_common_fifo_hal.o
|
|
|
|
PWD := $(shell pwd)
|
|
ifeq ($(ARCH),)
|
|
ARCH := $(shell uname -m)
|
|
endif
|
|
ifeq ($(CROSS_COMPILE),)
|
|
CROSS_COMPILE :=
|
|
endif
|
|
ifeq ($(KDIR),)
|
|
KDIR := /lib/modules/$(shell uname -r)/build
|
|
endif
|
|
|
|
sprd_pcie: clean
|
|
$(MAKE) ARCH=${ARCH} CROSS_COMPILE=${CROSS_COMPILE} -C $(KDIR) M=$(PWD) modules
|
|
|
|
clean:
|
|
$(MAKE) ARCH=${ARCH} CROSS_COMPILE=${CROSS_COMPILE} -C $(KDIR) M=$(PWD) clean
|
|
find . -name *.o.ur-safe | xargs rm -f
|
|
|
|
install: sprd_pcie
|
|
sudo cp sprd_pcie.ko /lib/modules/${shell uname -r}/kernel/drivers/pci/
|
|
sudo depmod
|