2016-06-28 00:41:00 +03:00
/*
* driver for Microsemi PQI - based storage controllers
2017-05-04 02:54:06 +03:00
* Copyright ( c ) 2016 - 2017 Microsemi Corporation
2016-06-28 00:41:00 +03:00
* Copyright ( c ) 2016 PMC - Sierra , Inc .
*
* 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 , GOOD TITLE or
* NON INFRINGEMENT . See the GNU General Public License for more details .
*
* Questions / Comments / Bugfixes to esc . storagedev @ microsemi . com
*
*/
# if !defined(_SMARTPQI_SIS_H)
# define _SMARTPQI_SIS_H
int sis_wait_for_ctrl_ready ( struct pqi_ctrl_info * ctrl_info ) ;
2017-05-04 02:53:05 +03:00
int sis_wait_for_ctrl_ready_resume ( struct pqi_ctrl_info * ctrl_info ) ;
2016-06-28 00:41:00 +03:00
bool sis_is_firmware_running ( struct pqi_ctrl_info * ctrl_info ) ;
2017-05-04 02:52:46 +03:00
bool sis_is_kernel_up ( struct pqi_ctrl_info * ctrl_info ) ;
2016-06-28 00:41:00 +03:00
int sis_get_ctrl_properties ( struct pqi_ctrl_info * ctrl_info ) ;
int sis_get_pqi_capabilities ( struct pqi_ctrl_info * ctrl_info ) ;
int sis_init_base_struct_addr ( struct pqi_ctrl_info * ctrl_info ) ;
void sis_enable_msix ( struct pqi_ctrl_info * ctrl_info ) ;
2017-05-04 02:53:05 +03:00
void sis_enable_intx ( struct pqi_ctrl_info * ctrl_info ) ;
2017-05-04 02:52:40 +03:00
void sis_shutdown_ctrl ( struct pqi_ctrl_info * ctrl_info ) ;
2017-08-10 21:46:39 +03:00
int sis_pqi_reset_quiesce ( struct pqi_ctrl_info * ctrl_info ) ;
2016-06-28 00:41:00 +03:00
int sis_reenable_sis_mode ( struct pqi_ctrl_info * ctrl_info ) ;
2016-08-31 22:54:41 +03:00
void sis_write_driver_scratch ( struct pqi_ctrl_info * ctrl_info , u32 value ) ;
u32 sis_read_driver_scratch ( struct pqi_ctrl_info * ctrl_info ) ;
2016-06-28 00:41:00 +03:00
# endif /* _SMARTPQI_SIS_H */