forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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 <[email protected]> Signed-off-by: Dave Jiang <[email protected]> Signed-off-by: Edmund Nadolski <[email protected]> Signed-off-by: Dan Williams <[email protected]>
- Loading branch information
Showing
104 changed files
with
51,230 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
#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 |
Oops, something went wrong.