mirror of
https://github.com/torvalds/linux.git
synced 2024-12-02 17:11:33 +00:00
aec93e8e23
The user can set trigger values in order to collect the IOC's host trace buffer automatically upon detecting certain conditions. However, the trigger values that the user sets are not persistent across system reboot or reload of the driver. In order to make the user trigger settings persistent, these trigger values need to be saved in the IOC's NVRAM pages: - Driver Persistent Trigger Page 0: This page is used to store list of trigger types that are enabled - Driver Persistent Trigger Page 1: This page stores the list of Master triggers that are enabled - Driver Persistent Trigger Page 2: This page stores the list of MPI Event Triggers that are enabled - Driver Persistent Trigger Page 3: This page stores the list of SCSI Sense Triggers that are enabled - Driver Persistent Trigger Page 4: This page stores the list of IOCStatus-LogInfo Triggers that are enabled. Whenever user configures triggers, the driver persists the values in the corresponding trigger pages. When the driver is subsequently reloaded, the driver reads the values from the trigger pages and configures the triggers accordingly. During firmware upload operation, if the newer firmware supports the trigger page feature, then driver persists the configured diag trigger values to NVRAM. Link: https://lore.kernel.org/r/20201126094311.8686-3-suganath-prabu.subramani@broadcom.com Reported-by: kernel test robot <lkp@intel.com> Signed-off-by: Suganath Prabu S <suganath-prabu.subramani@broadcom.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
95 lines
3.8 KiB
C
95 lines
3.8 KiB
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
/*
|
|
* This is the Fusion MPT base driver providing common API layer interface
|
|
* to store diag trigger values into persistent driver triggers pages
|
|
* for MPT (Message Passing Technology) based controllers.
|
|
*
|
|
* Copyright (C) 2020 Broadcom Inc.
|
|
*
|
|
* Authors: Broadcom Inc.
|
|
* Sreekanth Reddy <sreekanth.reddy@broadcom.com>
|
|
*
|
|
* Send feedback to : MPT-FusionLinux.pdl@broadcom.com)
|
|
*/
|
|
|
|
#include "mpi/mpi2_cnfg.h"
|
|
|
|
#ifndef MPI2_TRIGGER_PAGES_H
|
|
#define MPI2_TRIGGER_PAGES_H
|
|
|
|
#define MPI2_CONFIG_EXTPAGETYPE_DRIVER_PERSISTENT_TRIGGER (0xE0)
|
|
#define MPI26_DRIVER_TRIGGER_PAGE0_PAGEVERSION (0x01)
|
|
typedef struct _MPI26_CONFIG_PAGE_DRIVER_TIGGER_0 {
|
|
MPI2_CONFIG_EXTENDED_PAGE_HEADER Header; /* 0x00 */
|
|
U16 TriggerFlags; /* 0x08 */
|
|
U16 Reserved0xA; /* 0x0A */
|
|
U32 Reserved0xC[61]; /* 0x0C */
|
|
} _MPI26_CONFIG_PAGE_DRIVER_TIGGER_0, Mpi26DriverTriggerPage0_t;
|
|
|
|
/* Trigger Flags */
|
|
#define MPI26_DRIVER_TRIGGER0_FLAG_MASTER_TRIGGER_VALID (0x0001)
|
|
#define MPI26_DRIVER_TRIGGER0_FLAG_MPI_EVENT_TRIGGER_VALID (0x0002)
|
|
#define MPI26_DRIVER_TRIGGER0_FLAG_SCSI_SENSE_TRIGGER_VALID (0x0004)
|
|
#define MPI26_DRIVER_TRIGGER0_FLAG_LOGINFO_TRIGGER_VALID (0x0008)
|
|
|
|
#define MPI26_DRIVER_TRIGGER_PAGE1_PAGEVERSION (0x01)
|
|
typedef struct _MPI26_DRIVER_MASTER_TIGGER_ENTRY {
|
|
U32 MasterTriggerFlags;
|
|
} MPI26_DRIVER_MASTER_TIGGER_ENTRY;
|
|
|
|
#define MPI26_MAX_MASTER_TRIGGERS (1)
|
|
typedef struct _MPI26_CONFIG_PAGE_DRIVER_TIGGER_1 {
|
|
MPI2_CONFIG_EXTENDED_PAGE_HEADER Header; /* 0x00 */
|
|
U16 NumMasterTrigger; /* 0x08 */
|
|
U16 Reserved0xA; /* 0x0A */
|
|
MPI26_DRIVER_MASTER_TIGGER_ENTRY MasterTriggers[MPI26_MAX_MASTER_TRIGGERS]; /* 0x0C */
|
|
} MPI26_CONFIG_PAGE_DRIVER_TIGGER_1, Mpi26DriverTriggerPage1_t;
|
|
|
|
#define MPI26_DRIVER_TRIGGER_PAGE2_PAGEVERSION (0x01)
|
|
typedef struct _MPI26_DRIVER_MPI_EVENT_TIGGER_ENTRY {
|
|
U16 MPIEventCode; /* 0x00 */
|
|
U16 MPIEventCodeSpecific; /* 0x02 */
|
|
} MPI26_DRIVER_MPI_EVENT_TIGGER_ENTRY;
|
|
|
|
#define MPI26_MAX_MPI_EVENT_TRIGGERS (20)
|
|
typedef struct _MPI26_CONFIG_PAGE_DRIVER_TIGGER_2 {
|
|
MPI2_CONFIG_EXTENDED_PAGE_HEADER Header; /* 0x00 */
|
|
U16 NumMPIEventTrigger; /* 0x08 */
|
|
U16 Reserved0xA; /* 0x0A */
|
|
MPI26_DRIVER_MPI_EVENT_TIGGER_ENTRY MPIEventTriggers[MPI26_MAX_MPI_EVENT_TRIGGERS]; /* 0x0C */
|
|
} MPI26_CONFIG_PAGE_DRIVER_TIGGER_2, Mpi26DriverTriggerPage2_t;
|
|
|
|
#define MPI26_DRIVER_TRIGGER_PAGE3_PAGEVERSION (0x01)
|
|
typedef struct _MPI26_DRIVER_SCSI_SENSE_TIGGER_ENTRY {
|
|
U8 ASCQ; /* 0x00 */
|
|
U8 ASC; /* 0x01 */
|
|
U8 SenseKey; /* 0x02 */
|
|
U8 Reserved; /* 0x03 */
|
|
} MPI26_DRIVER_SCSI_SENSE_TIGGER_ENTRY;
|
|
|
|
#define MPI26_MAX_SCSI_SENSE_TRIGGERS (20)
|
|
typedef struct _MPI26_CONFIG_PAGE_DRIVER_TIGGER_3 {
|
|
MPI2_CONFIG_EXTENDED_PAGE_HEADER Header; /* 0x00 */
|
|
U16 NumSCSISenseTrigger; /* 0x08 */
|
|
U16 Reserved0xA; /* 0x0A */
|
|
MPI26_DRIVER_SCSI_SENSE_TIGGER_ENTRY SCSISenseTriggers[MPI26_MAX_SCSI_SENSE_TRIGGERS]; /* 0x0C */
|
|
} MPI26_CONFIG_PAGE_DRIVER_TIGGER_3, Mpi26DriverTriggerPage3_t;
|
|
|
|
#define MPI26_DRIVER_TRIGGER_PAGE4_PAGEVERSION (0x01)
|
|
typedef struct _MPI26_DRIVER_IOCSTATUS_LOGINFO_TIGGER_ENTRY {
|
|
U16 IOCStatus; /* 0x00 */
|
|
U16 Reserved; /* 0x02 */
|
|
U32 LogInfo; /* 0x04 */
|
|
} MPI26_DRIVER_IOCSTATUS_LOGINFO_TIGGER_ENTRY;
|
|
|
|
#define MPI26_MAX_LOGINFO_TRIGGERS (20)
|
|
typedef struct _MPI26_CONFIG_PAGE_DRIVER_TIGGER_4 {
|
|
MPI2_CONFIG_EXTENDED_PAGE_HEADER Header; /* 0x00 */
|
|
U16 NumIOCStatusLogInfoTrigger; /* 0x08 */
|
|
U16 Reserved0xA; /* 0x0A */
|
|
MPI26_DRIVER_IOCSTATUS_LOGINFO_TIGGER_ENTRY IOCStatusLoginfoTriggers[MPI26_MAX_LOGINFO_TRIGGERS]; /* 0x0C */
|
|
} MPI26_CONFIG_PAGE_DRIVER_TIGGER_4, Mpi26DriverTriggerPage4_t;
|
|
|
|
#endif
|