diff options
author | Dan Williams <dan.j.williams@intel.com> | 2011-07-03 01:56:22 -0400 |
---|---|---|
committer | Dan Williams <dan.j.williams@intel.com> | 2011-07-03 01:56:22 -0400 |
commit | 6f231dda68080759f1aed3769896e94c73099f0f (patch) | |
tree | 45b6ce02fa40e0e9c35526ac6c45950138387516 /drivers/scsi/isci/Makefile | |
parent | 59c5f46fbe01a00eedf54a23789634438bb80603 (diff) |
isci: Intel(R) C600 Series Chipset Storage Control Unit Driver
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>
Diffstat (limited to 'drivers/scsi/isci/Makefile')
-rw-r--r-- | drivers/scsi/isci/Makefile | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/drivers/scsi/isci/Makefile b/drivers/scsi/isci/Makefile new file mode 100644 index 000000000000..34f7af3525f4 --- /dev/null +++ b/drivers/scsi/isci/Makefile | |||
@@ -0,0 +1,30 @@ | |||
1 | #TODO kill SCIC_SDS_4_ENABLED it is always true for this | ||
2 | #generation of silicon | ||
3 | EXTRA_CFLAGS += -DSCIC_SDS_4_ENABLED | ||
4 | |||
5 | #temporary until atapi support ready | ||
6 | EXTRA_CFLAGS += -DDISABLE_ATAPI | ||
7 | |||
8 | EXTRA_CFLAGS += -Idrivers/scsi/isci/core/ -Idrivers/scsi/isci/ | ||
9 | obj-$(CONFIG_SCSI_ISCI) += isci.o | ||
10 | isci-objs := init.o phy.o request.o sata.o \ | ||
11 | remote_device.o port.o timers.o deprecated.o \ | ||
12 | host.o task.o events.o \ | ||
13 | core/scic_sds_controller.o \ | ||
14 | core/scic_sds_remote_device.o \ | ||
15 | core/scic_sds_request.o \ | ||
16 | core/scic_sds_stp_request.o \ | ||
17 | core/scic_sds_stp_packet_request.o \ | ||
18 | core/scic_sds_stp_remote_device.o \ | ||
19 | core/scic_sds_port.o \ | ||
20 | core/scic_sds_port_configuration_agent.o \ | ||
21 | core/scic_sds_phy.o \ | ||
22 | core/scic_sds_ssp_request.o \ | ||
23 | core/scic_sds_remote_node_context.o \ | ||
24 | core/scic_sds_smp_request.o \ | ||
25 | core/scic_sds_smp_remote_device.o \ | ||
26 | core/scic_sds_remote_node_table.o \ | ||
27 | core/scic_sds_unsolicited_frame_control.o \ | ||
28 | core/sci_base_memory_descriptor_list.o \ | ||
29 | core/sci_base_state_machine.o \ | ||
30 | core/sci_util.o | ||