ab2e8f7d07
A substate is just a state, so uplevel the smp and stp device substates. Three tricks at work here: 1/ scic_sds_remote_device_ready_state_enter: needs to know the the device type so it can immediately transition to a stp or smp ready substate. 2/ scic_sds_remote_device_ready_state_exit: needs to know the device type. In the ssp case the device is no longer ready, in the stp, and smp case we have simply exited to a ready "substate". 3/ scic_sds_remote_device_resume_complete_handler: The one location where we directly check the current state against SCI_BASE_REMOTE_DEVICE_STATE_READY needed to comprehend the possible ready substates. Reported-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Dan Williams <dan.j.williams@intel.com>
23 lines
785 B
Makefile
23 lines
785 B
Makefile
#TODO kill SCIC_SDS_4_ENABLED it is always true for this
|
|
#generation of silicon
|
|
EXTRA_CFLAGS += -DSCIC_SDS_4_ENABLED
|
|
|
|
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 \
|
|
host.o task.o probe_roms.o \
|
|
remote_node_context.o \
|
|
remote_node_table.o \
|
|
core/scic_sds_controller.o \
|
|
core/scic_sds_request.o \
|
|
core/scic_sds_stp_request.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_smp_request.o \
|
|
core/scic_sds_unsolicited_frame_control.o \
|
|
core/sci_base_state_machine.o \
|
|
core/sci_util.o
|