6f231dda68
Support for the up to 2x4-port 6Gb/s SAS controllers embedded in the chipset. This is a snapshot of the first publicly available version of the driver, commit 4c1db2d0 in the 'historical' branch. git://git.kernel.org/pub/scm/linux/kernel/git/djbw/isci.git historical Signed-off-by: Maciej Trela <maciej.trela@intel.com> Signed-off-by: Dave Jiang <dave.jiang@intel.com> Signed-off-by: Edmund Nadolski <edmund.nadolski@intel.com> Signed-off-by: Dan Williams <dan.j.williams@intel.com>
30 lines
1.1 KiB
Makefile
30 lines
1.1 KiB
Makefile
#TODO kill SCIC_SDS_4_ENABLED it is always true for this
|
|
#generation of silicon
|
|
EXTRA_CFLAGS += -DSCIC_SDS_4_ENABLED
|
|
|
|
#temporary until atapi support ready
|
|
EXTRA_CFLAGS += -DDISABLE_ATAPI
|
|
|
|
EXTRA_CFLAGS += -Idrivers/scsi/isci/core/ -Idrivers/scsi/isci/
|
|
obj-$(CONFIG_SCSI_ISCI) += isci.o
|
|
isci-objs := init.o phy.o request.o sata.o \
|
|
remote_device.o port.o timers.o deprecated.o \
|
|
host.o task.o events.o \
|
|
core/scic_sds_controller.o \
|
|
core/scic_sds_remote_device.o \
|
|
core/scic_sds_request.o \
|
|
core/scic_sds_stp_request.o \
|
|
core/scic_sds_stp_packet_request.o \
|
|
core/scic_sds_stp_remote_device.o \
|
|
core/scic_sds_port.o \
|
|
core/scic_sds_port_configuration_agent.o \
|
|
core/scic_sds_phy.o \
|
|
core/scic_sds_ssp_request.o \
|
|
core/scic_sds_remote_node_context.o \
|
|
core/scic_sds_smp_request.o \
|
|
core/scic_sds_smp_remote_device.o \
|
|
core/scic_sds_remote_node_table.o \
|
|
core/scic_sds_unsolicited_frame_control.o \
|
|
core/sci_base_memory_descriptor_list.o \
|
|
core/sci_base_state_machine.o \
|
|
core/sci_util.o
|