diff options
Diffstat (limited to 'drivers/net/vxge/vxge-config.h')
-rw-r--r-- | drivers/net/vxge/vxge-config.h | 458 |
1 files changed, 144 insertions, 314 deletions
diff --git a/drivers/net/vxge/vxge-config.h b/drivers/net/vxge/vxge-config.h index 1a94343023cb..359b9b9f8041 100644 --- a/drivers/net/vxge/vxge-config.h +++ b/drivers/net/vxge/vxge-config.h | |||
@@ -20,13 +20,6 @@ | |||
20 | #define VXGE_CACHE_LINE_SIZE 128 | 20 | #define VXGE_CACHE_LINE_SIZE 128 |
21 | #endif | 21 | #endif |
22 | 22 | ||
23 | #define vxge_os_vaprintf(level, mask, fmt, ...) { \ | ||
24 | char buff[255]; \ | ||
25 | snprintf(buff, 255, fmt, __VA_ARGS__); \ | ||
26 | printk(buff); \ | ||
27 | printk("\n"); \ | ||
28 | } | ||
29 | |||
30 | #ifndef VXGE_ALIGN | 23 | #ifndef VXGE_ALIGN |
31 | #define VXGE_ALIGN(adrs, size) \ | 24 | #define VXGE_ALIGN(adrs, size) \ |
32 | (((size) - (((u64)adrs) & ((size)-1))) & ((size)-1)) | 25 | (((size) - (((u64)adrs) & ((size)-1))) & ((size)-1)) |
@@ -36,8 +29,16 @@ | |||
36 | #define VXGE_HW_MAX_MTU 9600 | 29 | #define VXGE_HW_MAX_MTU 9600 |
37 | #define VXGE_HW_DEFAULT_MTU 1500 | 30 | #define VXGE_HW_DEFAULT_MTU 1500 |
38 | 31 | ||
39 | #ifdef VXGE_DEBUG_ASSERT | 32 | #define VXGE_HW_MAX_ROM_IMAGES 8 |
33 | |||
34 | struct eprom_image { | ||
35 | u8 is_valid:1; | ||
36 | u8 index; | ||
37 | u8 type; | ||
38 | u16 version; | ||
39 | }; | ||
40 | 40 | ||
41 | #ifdef VXGE_DEBUG_ASSERT | ||
41 | /** | 42 | /** |
42 | * vxge_assert | 43 | * vxge_assert |
43 | * @test: C-condition to check | 44 | * @test: C-condition to check |
@@ -48,16 +49,13 @@ | |||
48 | * compilation | 49 | * compilation |
49 | * time. | 50 | * time. |
50 | */ | 51 | */ |
51 | #define vxge_assert(test) { \ | 52 | #define vxge_assert(test) BUG_ON(!(test)) |
52 | if (!(test)) \ | ||
53 | vxge_os_bug("bad cond: "#test" at %s:%d\n", \ | ||
54 | __FILE__, __LINE__); } | ||
55 | #else | 53 | #else |
56 | #define vxge_assert(test) | 54 | #define vxge_assert(test) |
57 | #endif /* end of VXGE_DEBUG_ASSERT */ | 55 | #endif /* end of VXGE_DEBUG_ASSERT */ |
58 | 56 | ||
59 | /** | 57 | /** |
60 | * enum enum vxge_debug_level | 58 | * enum vxge_debug_level |
61 | * @VXGE_NONE: debug disabled | 59 | * @VXGE_NONE: debug disabled |
62 | * @VXGE_ERR: all errors going to be logged out | 60 | * @VXGE_ERR: all errors going to be logged out |
63 | * @VXGE_TRACE: all errors plus all kind of verbose tracing print outs | 61 | * @VXGE_TRACE: all errors plus all kind of verbose tracing print outs |
@@ -159,6 +157,47 @@ enum vxge_hw_device_link_state { | |||
159 | }; | 157 | }; |
160 | 158 | ||
161 | /** | 159 | /** |
160 | * enum enum vxge_hw_fw_upgrade_code - FW upgrade return codes. | ||
161 | * @VXGE_HW_FW_UPGRADE_OK: All OK send next 16 bytes | ||
162 | * @VXGE_HW_FW_UPGRADE_DONE: upload completed | ||
163 | * @VXGE_HW_FW_UPGRADE_ERR: upload error | ||
164 | * @VXGE_FW_UPGRADE_BYTES2SKIP: skip bytes in the stream | ||
165 | * | ||
166 | */ | ||
167 | enum vxge_hw_fw_upgrade_code { | ||
168 | VXGE_HW_FW_UPGRADE_OK = 0, | ||
169 | VXGE_HW_FW_UPGRADE_DONE = 1, | ||
170 | VXGE_HW_FW_UPGRADE_ERR = 2, | ||
171 | VXGE_FW_UPGRADE_BYTES2SKIP = 3 | ||
172 | }; | ||
173 | |||
174 | /** | ||
175 | * enum enum vxge_hw_fw_upgrade_err_code - FW upgrade error codes. | ||
176 | * @VXGE_HW_FW_UPGRADE_ERR_CORRUPT_DATA_1: corrupt data | ||
177 | * @VXGE_HW_FW_UPGRADE_ERR_BUFFER_OVERFLOW: buffer overflow | ||
178 | * @VXGE_HW_FW_UPGRADE_ERR_INV_NCF_FILE_3: invalid .ncf file | ||
179 | * @VXGE_HW_FW_UPGRADE_ERR_INV_NCF_FILE_4: invalid .ncf file | ||
180 | * @VXGE_HW_FW_UPGRADE_ERR_INV_NCF_FILE_5: invalid .ncf file | ||
181 | * @VXGE_HW_FW_UPGRADE_ERR_INV_NCF_FILE_6: invalid .ncf file | ||
182 | * @VXGE_HW_FW_UPGRADE_ERR_CORRUPT_DATA_7: corrupt data | ||
183 | * @VXGE_HW_FW_UPGRADE_ERR_INV_NCF_FILE_8: invalid .ncf file | ||
184 | * @VXGE_HW_FW_UPGRADE_ERR_GENERIC_ERROR_UNKNOWN: generic error unknown type | ||
185 | * @VXGE_HW_FW_UPGRADE_ERR_FAILED_TO_FLASH: failed to flash image check failed | ||
186 | */ | ||
187 | enum vxge_hw_fw_upgrade_err_code { | ||
188 | VXGE_HW_FW_UPGRADE_ERR_CORRUPT_DATA_1 = 1, | ||
189 | VXGE_HW_FW_UPGRADE_ERR_BUFFER_OVERFLOW = 2, | ||
190 | VXGE_HW_FW_UPGRADE_ERR_INV_NCF_FILE_3 = 3, | ||
191 | VXGE_HW_FW_UPGRADE_ERR_INV_NCF_FILE_4 = 4, | ||
192 | VXGE_HW_FW_UPGRADE_ERR_INV_NCF_FILE_5 = 5, | ||
193 | VXGE_HW_FW_UPGRADE_ERR_INV_NCF_FILE_6 = 6, | ||
194 | VXGE_HW_FW_UPGRADE_ERR_CORRUPT_DATA_7 = 7, | ||
195 | VXGE_HW_FW_UPGRADE_ERR_INV_NCF_FILE_8 = 8, | ||
196 | VXGE_HW_FW_UPGRADE_ERR_GENERIC_ERROR_UNKNOWN = 9, | ||
197 | VXGE_HW_FW_UPGRADE_ERR_FAILED_TO_FLASH = 10 | ||
198 | }; | ||
199 | |||
200 | /** | ||
162 | * struct vxge_hw_device_date - Date Format | 201 | * struct vxge_hw_device_date - Date Format |
163 | * @day: Day | 202 | * @day: Day |
164 | * @month: Month | 203 | * @month: Month |
@@ -183,11 +222,6 @@ struct vxge_hw_device_version { | |||
183 | char version[VXGE_HW_FW_STRLEN]; | 222 | char version[VXGE_HW_FW_STRLEN]; |
184 | }; | 223 | }; |
185 | 224 | ||
186 | u64 | ||
187 | __vxge_hw_vpath_pci_func_mode_get( | ||
188 | u32 vp_id, | ||
189 | struct vxge_hw_vpath_reg __iomem *vpath_reg); | ||
190 | |||
191 | /** | 225 | /** |
192 | * struct vxge_hw_fifo_config - Configuration of fifo. | 226 | * struct vxge_hw_fifo_config - Configuration of fifo. |
193 | * @enable: Is this fifo to be commissioned | 227 | * @enable: Is this fifo to be commissioned |
@@ -280,9 +314,9 @@ struct vxge_hw_ring_config { | |||
280 | #define VXGE_HW_RING_DEFAULT 1 | 314 | #define VXGE_HW_RING_DEFAULT 1 |
281 | 315 | ||
282 | u32 ring_blocks; | 316 | u32 ring_blocks; |
283 | #define VXGE_HW_MIN_RING_BLOCKS 1 | 317 | #define VXGE_HW_MIN_RING_BLOCKS 1 |
284 | #define VXGE_HW_MAX_RING_BLOCKS 128 | 318 | #define VXGE_HW_MAX_RING_BLOCKS 128 |
285 | #define VXGE_HW_DEF_RING_BLOCKS 2 | 319 | #define VXGE_HW_DEF_RING_BLOCKS 2 |
286 | 320 | ||
287 | u32 buffer_mode; | 321 | u32 buffer_mode; |
288 | #define VXGE_HW_RING_RXD_BUFFER_MODE_1 1 | 322 | #define VXGE_HW_RING_RXD_BUFFER_MODE_1 1 |
@@ -378,44 +412,48 @@ struct vxge_hw_vp_config { | |||
378 | * See also: struct vxge_hw_tim_intr_config{}. | 412 | * See also: struct vxge_hw_tim_intr_config{}. |
379 | */ | 413 | */ |
380 | struct vxge_hw_device_config { | 414 | struct vxge_hw_device_config { |
381 | u32 dma_blockpool_initial; | 415 | u32 device_poll_millis; |
382 | u32 dma_blockpool_max; | 416 | #define VXGE_HW_MIN_DEVICE_POLL_MILLIS 1 |
383 | #define VXGE_HW_MIN_DMA_BLOCK_POOL_SIZE 0 | 417 | #define VXGE_HW_MAX_DEVICE_POLL_MILLIS 100000 |
384 | #define VXGE_HW_INITIAL_DMA_BLOCK_POOL_SIZE 0 | 418 | #define VXGE_HW_DEF_DEVICE_POLL_MILLIS 1000 |
385 | #define VXGE_HW_INCR_DMA_BLOCK_POOL_SIZE 4 | 419 | |
386 | #define VXGE_HW_MAX_DMA_BLOCK_POOL_SIZE 4096 | 420 | u32 dma_blockpool_initial; |
387 | 421 | u32 dma_blockpool_max; | |
388 | #define VXGE_HW_MAX_PAYLOAD_SIZE_512 2 | 422 | #define VXGE_HW_MIN_DMA_BLOCK_POOL_SIZE 0 |
389 | 423 | #define VXGE_HW_INITIAL_DMA_BLOCK_POOL_SIZE 0 | |
390 | u32 intr_mode; | 424 | #define VXGE_HW_INCR_DMA_BLOCK_POOL_SIZE 4 |
391 | #define VXGE_HW_INTR_MODE_IRQLINE 0 | 425 | #define VXGE_HW_MAX_DMA_BLOCK_POOL_SIZE 4096 |
392 | #define VXGE_HW_INTR_MODE_MSIX 1 | 426 | |
393 | #define VXGE_HW_INTR_MODE_MSIX_ONE_SHOT 2 | 427 | #define VXGE_HW_MAX_PAYLOAD_SIZE_512 2 |
394 | 428 | ||
395 | #define VXGE_HW_INTR_MODE_DEF 0 | 429 | u32 intr_mode:2, |
396 | 430 | #define VXGE_HW_INTR_MODE_IRQLINE 0 | |
397 | u32 rth_en; | 431 | #define VXGE_HW_INTR_MODE_MSIX 1 |
398 | #define VXGE_HW_RTH_DISABLE 0 | 432 | #define VXGE_HW_INTR_MODE_MSIX_ONE_SHOT 2 |
399 | #define VXGE_HW_RTH_ENABLE 1 | 433 | |
400 | #define VXGE_HW_RTH_DEFAULT 0 | 434 | #define VXGE_HW_INTR_MODE_DEF 0 |
401 | 435 | ||
402 | u32 rth_it_type; | 436 | rth_en:1, |
403 | #define VXGE_HW_RTH_IT_TYPE_SOLO_IT 0 | 437 | #define VXGE_HW_RTH_DISABLE 0 |
404 | #define VXGE_HW_RTH_IT_TYPE_MULTI_IT 1 | 438 | #define VXGE_HW_RTH_ENABLE 1 |
405 | #define VXGE_HW_RTH_IT_TYPE_DEFAULT 0 | 439 | #define VXGE_HW_RTH_DEFAULT 0 |
406 | 440 | ||
407 | u32 rts_mac_en; | 441 | rth_it_type:1, |
442 | #define VXGE_HW_RTH_IT_TYPE_SOLO_IT 0 | ||
443 | #define VXGE_HW_RTH_IT_TYPE_MULTI_IT 1 | ||
444 | #define VXGE_HW_RTH_IT_TYPE_DEFAULT 0 | ||
445 | |||
446 | rts_mac_en:1, | ||
408 | #define VXGE_HW_RTS_MAC_DISABLE 0 | 447 | #define VXGE_HW_RTS_MAC_DISABLE 0 |
409 | #define VXGE_HW_RTS_MAC_ENABLE 1 | 448 | #define VXGE_HW_RTS_MAC_ENABLE 1 |
410 | #define VXGE_HW_RTS_MAC_DEFAULT 0 | 449 | #define VXGE_HW_RTS_MAC_DEFAULT 0 |
411 | 450 | ||
412 | struct vxge_hw_vp_config vp_config[VXGE_HW_MAX_VIRTUAL_PATHS]; | 451 | hwts_en:1; |
413 | 452 | #define VXGE_HW_HWTS_DISABLE 0 | |
414 | u32 device_poll_millis; | 453 | #define VXGE_HW_HWTS_ENABLE 1 |
415 | #define VXGE_HW_MIN_DEVICE_POLL_MILLIS 1 | 454 | #define VXGE_HW_HWTS_DEFAULT 1 |
416 | #define VXGE_HW_MAX_DEVICE_POLL_MILLIS 100000 | ||
417 | #define VXGE_HW_DEF_DEVICE_POLL_MILLIS 1000 | ||
418 | 455 | ||
456 | struct vxge_hw_vp_config vp_config[VXGE_HW_MAX_VIRTUAL_PATHS]; | ||
419 | }; | 457 | }; |
420 | 458 | ||
421 | /** | 459 | /** |
@@ -470,7 +508,6 @@ struct vxge_hw_device_config { | |||
470 | * See also: vxge_hw_driver_initialize(). | 508 | * See also: vxge_hw_driver_initialize(). |
471 | */ | 509 | */ |
472 | struct vxge_hw_uld_cbs { | 510 | struct vxge_hw_uld_cbs { |
473 | |||
474 | void (*link_up)(struct __vxge_hw_device *devh); | 511 | void (*link_up)(struct __vxge_hw_device *devh); |
475 | void (*link_down)(struct __vxge_hw_device *devh); | 512 | void (*link_down)(struct __vxge_hw_device *devh); |
476 | void (*crit_err)(struct __vxge_hw_device *devh, | 513 | void (*crit_err)(struct __vxge_hw_device *devh, |
@@ -649,6 +686,10 @@ struct __vxge_hw_virtualpath { | |||
649 | u32 vsport_number; | 686 | u32 vsport_number; |
650 | u32 max_kdfc_db; | 687 | u32 max_kdfc_db; |
651 | u32 max_nofl_db; | 688 | u32 max_nofl_db; |
689 | u64 tim_tti_cfg1_saved; | ||
690 | u64 tim_tti_cfg3_saved; | ||
691 | u64 tim_rti_cfg1_saved; | ||
692 | u64 tim_rti_cfg3_saved; | ||
652 | 693 | ||
653 | struct __vxge_hw_ring *____cacheline_aligned ringh; | 694 | struct __vxge_hw_ring *____cacheline_aligned ringh; |
654 | struct __vxge_hw_fifo *____cacheline_aligned fifoh; | 695 | struct __vxge_hw_fifo *____cacheline_aligned fifoh; |
@@ -657,6 +698,7 @@ struct __vxge_hw_virtualpath { | |||
657 | struct vxge_hw_vpath_stats_hw_info *hw_stats; | 698 | struct vxge_hw_vpath_stats_hw_info *hw_stats; |
658 | struct vxge_hw_vpath_stats_hw_info *hw_stats_sav; | 699 | struct vxge_hw_vpath_stats_hw_info *hw_stats_sav; |
659 | struct vxge_hw_vpath_stats_sw_info *sw_stats; | 700 | struct vxge_hw_vpath_stats_sw_info *sw_stats; |
701 | spinlock_t lock; | ||
660 | }; | 702 | }; |
661 | 703 | ||
662 | /* | 704 | /* |
@@ -666,7 +708,7 @@ struct __vxge_hw_virtualpath { | |||
666 | * | 708 | * |
667 | * This structure is used to store the callback information. | 709 | * This structure is used to store the callback information. |
668 | */ | 710 | */ |
669 | struct __vxge_hw_vpath_handle{ | 711 | struct __vxge_hw_vpath_handle { |
670 | struct list_head item; | 712 | struct list_head item; |
671 | struct __vxge_hw_virtualpath *vpath; | 713 | struct __vxge_hw_virtualpath *vpath; |
672 | }; | 714 | }; |
@@ -679,9 +721,6 @@ struct __vxge_hw_vpath_handle{ | |||
679 | /** | 721 | /** |
680 | * struct __vxge_hw_device - Hal device object | 722 | * struct __vxge_hw_device - Hal device object |
681 | * @magic: Magic Number | 723 | * @magic: Magic Number |
682 | * @device_id: PCI Device Id of the adapter | ||
683 | * @major_revision: PCI Device major revision | ||
684 | * @minor_revision: PCI Device minor revision | ||
685 | * @bar0: BAR0 virtual address. | 724 | * @bar0: BAR0 virtual address. |
686 | * @pdev: Physical device handle | 725 | * @pdev: Physical device handle |
687 | * @config: Confguration passed by the LL driver at initialization | 726 | * @config: Confguration passed by the LL driver at initialization |
@@ -693,9 +732,6 @@ struct __vxge_hw_device { | |||
693 | u32 magic; | 732 | u32 magic; |
694 | #define VXGE_HW_DEVICE_MAGIC 0x12345678 | 733 | #define VXGE_HW_DEVICE_MAGIC 0x12345678 |
695 | #define VXGE_HW_DEVICE_DEAD 0xDEADDEAD | 734 | #define VXGE_HW_DEVICE_DEAD 0xDEADDEAD |
696 | u16 device_id; | ||
697 | u8 major_revision; | ||
698 | u8 minor_revision; | ||
699 | void __iomem *bar0; | 735 | void __iomem *bar0; |
700 | struct pci_dev *pdev; | 736 | struct pci_dev *pdev; |
701 | struct net_device *ndev; | 737 | struct net_device *ndev; |
@@ -736,6 +772,7 @@ struct __vxge_hw_device { | |||
736 | u32 debug_level; | 772 | u32 debug_level; |
737 | u32 level_err; | 773 | u32 level_err; |
738 | u32 level_trace; | 774 | u32 level_trace; |
775 | u16 eprom_versions[VXGE_HW_MAX_ROM_IMAGES]; | ||
739 | }; | 776 | }; |
740 | 777 | ||
741 | #define VXGE_HW_INFO_LEN 64 | 778 | #define VXGE_HW_INFO_LEN 64 |
@@ -786,8 +823,8 @@ struct vxge_hw_device_hw_info { | |||
786 | u8 serial_number[VXGE_HW_INFO_LEN]; | 823 | u8 serial_number[VXGE_HW_INFO_LEN]; |
787 | u8 part_number[VXGE_HW_INFO_LEN]; | 824 | u8 part_number[VXGE_HW_INFO_LEN]; |
788 | u8 product_desc[VXGE_HW_INFO_LEN]; | 825 | u8 product_desc[VXGE_HW_INFO_LEN]; |
789 | u8 (mac_addrs)[VXGE_HW_MAX_VIRTUAL_PATHS][ETH_ALEN]; | 826 | u8 mac_addrs[VXGE_HW_MAX_VIRTUAL_PATHS][ETH_ALEN]; |
790 | u8 (mac_addr_masks)[VXGE_HW_MAX_VIRTUAL_PATHS][ETH_ALEN]; | 827 | u8 mac_addr_masks[VXGE_HW_MAX_VIRTUAL_PATHS][ETH_ALEN]; |
791 | }; | 828 | }; |
792 | 829 | ||
793 | /** | 830 | /** |
@@ -834,20 +871,10 @@ struct vxge_hw_device_attr { | |||
834 | loc, \ | 871 | loc, \ |
835 | offset, \ | 872 | offset, \ |
836 | &val64); \ | 873 | &val64); \ |
837 | \ | ||
838 | if (status != VXGE_HW_OK) \ | 874 | if (status != VXGE_HW_OK) \ |
839 | return status; \ | 875 | return status; \ |
840 | } | 876 | } |
841 | 877 | ||
842 | #define VXGE_HW_VPATH_STATS_PIO_READ(offset) { \ | ||
843 | status = __vxge_hw_vpath_stats_access(vpath, \ | ||
844 | VXGE_HW_STATS_OP_READ, \ | ||
845 | offset, \ | ||
846 | &val64); \ | ||
847 | if (status != VXGE_HW_OK) \ | ||
848 | return status; \ | ||
849 | } | ||
850 | |||
851 | /* | 878 | /* |
852 | * struct __vxge_hw_ring - Ring channel. | 879 | * struct __vxge_hw_ring - Ring channel. |
853 | * @channel: Channel "base" of this ring, the common part of all HW | 880 | * @channel: Channel "base" of this ring, the common part of all HW |
@@ -902,6 +929,9 @@ struct __vxge_hw_ring { | |||
902 | u32 doorbell_cnt; | 929 | u32 doorbell_cnt; |
903 | u32 total_db_cnt; | 930 | u32 total_db_cnt; |
904 | u64 rxds_limit; | 931 | u64 rxds_limit; |
932 | u32 rtimer; | ||
933 | u64 tim_rti_cfg1_saved; | ||
934 | u64 tim_rti_cfg3_saved; | ||
905 | 935 | ||
906 | enum vxge_hw_status (*callback)( | 936 | enum vxge_hw_status (*callback)( |
907 | struct __vxge_hw_ring *ringh, | 937 | struct __vxge_hw_ring *ringh, |
@@ -981,6 +1011,9 @@ struct __vxge_hw_fifo { | |||
981 | u32 per_txdl_space; | 1011 | u32 per_txdl_space; |
982 | u32 vp_id; | 1012 | u32 vp_id; |
983 | u32 tx_intr_num; | 1013 | u32 tx_intr_num; |
1014 | u32 rtimer; | ||
1015 | u64 tim_tti_cfg1_saved; | ||
1016 | u64 tim_tti_cfg3_saved; | ||
984 | 1017 | ||
985 | enum vxge_hw_status (*callback)( | 1018 | enum vxge_hw_status (*callback)( |
986 | struct __vxge_hw_fifo *fifo_handle, | 1019 | struct __vxge_hw_fifo *fifo_handle, |
@@ -1119,7 +1152,7 @@ struct __vxge_hw_non_offload_db_wrapper { | |||
1119 | * lookup to determine the transmit port. | 1152 | * lookup to determine the transmit port. |
1120 | * 01: Send on physical Port1. | 1153 | * 01: Send on physical Port1. |
1121 | * 10: Send on physical Port0. | 1154 | * 10: Send on physical Port0. |
1122 | * 11: Send on both ports. | 1155 | * 11: Send on both ports. |
1123 | * Bits 18 to 21 - Reserved | 1156 | * Bits 18 to 21 - Reserved |
1124 | * Bits 22 to 23 - Gather_Code. This field is set by the host and | 1157 | * Bits 22 to 23 - Gather_Code. This field is set by the host and |
1125 | * is used to describe how individual buffers comprise a frame. | 1158 | * is used to describe how individual buffers comprise a frame. |
@@ -1418,17 +1451,14 @@ enum vxge_hw_rth_algoritms { | |||
1418 | * See also: vxge_hw_vpath_rts_rth_set(), vxge_hw_vpath_rts_rth_get(). | 1451 | * See also: vxge_hw_vpath_rts_rth_set(), vxge_hw_vpath_rts_rth_get(). |
1419 | */ | 1452 | */ |
1420 | struct vxge_hw_rth_hash_types { | 1453 | struct vxge_hw_rth_hash_types { |
1421 | u8 hash_type_tcpipv4_en; | 1454 | u8 hash_type_tcpipv4_en:1, |
1422 | u8 hash_type_ipv4_en; | 1455 | hash_type_ipv4_en:1, |
1423 | u8 hash_type_tcpipv6_en; | 1456 | hash_type_tcpipv6_en:1, |
1424 | u8 hash_type_ipv6_en; | 1457 | hash_type_ipv6_en:1, |
1425 | u8 hash_type_tcpipv6ex_en; | 1458 | hash_type_tcpipv6ex_en:1, |
1426 | u8 hash_type_ipv6ex_en; | 1459 | hash_type_ipv6ex_en:1; |
1427 | }; | 1460 | }; |
1428 | 1461 | ||
1429 | u32 | ||
1430 | vxge_hw_device_debug_mask_get(struct __vxge_hw_device *devh); | ||
1431 | |||
1432 | void vxge_hw_device_debug_set( | 1462 | void vxge_hw_device_debug_set( |
1433 | struct __vxge_hw_device *devh, | 1463 | struct __vxge_hw_device *devh, |
1434 | enum vxge_debug_level level, | 1464 | enum vxge_debug_level level, |
@@ -1440,9 +1470,6 @@ vxge_hw_device_error_level_get(struct __vxge_hw_device *devh); | |||
1440 | u32 | 1470 | u32 |
1441 | vxge_hw_device_trace_level_get(struct __vxge_hw_device *devh); | 1471 | vxge_hw_device_trace_level_get(struct __vxge_hw_device *devh); |
1442 | 1472 | ||
1443 | u32 | ||
1444 | vxge_hw_device_debug_mask_get(struct __vxge_hw_device *devh); | ||
1445 | |||
1446 | /** | 1473 | /** |
1447 | * vxge_hw_ring_rxd_size_get - Get the size of ring descriptor. | 1474 | * vxge_hw_ring_rxd_size_get - Get the size of ring descriptor. |
1448 | * @buf_mode: Buffer mode (1, 3 or 5) | 1475 | * @buf_mode: Buffer mode (1, 3 or 5) |
@@ -1817,60 +1844,10 @@ struct vxge_hw_vpath_attr { | |||
1817 | struct vxge_hw_fifo_attr fifo_attr; | 1844 | struct vxge_hw_fifo_attr fifo_attr; |
1818 | }; | 1845 | }; |
1819 | 1846 | ||
1820 | enum vxge_hw_status | ||
1821 | __vxge_hw_blockpool_create(struct __vxge_hw_device *hldev, | ||
1822 | struct __vxge_hw_blockpool *blockpool, | ||
1823 | u32 pool_size, | ||
1824 | u32 pool_max); | ||
1825 | |||
1826 | void | ||
1827 | __vxge_hw_blockpool_destroy(struct __vxge_hw_blockpool *blockpool); | ||
1828 | |||
1829 | struct __vxge_hw_blockpool_entry * | ||
1830 | __vxge_hw_blockpool_block_allocate(struct __vxge_hw_device *hldev, | ||
1831 | u32 size); | ||
1832 | |||
1833 | void | ||
1834 | __vxge_hw_blockpool_block_free(struct __vxge_hw_device *hldev, | ||
1835 | struct __vxge_hw_blockpool_entry *entry); | ||
1836 | |||
1837 | void * | ||
1838 | __vxge_hw_blockpool_malloc(struct __vxge_hw_device *hldev, | ||
1839 | u32 size, | ||
1840 | struct vxge_hw_mempool_dma *dma_object); | ||
1841 | |||
1842 | void | ||
1843 | __vxge_hw_blockpool_free(struct __vxge_hw_device *hldev, | ||
1844 | void *memblock, | ||
1845 | u32 size, | ||
1846 | struct vxge_hw_mempool_dma *dma_object); | ||
1847 | |||
1848 | enum vxge_hw_status | ||
1849 | __vxge_hw_device_fifo_config_check(struct vxge_hw_fifo_config *fifo_config); | ||
1850 | |||
1851 | enum vxge_hw_status | ||
1852 | __vxge_hw_device_config_check(struct vxge_hw_device_config *new_config); | ||
1853 | |||
1854 | enum vxge_hw_status | ||
1855 | vxge_hw_mgmt_device_config(struct __vxge_hw_device *devh, | ||
1856 | struct vxge_hw_device_config *dev_config, int size); | ||
1857 | |||
1858 | enum vxge_hw_status __devinit vxge_hw_device_hw_info_get( | 1847 | enum vxge_hw_status __devinit vxge_hw_device_hw_info_get( |
1859 | void __iomem *bar0, | 1848 | void __iomem *bar0, |
1860 | struct vxge_hw_device_hw_info *hw_info); | 1849 | struct vxge_hw_device_hw_info *hw_info); |
1861 | 1850 | ||
1862 | enum vxge_hw_status | ||
1863 | __vxge_hw_vpath_fw_ver_get( | ||
1864 | u32 vp_id, | ||
1865 | struct vxge_hw_vpath_reg __iomem *vpath_reg, | ||
1866 | struct vxge_hw_device_hw_info *hw_info); | ||
1867 | |||
1868 | enum vxge_hw_status | ||
1869 | __vxge_hw_vpath_card_info_get( | ||
1870 | u32 vp_id, | ||
1871 | struct vxge_hw_vpath_reg __iomem *vpath_reg, | ||
1872 | struct vxge_hw_device_hw_info *hw_info); | ||
1873 | |||
1874 | enum vxge_hw_status __devinit vxge_hw_device_config_default_get( | 1851 | enum vxge_hw_status __devinit vxge_hw_device_config_default_get( |
1875 | struct vxge_hw_device_config *device_config); | 1852 | struct vxge_hw_device_config *device_config); |
1876 | 1853 | ||
@@ -1954,29 +1931,6 @@ out: | |||
1954 | return vaddr; | 1931 | return vaddr; |
1955 | } | 1932 | } |
1956 | 1933 | ||
1957 | extern void vxge_hw_blockpool_block_add( | ||
1958 | struct __vxge_hw_device *devh, | ||
1959 | void *block_addr, | ||
1960 | u32 length, | ||
1961 | struct pci_dev *dma_h, | ||
1962 | struct pci_dev *acc_handle); | ||
1963 | |||
1964 | static inline void vxge_os_dma_malloc_async(struct pci_dev *pdev, void *devh, | ||
1965 | unsigned long size) | ||
1966 | { | ||
1967 | gfp_t flags; | ||
1968 | void *vaddr; | ||
1969 | |||
1970 | if (in_interrupt()) | ||
1971 | flags = GFP_ATOMIC | GFP_DMA; | ||
1972 | else | ||
1973 | flags = GFP_KERNEL | GFP_DMA; | ||
1974 | |||
1975 | vaddr = kmalloc((size), flags); | ||
1976 | |||
1977 | vxge_hw_blockpool_block_add(devh, vaddr, size, pdev, pdev); | ||
1978 | } | ||
1979 | |||
1980 | static inline void vxge_os_dma_free(struct pci_dev *pdev, const void *vaddr, | 1934 | static inline void vxge_os_dma_free(struct pci_dev *pdev, const void *vaddr, |
1981 | struct pci_dev **p_dma_acch) | 1935 | struct pci_dev **p_dma_acch) |
1982 | { | 1936 | { |
@@ -2010,40 +1964,6 @@ __vxge_hw_mempool_item_priv( | |||
2010 | (*memblock_item_idx) * mempool->items_priv_size; | 1964 | (*memblock_item_idx) * mempool->items_priv_size; |
2011 | } | 1965 | } |
2012 | 1966 | ||
2013 | enum vxge_hw_status | ||
2014 | __vxge_hw_mempool_grow( | ||
2015 | struct vxge_hw_mempool *mempool, | ||
2016 | u32 num_allocate, | ||
2017 | u32 *num_allocated); | ||
2018 | |||
2019 | struct vxge_hw_mempool* | ||
2020 | __vxge_hw_mempool_create( | ||
2021 | struct __vxge_hw_device *devh, | ||
2022 | u32 memblock_size, | ||
2023 | u32 item_size, | ||
2024 | u32 private_size, | ||
2025 | u32 items_initial, | ||
2026 | u32 items_max, | ||
2027 | struct vxge_hw_mempool_cbs *mp_callback, | ||
2028 | void *userdata); | ||
2029 | |||
2030 | struct __vxge_hw_channel* | ||
2031 | __vxge_hw_channel_allocate(struct __vxge_hw_vpath_handle *vph, | ||
2032 | enum __vxge_hw_channel_type type, u32 length, | ||
2033 | u32 per_dtr_space, void *userdata); | ||
2034 | |||
2035 | void | ||
2036 | __vxge_hw_channel_free( | ||
2037 | struct __vxge_hw_channel *channel); | ||
2038 | |||
2039 | enum vxge_hw_status | ||
2040 | __vxge_hw_channel_initialize( | ||
2041 | struct __vxge_hw_channel *channel); | ||
2042 | |||
2043 | enum vxge_hw_status | ||
2044 | __vxge_hw_channel_reset( | ||
2045 | struct __vxge_hw_channel *channel); | ||
2046 | |||
2047 | /* | 1967 | /* |
2048 | * __vxge_hw_fifo_txdl_priv - Return the max fragments allocated | 1968 | * __vxge_hw_fifo_txdl_priv - Return the max fragments allocated |
2049 | * for the fifo. | 1969 | * for the fifo. |
@@ -2065,9 +1985,6 @@ enum vxge_hw_status vxge_hw_vpath_open( | |||
2065 | struct vxge_hw_vpath_attr *attr, | 1985 | struct vxge_hw_vpath_attr *attr, |
2066 | struct __vxge_hw_vpath_handle **vpath_handle); | 1986 | struct __vxge_hw_vpath_handle **vpath_handle); |
2067 | 1987 | ||
2068 | enum vxge_hw_status | ||
2069 | __vxge_hw_device_vpath_reset_in_prog_check(u64 __iomem *vpath_rst_in_prog); | ||
2070 | |||
2071 | enum vxge_hw_status vxge_hw_vpath_close( | 1988 | enum vxge_hw_status vxge_hw_vpath_close( |
2072 | struct __vxge_hw_vpath_handle *vpath_handle); | 1989 | struct __vxge_hw_vpath_handle *vpath_handle); |
2073 | 1990 | ||
@@ -2089,55 +2006,9 @@ enum vxge_hw_status vxge_hw_vpath_mtu_set( | |||
2089 | struct __vxge_hw_vpath_handle *vpath_handle, | 2006 | struct __vxge_hw_vpath_handle *vpath_handle, |
2090 | u32 new_mtu); | 2007 | u32 new_mtu); |
2091 | 2008 | ||
2092 | enum vxge_hw_status vxge_hw_vpath_stats_enable( | ||
2093 | struct __vxge_hw_vpath_handle *vpath_handle); | ||
2094 | |||
2095 | enum vxge_hw_status | ||
2096 | __vxge_hw_vpath_stats_access( | ||
2097 | struct __vxge_hw_virtualpath *vpath, | ||
2098 | u32 operation, | ||
2099 | u32 offset, | ||
2100 | u64 *stat); | ||
2101 | |||
2102 | enum vxge_hw_status | ||
2103 | __vxge_hw_vpath_xmac_tx_stats_get( | ||
2104 | struct __vxge_hw_virtualpath *vpath, | ||
2105 | struct vxge_hw_xmac_vpath_tx_stats *vpath_tx_stats); | ||
2106 | |||
2107 | enum vxge_hw_status | ||
2108 | __vxge_hw_vpath_xmac_rx_stats_get( | ||
2109 | struct __vxge_hw_virtualpath *vpath, | ||
2110 | struct vxge_hw_xmac_vpath_rx_stats *vpath_rx_stats); | ||
2111 | |||
2112 | enum vxge_hw_status | ||
2113 | __vxge_hw_vpath_stats_get( | ||
2114 | struct __vxge_hw_virtualpath *vpath, | ||
2115 | struct vxge_hw_vpath_stats_hw_info *hw_stats); | ||
2116 | |||
2117 | void | 2009 | void |
2118 | vxge_hw_vpath_rx_doorbell_init(struct __vxge_hw_vpath_handle *vp); | 2010 | vxge_hw_vpath_rx_doorbell_init(struct __vxge_hw_vpath_handle *vp); |
2119 | 2011 | ||
2120 | enum vxge_hw_status | ||
2121 | __vxge_hw_device_vpath_config_check(struct vxge_hw_vp_config *vp_config); | ||
2122 | |||
2123 | void | ||
2124 | __vxge_hw_device_pci_e_init(struct __vxge_hw_device *hldev); | ||
2125 | |||
2126 | enum vxge_hw_status | ||
2127 | __vxge_hw_legacy_swapper_set(struct vxge_hw_legacy_reg __iomem *legacy_reg); | ||
2128 | |||
2129 | enum vxge_hw_status | ||
2130 | __vxge_hw_vpath_swapper_set(struct vxge_hw_vpath_reg __iomem *vpath_reg); | ||
2131 | |||
2132 | enum vxge_hw_status | ||
2133 | __vxge_hw_kdfc_swapper_set(struct vxge_hw_legacy_reg __iomem *legacy_reg, | ||
2134 | struct vxge_hw_vpath_reg __iomem *vpath_reg); | ||
2135 | |||
2136 | enum vxge_hw_status | ||
2137 | __vxge_hw_device_register_poll( | ||
2138 | void __iomem *reg, | ||
2139 | u64 mask, u32 max_millis); | ||
2140 | |||
2141 | #ifndef readq | 2012 | #ifndef readq |
2142 | static inline u64 readq(void __iomem *addr) | 2013 | static inline u64 readq(void __iomem *addr) |
2143 | { | 2014 | { |
@@ -2168,64 +2039,14 @@ static inline void __vxge_hw_pio_mem_write32_lower(u32 val, void __iomem *addr) | |||
2168 | writel(val, addr); | 2039 | writel(val, addr); |
2169 | } | 2040 | } |
2170 | 2041 | ||
2171 | static inline enum vxge_hw_status | ||
2172 | __vxge_hw_pio_mem_write64(u64 val64, void __iomem *addr, | ||
2173 | u64 mask, u32 max_millis) | ||
2174 | { | ||
2175 | enum vxge_hw_status status = VXGE_HW_OK; | ||
2176 | |||
2177 | __vxge_hw_pio_mem_write32_lower((u32)vxge_bVALn(val64, 32, 32), addr); | ||
2178 | wmb(); | ||
2179 | __vxge_hw_pio_mem_write32_upper((u32)vxge_bVALn(val64, 0, 32), addr); | ||
2180 | wmb(); | ||
2181 | |||
2182 | status = __vxge_hw_device_register_poll(addr, mask, max_millis); | ||
2183 | return status; | ||
2184 | } | ||
2185 | |||
2186 | struct vxge_hw_toc_reg __iomem * | ||
2187 | __vxge_hw_device_toc_get(void __iomem *bar0); | ||
2188 | |||
2189 | enum vxge_hw_status | ||
2190 | __vxge_hw_device_reg_addr_get(struct __vxge_hw_device *hldev); | ||
2191 | |||
2192 | void | ||
2193 | __vxge_hw_device_id_get(struct __vxge_hw_device *hldev); | ||
2194 | |||
2195 | void | ||
2196 | __vxge_hw_device_host_info_get(struct __vxge_hw_device *hldev); | ||
2197 | |||
2198 | enum vxge_hw_status | 2042 | enum vxge_hw_status |
2199 | vxge_hw_device_flick_link_led(struct __vxge_hw_device *devh, u64 on_off); | 2043 | vxge_hw_device_flick_link_led(struct __vxge_hw_device *devh, u64 on_off); |
2200 | 2044 | ||
2201 | enum vxge_hw_status | 2045 | enum vxge_hw_status |
2202 | __vxge_hw_device_initialize(struct __vxge_hw_device *hldev); | ||
2203 | |||
2204 | enum vxge_hw_status | ||
2205 | __vxge_hw_vpath_pci_read( | ||
2206 | struct __vxge_hw_virtualpath *vpath, | ||
2207 | u32 phy_func_0, | ||
2208 | u32 offset, | ||
2209 | u32 *val); | ||
2210 | |||
2211 | enum vxge_hw_status | ||
2212 | __vxge_hw_vpath_addr_get( | ||
2213 | u32 vp_id, | ||
2214 | struct vxge_hw_vpath_reg __iomem *vpath_reg, | ||
2215 | u8 (macaddr)[ETH_ALEN], | ||
2216 | u8 (macaddr_mask)[ETH_ALEN]); | ||
2217 | |||
2218 | u32 | ||
2219 | __vxge_hw_vpath_func_id_get( | ||
2220 | u32 vp_id, struct vxge_hw_vpmgmt_reg __iomem *vpmgmt_reg); | ||
2221 | |||
2222 | enum vxge_hw_status | ||
2223 | __vxge_hw_vpath_reset_check(struct __vxge_hw_virtualpath *vpath); | ||
2224 | |||
2225 | enum vxge_hw_status | ||
2226 | vxge_hw_vpath_strip_fcs_check(struct __vxge_hw_device *hldev, u64 vpath_mask); | 2046 | vxge_hw_vpath_strip_fcs_check(struct __vxge_hw_device *hldev, u64 vpath_mask); |
2047 | |||
2227 | /** | 2048 | /** |
2228 | * vxge_debug | 2049 | * vxge_debug_ll |
2229 | * @level: level of debug verbosity. | 2050 | * @level: level of debug verbosity. |
2230 | * @mask: mask for the debug | 2051 | * @mask: mask for the debug |
2231 | * @buf: Circular buffer for tracing | 2052 | * @buf: Circular buffer for tracing |
@@ -2237,26 +2058,13 @@ vxge_hw_vpath_strip_fcs_check(struct __vxge_hw_device *hldev, u64 vpath_mask); | |||
2237 | * may be compiled out if DEBUG macro was never defined. | 2058 | * may be compiled out if DEBUG macro was never defined. |
2238 | * See also: enum vxge_debug_level{}. | 2059 | * See also: enum vxge_debug_level{}. |
2239 | */ | 2060 | */ |
2240 | |||
2241 | #define vxge_trace_aux(level, mask, fmt, ...) \ | ||
2242 | {\ | ||
2243 | vxge_os_vaprintf(level, mask, fmt, __VA_ARGS__);\ | ||
2244 | } | ||
2245 | |||
2246 | #define vxge_debug(module, level, mask, fmt, ...) { \ | ||
2247 | if ((level >= VXGE_TRACE && ((module & VXGE_DEBUG_TRACE_MASK) == module)) || \ | ||
2248 | (level >= VXGE_ERR && ((module & VXGE_DEBUG_ERR_MASK) == module))) {\ | ||
2249 | if ((mask & VXGE_DEBUG_MASK) == mask)\ | ||
2250 | vxge_trace_aux(level, mask, fmt, __VA_ARGS__); \ | ||
2251 | } \ | ||
2252 | } | ||
2253 | |||
2254 | #if (VXGE_COMPONENT_LL & VXGE_DEBUG_MODULE_MASK) | 2061 | #if (VXGE_COMPONENT_LL & VXGE_DEBUG_MODULE_MASK) |
2255 | #define vxge_debug_ll(level, mask, fmt, ...) \ | 2062 | #define vxge_debug_ll(level, mask, fmt, ...) do { \ |
2256 | {\ | 2063 | if ((level >= VXGE_ERR && VXGE_COMPONENT_LL & VXGE_DEBUG_ERR_MASK) || \ |
2257 | vxge_debug(VXGE_COMPONENT_LL, level, mask, fmt, __VA_ARGS__);\ | 2064 | (level >= VXGE_TRACE && VXGE_COMPONENT_LL & VXGE_DEBUG_TRACE_MASK))\ |
2258 | } | 2065 | if ((mask & VXGE_DEBUG_MASK) == mask) \ |
2259 | 2066 | printk(fmt "\n", __VA_ARGS__); \ | |
2067 | } while (0) | ||
2260 | #else | 2068 | #else |
2261 | #define vxge_debug_ll(level, mask, fmt, ...) | 2069 | #define vxge_debug_ll(level, mask, fmt, ...) |
2262 | #endif | 2070 | #endif |
@@ -2276,4 +2084,26 @@ enum vxge_hw_status vxge_hw_vpath_rts_rth_set( | |||
2276 | 2084 | ||
2277 | enum vxge_hw_status | 2085 | enum vxge_hw_status |
2278 | __vxge_hw_device_is_privilaged(u32 host_type, u32 func_id); | 2086 | __vxge_hw_device_is_privilaged(u32 host_type, u32 func_id); |
2087 | |||
2088 | #define VXGE_HW_MIN_SUCCESSIVE_IDLE_COUNT 5 | ||
2089 | #define VXGE_HW_MAX_POLLING_COUNT 100 | ||
2090 | |||
2091 | void | ||
2092 | vxge_hw_device_wait_receive_idle(struct __vxge_hw_device *hldev); | ||
2093 | |||
2094 | enum vxge_hw_status | ||
2095 | vxge_hw_upgrade_read_version(struct __vxge_hw_device *hldev, u32 *major, | ||
2096 | u32 *minor, u32 *build); | ||
2097 | |||
2098 | enum vxge_hw_status vxge_hw_flash_fw(struct __vxge_hw_device *hldev); | ||
2099 | |||
2100 | enum vxge_hw_status | ||
2101 | vxge_update_fw_image(struct __vxge_hw_device *hldev, const u8 *filebuf, | ||
2102 | int size); | ||
2103 | |||
2104 | enum vxge_hw_status | ||
2105 | vxge_hw_vpath_eprom_img_ver_get(struct __vxge_hw_device *hldev, | ||
2106 | struct eprom_image *eprom_image_data); | ||
2107 | |||
2108 | int vxge_hw_vpath_wait_receive_idle(struct __vxge_hw_device *hldev, u32 vp_id); | ||
2279 | #endif | 2109 | #endif |