csio_hw_chip.h 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. /*
  2. * This file is part of the Chelsio FCoE driver for Linux.
  3. *
  4. * Copyright (c) 2008-2013 Chelsio Communications, Inc. All rights reserved.
  5. *
  6. * This software is available to you under a choice of one of two
  7. * licenses. You may choose to be licensed under the terms of the GNU
  8. * General Public License (GPL) Version 2, available from the file
  9. * OpenIB.org BSD license below:
  10. *
  11. * Redistribution and use in source and binary forms, with or
  12. * without modification, are permitted provided that the following
  13. * conditions are met:
  14. *
  15. * - Redistributions of source code must retain the above
  16. * copyright notice, this list of conditions and the following
  17. * disclaimer.
  18. *
  19. * - Redistributions in binary form must reproduce the above
  20. * copyright notice, this list of conditions and the following
  21. * disclaimer in the documentation and/or other materials
  22. * provided with the distribution.
  23. *
  24. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  25. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  26. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  27. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  28. * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  29. * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  30. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  31. * SOFTWARE.
  32. */
  33. #ifndef __CSIO_HW_CHIP_H__
  34. #define __CSIO_HW_CHIP_H__
  35. #include "csio_defs.h"
  36. /* Define MACRO values */
  37. #define CSIO_HW_T5 0x5000
  38. #define CSIO_T5_FCOE_ASIC 0x5600
  39. #define CSIO_HW_T6 0x6000
  40. #define CSIO_T6_FCOE_ASIC 0x6600
  41. #define CSIO_HW_CHIP_MASK 0xF000
  42. #define T5_REGMAP_SIZE (332 * 1024)
  43. #define FW_FNAME_T5 "cxgb4/t5fw.bin"
  44. #define FW_CFG_NAME_T5 "cxgb4/t5-config.txt"
  45. #define FW_FNAME_T6 "cxgb4/t6fw.bin"
  46. #define FW_CFG_NAME_T6 "cxgb4/t6-config.txt"
  47. #define CHELSIO_CHIP_CODE(version, revision) (((version) << 4) | (revision))
  48. #define CHELSIO_CHIP_FPGA 0x100
  49. #define CHELSIO_CHIP_VERSION(code) (((code) >> 12) & 0xf)
  50. #define CHELSIO_CHIP_RELEASE(code) ((code) & 0xf)
  51. #define CHELSIO_T5 0x5
  52. #define CHELSIO_T6 0x6
  53. enum chip_type {
  54. T5_A0 = CHELSIO_CHIP_CODE(CHELSIO_T5, 0),
  55. T5_A1 = CHELSIO_CHIP_CODE(CHELSIO_T5, 1),
  56. T5_FIRST_REV = T5_A0,
  57. T5_LAST_REV = T5_A1,
  58. T6_A0 = CHELSIO_CHIP_CODE(CHELSIO_T6, 0),
  59. T6_FIRST_REV = T6_A0,
  60. T6_LAST_REV = T6_A0,
  61. };
  62. static inline int csio_is_t5(uint16_t chip)
  63. {
  64. return (chip == CSIO_HW_T5);
  65. }
  66. static inline int csio_is_t6(uint16_t chip)
  67. {
  68. return (chip == CSIO_HW_T6);
  69. }
  70. /* Define MACRO DEFINITIONS */
  71. #define CSIO_DEVICE(devid, idx) \
  72. { PCI_VENDOR_ID_CHELSIO, (devid), PCI_ANY_ID, PCI_ANY_ID, 0, 0, (idx) }
  73. #include "t4fw_api.h"
  74. #include "t4fw_version.h"
  75. #define FW_VERSION(chip) ( \
  76. FW_HDR_FW_VER_MAJOR_G(chip##FW_VERSION_MAJOR) | \
  77. FW_HDR_FW_VER_MINOR_G(chip##FW_VERSION_MINOR) | \
  78. FW_HDR_FW_VER_MICRO_G(chip##FW_VERSION_MICRO) | \
  79. FW_HDR_FW_VER_BUILD_G(chip##FW_VERSION_BUILD))
  80. #define FW_INTFVER(chip, intf) (FW_HDR_INTFVER_##intf)
  81. struct fw_info {
  82. u8 chip;
  83. char *fs_name;
  84. char *fw_mod_name;
  85. struct fw_hdr fw_hdr;
  86. };
  87. /* Declare ENUMS */
  88. enum { MEM_EDC0, MEM_EDC1, MEM_MC, MEM_MC0 = MEM_MC, MEM_MC1 };
  89. enum {
  90. MEMWIN_APERTURE = 2048,
  91. MEMWIN_BASE = 0x1b800,
  92. };
  93. /* Slow path handlers */
  94. struct intr_info {
  95. unsigned int mask; /* bits to check in interrupt status */
  96. const char *msg; /* message to print or NULL */
  97. short stat_idx; /* stat counter to increment or -1 */
  98. unsigned short fatal; /* whether the condition reported is fatal */
  99. };
  100. /* T4/T5 Chip specific ops */
  101. struct csio_hw;
  102. struct csio_hw_chip_ops {
  103. int (*chip_set_mem_win)(struct csio_hw *, uint32_t);
  104. void (*chip_pcie_intr_handler)(struct csio_hw *);
  105. uint32_t (*chip_flash_cfg_addr)(struct csio_hw *);
  106. int (*chip_mc_read)(struct csio_hw *, int, uint32_t,
  107. __be32 *, uint64_t *);
  108. int (*chip_edc_read)(struct csio_hw *, int, uint32_t,
  109. __be32 *, uint64_t *);
  110. int (*chip_memory_rw)(struct csio_hw *, u32, int, u32,
  111. u32, uint32_t *, int);
  112. void (*chip_dfs_create_ext_mem)(struct csio_hw *);
  113. };
  114. extern struct csio_hw_chip_ops t5_ops;
  115. #endif /* #ifndef __CSIO_HW_CHIP_H__ */