|
@@ -161,7 +161,7 @@
|
|
|
#define CHIPREV_ID_5719_A0 0x05719000
|
|
|
#define CHIPREV_ID_5720_A0 0x05720000
|
|
|
#define CHIPREV_ID_5762_A0 0x05762000
|
|
|
-#define GET_ASIC_REV(CHIP_REV_ID) ((CHIP_REV_ID) >> 12)
|
|
|
+
|
|
|
#define ASIC_REV_5700 0x07
|
|
|
#define ASIC_REV_5701 0x00
|
|
|
#define ASIC_REV_5703 0x01
|
|
@@ -185,7 +185,6 @@
|
|
|
#define ASIC_REV_5720 0x5720
|
|
|
#define ASIC_REV_57766 0x57766
|
|
|
#define ASIC_REV_5762 0x5762
|
|
|
-#define GET_CHIP_REV(CHIP_REV_ID) ((CHIP_REV_ID) >> 8)
|
|
|
#define CHIPREV_5700_AX 0x70
|
|
|
#define CHIPREV_5700_BX 0x71
|
|
|
#define CHIPREV_5700_CX 0x72
|
|
@@ -198,7 +197,6 @@
|
|
|
#define CHIPREV_5784_AX 0x57840
|
|
|
#define CHIPREV_5761_AX 0x57610
|
|
|
#define CHIPREV_57765_AX 0x577650
|
|
|
-#define GET_METAL_REV(CHIP_REV_ID) ((CHIP_REV_ID) & 0xff)
|
|
|
#define METAL_REV_A0 0x00
|
|
|
#define METAL_REV_A1 0x01
|
|
|
#define METAL_REV_B0 0x00
|
|
@@ -3357,4 +3355,18 @@ struct tg3 {
|
|
|
bool link_up;
|
|
|
};
|
|
|
|
|
|
+/* Accessor macros for chip and asic attributes
|
|
|
+ *
|
|
|
+ * nb: Using static inlines equivalent to the accessor macros generates
|
|
|
+ * larger object code with gcc 4.7.
|
|
|
+ * Using statement expression macros to check tp with
|
|
|
+ * typecheck(struct tg3 *, tp) also creates larger objects.
|
|
|
+ */
|
|
|
+#define tg3_chip_rev_id(tp) \
|
|
|
+ ((tp)->pci_chip_rev_id)
|
|
|
+#define tg3_asic_rev(tp) \
|
|
|
+ ((tp)->pci_chip_rev_id >> 12)
|
|
|
+#define tg3_chip_rev(tp) \
|
|
|
+ ((tp)->pci_chip_rev_id >> 8)
|
|
|
+
|
|
|
#endif /* !(_T3_H) */
|