2020-09-08 15:34:48 +03:00
/* SPDX-License-Identifier: GPL-2.0-only */
2014-02-26 13:15:06 +04:00
/*
* QLogic Fibre Channel HBA Driver
2014-04-12 00:54:24 +04:00
* Copyright ( c ) 2003 - 2014 QLogic Corporation
2014-02-26 13:15:06 +04:00
*/
# ifndef __QLA_DMP27_H__
# define __QLA_DMP27_H__
# define IOBASE_ADDR offsetof(struct device_reg_24xx, iobase_addr)
struct __packed qla27xx_fwdt_template {
2019-03-12 21:08:16 +03:00
__le32 template_type ;
__le32 entry_offset ;
2020-12-02 16:23:04 +03:00
__le32 template_size ;
2019-03-12 21:08:19 +03:00
uint32_t count ; /* borrow field for running/residual count */
2014-02-26 13:15:06 +04:00
2019-03-12 21:08:16 +03:00
__le32 entry_count ;
2014-02-26 13:15:06 +04:00
uint32_t template_version ;
scsi: qla2xxx: Fix sparse warning reported by kbuild bot
this patch fixes following sparse warnings
>> drivers/scsi/qla2xxx/qla_tmpl.c:873:32: sparse: sparse: incorrect type in assignment (different base types)
>> drivers/scsi/qla2xxx/qla_tmpl.c:873:32: sparse: expected unsigned int [usertype] capture_timestamp
>> drivers/scsi/qla2xxx/qla_tmpl.c:873:32: sparse: got restricted __le32 [usertype]
drivers/scsi/qla2xxx/qla_tmpl.c:885:29: sparse: sparse: incorrect type in assignment (different base types)
>> drivers/scsi/qla2xxx/qla_tmpl.c:885:29: sparse: expected unsigned int
vim +873 drivers/scsi/qla2xxx/qla_tmpl.c
869
870 static void
871 qla27xx_time_stamp(struct qla27xx_fwdt_template *tmp)
872 {
> 873 tmp->capture_timestamp = cpu_to_le32(jiffies);
874 }
875
876 static void
877 qla27xx_driver_info(struct qla27xx_fwdt_template *tmp)
878 {
879 uint8_t v[] = { 0, 0, 0, 0, 0, 0 };
880
881 WARN_ON_ONCE(sscanf(qla2x00_version_str,
882 "%hhu.%hhu.%hhu.%hhu.%hhu.%hhu",
883 v+0, v+1, v+2, v+3, v+4, v+5) != 6);
884
> 885 tmp->driver_info[0] = cpu_to_le32(
886 v[3] << 24 | v[2] << 16 | v[1] << 8 | v[0]);
887 tmp->driver_info[1] = cpu_to_le32(v[5] << 8 | v[4]);
888 tmp->driver_info[2] = __constant_cpu_to_le32(0x12345678);
889 }
890
Link: https://lore.kernel.org/r/20200227201148.13973-1-hmadhani@marvell.com
Fixes: a31056ddc665 ("scsi: qla2xxx: Use endian macros to assign static fields in fwdump header")
Reported-by: kbuild test robot <lkp@intel.com>
Signed-off-by: Himanshu Madhani <hmadhani@marvell.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
2020-02-27 23:11:48 +03:00
__le32 capture_timestamp ;
2014-02-26 13:15:06 +04:00
uint32_t template_checksum ;
uint32_t reserved_2 ;
scsi: qla2xxx: Fix sparse warning reported by kbuild bot
this patch fixes following sparse warnings
>> drivers/scsi/qla2xxx/qla_tmpl.c:873:32: sparse: sparse: incorrect type in assignment (different base types)
>> drivers/scsi/qla2xxx/qla_tmpl.c:873:32: sparse: expected unsigned int [usertype] capture_timestamp
>> drivers/scsi/qla2xxx/qla_tmpl.c:873:32: sparse: got restricted __le32 [usertype]
drivers/scsi/qla2xxx/qla_tmpl.c:885:29: sparse: sparse: incorrect type in assignment (different base types)
>> drivers/scsi/qla2xxx/qla_tmpl.c:885:29: sparse: expected unsigned int
vim +873 drivers/scsi/qla2xxx/qla_tmpl.c
869
870 static void
871 qla27xx_time_stamp(struct qla27xx_fwdt_template *tmp)
872 {
> 873 tmp->capture_timestamp = cpu_to_le32(jiffies);
874 }
875
876 static void
877 qla27xx_driver_info(struct qla27xx_fwdt_template *tmp)
878 {
879 uint8_t v[] = { 0, 0, 0, 0, 0, 0 };
880
881 WARN_ON_ONCE(sscanf(qla2x00_version_str,
882 "%hhu.%hhu.%hhu.%hhu.%hhu.%hhu",
883 v+0, v+1, v+2, v+3, v+4, v+5) != 6);
884
> 885 tmp->driver_info[0] = cpu_to_le32(
886 v[3] << 24 | v[2] << 16 | v[1] << 8 | v[0]);
887 tmp->driver_info[1] = cpu_to_le32(v[5] << 8 | v[4]);
888 tmp->driver_info[2] = __constant_cpu_to_le32(0x12345678);
889 }
890
Link: https://lore.kernel.org/r/20200227201148.13973-1-hmadhani@marvell.com
Fixes: a31056ddc665 ("scsi: qla2xxx: Use endian macros to assign static fields in fwdump header")
Reported-by: kbuild test robot <lkp@intel.com>
Signed-off-by: Himanshu Madhani <hmadhani@marvell.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
2020-02-27 23:11:48 +03:00
__le32 driver_info [ 3 ] ;
2014-02-26 13:15:06 +04:00
uint32_t saved_state [ 16 ] ;
uint32_t reserved_3 [ 8 ] ;
2020-05-19 00:17:11 +03:00
__le32 firmware_version [ 5 ] ;
2014-02-26 13:15:06 +04:00
} ;
# define TEMPLATE_TYPE_FWDUMP 99
# define ENTRY_TYPE_NOP 0
# define ENTRY_TYPE_TMP_END 255
# define ENTRY_TYPE_RD_IOB_T1 256
# define ENTRY_TYPE_WR_IOB_T1 257
# define ENTRY_TYPE_RD_IOB_T2 258
# define ENTRY_TYPE_WR_IOB_T2 259
# define ENTRY_TYPE_RD_PCI 260
# define ENTRY_TYPE_WR_PCI 261
# define ENTRY_TYPE_RD_RAM 262
# define ENTRY_TYPE_GET_QUEUE 263
# define ENTRY_TYPE_GET_FCE 264
# define ENTRY_TYPE_PSE_RISC 265
# define ENTRY_TYPE_RST_RISC 266
# define ENTRY_TYPE_DIS_INTR 267
# define ENTRY_TYPE_GET_HBUF 268
# define ENTRY_TYPE_SCRATCH 269
# define ENTRY_TYPE_RDREMREG 270
# define ENTRY_TYPE_WRREMREG 271
# define ENTRY_TYPE_RDREMRAM 272
# define ENTRY_TYPE_PCICFG 273
2014-04-12 00:54:36 +04:00
# define ENTRY_TYPE_GET_SHADOW 274
2014-09-25 13:16:36 +04:00
# define ENTRY_TYPE_WRITE_BUF 275
2019-02-16 01:37:21 +03:00
# define ENTRY_TYPE_CONDITIONAL 276
# define ENTRY_TYPE_RDPEPREG 277
# define ENTRY_TYPE_WRPEPREG 278
2014-02-26 13:15:06 +04:00
# define CAPTURE_FLAG_PHYS_ONLY BIT_0
# define CAPTURE_FLAG_PHYS_VIRT BIT_1
# define DRIVER_FLAG_SKIP_ENTRY BIT_7
struct __packed qla27xx_fwdt_entry {
struct __packed {
2019-03-12 21:08:16 +03:00
__le32 type ;
__le32 size ;
2014-02-26 13:15:06 +04:00
uint32_t reserved_1 ;
uint8_t capture_flags ;
uint8_t reserved_2 [ 2 ] ;
uint8_t driver_flags ;
} hdr ;
union __packed {
struct __packed {
} t0 ;
struct __packed {
} t255 ;
struct __packed {
2019-03-12 21:08:16 +03:00
__le32 base_addr ;
2014-02-26 13:15:06 +04:00
uint8_t reg_width ;
2019-03-12 21:08:16 +03:00
__le16 reg_count ;
2014-02-26 13:15:06 +04:00
uint8_t pci_offset ;
} t256 ;
struct __packed {
2019-03-12 21:08:16 +03:00
__le32 base_addr ;
__le32 write_data ;
2014-02-26 13:15:06 +04:00
uint8_t pci_offset ;
uint8_t reserved [ 3 ] ;
} t257 ;
struct __packed {
2019-03-12 21:08:16 +03:00
__le32 base_addr ;
2014-02-26 13:15:06 +04:00
uint8_t reg_width ;
2019-03-12 21:08:16 +03:00
__le16 reg_count ;
2014-02-26 13:15:06 +04:00
uint8_t pci_offset ;
uint8_t banksel_offset ;
uint8_t reserved [ 3 ] ;
2019-03-12 21:08:16 +03:00
__le32 bank ;
2014-02-26 13:15:06 +04:00
} t258 ;
struct __packed {
2019-03-12 21:08:16 +03:00
__le32 base_addr ;
__le32 write_data ;
2014-02-26 13:15:06 +04:00
uint8_t reserved [ 2 ] ;
uint8_t pci_offset ;
uint8_t banksel_offset ;
2019-03-12 21:08:16 +03:00
__le32 bank ;
2014-02-26 13:15:06 +04:00
} t259 ;
struct __packed {
2014-04-12 00:54:36 +04:00
uint8_t pci_offset ;
2014-02-26 13:15:06 +04:00
uint8_t reserved [ 3 ] ;
} t260 ;
struct __packed {
2014-04-12 00:54:36 +04:00
uint8_t pci_offset ;
2014-02-26 13:15:06 +04:00
uint8_t reserved [ 3 ] ;
2019-03-12 21:08:16 +03:00
__le32 write_data ;
2014-02-26 13:15:06 +04:00
} t261 ;
struct __packed {
uint8_t ram_area ;
uint8_t reserved [ 3 ] ;
2019-03-12 21:08:16 +03:00
__le32 start_addr ;
__le32 end_addr ;
2014-02-26 13:15:06 +04:00
} t262 ;
struct __packed {
uint32_t num_queues ;
uint8_t queue_type ;
uint8_t reserved [ 3 ] ;
} t263 ;
struct __packed {
uint32_t fce_trace_size ;
uint64_t write_pointer ;
uint64_t base_pointer ;
uint32_t fce_enable_mb0 ;
uint32_t fce_enable_mb2 ;
uint32_t fce_enable_mb3 ;
uint32_t fce_enable_mb4 ;
uint32_t fce_enable_mb5 ;
uint32_t fce_enable_mb6 ;
} t264 ;
struct __packed {
} t265 ;
struct __packed {
} t266 ;
struct __packed {
uint8_t pci_offset ;
uint8_t reserved [ 3 ] ;
2019-03-12 21:08:16 +03:00
__le32 data ;
2014-02-26 13:15:06 +04:00
} t267 ;
struct __packed {
uint8_t buf_type ;
uint8_t reserved [ 3 ] ;
uint32_t buf_size ;
uint64_t start_addr ;
} t268 ;
struct __packed {
uint32_t scratch_size ;
} t269 ;
struct __packed {
2019-03-12 21:08:16 +03:00
__le32 addr ;
__le32 count ;
2014-02-26 13:15:06 +04:00
} t270 ;
struct __packed {
2019-03-12 21:08:16 +03:00
__le32 addr ;
__le32 data ;
2014-02-26 13:15:06 +04:00
} t271 ;
struct __packed {
2019-03-12 21:08:16 +03:00
__le32 addr ;
__le32 count ;
2014-02-26 13:15:06 +04:00
} t272 ;
struct __packed {
2019-03-12 21:08:16 +03:00
__le32 addr ;
__le32 count ;
2014-02-26 13:15:06 +04:00
} t273 ;
2014-04-12 00:54:36 +04:00
struct __packed {
uint32_t num_queues ;
uint8_t queue_type ;
uint8_t reserved [ 3 ] ;
} t274 ;
2014-09-25 13:16:36 +04:00
struct __packed {
2019-03-12 21:08:16 +03:00
__le32 length ;
2014-09-25 13:16:36 +04:00
uint8_t buffer [ ] ;
} t275 ;
2019-02-16 01:37:21 +03:00
struct __packed {
2019-03-12 21:08:16 +03:00
__le32 cond1 ;
__le32 cond2 ;
2019-02-16 01:37:21 +03:00
} t276 ;
struct __packed {
2019-03-12 21:08:16 +03:00
__le32 cmd_addr ;
__le32 wr_cmd_data ;
__le32 data_addr ;
2019-02-16 01:37:21 +03:00
} t277 ;
struct __packed {
2019-03-12 21:08:16 +03:00
__le32 cmd_addr ;
__le32 wr_cmd_data ;
__le32 data_addr ;
__le32 wr_data ;
2019-02-16 01:37:21 +03:00
} t278 ;
2014-02-26 13:15:06 +04:00
} ;
} ;
# define T262_RAM_AREA_CRITICAL_RAM 1
# define T262_RAM_AREA_EXTERNAL_RAM 2
# define T262_RAM_AREA_SHARED_RAM 3
# define T262_RAM_AREA_DDR_RAM 4
2019-02-16 01:37:21 +03:00
# define T262_RAM_AREA_MISC 5
2014-02-26 13:15:06 +04:00
# define T263_QUEUE_TYPE_REQ 1
# define T263_QUEUE_TYPE_RSP 2
# define T263_QUEUE_TYPE_ATIO 3
# define T268_BUF_TYPE_EXTD_TRACE 1
# define T268_BUF_TYPE_EXCH_BUFOFF 2
# define T268_BUF_TYPE_EXTD_LOGIN 3
2014-09-25 13:16:40 +04:00
# define T268_BUF_TYPE_REQ_MIRROR 4
# define T268_BUF_TYPE_RSP_MIRROR 5
2014-02-26 13:15:06 +04:00
2014-04-12 00:54:36 +04:00
# define T274_QUEUE_TYPE_REQ_SHAD 1
# define T274_QUEUE_TYPE_RSP_SHAD 2
# define T274_QUEUE_TYPE_ATIO_SHAD 3
2014-02-26 13:15:06 +04:00
# endif