2 * QEMU LSI SAS1068 Host Bus Adapter emulation
3 * Based on the QEMU Megaraid emulator
5 * Copyright (c) 2009-2012 Hannes Reinecke, SUSE Labs
6 * Copyright (c) 2012 Verizon, Inc.
7 * Copyright (c) 2016 Red Hat, Inc.
9 * Authors: Don Slutz, Paolo Bonzini
11 * This library is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU Lesser General Public
13 * License as published by the Free Software Foundation; either
14 * version 2.1 of the License, or (at your option) any later version.
16 * This library is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * Lesser General Public License for more details.
21 * You should have received a copy of the GNU Lesser General Public
22 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
25 #include "qemu/osdep.h"
26 #include "hw/pci/pci.h"
27 #include "hw/qdev-properties.h"
28 #include "sysemu/dma.h"
29 #include "hw/pci/msi.h"
31 #include "qemu/main-loop.h"
32 #include "qemu/module.h"
33 #include "hw/scsi/scsi.h"
34 #include "scsi/constants.h"
36 #include "qapi/error.h"
38 #include "migration/qemu-file-types.h"
39 #include "migration/vmstate.h"
42 #define NAA_LOCALLY_ASSIGNED_ID 0x3ULL
43 #define IEEE_COMPANY_LOCALLY_ASSIGNED 0x525400
45 #define MPTSAS1068_PRODUCT_ID \
46 (MPI_FW_HEADER_PID_FAMILY_1068_SAS | \
47 MPI_FW_HEADER_PID_PROD_INITIATOR_SCSI | \
48 MPI_FW_HEADER_PID_TYPE_SAS)
50 struct MPTSASRequest
{
51 MPIMsgSCSIIORequest scsi_io
;
56 QTAILQ_ENTRY(MPTSASRequest
) next
;
59 static void mptsas_update_interrupt(MPTSASState
*s
)
61 PCIDevice
*pci
= (PCIDevice
*) s
;
62 uint32_t state
= s
->intr_status
& ~(s
->intr_mask
| MPI_HIS_IOP_DOORBELL_STATUS
);
64 if (msi_enabled(pci
)) {
66 trace_mptsas_irq_msi(s
);
71 trace_mptsas_irq_intx(s
, !!state
);
72 pci_set_irq(pci
, !!state
);
75 static void mptsas_set_fault(MPTSASState
*s
, uint32_t code
)
77 if ((s
->state
& MPI_IOC_STATE_FAULT
) == 0) {
78 s
->state
= MPI_IOC_STATE_FAULT
| code
;
82 #define MPTSAS_FIFO_INVALID(s, name) \
83 ((s)->name##_head > ARRAY_SIZE((s)->name) || \
84 (s)->name##_tail > ARRAY_SIZE((s)->name))
86 #define MPTSAS_FIFO_EMPTY(s, name) \
87 ((s)->name##_head == (s)->name##_tail)
89 #define MPTSAS_FIFO_FULL(s, name) \
90 ((s)->name##_head == ((s)->name##_tail + 1) % ARRAY_SIZE((s)->name))
92 #define MPTSAS_FIFO_GET(s, name) ({ \
93 uint32_t _val = (s)->name[(s)->name##_head++]; \
94 (s)->name##_head %= ARRAY_SIZE((s)->name); \
98 #define MPTSAS_FIFO_PUT(s, name, val) do { \
99 (s)->name[(s)->name##_tail++] = (val); \
100 (s)->name##_tail %= ARRAY_SIZE((s)->name); \
103 static void mptsas_post_reply(MPTSASState
*s
, MPIDefaultReply
*reply
)
105 PCIDevice
*pci
= (PCIDevice
*) s
;
108 if (MPTSAS_FIFO_EMPTY(s
, reply_free
) || MPTSAS_FIFO_FULL(s
, reply_post
)) {
109 mptsas_set_fault(s
, MPI_IOCSTATUS_INSUFFICIENT_RESOURCES
);
113 addr_lo
= MPTSAS_FIFO_GET(s
, reply_free
);
115 pci_dma_write(pci
, addr_lo
| s
->host_mfa_high_addr
, reply
,
116 MIN(s
->reply_frame_size
, 4 * reply
->MsgLength
));
118 MPTSAS_FIFO_PUT(s
, reply_post
, MPI_ADDRESS_REPLY_A_BIT
| (addr_lo
>> 1));
120 s
->intr_status
|= MPI_HIS_REPLY_MESSAGE_INTERRUPT
;
121 if (s
->doorbell_state
== DOORBELL_WRITE
) {
122 s
->doorbell_state
= DOORBELL_NONE
;
123 s
->intr_status
|= MPI_HIS_DOORBELL_INTERRUPT
;
125 mptsas_update_interrupt(s
);
128 void mptsas_reply(MPTSASState
*s
, MPIDefaultReply
*reply
)
130 if (s
->doorbell_state
== DOORBELL_WRITE
) {
131 /* The reply is sent out in 16 bit chunks, while the size
132 * in the reply is in 32 bit units.
134 s
->doorbell_state
= DOORBELL_READ
;
135 s
->doorbell_reply_idx
= 0;
136 s
->doorbell_reply_size
= reply
->MsgLength
* 2;
137 memcpy(s
->doorbell_reply
, reply
, s
->doorbell_reply_size
* 2);
138 s
->intr_status
|= MPI_HIS_DOORBELL_INTERRUPT
;
139 mptsas_update_interrupt(s
);
141 mptsas_post_reply(s
, reply
);
145 static void mptsas_turbo_reply(MPTSASState
*s
, uint32_t msgctx
)
147 if (MPTSAS_FIFO_FULL(s
, reply_post
)) {
148 mptsas_set_fault(s
, MPI_IOCSTATUS_INSUFFICIENT_RESOURCES
);
152 /* The reply is just the message context ID (bit 31 = clear). */
153 MPTSAS_FIFO_PUT(s
, reply_post
, msgctx
);
155 s
->intr_status
|= MPI_HIS_REPLY_MESSAGE_INTERRUPT
;
156 mptsas_update_interrupt(s
);
159 #define MPTSAS_MAX_REQUEST_SIZE 52
161 static const int mpi_request_sizes
[] = {
162 [MPI_FUNCTION_SCSI_IO_REQUEST
] = sizeof(MPIMsgSCSIIORequest
),
163 [MPI_FUNCTION_SCSI_TASK_MGMT
] = sizeof(MPIMsgSCSITaskMgmt
),
164 [MPI_FUNCTION_IOC_INIT
] = sizeof(MPIMsgIOCInit
),
165 [MPI_FUNCTION_IOC_FACTS
] = sizeof(MPIMsgIOCFacts
),
166 [MPI_FUNCTION_CONFIG
] = sizeof(MPIMsgConfig
),
167 [MPI_FUNCTION_PORT_FACTS
] = sizeof(MPIMsgPortFacts
),
168 [MPI_FUNCTION_PORT_ENABLE
] = sizeof(MPIMsgPortEnable
),
169 [MPI_FUNCTION_EVENT_NOTIFICATION
] = sizeof(MPIMsgEventNotify
),
172 static dma_addr_t
mptsas_ld_sg_base(MPTSASState
*s
, uint32_t flags_and_length
,
175 PCIDevice
*pci
= (PCIDevice
*) s
;
178 if (flags_and_length
& MPI_SGE_FLAGS_64_BIT_ADDRESSING
) {
179 addr
= ldq_le_pci_dma(pci
, *sgaddr
+ 4);
182 addr
= ldl_le_pci_dma(pci
, *sgaddr
+ 4);
188 static int mptsas_build_sgl(MPTSASState
*s
, MPTSASRequest
*req
, hwaddr addr
)
190 PCIDevice
*pci
= (PCIDevice
*) s
;
191 hwaddr next_chain_addr
;
194 uint32_t chain_offset
;
196 chain_offset
= req
->scsi_io
.ChainOffset
;
197 next_chain_addr
= addr
+ chain_offset
* sizeof(uint32_t);
198 sgaddr
= addr
+ sizeof(MPIMsgSCSIIORequest
);
199 pci_dma_sglist_init(&req
->qsg
, pci
, 4);
200 left
= req
->scsi_io
.DataLength
;
203 dma_addr_t addr
, len
;
204 uint32_t flags_and_length
;
206 flags_and_length
= ldl_le_pci_dma(pci
, sgaddr
);
207 len
= flags_and_length
& MPI_SGE_LENGTH_MASK
;
208 if ((flags_and_length
& MPI_SGE_FLAGS_ELEMENT_TYPE_MASK
)
209 != MPI_SGE_FLAGS_SIMPLE_ELEMENT
||
211 !(flags_and_length
& MPI_SGE_FLAGS_END_OF_LIST
) &&
212 !(flags_and_length
& MPI_SGE_FLAGS_END_OF_BUFFER
))) {
213 return MPI_IOCSTATUS_INVALID_SGL
;
216 len
= MIN(len
, left
);
218 /* We reached the desired transfer length, ignore extra
219 * elements of the s/g list.
224 addr
= mptsas_ld_sg_base(s
, flags_and_length
, &sgaddr
);
225 qemu_sglist_add(&req
->qsg
, addr
, len
);
228 if (flags_and_length
& MPI_SGE_FLAGS_END_OF_LIST
) {
232 if (flags_and_length
& MPI_SGE_FLAGS_LAST_ELEMENT
) {
237 flags_and_length
= ldl_le_pci_dma(pci
, next_chain_addr
);
238 if ((flags_and_length
& MPI_SGE_FLAGS_ELEMENT_TYPE_MASK
)
239 != MPI_SGE_FLAGS_CHAIN_ELEMENT
) {
240 return MPI_IOCSTATUS_INVALID_SGL
;
243 sgaddr
= mptsas_ld_sg_base(s
, flags_and_length
, &next_chain_addr
);
245 (flags_and_length
& MPI_SGE_CHAIN_OFFSET_MASK
) >> MPI_SGE_CHAIN_OFFSET_SHIFT
;
246 next_chain_addr
= sgaddr
+ chain_offset
* sizeof(uint32_t);
252 static void mptsas_free_request(MPTSASRequest
*req
)
254 if (req
->sreq
!= NULL
) {
255 req
->sreq
->hba_private
= NULL
;
256 scsi_req_unref(req
->sreq
);
259 qemu_sglist_destroy(&req
->qsg
);
263 static int mptsas_scsi_device_find(MPTSASState
*s
, int bus
, int target
,
264 uint8_t *lun
, SCSIDevice
**sdev
)
267 return MPI_IOCSTATUS_SCSI_INVALID_BUS
;
270 if (target
>= s
->max_devices
) {
271 return MPI_IOCSTATUS_SCSI_INVALID_TARGETID
;
274 *sdev
= scsi_device_find(&s
->bus
, bus
, target
, lun
[1]);
276 return MPI_IOCSTATUS_SCSI_DEVICE_NOT_THERE
;
282 static int mptsas_process_scsi_io_request(MPTSASState
*s
,
283 MPIMsgSCSIIORequest
*scsi_io
,
287 MPIMsgSCSIIOReply reply
;
291 mptsas_fix_scsi_io_endianness(scsi_io
);
293 trace_mptsas_process_scsi_io_request(s
, scsi_io
->Bus
, scsi_io
->TargetID
,
294 scsi_io
->LUN
[1], scsi_io
->DataLength
);
296 status
= mptsas_scsi_device_find(s
, scsi_io
->Bus
, scsi_io
->TargetID
,
297 scsi_io
->LUN
, &sdev
);
302 req
= g_new0(MPTSASRequest
, 1);
303 req
->scsi_io
= *scsi_io
;
306 status
= mptsas_build_sgl(s
, req
, addr
);
311 if (req
->qsg
.size
< scsi_io
->DataLength
) {
312 trace_mptsas_sgl_overflow(s
, scsi_io
->MsgContext
, scsi_io
->DataLength
,
314 status
= MPI_IOCSTATUS_INVALID_SGL
;
318 req
->sreq
= scsi_req_new(sdev
, scsi_io
->MsgContext
,
319 scsi_io
->LUN
[1], scsi_io
->CDB
, req
);
321 if (req
->sreq
->cmd
.xfer
> scsi_io
->DataLength
) {
324 switch (scsi_io
->Control
& MPI_SCSIIO_CONTROL_DATADIRECTION_MASK
) {
325 case MPI_SCSIIO_CONTROL_NODATATRANSFER
:
326 if (req
->sreq
->cmd
.mode
!= SCSI_XFER_NONE
) {
331 case MPI_SCSIIO_CONTROL_WRITE
:
332 if (req
->sreq
->cmd
.mode
!= SCSI_XFER_TO_DEV
) {
337 case MPI_SCSIIO_CONTROL_READ
:
338 if (req
->sreq
->cmd
.mode
!= SCSI_XFER_FROM_DEV
) {
344 if (scsi_req_enqueue(req
->sreq
)) {
345 scsi_req_continue(req
->sreq
);
350 trace_mptsas_scsi_overflow(s
, scsi_io
->MsgContext
, req
->sreq
->cmd
.xfer
,
351 scsi_io
->DataLength
);
352 status
= MPI_IOCSTATUS_SCSI_DATA_OVERRUN
;
354 mptsas_free_request(req
);
356 memset(&reply
, 0, sizeof(reply
));
357 reply
.TargetID
= scsi_io
->TargetID
;
358 reply
.Bus
= scsi_io
->Bus
;
359 reply
.MsgLength
= sizeof(reply
) / 4;
360 reply
.Function
= scsi_io
->Function
;
361 reply
.CDBLength
= scsi_io
->CDBLength
;
362 reply
.SenseBufferLength
= scsi_io
->SenseBufferLength
;
363 reply
.MsgContext
= scsi_io
->MsgContext
;
364 reply
.SCSIState
= MPI_SCSI_STATE_NO_SCSI_STATUS
;
365 reply
.IOCStatus
= status
;
367 mptsas_fix_scsi_io_reply_endianness(&reply
);
368 mptsas_reply(s
, (MPIDefaultReply
*)&reply
);
376 MPIMsgSCSITaskMgmtReply
*reply
;
377 } MPTSASCancelNotifier
;
379 static void mptsas_cancel_notify(Notifier
*notifier
, void *data
)
381 MPTSASCancelNotifier
*n
= container_of(notifier
,
382 MPTSASCancelNotifier
,
385 /* Abusing IOCLogInfo to store the expected number of requests... */
386 if (++n
->reply
->TerminationCount
== n
->reply
->IOCLogInfo
) {
387 n
->reply
->IOCLogInfo
= 0;
388 mptsas_fix_scsi_task_mgmt_reply_endianness(n
->reply
);
389 mptsas_post_reply(n
->s
, (MPIDefaultReply
*)n
->reply
);
395 static void mptsas_process_scsi_task_mgmt(MPTSASState
*s
, MPIMsgSCSITaskMgmt
*req
)
397 MPIMsgSCSITaskMgmtReply reply
;
398 MPIMsgSCSITaskMgmtReply
*reply_async
;
401 SCSIRequest
*r
, *next
;
404 mptsas_fix_scsi_task_mgmt_endianness(req
);
406 QEMU_BUILD_BUG_ON(MPTSAS_MAX_REQUEST_SIZE
< sizeof(*req
));
407 QEMU_BUILD_BUG_ON(sizeof(s
->doorbell_msg
) < sizeof(*req
));
408 QEMU_BUILD_BUG_ON(sizeof(s
->doorbell_reply
) < sizeof(reply
));
410 memset(&reply
, 0, sizeof(reply
));
411 reply
.TargetID
= req
->TargetID
;
412 reply
.Bus
= req
->Bus
;
413 reply
.MsgLength
= sizeof(reply
) / 4;
414 reply
.Function
= req
->Function
;
415 reply
.TaskType
= req
->TaskType
;
416 reply
.MsgContext
= req
->MsgContext
;
418 switch (req
->TaskType
) {
419 case MPI_SCSITASKMGMT_TASKTYPE_ABORT_TASK
:
420 case MPI_SCSITASKMGMT_TASKTYPE_QUERY_TASK
:
421 status
= mptsas_scsi_device_find(s
, req
->Bus
, req
->TargetID
,
424 reply
.IOCStatus
= status
;
427 if (sdev
->lun
!= req
->LUN
[1]) {
428 reply
.ResponseCode
= MPI_SCSITASKMGMT_RSP_TM_INVALID_LUN
;
432 QTAILQ_FOREACH_SAFE(r
, &sdev
->requests
, next
, next
) {
433 MPTSASRequest
*cmd_req
= r
->hba_private
;
434 if (cmd_req
&& cmd_req
->scsi_io
.MsgContext
== req
->TaskMsgContext
) {
440 * Assert that the request has not been completed yet, we
441 * check for it in the loop above.
443 assert(r
->hba_private
);
444 if (req
->TaskType
== MPI_SCSITASKMGMT_TASKTYPE_QUERY_TASK
) {
445 /* "If the specified command is present in the task set, then
446 * return a service response set to FUNCTION SUCCEEDED".
448 reply
.ResponseCode
= MPI_SCSITASKMGMT_RSP_TM_SUCCEEDED
;
450 MPTSASCancelNotifier
*notifier
;
452 reply_async
= g_memdup(&reply
, sizeof(MPIMsgSCSITaskMgmtReply
));
453 reply_async
->IOCLogInfo
= INT_MAX
;
456 notifier
= g_new(MPTSASCancelNotifier
, 1);
458 notifier
->reply
= reply_async
;
459 notifier
->notifier
.notify
= mptsas_cancel_notify
;
460 scsi_req_cancel_async(r
, ¬ifier
->notifier
);
461 goto reply_maybe_async
;
466 case MPI_SCSITASKMGMT_TASKTYPE_ABRT_TASK_SET
:
467 case MPI_SCSITASKMGMT_TASKTYPE_CLEAR_TASK_SET
:
468 status
= mptsas_scsi_device_find(s
, req
->Bus
, req
->TargetID
,
471 reply
.IOCStatus
= status
;
474 if (sdev
->lun
!= req
->LUN
[1]) {
475 reply
.ResponseCode
= MPI_SCSITASKMGMT_RSP_TM_INVALID_LUN
;
479 reply_async
= g_memdup(&reply
, sizeof(MPIMsgSCSITaskMgmtReply
));
480 reply_async
->IOCLogInfo
= INT_MAX
;
483 QTAILQ_FOREACH_SAFE(r
, &sdev
->requests
, next
, next
) {
484 if (r
->hba_private
) {
485 MPTSASCancelNotifier
*notifier
;
488 notifier
= g_new(MPTSASCancelNotifier
, 1);
490 notifier
->reply
= reply_async
;
491 notifier
->notifier
.notify
= mptsas_cancel_notify
;
492 scsi_req_cancel_async(r
, ¬ifier
->notifier
);
497 if (reply_async
->TerminationCount
< count
) {
498 reply_async
->IOCLogInfo
= count
;
502 reply
.TerminationCount
= count
;
505 case MPI_SCSITASKMGMT_TASKTYPE_LOGICAL_UNIT_RESET
:
506 status
= mptsas_scsi_device_find(s
, req
->Bus
, req
->TargetID
,
509 reply
.IOCStatus
= status
;
512 if (sdev
->lun
!= req
->LUN
[1]) {
513 reply
.ResponseCode
= MPI_SCSITASKMGMT_RSP_TM_INVALID_LUN
;
516 qdev_reset_all(&sdev
->qdev
);
519 case MPI_SCSITASKMGMT_TASKTYPE_TARGET_RESET
:
521 reply
.IOCStatus
= MPI_IOCSTATUS_SCSI_INVALID_BUS
;
524 if (req
->TargetID
> s
->max_devices
) {
525 reply
.IOCStatus
= MPI_IOCSTATUS_SCSI_INVALID_TARGETID
;
529 QTAILQ_FOREACH(kid
, &s
->bus
.qbus
.children
, sibling
) {
530 sdev
= SCSI_DEVICE(kid
->child
);
531 if (sdev
->channel
== 0 && sdev
->id
== req
->TargetID
) {
532 qdev_reset_all(kid
->child
);
537 case MPI_SCSITASKMGMT_TASKTYPE_RESET_BUS
:
538 qbus_reset_all(BUS(&s
->bus
));
542 reply
.ResponseCode
= MPI_SCSITASKMGMT_RSP_TM_NOT_SUPPORTED
;
547 mptsas_fix_scsi_task_mgmt_reply_endianness(&reply
);
548 mptsas_post_reply(s
, (MPIDefaultReply
*)&reply
);
551 static void mptsas_process_ioc_init(MPTSASState
*s
, MPIMsgIOCInit
*req
)
553 MPIMsgIOCInitReply reply
;
555 mptsas_fix_ioc_init_endianness(req
);
557 QEMU_BUILD_BUG_ON(MPTSAS_MAX_REQUEST_SIZE
< sizeof(*req
));
558 QEMU_BUILD_BUG_ON(sizeof(s
->doorbell_msg
) < sizeof(*req
));
559 QEMU_BUILD_BUG_ON(sizeof(s
->doorbell_reply
) < sizeof(reply
));
561 s
->who_init
= req
->WhoInit
;
562 s
->reply_frame_size
= req
->ReplyFrameSize
;
563 s
->max_buses
= req
->MaxBuses
;
564 s
->max_devices
= req
->MaxDevices
? req
->MaxDevices
: 256;
565 s
->host_mfa_high_addr
= (hwaddr
)req
->HostMfaHighAddr
<< 32;
566 s
->sense_buffer_high_addr
= (hwaddr
)req
->SenseBufferHighAddr
<< 32;
568 if (s
->state
== MPI_IOC_STATE_READY
) {
569 s
->state
= MPI_IOC_STATE_OPERATIONAL
;
572 memset(&reply
, 0, sizeof(reply
));
573 reply
.WhoInit
= s
->who_init
;
574 reply
.MsgLength
= sizeof(reply
) / 4;
575 reply
.Function
= req
->Function
;
576 reply
.MaxDevices
= s
->max_devices
;
577 reply
.MaxBuses
= s
->max_buses
;
578 reply
.MsgContext
= req
->MsgContext
;
580 mptsas_fix_ioc_init_reply_endianness(&reply
);
581 mptsas_reply(s
, (MPIDefaultReply
*)&reply
);
584 static void mptsas_process_ioc_facts(MPTSASState
*s
,
587 MPIMsgIOCFactsReply reply
;
589 mptsas_fix_ioc_facts_endianness(req
);
591 QEMU_BUILD_BUG_ON(MPTSAS_MAX_REQUEST_SIZE
< sizeof(*req
));
592 QEMU_BUILD_BUG_ON(sizeof(s
->doorbell_msg
) < sizeof(*req
));
593 QEMU_BUILD_BUG_ON(sizeof(s
->doorbell_reply
) < sizeof(reply
));
595 memset(&reply
, 0, sizeof(reply
));
596 reply
.MsgVersion
= 0x0105;
597 reply
.MsgLength
= sizeof(reply
) / 4;
598 reply
.Function
= req
->Function
;
599 reply
.MsgContext
= req
->MsgContext
;
600 reply
.MaxChainDepth
= MPTSAS_MAXIMUM_CHAIN_DEPTH
;
601 reply
.WhoInit
= s
->who_init
;
602 reply
.BlockSize
= MPTSAS_MAX_REQUEST_SIZE
/ sizeof(uint32_t);
603 reply
.ReplyQueueDepth
= ARRAY_SIZE(s
->reply_post
) - 1;
604 QEMU_BUILD_BUG_ON(ARRAY_SIZE(s
->reply_post
) != ARRAY_SIZE(s
->reply_free
));
606 reply
.RequestFrameSize
= 128;
607 reply
.ProductID
= MPTSAS1068_PRODUCT_ID
;
608 reply
.CurrentHostMfaHighAddr
= s
->host_mfa_high_addr
>> 32;
609 reply
.GlobalCredits
= ARRAY_SIZE(s
->request_post
) - 1;
610 reply
.NumberOfPorts
= MPTSAS_NUM_PORTS
;
611 reply
.CurrentSenseBufferHighAddr
= s
->sense_buffer_high_addr
>> 32;
612 reply
.CurReplyFrameSize
= s
->reply_frame_size
;
613 reply
.MaxDevices
= s
->max_devices
;
614 reply
.MaxBuses
= s
->max_buses
;
615 reply
.FWVersionDev
= 0;
616 reply
.FWVersionUnit
= 0x92;
617 reply
.FWVersionMinor
= 0x32;
618 reply
.FWVersionMajor
= 0x1;
620 mptsas_fix_ioc_facts_reply_endianness(&reply
);
621 mptsas_reply(s
, (MPIDefaultReply
*)&reply
);
624 static void mptsas_process_port_facts(MPTSASState
*s
,
625 MPIMsgPortFacts
*req
)
627 MPIMsgPortFactsReply reply
;
629 mptsas_fix_port_facts_endianness(req
);
631 QEMU_BUILD_BUG_ON(MPTSAS_MAX_REQUEST_SIZE
< sizeof(*req
));
632 QEMU_BUILD_BUG_ON(sizeof(s
->doorbell_msg
) < sizeof(*req
));
633 QEMU_BUILD_BUG_ON(sizeof(s
->doorbell_reply
) < sizeof(reply
));
635 memset(&reply
, 0, sizeof(reply
));
636 reply
.MsgLength
= sizeof(reply
) / 4;
637 reply
.Function
= req
->Function
;
638 reply
.PortNumber
= req
->PortNumber
;
639 reply
.MsgContext
= req
->MsgContext
;
641 if (req
->PortNumber
< MPTSAS_NUM_PORTS
) {
642 reply
.PortType
= MPI_PORTFACTS_PORTTYPE_SAS
;
643 reply
.MaxDevices
= MPTSAS_NUM_PORTS
;
644 reply
.PortSCSIID
= MPTSAS_NUM_PORTS
;
645 reply
.ProtocolFlags
= MPI_PORTFACTS_PROTOCOL_LOGBUSADDR
| MPI_PORTFACTS_PROTOCOL_INITIATOR
;
648 mptsas_fix_port_facts_reply_endianness(&reply
);
649 mptsas_reply(s
, (MPIDefaultReply
*)&reply
);
652 static void mptsas_process_port_enable(MPTSASState
*s
,
653 MPIMsgPortEnable
*req
)
655 MPIMsgPortEnableReply reply
;
657 mptsas_fix_port_enable_endianness(req
);
659 QEMU_BUILD_BUG_ON(MPTSAS_MAX_REQUEST_SIZE
< sizeof(*req
));
660 QEMU_BUILD_BUG_ON(sizeof(s
->doorbell_msg
) < sizeof(*req
));
661 QEMU_BUILD_BUG_ON(sizeof(s
->doorbell_reply
) < sizeof(reply
));
663 memset(&reply
, 0, sizeof(reply
));
664 reply
.MsgLength
= sizeof(reply
) / 4;
665 reply
.PortNumber
= req
->PortNumber
;
666 reply
.Function
= req
->Function
;
667 reply
.MsgContext
= req
->MsgContext
;
669 mptsas_fix_port_enable_reply_endianness(&reply
);
670 mptsas_reply(s
, (MPIDefaultReply
*)&reply
);
673 static void mptsas_process_event_notification(MPTSASState
*s
,
674 MPIMsgEventNotify
*req
)
676 MPIMsgEventNotifyReply reply
;
678 mptsas_fix_event_notification_endianness(req
);
680 QEMU_BUILD_BUG_ON(MPTSAS_MAX_REQUEST_SIZE
< sizeof(*req
));
681 QEMU_BUILD_BUG_ON(sizeof(s
->doorbell_msg
) < sizeof(*req
));
682 QEMU_BUILD_BUG_ON(sizeof(s
->doorbell_reply
) < sizeof(reply
));
684 /* Don't even bother storing whether event notification is enabled,
685 * since it is not accessible.
688 memset(&reply
, 0, sizeof(reply
));
689 reply
.EventDataLength
= sizeof(reply
.Data
) / 4;
690 reply
.MsgLength
= sizeof(reply
) / 4;
691 reply
.Function
= req
->Function
;
693 /* This is set because events are sent through the reply FIFOs. */
694 reply
.MsgFlags
= MPI_MSGFLAGS_CONTINUATION_REPLY
;
696 reply
.MsgContext
= req
->MsgContext
;
697 reply
.Event
= MPI_EVENT_EVENT_CHANGE
;
698 reply
.Data
[0] = !!req
->Switch
;
700 mptsas_fix_event_notification_reply_endianness(&reply
);
701 mptsas_reply(s
, (MPIDefaultReply
*)&reply
);
704 static void mptsas_process_message(MPTSASState
*s
, MPIRequestHeader
*req
)
706 trace_mptsas_process_message(s
, req
->Function
, req
->MsgContext
);
707 switch (req
->Function
) {
708 case MPI_FUNCTION_SCSI_TASK_MGMT
:
709 mptsas_process_scsi_task_mgmt(s
, (MPIMsgSCSITaskMgmt
*)req
);
712 case MPI_FUNCTION_IOC_INIT
:
713 mptsas_process_ioc_init(s
, (MPIMsgIOCInit
*)req
);
716 case MPI_FUNCTION_IOC_FACTS
:
717 mptsas_process_ioc_facts(s
, (MPIMsgIOCFacts
*)req
);
720 case MPI_FUNCTION_PORT_FACTS
:
721 mptsas_process_port_facts(s
, (MPIMsgPortFacts
*)req
);
724 case MPI_FUNCTION_PORT_ENABLE
:
725 mptsas_process_port_enable(s
, (MPIMsgPortEnable
*)req
);
728 case MPI_FUNCTION_EVENT_NOTIFICATION
:
729 mptsas_process_event_notification(s
, (MPIMsgEventNotify
*)req
);
732 case MPI_FUNCTION_CONFIG
:
733 mptsas_process_config(s
, (MPIMsgConfig
*)req
);
737 trace_mptsas_unhandled_cmd(s
, req
->Function
, 0);
738 mptsas_set_fault(s
, MPI_IOCSTATUS_INVALID_FUNCTION
);
743 static void mptsas_fetch_request(MPTSASState
*s
)
745 PCIDevice
*pci
= (PCIDevice
*) s
;
746 char req
[MPTSAS_MAX_REQUEST_SIZE
];
747 MPIRequestHeader
*hdr
= (MPIRequestHeader
*)req
;
751 /* Read the message header from the guest first. */
752 addr
= s
->host_mfa_high_addr
| MPTSAS_FIFO_GET(s
, request_post
);
753 pci_dma_read(pci
, addr
, req
, sizeof(*hdr
));
755 if (hdr
->Function
< ARRAY_SIZE(mpi_request_sizes
) &&
756 mpi_request_sizes
[hdr
->Function
]) {
757 /* Read the rest of the request based on the type. Do not
758 * reread everything, as that could cause a TOC/TOU mismatch
759 * and leak data from the QEMU stack.
761 size
= mpi_request_sizes
[hdr
->Function
];
762 assert(size
<= MPTSAS_MAX_REQUEST_SIZE
);
763 pci_dma_read(pci
, addr
+ sizeof(*hdr
), &req
[sizeof(*hdr
)],
764 size
- sizeof(*hdr
));
767 if (hdr
->Function
== MPI_FUNCTION_SCSI_IO_REQUEST
) {
768 /* SCSI I/O requests are separate from mptsas_process_message
769 * because they cannot be sent through the doorbell yet.
771 mptsas_process_scsi_io_request(s
, (MPIMsgSCSIIORequest
*)req
, addr
);
773 mptsas_process_message(s
, (MPIRequestHeader
*)req
);
777 static void mptsas_fetch_requests(void *opaque
)
779 MPTSASState
*s
= opaque
;
781 if (s
->state
!= MPI_IOC_STATE_OPERATIONAL
) {
782 mptsas_set_fault(s
, MPI_IOCSTATUS_INVALID_STATE
);
785 while (!MPTSAS_FIFO_EMPTY(s
, request_post
)) {
786 mptsas_fetch_request(s
);
790 static void mptsas_soft_reset(MPTSASState
*s
)
794 trace_mptsas_reset(s
);
796 /* Temporarily disable interrupts */
797 save_mask
= s
->intr_mask
;
798 s
->intr_mask
= MPI_HIM_DIM
| MPI_HIM_RIM
;
799 mptsas_update_interrupt(s
);
801 qbus_reset_all(BUS(&s
->bus
));
803 s
->intr_mask
= save_mask
;
805 s
->reply_free_tail
= 0;
806 s
->reply_free_head
= 0;
807 s
->reply_post_tail
= 0;
808 s
->reply_post_head
= 0;
809 s
->request_post_tail
= 0;
810 s
->request_post_head
= 0;
811 qemu_bh_cancel(s
->request_bh
);
813 s
->state
= MPI_IOC_STATE_READY
;
816 static uint32_t mptsas_doorbell_read(MPTSASState
*s
)
820 ret
= (s
->who_init
<< MPI_DOORBELL_WHO_INIT_SHIFT
) & MPI_DOORBELL_WHO_INIT_MASK
;
822 switch (s
->doorbell_state
) {
827 ret
|= MPI_DOORBELL_ACTIVE
;
831 /* Get rid of the IOC fault code. */
832 ret
&= ~MPI_DOORBELL_DATA_MASK
;
834 assert(s
->intr_status
& MPI_HIS_DOORBELL_INTERRUPT
);
835 assert(s
->doorbell_reply_idx
<= s
->doorbell_reply_size
);
837 ret
|= MPI_DOORBELL_ACTIVE
;
838 if (s
->doorbell_reply_idx
< s
->doorbell_reply_size
) {
839 /* For more information about this endian switch, see the
840 * commit message for commit 36b62ae ("fw_cfg: fix endianness in
841 * fw_cfg_data_mem_read() / _write()", 2015-01-16).
843 ret
|= le16_to_cpu(s
->doorbell_reply
[s
->doorbell_reply_idx
++]);
854 static void mptsas_doorbell_write(MPTSASState
*s
, uint32_t val
)
856 if (s
->doorbell_state
== DOORBELL_WRITE
) {
857 if (s
->doorbell_idx
< s
->doorbell_cnt
) {
858 /* For more information about this endian switch, see the
859 * commit message for commit 36b62ae ("fw_cfg: fix endianness in
860 * fw_cfg_data_mem_read() / _write()", 2015-01-16).
862 s
->doorbell_msg
[s
->doorbell_idx
++] = cpu_to_le32(val
);
863 if (s
->doorbell_idx
== s
->doorbell_cnt
) {
864 mptsas_process_message(s
, (MPIRequestHeader
*)s
->doorbell_msg
);
870 switch ((val
& MPI_DOORBELL_FUNCTION_MASK
) >> MPI_DOORBELL_FUNCTION_SHIFT
) {
871 case MPI_FUNCTION_IOC_MESSAGE_UNIT_RESET
:
872 mptsas_soft_reset(s
);
874 case MPI_FUNCTION_IO_UNIT_RESET
:
876 case MPI_FUNCTION_HANDSHAKE
:
877 s
->doorbell_state
= DOORBELL_WRITE
;
879 s
->doorbell_cnt
= (val
& MPI_DOORBELL_ADD_DWORDS_MASK
)
880 >> MPI_DOORBELL_ADD_DWORDS_SHIFT
;
881 s
->intr_status
|= MPI_HIS_DOORBELL_INTERRUPT
;
882 mptsas_update_interrupt(s
);
885 trace_mptsas_unhandled_doorbell_cmd(s
, val
);
890 static void mptsas_write_sequence_write(MPTSASState
*s
, uint32_t val
)
892 /* If the diagnostic register is enabled, any write to this register
893 * will disable it. Otherwise, the guest has to do a magic five-write
896 if (s
->diagnostic
& MPI_DIAG_DRWE
) {
900 switch (s
->diagnostic_idx
) {
902 if ((val
& MPI_WRSEQ_KEY_VALUE_MASK
) != MPI_WRSEQ_1ST_KEY_VALUE
) {
907 if ((val
& MPI_WRSEQ_KEY_VALUE_MASK
) != MPI_WRSEQ_2ND_KEY_VALUE
) {
912 if ((val
& MPI_WRSEQ_KEY_VALUE_MASK
) != MPI_WRSEQ_3RD_KEY_VALUE
) {
917 if ((val
& MPI_WRSEQ_KEY_VALUE_MASK
) != MPI_WRSEQ_4TH_KEY_VALUE
) {
922 if ((val
& MPI_WRSEQ_KEY_VALUE_MASK
) != MPI_WRSEQ_5TH_KEY_VALUE
) {
925 /* Prepare Spaceball One for departure, and change the
926 * combination on my luggage!
928 s
->diagnostic
|= MPI_DIAG_DRWE
;
935 s
->diagnostic
&= ~MPI_DIAG_DRWE
;
936 s
->diagnostic_idx
= 0;
939 static int mptsas_hard_reset(MPTSASState
*s
)
941 mptsas_soft_reset(s
);
943 s
->intr_mask
= MPI_HIM_DIM
| MPI_HIM_RIM
;
945 s
->host_mfa_high_addr
= 0;
946 s
->sense_buffer_high_addr
= 0;
947 s
->reply_frame_size
= 0;
948 s
->max_devices
= MPTSAS_NUM_PORTS
;
954 static void mptsas_interrupt_status_write(MPTSASState
*s
)
956 switch (s
->doorbell_state
) {
959 s
->intr_status
&= ~MPI_HIS_DOORBELL_INTERRUPT
;
963 /* The reply can be read continuously, so leave the interrupt up. */
964 assert(s
->intr_status
& MPI_HIS_DOORBELL_INTERRUPT
);
965 if (s
->doorbell_reply_idx
== s
->doorbell_reply_size
) {
966 s
->doorbell_state
= DOORBELL_NONE
;
973 mptsas_update_interrupt(s
);
976 static uint32_t mptsas_reply_post_read(MPTSASState
*s
)
980 if (!MPTSAS_FIFO_EMPTY(s
, reply_post
)) {
981 ret
= MPTSAS_FIFO_GET(s
, reply_post
);
984 s
->intr_status
&= ~MPI_HIS_REPLY_MESSAGE_INTERRUPT
;
985 mptsas_update_interrupt(s
);
991 static uint64_t mptsas_mmio_read(void *opaque
, hwaddr addr
,
994 MPTSASState
*s
= opaque
;
998 case MPI_DOORBELL_OFFSET
:
999 ret
= mptsas_doorbell_read(s
);
1002 case MPI_DIAGNOSTIC_OFFSET
:
1003 ret
= s
->diagnostic
;
1006 case MPI_HOST_INTERRUPT_STATUS_OFFSET
:
1007 ret
= s
->intr_status
;
1010 case MPI_HOST_INTERRUPT_MASK_OFFSET
:
1014 case MPI_REPLY_POST_FIFO_OFFSET
:
1015 ret
= mptsas_reply_post_read(s
);
1019 trace_mptsas_mmio_unhandled_read(s
, addr
);
1022 trace_mptsas_mmio_read(s
, addr
, ret
);
1026 static void mptsas_mmio_write(void *opaque
, hwaddr addr
,
1027 uint64_t val
, unsigned size
)
1029 MPTSASState
*s
= opaque
;
1031 trace_mptsas_mmio_write(s
, addr
, val
);
1033 case MPI_DOORBELL_OFFSET
:
1034 mptsas_doorbell_write(s
, val
);
1037 case MPI_WRITE_SEQUENCE_OFFSET
:
1038 mptsas_write_sequence_write(s
, val
);
1041 case MPI_DIAGNOSTIC_OFFSET
:
1042 if (val
& MPI_DIAG_RESET_ADAPTER
) {
1043 mptsas_hard_reset(s
);
1047 case MPI_HOST_INTERRUPT_STATUS_OFFSET
:
1048 mptsas_interrupt_status_write(s
);
1051 case MPI_HOST_INTERRUPT_MASK_OFFSET
:
1052 s
->intr_mask
= val
& (MPI_HIM_RIM
| MPI_HIM_DIM
);
1053 mptsas_update_interrupt(s
);
1056 case MPI_REQUEST_POST_FIFO_OFFSET
:
1057 if (MPTSAS_FIFO_FULL(s
, request_post
)) {
1058 mptsas_set_fault(s
, MPI_IOCSTATUS_INSUFFICIENT_RESOURCES
);
1060 MPTSAS_FIFO_PUT(s
, request_post
, val
& ~0x03);
1061 qemu_bh_schedule(s
->request_bh
);
1065 case MPI_REPLY_FREE_FIFO_OFFSET
:
1066 if (MPTSAS_FIFO_FULL(s
, reply_free
)) {
1067 mptsas_set_fault(s
, MPI_IOCSTATUS_INSUFFICIENT_RESOURCES
);
1069 MPTSAS_FIFO_PUT(s
, reply_free
, val
);
1074 trace_mptsas_mmio_unhandled_write(s
, addr
, val
);
1079 static const MemoryRegionOps mptsas_mmio_ops
= {
1080 .read
= mptsas_mmio_read
,
1081 .write
= mptsas_mmio_write
,
1082 .endianness
= DEVICE_LITTLE_ENDIAN
,
1084 .min_access_size
= 4,
1085 .max_access_size
= 4,
1089 static const MemoryRegionOps mptsas_port_ops
= {
1090 .read
= mptsas_mmio_read
,
1091 .write
= mptsas_mmio_write
,
1092 .endianness
= DEVICE_LITTLE_ENDIAN
,
1094 .min_access_size
= 4,
1095 .max_access_size
= 4,
1099 static uint64_t mptsas_diag_read(void *opaque
, hwaddr addr
,
1102 MPTSASState
*s
= opaque
;
1103 trace_mptsas_diag_read(s
, addr
, 0);
1107 static void mptsas_diag_write(void *opaque
, hwaddr addr
,
1108 uint64_t val
, unsigned size
)
1110 MPTSASState
*s
= opaque
;
1111 trace_mptsas_diag_write(s
, addr
, val
);
1114 static const MemoryRegionOps mptsas_diag_ops
= {
1115 .read
= mptsas_diag_read
,
1116 .write
= mptsas_diag_write
,
1117 .endianness
= DEVICE_LITTLE_ENDIAN
,
1119 .min_access_size
= 4,
1120 .max_access_size
= 4,
1124 static QEMUSGList
*mptsas_get_sg_list(SCSIRequest
*sreq
)
1126 MPTSASRequest
*req
= sreq
->hba_private
;
1131 static void mptsas_command_complete(SCSIRequest
*sreq
,
1134 MPTSASRequest
*req
= sreq
->hba_private
;
1135 MPTSASState
*s
= req
->dev
;
1136 uint8_t sense_buf
[SCSI_SENSE_BUF_SIZE
];
1139 hwaddr sense_buffer_addr
= req
->dev
->sense_buffer_high_addr
|
1140 req
->scsi_io
.SenseBufferLowAddr
;
1142 trace_mptsas_command_complete(s
, req
->scsi_io
.MsgContext
,
1143 sreq
->status
, resid
);
1145 sense_len
= scsi_req_get_sense(sreq
, sense_buf
, SCSI_SENSE_BUF_SIZE
);
1146 if (sense_len
> 0) {
1147 pci_dma_write(PCI_DEVICE(s
), sense_buffer_addr
, sense_buf
,
1148 MIN(req
->scsi_io
.SenseBufferLength
, sense_len
));
1151 if (sreq
->status
!= GOOD
|| resid
||
1152 req
->dev
->doorbell_state
== DOORBELL_WRITE
) {
1153 MPIMsgSCSIIOReply reply
;
1155 memset(&reply
, 0, sizeof(reply
));
1156 reply
.TargetID
= req
->scsi_io
.TargetID
;
1157 reply
.Bus
= req
->scsi_io
.Bus
;
1158 reply
.MsgLength
= sizeof(reply
) / 4;
1159 reply
.Function
= req
->scsi_io
.Function
;
1160 reply
.CDBLength
= req
->scsi_io
.CDBLength
;
1161 reply
.SenseBufferLength
= req
->scsi_io
.SenseBufferLength
;
1162 reply
.MsgFlags
= req
->scsi_io
.MsgFlags
;
1163 reply
.MsgContext
= req
->scsi_io
.MsgContext
;
1164 reply
.SCSIStatus
= sreq
->status
;
1165 if (sreq
->status
== GOOD
) {
1166 reply
.TransferCount
= req
->scsi_io
.DataLength
- resid
;
1168 reply
.IOCStatus
= MPI_IOCSTATUS_SCSI_DATA_UNDERRUN
;
1171 reply
.SCSIState
= MPI_SCSI_STATE_AUTOSENSE_VALID
;
1172 reply
.SenseCount
= sense_len
;
1173 reply
.IOCStatus
= MPI_IOCSTATUS_SCSI_DATA_UNDERRUN
;
1176 mptsas_fix_scsi_io_reply_endianness(&reply
);
1177 mptsas_post_reply(req
->dev
, (MPIDefaultReply
*)&reply
);
1179 mptsas_turbo_reply(req
->dev
, req
->scsi_io
.MsgContext
);
1182 mptsas_free_request(req
);
1185 static void mptsas_request_cancelled(SCSIRequest
*sreq
)
1187 MPTSASRequest
*req
= sreq
->hba_private
;
1188 MPIMsgSCSIIOReply reply
;
1190 memset(&reply
, 0, sizeof(reply
));
1191 reply
.TargetID
= req
->scsi_io
.TargetID
;
1192 reply
.Bus
= req
->scsi_io
.Bus
;
1193 reply
.MsgLength
= sizeof(reply
) / 4;
1194 reply
.Function
= req
->scsi_io
.Function
;
1195 reply
.CDBLength
= req
->scsi_io
.CDBLength
;
1196 reply
.SenseBufferLength
= req
->scsi_io
.SenseBufferLength
;
1197 reply
.MsgFlags
= req
->scsi_io
.MsgFlags
;
1198 reply
.MsgContext
= req
->scsi_io
.MsgContext
;
1199 reply
.SCSIState
= MPI_SCSI_STATE_NO_SCSI_STATUS
;
1200 reply
.IOCStatus
= MPI_IOCSTATUS_SCSI_TASK_TERMINATED
;
1202 mptsas_fix_scsi_io_reply_endianness(&reply
);
1203 mptsas_post_reply(req
->dev
, (MPIDefaultReply
*)&reply
);
1204 mptsas_free_request(req
);
1207 static void mptsas_save_request(QEMUFile
*f
, SCSIRequest
*sreq
)
1209 MPTSASRequest
*req
= sreq
->hba_private
;
1212 qemu_put_buffer(f
, (unsigned char *)&req
->scsi_io
, sizeof(req
->scsi_io
));
1213 qemu_put_be32(f
, req
->qsg
.nsg
);
1214 for (i
= 0; i
< req
->qsg
.nsg
; i
++) {
1215 qemu_put_be64(f
, req
->qsg
.sg
[i
].base
);
1216 qemu_put_be64(f
, req
->qsg
.sg
[i
].len
);
1220 static void *mptsas_load_request(QEMUFile
*f
, SCSIRequest
*sreq
)
1222 SCSIBus
*bus
= sreq
->bus
;
1223 MPTSASState
*s
= container_of(bus
, MPTSASState
, bus
);
1224 PCIDevice
*pci
= PCI_DEVICE(s
);
1228 req
= g_new(MPTSASRequest
, 1);
1229 qemu_get_buffer(f
, (unsigned char *)&req
->scsi_io
, sizeof(req
->scsi_io
));
1231 n
= qemu_get_be32(f
);
1232 /* TODO: add a way for SCSIBusInfo's load_request to fail,
1233 * and fail migration instead of asserting here.
1234 * This is just one thing (there are probably more) that must be
1235 * fixed before we can allow NDEBUG compilation.
1239 pci_dma_sglist_init(&req
->qsg
, pci
, n
);
1240 for (i
= 0; i
< n
; i
++) {
1241 uint64_t base
= qemu_get_be64(f
);
1242 uint64_t len
= qemu_get_be64(f
);
1243 qemu_sglist_add(&req
->qsg
, base
, len
);
1253 static const struct SCSIBusInfo mptsas_scsi_info
= {
1255 .max_target
= MPTSAS_NUM_PORTS
,
1258 .get_sg_list
= mptsas_get_sg_list
,
1259 .complete
= mptsas_command_complete
,
1260 .cancel
= mptsas_request_cancelled
,
1261 .save_request
= mptsas_save_request
,
1262 .load_request
= mptsas_load_request
,
1265 static void mptsas_scsi_realize(PCIDevice
*dev
, Error
**errp
)
1267 MPTSASState
*s
= MPT_SAS(dev
);
1271 dev
->config
[PCI_LATENCY_TIMER
] = 0;
1272 dev
->config
[PCI_INTERRUPT_PIN
] = 0x01;
1274 if (s
->msi
!= ON_OFF_AUTO_OFF
) {
1275 ret
= msi_init(dev
, 0, 1, true, false, &err
);
1276 /* Any error other than -ENOTSUP(board's MSI support is broken)
1277 * is a programming error */
1278 assert(!ret
|| ret
== -ENOTSUP
);
1279 if (ret
&& s
->msi
== ON_OFF_AUTO_ON
) {
1280 /* Can't satisfy user's explicit msi=on request, fail */
1281 error_append_hint(&err
, "You have to use msi=auto (default) or "
1282 "msi=off with this machine type.\n");
1283 error_propagate(errp
, err
);
1286 assert(!err
|| s
->msi
== ON_OFF_AUTO_AUTO
);
1287 /* With msi=auto, we fall back to MSI off silently */
1290 /* Only used for migration. */
1291 s
->msi_in_use
= (ret
== 0);
1294 memory_region_init_io(&s
->mmio_io
, OBJECT(s
), &mptsas_mmio_ops
, s
,
1295 "mptsas-mmio", 0x4000);
1296 memory_region_init_io(&s
->port_io
, OBJECT(s
), &mptsas_port_ops
, s
,
1298 memory_region_init_io(&s
->diag_io
, OBJECT(s
), &mptsas_diag_ops
, s
,
1299 "mptsas-diag", 0x10000);
1301 pci_register_bar(dev
, 0, PCI_BASE_ADDRESS_SPACE_IO
, &s
->port_io
);
1302 pci_register_bar(dev
, 1, PCI_BASE_ADDRESS_SPACE_MEMORY
|
1303 PCI_BASE_ADDRESS_MEM_TYPE_32
, &s
->mmio_io
);
1304 pci_register_bar(dev
, 2, PCI_BASE_ADDRESS_SPACE_MEMORY
|
1305 PCI_BASE_ADDRESS_MEM_TYPE_32
, &s
->diag_io
);
1308 s
->sas_addr
= ((NAA_LOCALLY_ASSIGNED_ID
<< 24) |
1309 IEEE_COMPANY_LOCALLY_ASSIGNED
) << 36;
1310 s
->sas_addr
|= (pci_dev_bus_num(dev
) << 16);
1311 s
->sas_addr
|= (PCI_SLOT(dev
->devfn
) << 8);
1312 s
->sas_addr
|= PCI_FUNC(dev
->devfn
);
1314 s
->max_devices
= MPTSAS_NUM_PORTS
;
1316 s
->request_bh
= qemu_bh_new(mptsas_fetch_requests
, s
);
1318 scsi_bus_new(&s
->bus
, sizeof(s
->bus
), &dev
->qdev
, &mptsas_scsi_info
, NULL
);
1321 static void mptsas_scsi_uninit(PCIDevice
*dev
)
1323 MPTSASState
*s
= MPT_SAS(dev
);
1325 qemu_bh_delete(s
->request_bh
);
1329 static void mptsas_reset(DeviceState
*dev
)
1331 MPTSASState
*s
= MPT_SAS(dev
);
1333 mptsas_hard_reset(s
);
1336 static int mptsas_post_load(void *opaque
, int version_id
)
1338 MPTSASState
*s
= opaque
;
1340 if (s
->doorbell_idx
> s
->doorbell_cnt
||
1341 s
->doorbell_cnt
> ARRAY_SIZE(s
->doorbell_msg
) ||
1342 s
->doorbell_reply_idx
> s
->doorbell_reply_size
||
1343 s
->doorbell_reply_size
> ARRAY_SIZE(s
->doorbell_reply
) ||
1344 MPTSAS_FIFO_INVALID(s
, request_post
) ||
1345 MPTSAS_FIFO_INVALID(s
, reply_post
) ||
1346 MPTSAS_FIFO_INVALID(s
, reply_free
) ||
1347 s
->diagnostic_idx
> 4) {
1354 static const VMStateDescription vmstate_mptsas
= {
1357 .minimum_version_id
= 0,
1358 .minimum_version_id_old
= 0,
1359 .post_load
= mptsas_post_load
,
1360 .fields
= (VMStateField
[]) {
1361 VMSTATE_PCI_DEVICE(dev
, MPTSASState
),
1362 VMSTATE_BOOL(msi_in_use
, MPTSASState
),
1363 VMSTATE_UINT32(state
, MPTSASState
),
1364 VMSTATE_UINT8(who_init
, MPTSASState
),
1365 VMSTATE_UINT8(doorbell_state
, MPTSASState
),
1366 VMSTATE_UINT32_ARRAY(doorbell_msg
, MPTSASState
, 256),
1367 VMSTATE_INT32(doorbell_idx
, MPTSASState
),
1368 VMSTATE_INT32(doorbell_cnt
, MPTSASState
),
1370 VMSTATE_UINT16_ARRAY(doorbell_reply
, MPTSASState
, 256),
1371 VMSTATE_INT32(doorbell_reply_idx
, MPTSASState
),
1372 VMSTATE_INT32(doorbell_reply_size
, MPTSASState
),
1374 VMSTATE_UINT32(diagnostic
, MPTSASState
),
1375 VMSTATE_UINT8(diagnostic_idx
, MPTSASState
),
1377 VMSTATE_UINT32(intr_status
, MPTSASState
),
1378 VMSTATE_UINT32(intr_mask
, MPTSASState
),
1380 VMSTATE_UINT32_ARRAY(request_post
, MPTSASState
,
1381 MPTSAS_REQUEST_QUEUE_DEPTH
+ 1),
1382 VMSTATE_UINT16(request_post_head
, MPTSASState
),
1383 VMSTATE_UINT16(request_post_tail
, MPTSASState
),
1385 VMSTATE_UINT32_ARRAY(reply_post
, MPTSASState
,
1386 MPTSAS_REPLY_QUEUE_DEPTH
+ 1),
1387 VMSTATE_UINT16(reply_post_head
, MPTSASState
),
1388 VMSTATE_UINT16(reply_post_tail
, MPTSASState
),
1390 VMSTATE_UINT32_ARRAY(reply_free
, MPTSASState
,
1391 MPTSAS_REPLY_QUEUE_DEPTH
+ 1),
1392 VMSTATE_UINT16(reply_free_head
, MPTSASState
),
1393 VMSTATE_UINT16(reply_free_tail
, MPTSASState
),
1395 VMSTATE_UINT16(max_buses
, MPTSASState
),
1396 VMSTATE_UINT16(max_devices
, MPTSASState
),
1397 VMSTATE_UINT16(reply_frame_size
, MPTSASState
),
1398 VMSTATE_UINT64(host_mfa_high_addr
, MPTSASState
),
1399 VMSTATE_UINT64(sense_buffer_high_addr
, MPTSASState
),
1400 VMSTATE_END_OF_LIST()
1404 static Property mptsas_properties
[] = {
1405 DEFINE_PROP_UINT64("sas_address", MPTSASState
, sas_addr
, 0),
1406 /* TODO: test MSI support under Windows */
1407 DEFINE_PROP_ON_OFF_AUTO("msi", MPTSASState
, msi
, ON_OFF_AUTO_AUTO
),
1408 DEFINE_PROP_END_OF_LIST(),
1411 static void mptsas1068_class_init(ObjectClass
*oc
, void *data
)
1413 DeviceClass
*dc
= DEVICE_CLASS(oc
);
1414 PCIDeviceClass
*pc
= PCI_DEVICE_CLASS(oc
);
1416 pc
->realize
= mptsas_scsi_realize
;
1417 pc
->exit
= mptsas_scsi_uninit
;
1419 pc
->vendor_id
= PCI_VENDOR_ID_LSI_LOGIC
;
1420 pc
->device_id
= PCI_DEVICE_ID_LSI_SAS1068
;
1421 pc
->subsystem_vendor_id
= PCI_VENDOR_ID_LSI_LOGIC
;
1422 pc
->subsystem_id
= 0x8000;
1423 pc
->class_id
= PCI_CLASS_STORAGE_SCSI
;
1424 device_class_set_props(dc
, mptsas_properties
);
1425 dc
->reset
= mptsas_reset
;
1426 dc
->vmsd
= &vmstate_mptsas
;
1427 dc
->desc
= "LSI SAS 1068";
1428 set_bit(DEVICE_CATEGORY_STORAGE
, dc
->categories
);
1431 static const TypeInfo mptsas_info
= {
1432 .name
= TYPE_MPTSAS1068
,
1433 .parent
= TYPE_PCI_DEVICE
,
1434 .instance_size
= sizeof(MPTSASState
),
1435 .class_init
= mptsas1068_class_init
,
1436 .interfaces
= (InterfaceInfo
[]) {
1437 { INTERFACE_CONVENTIONAL_PCI_DEVICE
},
1442 static void mptsas_register_types(void)
1444 type_register(&mptsas_info
);
1447 type_init(mptsas_register_types
)