/* * linux/drivers/scsi/esas2r/esas2r_int.c * esas2r interrupt handling * * Copyright (c) 2001-2013 ATTO Technology, Inc. * (mailto:[email protected]) */ /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/ /* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * NO WARRANTY * THE PROGRAM IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR * CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT * LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is * solely responsible for determining the appropriateness of using and * distributing the Program and assumes all risks associated with its * exercise of rights under this Agreement, including but not limited to * the risks and costs of program errors, damage to or loss of data, * programs or equipment, and unavailability or interruption of operations. * * DISCLAIMER OF LIABILITY * NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE * USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED * HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/ #include "esas2r.h" /* Local function prototypes */ static void esas2r_doorbell_interrupt(struct esas2r_adapter *a, u32 doorbell); static void esas2r_get_outbound_responses(struct esas2r_adapter *a); static void esas2r_process_bus_reset(struct esas2r_adapter *a); /* * Poll the adapter for interrupts and service them. * This function handles both legacy interrupts and MSI. */ void esas2r_polled_interrupt(struct esas2r_adapter *a) { … } /* * Legacy and MSI interrupt handlers. Note that the legacy interrupt handler * schedules a TASKLET to process events, whereas the MSI handler just * processes interrupt events directly. */ irqreturn_t esas2r_interrupt(int irq, void *dev_id) { … } void esas2r_adapter_interrupt(struct esas2r_adapter *a) { … } irqreturn_t esas2r_msi_interrupt(int irq, void *dev_id) { … } static void esas2r_handle_outbound_rsp_err(struct esas2r_adapter *a, struct esas2r_request *rq, struct atto_vda_ob_rsp *rsp) { … } static void esas2r_get_outbound_responses(struct esas2r_adapter *a) { … } /* * Perform all deferred processes for the adapter. Deferred * processes can only be done while the current interrupt * disable_cnt for the adapter is zero. */ void esas2r_do_deferred_processes(struct esas2r_adapter *a) { … } /* * Process an adapter reset (or one that is about to happen) * by making sure all outstanding requests are completed that * haven't been already. */ void esas2r_process_adapter_reset(struct esas2r_adapter *a) { … } static void esas2r_process_bus_reset(struct esas2r_adapter *a) { … } static void esas2r_chip_rst_needed_during_tasklet(struct esas2r_adapter *a) { … } static void esas2r_handle_chip_rst_during_tasklet(struct esas2r_adapter *a) { … } /* Perform deferred tasks when chip interrupts are disabled */ void esas2r_do_tasklet_tasks(struct esas2r_adapter *a) { … } static void esas2r_doorbell_interrupt(struct esas2r_adapter *a, u32 doorbell) { … } void esas2r_force_interrupt(struct esas2r_adapter *a) { … } static void esas2r_lun_event(struct esas2r_adapter *a, union atto_vda_ae *ae, u16 target, u32 length) { … } void esas2r_ae_complete(struct esas2r_adapter *a, struct esas2r_request *rq) { … } /* Send an asynchronous event for a chip reset or power management. */ void esas2r_send_reset_ae(struct esas2r_adapter *a, bool pwr_mgt) { … } void esas2r_dummy_complete(struct esas2r_adapter *a, struct esas2r_request *rq) { … } static void esas2r_check_req_rsp_sense(struct esas2r_adapter *a, struct esas2r_request *rq) { … } void esas2r_complete_request(struct esas2r_adapter *a, struct esas2r_request *rq) { … }