2 * Copyright (c) 2004, 2005 Topspin Communications. All rights reserved.
3 * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
4 * Copyright (c) 2005, 2006, 2007 Cisco Systems. All rights reserved.
5 * Copyright (c) 2005, 2006, 2007, 2008 Mellanox Technologies. All rights reserved.
6 * Copyright (c) 2004 Voltaire, Inc. All rights reserved.
8 * This software is available to you under a choice of one of two
9 * licenses. You may choose to be licensed under the terms of the GNU
10 * General Public License (GPL) Version 2, available from the file
11 * COPYING in the main directory of this source tree, or the
12 * OpenIB.org BSD license below:
14 * Redistribution and use in source and binary forms, with or
15 * without modification, are permitted provided that the following
18 * - Redistributions of source code must retain the above
19 * copyright notice, this list of conditions and the following
22 * - Redistributions in binary form must reproduce the above
23 * copyright notice, this list of conditions and the following
24 * disclaimer in the documentation and/or other materials
25 * provided with the distribution.
27 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
28 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
29 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
30 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
31 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
32 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
33 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
40 #include <linux/mutex.h>
41 #include <linux/radix-tree.h>
42 #include <linux/rbtree.h>
43 #include <linux/timer.h>
44 #include <linux/semaphore.h>
45 #include <linux/workqueue.h>
47 #include <linux/mlx4/device.h>
48 #include <linux/mlx4/driver.h>
49 #include <linux/mlx4/doorbell.h>
50 #include <linux/mlx4/cmd.h>
52 #define DRV_NAME "mlx4_core"
53 #define PFX DRV_NAME ": "
54 #define DRV_VERSION "1.1"
55 #define DRV_RELDATE "Dec, 2011"
57 #define MLX4_FS_UDP_UC_EN (1 << 1)
58 #define MLX4_FS_TCP_UC_EN (1 << 2)
59 #define MLX4_FS_NUM_OF_L2_ADDR 8
60 #define MLX4_FS_MGM_LOG_ENTRY_SIZE 7
61 #define MLX4_FS_NUM_MCG (1 << 17)
65 MLX4_FS_L2_L3_L4_HASH
,
70 #define MLX4_RATELIMIT_UNITS 3 /* 100 Mbps */
71 #define MLX4_RATELIMIT_DEFAULT 0xffff
73 struct mlx4_set_port_prio2tc_context
{
77 struct mlx4_port_scheduler_tc_cfg_be
{
80 __be16 max_bw_units
; /* 3-100Mbps, 4-1Gbps, other values - reserved */
84 struct mlx4_set_port_scheduler_context
{
85 struct mlx4_port_scheduler_tc_cfg_be tc
[MLX4_NUM_TC
];
89 MLX4_HCR_BASE
= 0x80680,
90 MLX4_HCR_SIZE
= 0x0001c,
91 MLX4_CLR_INT_SIZE
= 0x00008,
92 MLX4_SLAVE_COMM_BASE
= 0x0,
93 MLX4_COMM_PAGESIZE
= 0x1000
97 MLX4_MAX_MGM_ENTRY_SIZE
= 0x1000,
98 MLX4_MAX_QP_PER_MGM
= 4 * (MLX4_MAX_MGM_ENTRY_SIZE
/ 16 - 2),
99 MLX4_MTT_ENTRY_PER_SEG
= 8,
103 MLX4_NUM_PDS
= 1 << 15
107 MLX4_CMPT_TYPE_QP
= 0,
108 MLX4_CMPT_TYPE_SRQ
= 1,
109 MLX4_CMPT_TYPE_CQ
= 2,
110 MLX4_CMPT_TYPE_EQ
= 3,
115 MLX4_CMPT_SHIFT
= 24,
116 MLX4_NUM_CMPTS
= MLX4_CMPT_NUM_TYPE
<< MLX4_CMPT_SHIFT
120 MLX4_MR_DISABLED
= 0,
125 #define MLX4_COMM_TIME 10000
131 MLX4_COMM_CMD_VHCR_EN
,
132 MLX4_COMM_CMD_VHCR_POST
,
133 MLX4_COMM_CMD_FLR
= 254
136 /*The flag indicates that the slave should delay the RESET cmd*/
137 #define MLX4_DELAY_RESET_SLAVE 0xbbbbbbb
138 /*indicates how many retries will be done if we are in the middle of FLR*/
139 #define NUM_OF_RESET_RETRIES 10
140 #define SLEEP_TIME_IN_RESET (2 * 1000)
153 MLX4_NUM_OF_RESOURCE_TYPE
156 enum mlx4_alloc_mode
{
158 RES_OP_RESERVE_AND_MAP
,
162 enum mlx4_res_tracker_free_type
{
164 RES_TR_FREE_SLAVES_ONLY
,
165 RES_TR_FREE_STRUCTS_ONLY
,
169 *Virtual HCR structures.
170 * mlx4_vhcr is the sw representation, in machine endianess
172 * mlx4_vhcr_cmd is the formalized structure, the one that is passed
173 * to FW to go through communication channel.
174 * It is big endian, and has the same structure as the physical HCR
175 * used by command interface
188 struct mlx4_vhcr_cmd
{
199 struct mlx4_cmd_info
{
204 bool encode_slave_id
;
205 int (*verify
)(struct mlx4_dev
*dev
, int slave
, struct mlx4_vhcr
*vhcr
,
206 struct mlx4_cmd_mailbox
*inbox
);
207 int (*wrapper
)(struct mlx4_dev
*dev
, int slave
, struct mlx4_vhcr
*vhcr
,
208 struct mlx4_cmd_mailbox
*inbox
,
209 struct mlx4_cmd_mailbox
*outbox
,
210 struct mlx4_cmd_info
*cmd
);
213 #ifdef CONFIG_MLX4_DEBUG
214 extern int mlx4_debug_level
;
215 #else /* CONFIG_MLX4_DEBUG */
216 #define mlx4_debug_level (0)
217 #endif /* CONFIG_MLX4_DEBUG */
219 #define mlx4_dbg(mdev, format, arg...) \
221 if (mlx4_debug_level) \
222 dev_printk(KERN_DEBUG, &mdev->pdev->dev, format, ##arg); \
225 #define mlx4_err(mdev, format, arg...) \
226 dev_err(&mdev->pdev->dev, format, ##arg)
227 #define mlx4_info(mdev, format, arg...) \
228 dev_info(&mdev->pdev->dev, format, ##arg)
229 #define mlx4_warn(mdev, format, arg...) \
230 dev_warn(&mdev->pdev->dev, format, ##arg)
232 extern int mlx4_log_num_mgm_entry_size
;
233 extern int log_mtts_per_seg
;
235 #define MLX4_MAX_NUM_SLAVES (MLX4_MAX_NUM_PF + MLX4_MAX_NUM_VF)
236 #define ALL_SLAVES 0xff
246 unsigned long *table
;
250 unsigned long **bits
;
251 unsigned int *num_free
;
258 struct mlx4_icm_table
{
266 struct mlx4_icm
**icm
;
270 * Must be packed because mtt_seg is 64 bits but only aligned to 32 bits.
272 struct mlx4_mpt_entry
{
286 __be32 first_byte_offset
;
290 * Must be packed because start is 64 bits but only aligned to 32 bits.
292 struct mlx4_eq_context
{
306 __be32 mtt_base_addr_l
;
308 __be32 consumer_index
;
309 __be32 producer_index
;
313 struct mlx4_cq_context
{
317 __be32 logsize_usrpage
;
325 __be32 mtt_base_addr_l
;
326 __be32 last_notified_index
;
327 __be32 solicit_producer_index
;
328 __be32 consumer_index
;
329 __be32 producer_index
;
334 struct mlx4_srq_context
{
335 __be32 state_logsize_srqn
;
339 __be32 pg_offset_cqn
;
344 __be32 mtt_base_addr_l
;
346 __be16 limit_watermark
;
355 struct mlx4_dev
*dev
;
356 void __iomem
*doorbell
;
362 struct mlx4_buf_list
*page_list
;
366 struct mlx4_slave_eqe
{
372 struct mlx4_slave_event_eq_info
{
377 struct mlx4_profile
{
391 struct mlx4_icm
*fw_icm
;
392 struct mlx4_icm
*aux_icm
;
406 MLX4_MCAST_CONFIG
= 0,
407 MLX4_MCAST_DISABLE
= 1,
408 MLX4_MCAST_ENABLE
= 2,
411 #define VLAN_FLTR_SIZE 128
413 struct mlx4_vlan_fltr
{
414 __be32 entry
[VLAN_FLTR_SIZE
];
417 struct mlx4_mcast_entry
{
418 struct list_head list
;
422 struct mlx4_promisc_qp
{
423 struct list_head list
;
427 struct mlx4_steer_index
{
428 struct list_head list
;
430 struct list_head duplicates
;
433 #define MLX4_EVENT_TYPES_NUM 64
435 struct mlx4_slave_state
{
442 u16 mtu
[MLX4_MAX_PORTS
+ 1];
443 __be32 ib_cap_mask
[MLX4_MAX_PORTS
+ 1];
444 struct mlx4_slave_eqe eq
[MLX4_MFUNC_MAX_EQES
];
445 struct list_head mcast_filters
[MLX4_MAX_PORTS
+ 1];
446 struct mlx4_vlan_fltr
*vlan_filter
[MLX4_MAX_PORTS
+ 1];
447 /* event type to eq number lookup */
448 struct mlx4_slave_event_eq_info event_eq
[MLX4_EVENT_TYPES_NUM
];
452 /*initialized via the kzalloc*/
453 u8 is_slave_going_down
;
459 struct list_head res_list
[MLX4_NUM_OF_RESOURCE_TYPE
];
462 struct mlx4_resource_tracker
{
464 /* tree for each resources */
465 struct rb_root res_tree
[MLX4_NUM_OF_RESOURCE_TYPE
];
466 /* num_of_slave's lists, one per slave */
467 struct slave_list
*slave_list
;
470 #define SLAVE_EVENT_EQ_SIZE 128
471 struct mlx4_slave_event_eq
{
475 struct mlx4_eqe event_eqe
[SLAVE_EVENT_EQ_SIZE
];
478 struct mlx4_master_qp0_state
{
479 int proxy_qp0_active
;
484 struct mlx4_mfunc_master_ctx
{
485 struct mlx4_slave_state
*slave_state
;
486 struct mlx4_master_qp0_state qp0_state
[MLX4_MAX_PORTS
+ 1];
487 int init_port_ref
[MLX4_MAX_PORTS
+ 1];
488 u16 max_mtu
[MLX4_MAX_PORTS
+ 1];
489 int disable_mcast_ref
[MLX4_MAX_PORTS
+ 1];
490 struct mlx4_resource_tracker res_tracker
;
491 struct workqueue_struct
*comm_wq
;
492 struct work_struct comm_work
;
493 struct work_struct slave_event_work
;
494 struct work_struct slave_flr_event_work
;
495 spinlock_t slave_state_lock
;
496 __be32 comm_arm_bit_vector
[4];
497 struct mlx4_eqe cmd_eqe
;
498 struct mlx4_slave_event_eq slave_eq
;
499 struct mutex gen_eqe_mutex
[MLX4_MFUNC_MAX
];
503 struct mlx4_comm __iomem
*comm
;
504 struct mlx4_vhcr_cmd
*vhcr
;
507 struct mlx4_mfunc_master_ctx master
;
511 struct pci_pool
*pool
;
513 struct mutex hcr_mutex
;
514 struct semaphore poll_sem
;
515 struct semaphore event_sem
;
516 struct semaphore slave_sem
;
518 spinlock_t context_lock
;
520 struct mlx4_cmd_context
*context
;
527 struct mlx4_uar_table
{
528 struct mlx4_bitmap bitmap
;
531 struct mlx4_mr_table
{
532 struct mlx4_bitmap mpt_bitmap
;
533 struct mlx4_buddy mtt_buddy
;
536 struct mlx4_icm_table mtt_table
;
537 struct mlx4_icm_table dmpt_table
;
540 struct mlx4_cq_table
{
541 struct mlx4_bitmap bitmap
;
543 struct radix_tree_root tree
;
544 struct mlx4_icm_table table
;
545 struct mlx4_icm_table cmpt_table
;
548 struct mlx4_eq_table
{
549 struct mlx4_bitmap bitmap
;
551 void __iomem
*clr_int
;
552 void __iomem
**uar_map
;
555 struct mlx4_icm_table table
;
556 struct mlx4_icm_table cmpt_table
;
561 struct mlx4_srq_table
{
562 struct mlx4_bitmap bitmap
;
564 struct radix_tree_root tree
;
565 struct mlx4_icm_table table
;
566 struct mlx4_icm_table cmpt_table
;
569 struct mlx4_qp_table
{
570 struct mlx4_bitmap bitmap
;
574 struct mlx4_icm_table qp_table
;
575 struct mlx4_icm_table auxc_table
;
576 struct mlx4_icm_table altc_table
;
577 struct mlx4_icm_table rdmarc_table
;
578 struct mlx4_icm_table cmpt_table
;
581 struct mlx4_mcg_table
{
583 struct mlx4_bitmap bitmap
;
584 struct mlx4_icm_table table
;
587 struct mlx4_catas_err
{
589 struct timer_list timer
;
590 struct list_head list
;
593 #define MLX4_MAX_MAC_NUM 128
594 #define MLX4_MAC_TABLE_SIZE (MLX4_MAX_MAC_NUM << 3)
596 struct mlx4_mac_table
{
597 __be64 entries
[MLX4_MAX_MAC_NUM
];
598 int refs
[MLX4_MAX_MAC_NUM
];
604 #define MLX4_MAX_VLAN_NUM 128
605 #define MLX4_VLAN_TABLE_SIZE (MLX4_MAX_VLAN_NUM << 2)
607 struct mlx4_vlan_table
{
608 __be32 entries
[MLX4_MAX_VLAN_NUM
];
609 int refs
[MLX4_MAX_VLAN_NUM
];
615 #define SET_PORT_GEN_ALL_VALID 0x7
616 #define SET_PORT_PROMISC_SHIFT 31
617 #define SET_PORT_MC_PROMISC_SHIFT 30
620 MCAST_DIRECT_ONLY
= 0,
626 struct mlx4_set_port_general_context
{
639 struct mlx4_set_port_rqp_calc_context
{
657 struct mlx4_mac_entry
{
662 struct mlx4_port_info
{
663 struct mlx4_dev
*dev
;
666 struct device_attribute port_attr
;
667 enum mlx4_port_type tmp_type
;
668 char dev_mtu_name
[16];
669 struct device_attribute port_mtu_attr
;
670 struct mlx4_mac_table mac_table
;
671 struct radix_tree_root mac_tree
;
672 struct mlx4_vlan_table vlan_table
;
677 struct mlx4_dev
*dev
;
678 u8 do_sense_port
[MLX4_MAX_PORTS
+ 1];
679 u8 sense_allowed
[MLX4_MAX_PORTS
+ 1];
680 struct delayed_work sense_poll
;
683 struct mlx4_msix_ctl
{
685 struct mutex pool_lock
;
689 struct list_head promisc_qps
[MLX4_NUM_STEERS
];
690 struct list_head steer_entries
[MLX4_NUM_STEERS
];
693 struct mlx4_net_trans_rule_hw_ctrl
{
700 struct mlx4_net_trans_rule_hw_ib
{
711 struct mlx4_net_trans_rule_hw_eth
{
724 u8 ether_type_enable
;
730 struct mlx4_net_trans_rule_hw_tcp_udp
{
744 struct mlx4_net_trans_rule_hw_ipv4
{
762 struct mlx4_net_trans_rule_hw_eth eth
;
763 struct mlx4_net_trans_rule_hw_ib ib
;
764 struct mlx4_net_trans_rule_hw_ipv4 ipv4
;
765 struct mlx4_net_trans_rule_hw_tcp_udp tcp_udp
;
772 struct list_head dev_list
;
773 struct list_head ctx_list
;
776 struct list_head pgdir_list
;
777 struct mutex pgdir_mutex
;
781 struct mlx4_mfunc mfunc
;
783 struct mlx4_bitmap pd_bitmap
;
784 struct mlx4_bitmap xrcd_bitmap
;
785 struct mlx4_uar_table uar_table
;
786 struct mlx4_mr_table mr_table
;
787 struct mlx4_cq_table cq_table
;
788 struct mlx4_eq_table eq_table
;
789 struct mlx4_srq_table srq_table
;
790 struct mlx4_qp_table qp_table
;
791 struct mlx4_mcg_table mcg_table
;
792 struct mlx4_bitmap counters_bitmap
;
794 struct mlx4_catas_err catas_err
;
796 void __iomem
*clr_base
;
798 struct mlx4_uar driver_uar
;
800 struct mlx4_port_info port
[MLX4_MAX_PORTS
+ 1];
801 struct mlx4_sense sense
;
802 struct mutex port_mutex
;
803 struct mlx4_msix_ctl msix_ctl
;
804 struct mlx4_steer
*steer
;
805 struct list_head bf_list
;
806 struct mutex bf_mutex
;
807 struct io_mapping
*bf_mapping
;
812 static inline struct mlx4_priv
*mlx4_priv(struct mlx4_dev
*dev
)
814 return container_of(dev
, struct mlx4_priv
, dev
);
817 #define MLX4_SENSE_RANGE (HZ * 3)
819 extern struct workqueue_struct
*mlx4_wq
;
821 u32
mlx4_bitmap_alloc(struct mlx4_bitmap
*bitmap
);
822 void mlx4_bitmap_free(struct mlx4_bitmap
*bitmap
, u32 obj
);
823 u32
mlx4_bitmap_alloc_range(struct mlx4_bitmap
*bitmap
, int cnt
, int align
);
824 void mlx4_bitmap_free_range(struct mlx4_bitmap
*bitmap
, u32 obj
, int cnt
);
825 u32
mlx4_bitmap_avail(struct mlx4_bitmap
*bitmap
);
826 int mlx4_bitmap_init(struct mlx4_bitmap
*bitmap
, u32 num
, u32 mask
,
827 u32 reserved_bot
, u32 resetrved_top
);
828 void mlx4_bitmap_cleanup(struct mlx4_bitmap
*bitmap
);
830 int mlx4_reset(struct mlx4_dev
*dev
);
832 int mlx4_alloc_eq_table(struct mlx4_dev
*dev
);
833 void mlx4_free_eq_table(struct mlx4_dev
*dev
);
835 int mlx4_init_pd_table(struct mlx4_dev
*dev
);
836 int mlx4_init_xrcd_table(struct mlx4_dev
*dev
);
837 int mlx4_init_uar_table(struct mlx4_dev
*dev
);
838 int mlx4_init_mr_table(struct mlx4_dev
*dev
);
839 int mlx4_init_eq_table(struct mlx4_dev
*dev
);
840 int mlx4_init_cq_table(struct mlx4_dev
*dev
);
841 int mlx4_init_qp_table(struct mlx4_dev
*dev
);
842 int mlx4_init_srq_table(struct mlx4_dev
*dev
);
843 int mlx4_init_mcg_table(struct mlx4_dev
*dev
);
845 void mlx4_cleanup_pd_table(struct mlx4_dev
*dev
);
846 void mlx4_cleanup_xrcd_table(struct mlx4_dev
*dev
);
847 void mlx4_cleanup_uar_table(struct mlx4_dev
*dev
);
848 void mlx4_cleanup_mr_table(struct mlx4_dev
*dev
);
849 void mlx4_cleanup_eq_table(struct mlx4_dev
*dev
);
850 void mlx4_cleanup_cq_table(struct mlx4_dev
*dev
);
851 void mlx4_cleanup_qp_table(struct mlx4_dev
*dev
);
852 void mlx4_cleanup_srq_table(struct mlx4_dev
*dev
);
853 void mlx4_cleanup_mcg_table(struct mlx4_dev
*dev
);
854 int __mlx4_qp_alloc_icm(struct mlx4_dev
*dev
, int qpn
);
855 void __mlx4_qp_free_icm(struct mlx4_dev
*dev
, int qpn
);
856 int __mlx4_cq_alloc_icm(struct mlx4_dev
*dev
, int *cqn
);
857 void __mlx4_cq_free_icm(struct mlx4_dev
*dev
, int cqn
);
858 int __mlx4_srq_alloc_icm(struct mlx4_dev
*dev
, int *srqn
);
859 void __mlx4_srq_free_icm(struct mlx4_dev
*dev
, int srqn
);
860 int __mlx4_mr_reserve(struct mlx4_dev
*dev
);
861 void __mlx4_mr_release(struct mlx4_dev
*dev
, u32 index
);
862 int __mlx4_mr_alloc_icm(struct mlx4_dev
*dev
, u32 index
);
863 void __mlx4_mr_free_icm(struct mlx4_dev
*dev
, u32 index
);
864 u32
__mlx4_alloc_mtt_range(struct mlx4_dev
*dev
, int order
);
865 void __mlx4_free_mtt_range(struct mlx4_dev
*dev
, u32 first_seg
, int order
);
867 int mlx4_WRITE_MTT_wrapper(struct mlx4_dev
*dev
, int slave
,
868 struct mlx4_vhcr
*vhcr
,
869 struct mlx4_cmd_mailbox
*inbox
,
870 struct mlx4_cmd_mailbox
*outbox
,
871 struct mlx4_cmd_info
*cmd
);
872 int mlx4_SYNC_TPT_wrapper(struct mlx4_dev
*dev
, int slave
,
873 struct mlx4_vhcr
*vhcr
,
874 struct mlx4_cmd_mailbox
*inbox
,
875 struct mlx4_cmd_mailbox
*outbox
,
876 struct mlx4_cmd_info
*cmd
);
877 int mlx4_SW2HW_MPT_wrapper(struct mlx4_dev
*dev
, int slave
,
878 struct mlx4_vhcr
*vhcr
,
879 struct mlx4_cmd_mailbox
*inbox
,
880 struct mlx4_cmd_mailbox
*outbox
,
881 struct mlx4_cmd_info
*cmd
);
882 int mlx4_HW2SW_MPT_wrapper(struct mlx4_dev
*dev
, int slave
,
883 struct mlx4_vhcr
*vhcr
,
884 struct mlx4_cmd_mailbox
*inbox
,
885 struct mlx4_cmd_mailbox
*outbox
,
886 struct mlx4_cmd_info
*cmd
);
887 int mlx4_QUERY_MPT_wrapper(struct mlx4_dev
*dev
, int slave
,
888 struct mlx4_vhcr
*vhcr
,
889 struct mlx4_cmd_mailbox
*inbox
,
890 struct mlx4_cmd_mailbox
*outbox
,
891 struct mlx4_cmd_info
*cmd
);
892 int mlx4_SW2HW_EQ_wrapper(struct mlx4_dev
*dev
, int slave
,
893 struct mlx4_vhcr
*vhcr
,
894 struct mlx4_cmd_mailbox
*inbox
,
895 struct mlx4_cmd_mailbox
*outbox
,
896 struct mlx4_cmd_info
*cmd
);
897 int mlx4_DMA_wrapper(struct mlx4_dev
*dev
, int slave
,
898 struct mlx4_vhcr
*vhcr
,
899 struct mlx4_cmd_mailbox
*inbox
,
900 struct mlx4_cmd_mailbox
*outbox
,
901 struct mlx4_cmd_info
*cmd
);
902 int __mlx4_qp_reserve_range(struct mlx4_dev
*dev
, int cnt
, int align
,
904 void __mlx4_qp_release_range(struct mlx4_dev
*dev
, int base_qpn
, int cnt
);
905 int __mlx4_register_mac(struct mlx4_dev
*dev
, u8 port
, u64 mac
);
906 void __mlx4_unregister_mac(struct mlx4_dev
*dev
, u8 port
, u64 mac
);
907 int __mlx4_replace_mac(struct mlx4_dev
*dev
, u8 port
, int qpn
, u64 new_mac
);
908 int __mlx4_write_mtt(struct mlx4_dev
*dev
, struct mlx4_mtt
*mtt
,
909 int start_index
, int npages
, u64
*page_list
);
910 int __mlx4_counter_alloc(struct mlx4_dev
*dev
, u32
*idx
);
911 void __mlx4_counter_free(struct mlx4_dev
*dev
, u32 idx
);
912 int __mlx4_xrcd_alloc(struct mlx4_dev
*dev
, u32
*xrcdn
);
913 void __mlx4_xrcd_free(struct mlx4_dev
*dev
, u32 xrcdn
);
915 void mlx4_start_catas_poll(struct mlx4_dev
*dev
);
916 void mlx4_stop_catas_poll(struct mlx4_dev
*dev
);
917 void mlx4_catas_init(void);
918 int mlx4_restart_one(struct pci_dev
*pdev
);
919 int mlx4_register_device(struct mlx4_dev
*dev
);
920 void mlx4_unregister_device(struct mlx4_dev
*dev
);
921 void mlx4_dispatch_event(struct mlx4_dev
*dev
, enum mlx4_dev_event type
,
922 unsigned long param
);
925 struct mlx4_init_hca_param
;
927 u64
mlx4_make_profile(struct mlx4_dev
*dev
,
928 struct mlx4_profile
*request
,
929 struct mlx4_dev_cap
*dev_cap
,
930 struct mlx4_init_hca_param
*init_hca
);
931 void mlx4_master_comm_channel(struct work_struct
*work
);
932 void mlx4_gen_slave_eqe(struct work_struct
*work
);
933 void mlx4_master_handle_slave_flr(struct work_struct
*work
);
935 int mlx4_ALLOC_RES_wrapper(struct mlx4_dev
*dev
, int slave
,
936 struct mlx4_vhcr
*vhcr
,
937 struct mlx4_cmd_mailbox
*inbox
,
938 struct mlx4_cmd_mailbox
*outbox
,
939 struct mlx4_cmd_info
*cmd
);
940 int mlx4_FREE_RES_wrapper(struct mlx4_dev
*dev
, int slave
,
941 struct mlx4_vhcr
*vhcr
,
942 struct mlx4_cmd_mailbox
*inbox
,
943 struct mlx4_cmd_mailbox
*outbox
,
944 struct mlx4_cmd_info
*cmd
);
945 int mlx4_MAP_EQ_wrapper(struct mlx4_dev
*dev
, int slave
,
946 struct mlx4_vhcr
*vhcr
, struct mlx4_cmd_mailbox
*inbox
,
947 struct mlx4_cmd_mailbox
*outbox
,
948 struct mlx4_cmd_info
*cmd
);
949 int mlx4_COMM_INT_wrapper(struct mlx4_dev
*dev
, int slave
,
950 struct mlx4_vhcr
*vhcr
,
951 struct mlx4_cmd_mailbox
*inbox
,
952 struct mlx4_cmd_mailbox
*outbox
,
953 struct mlx4_cmd_info
*cmd
);
954 int mlx4_HW2SW_EQ_wrapper(struct mlx4_dev
*dev
, int slave
,
955 struct mlx4_vhcr
*vhcr
,
956 struct mlx4_cmd_mailbox
*inbox
,
957 struct mlx4_cmd_mailbox
*outbox
,
958 struct mlx4_cmd_info
*cmd
);
959 int mlx4_QUERY_EQ_wrapper(struct mlx4_dev
*dev
, int slave
,
960 struct mlx4_vhcr
*vhcr
,
961 struct mlx4_cmd_mailbox
*inbox
,
962 struct mlx4_cmd_mailbox
*outbox
,
963 struct mlx4_cmd_info
*cmd
);
964 int mlx4_SW2HW_CQ_wrapper(struct mlx4_dev
*dev
, int slave
,
965 struct mlx4_vhcr
*vhcr
,
966 struct mlx4_cmd_mailbox
*inbox
,
967 struct mlx4_cmd_mailbox
*outbox
,
968 struct mlx4_cmd_info
*cmd
);
969 int mlx4_HW2SW_CQ_wrapper(struct mlx4_dev
*dev
, int slave
,
970 struct mlx4_vhcr
*vhcr
,
971 struct mlx4_cmd_mailbox
*inbox
,
972 struct mlx4_cmd_mailbox
*outbox
,
973 struct mlx4_cmd_info
*cmd
);
974 int mlx4_QUERY_CQ_wrapper(struct mlx4_dev
*dev
, int slave
,
975 struct mlx4_vhcr
*vhcr
,
976 struct mlx4_cmd_mailbox
*inbox
,
977 struct mlx4_cmd_mailbox
*outbox
,
978 struct mlx4_cmd_info
*cmd
);
979 int mlx4_MODIFY_CQ_wrapper(struct mlx4_dev
*dev
, int slave
,
980 struct mlx4_vhcr
*vhcr
,
981 struct mlx4_cmd_mailbox
*inbox
,
982 struct mlx4_cmd_mailbox
*outbox
,
983 struct mlx4_cmd_info
*cmd
);
984 int mlx4_SW2HW_SRQ_wrapper(struct mlx4_dev
*dev
, int slave
,
985 struct mlx4_vhcr
*vhcr
,
986 struct mlx4_cmd_mailbox
*inbox
,
987 struct mlx4_cmd_mailbox
*outbox
,
988 struct mlx4_cmd_info
*cmd
);
989 int mlx4_HW2SW_SRQ_wrapper(struct mlx4_dev
*dev
, int slave
,
990 struct mlx4_vhcr
*vhcr
,
991 struct mlx4_cmd_mailbox
*inbox
,
992 struct mlx4_cmd_mailbox
*outbox
,
993 struct mlx4_cmd_info
*cmd
);
994 int mlx4_QUERY_SRQ_wrapper(struct mlx4_dev
*dev
, int slave
,
995 struct mlx4_vhcr
*vhcr
,
996 struct mlx4_cmd_mailbox
*inbox
,
997 struct mlx4_cmd_mailbox
*outbox
,
998 struct mlx4_cmd_info
*cmd
);
999 int mlx4_ARM_SRQ_wrapper(struct mlx4_dev
*dev
, int slave
,
1000 struct mlx4_vhcr
*vhcr
,
1001 struct mlx4_cmd_mailbox
*inbox
,
1002 struct mlx4_cmd_mailbox
*outbox
,
1003 struct mlx4_cmd_info
*cmd
);
1004 int mlx4_GEN_QP_wrapper(struct mlx4_dev
*dev
, int slave
,
1005 struct mlx4_vhcr
*vhcr
,
1006 struct mlx4_cmd_mailbox
*inbox
,
1007 struct mlx4_cmd_mailbox
*outbox
,
1008 struct mlx4_cmd_info
*cmd
);
1009 int mlx4_RST2INIT_QP_wrapper(struct mlx4_dev
*dev
, int slave
,
1010 struct mlx4_vhcr
*vhcr
,
1011 struct mlx4_cmd_mailbox
*inbox
,
1012 struct mlx4_cmd_mailbox
*outbox
,
1013 struct mlx4_cmd_info
*cmd
);
1014 int mlx4_INIT2RTR_QP_wrapper(struct mlx4_dev
*dev
, int slave
,
1015 struct mlx4_vhcr
*vhcr
,
1016 struct mlx4_cmd_mailbox
*inbox
,
1017 struct mlx4_cmd_mailbox
*outbox
,
1018 struct mlx4_cmd_info
*cmd
);
1019 int mlx4_2RST_QP_wrapper(struct mlx4_dev
*dev
, int slave
,
1020 struct mlx4_vhcr
*vhcr
,
1021 struct mlx4_cmd_mailbox
*inbox
,
1022 struct mlx4_cmd_mailbox
*outbox
,
1023 struct mlx4_cmd_info
*cmd
);
1025 int mlx4_GEN_EQE(struct mlx4_dev
*dev
, int slave
, struct mlx4_eqe
*eqe
);
1027 int mlx4_cmd_init(struct mlx4_dev
*dev
);
1028 void mlx4_cmd_cleanup(struct mlx4_dev
*dev
);
1029 int mlx4_multi_func_init(struct mlx4_dev
*dev
);
1030 void mlx4_multi_func_cleanup(struct mlx4_dev
*dev
);
1031 void mlx4_cmd_event(struct mlx4_dev
*dev
, u16 token
, u8 status
, u64 out_param
);
1032 int mlx4_cmd_use_events(struct mlx4_dev
*dev
);
1033 void mlx4_cmd_use_polling(struct mlx4_dev
*dev
);
1035 int mlx4_comm_cmd(struct mlx4_dev
*dev
, u8 cmd
, u16 param
,
1036 unsigned long timeout
);
1038 void mlx4_cq_completion(struct mlx4_dev
*dev
, u32 cqn
);
1039 void mlx4_cq_event(struct mlx4_dev
*dev
, u32 cqn
, int event_type
);
1041 void mlx4_qp_event(struct mlx4_dev
*dev
, u32 qpn
, int event_type
);
1043 void mlx4_srq_event(struct mlx4_dev
*dev
, u32 srqn
, int event_type
);
1045 void mlx4_handle_catas_err(struct mlx4_dev
*dev
);
1047 int mlx4_SENSE_PORT(struct mlx4_dev
*dev
, int port
,
1048 enum mlx4_port_type
*type
);
1049 void mlx4_do_sense_ports(struct mlx4_dev
*dev
,
1050 enum mlx4_port_type
*stype
,
1051 enum mlx4_port_type
*defaults
);
1052 void mlx4_start_sense(struct mlx4_dev
*dev
);
1053 void mlx4_stop_sense(struct mlx4_dev
*dev
);
1054 void mlx4_sense_init(struct mlx4_dev
*dev
);
1055 int mlx4_check_port_params(struct mlx4_dev
*dev
,
1056 enum mlx4_port_type
*port_type
);
1057 int mlx4_change_port_types(struct mlx4_dev
*dev
,
1058 enum mlx4_port_type
*port_types
);
1060 void mlx4_init_mac_table(struct mlx4_dev
*dev
, struct mlx4_mac_table
*table
);
1061 void mlx4_init_vlan_table(struct mlx4_dev
*dev
, struct mlx4_vlan_table
*table
);
1063 int mlx4_SET_PORT(struct mlx4_dev
*dev
, u8 port
, int pkey_tbl_sz
);
1064 /* resource tracker functions*/
1065 int mlx4_get_slave_from_resource_id(struct mlx4_dev
*dev
,
1066 enum mlx4_resource resource_type
,
1067 u64 resource_id
, int *slave
);
1068 void mlx4_delete_all_resources_for_slave(struct mlx4_dev
*dev
, int slave_id
);
1069 int mlx4_init_resource_tracker(struct mlx4_dev
*dev
);
1071 void mlx4_free_resource_tracker(struct mlx4_dev
*dev
,
1072 enum mlx4_res_tracker_free_type type
);
1074 int mlx4_QUERY_FW_wrapper(struct mlx4_dev
*dev
, int slave
,
1075 struct mlx4_vhcr
*vhcr
,
1076 struct mlx4_cmd_mailbox
*inbox
,
1077 struct mlx4_cmd_mailbox
*outbox
,
1078 struct mlx4_cmd_info
*cmd
);
1079 int mlx4_SET_PORT_wrapper(struct mlx4_dev
*dev
, int slave
,
1080 struct mlx4_vhcr
*vhcr
,
1081 struct mlx4_cmd_mailbox
*inbox
,
1082 struct mlx4_cmd_mailbox
*outbox
,
1083 struct mlx4_cmd_info
*cmd
);
1084 int mlx4_INIT_PORT_wrapper(struct mlx4_dev
*dev
, int slave
,
1085 struct mlx4_vhcr
*vhcr
,
1086 struct mlx4_cmd_mailbox
*inbox
,
1087 struct mlx4_cmd_mailbox
*outbox
,
1088 struct mlx4_cmd_info
*cmd
);
1089 int mlx4_CLOSE_PORT_wrapper(struct mlx4_dev
*dev
, int slave
,
1090 struct mlx4_vhcr
*vhcr
,
1091 struct mlx4_cmd_mailbox
*inbox
,
1092 struct mlx4_cmd_mailbox
*outbox
,
1093 struct mlx4_cmd_info
*cmd
);
1094 int mlx4_QUERY_DEV_CAP_wrapper(struct mlx4_dev
*dev
, int slave
,
1095 struct mlx4_vhcr
*vhcr
,
1096 struct mlx4_cmd_mailbox
*inbox
,
1097 struct mlx4_cmd_mailbox
*outbox
,
1098 struct mlx4_cmd_info
*cmd
);
1099 int mlx4_QUERY_PORT_wrapper(struct mlx4_dev
*dev
, int slave
,
1100 struct mlx4_vhcr
*vhcr
,
1101 struct mlx4_cmd_mailbox
*inbox
,
1102 struct mlx4_cmd_mailbox
*outbox
,
1103 struct mlx4_cmd_info
*cmd
);
1104 int mlx4_get_port_ib_caps(struct mlx4_dev
*dev
, u8 port
, __be32
*caps
);
1106 int mlx4_get_slave_pkey_gid_tbl_len(struct mlx4_dev
*dev
, u8 port
,
1107 int *gid_tbl_len
, int *pkey_tbl_len
);
1109 int mlx4_QP_ATTACH_wrapper(struct mlx4_dev
*dev
, int slave
,
1110 struct mlx4_vhcr
*vhcr
,
1111 struct mlx4_cmd_mailbox
*inbox
,
1112 struct mlx4_cmd_mailbox
*outbox
,
1113 struct mlx4_cmd_info
*cmd
);
1115 int mlx4_PROMISC_wrapper(struct mlx4_dev
*dev
, int slave
,
1116 struct mlx4_vhcr
*vhcr
,
1117 struct mlx4_cmd_mailbox
*inbox
,
1118 struct mlx4_cmd_mailbox
*outbox
,
1119 struct mlx4_cmd_info
*cmd
);
1120 int mlx4_qp_detach_common(struct mlx4_dev
*dev
, struct mlx4_qp
*qp
, u8 gid
[16],
1121 enum mlx4_protocol prot
, enum mlx4_steer_type steer
);
1122 int mlx4_qp_attach_common(struct mlx4_dev
*dev
, struct mlx4_qp
*qp
, u8 gid
[16],
1123 int block_mcast_loopback
, enum mlx4_protocol prot
,
1124 enum mlx4_steer_type steer
);
1125 int mlx4_SET_MCAST_FLTR_wrapper(struct mlx4_dev
*dev
, int slave
,
1126 struct mlx4_vhcr
*vhcr
,
1127 struct mlx4_cmd_mailbox
*inbox
,
1128 struct mlx4_cmd_mailbox
*outbox
,
1129 struct mlx4_cmd_info
*cmd
);
1130 int mlx4_SET_VLAN_FLTR_wrapper(struct mlx4_dev
*dev
, int slave
,
1131 struct mlx4_vhcr
*vhcr
,
1132 struct mlx4_cmd_mailbox
*inbox
,
1133 struct mlx4_cmd_mailbox
*outbox
,
1134 struct mlx4_cmd_info
*cmd
);
1135 int mlx4_common_set_vlan_fltr(struct mlx4_dev
*dev
, int function
,
1136 int port
, void *buf
);
1137 int mlx4_common_dump_eth_stats(struct mlx4_dev
*dev
, int slave
, u32 in_mod
,
1138 struct mlx4_cmd_mailbox
*outbox
);
1139 int mlx4_DUMP_ETH_STATS_wrapper(struct mlx4_dev
*dev
, int slave
,
1140 struct mlx4_vhcr
*vhcr
,
1141 struct mlx4_cmd_mailbox
*inbox
,
1142 struct mlx4_cmd_mailbox
*outbox
,
1143 struct mlx4_cmd_info
*cmd
);
1144 int mlx4_PKEY_TABLE_wrapper(struct mlx4_dev
*dev
, int slave
,
1145 struct mlx4_vhcr
*vhcr
,
1146 struct mlx4_cmd_mailbox
*inbox
,
1147 struct mlx4_cmd_mailbox
*outbox
,
1148 struct mlx4_cmd_info
*cmd
);
1149 int mlx4_QUERY_IF_STAT_wrapper(struct mlx4_dev
*dev
, int slave
,
1150 struct mlx4_vhcr
*vhcr
,
1151 struct mlx4_cmd_mailbox
*inbox
,
1152 struct mlx4_cmd_mailbox
*outbox
,
1153 struct mlx4_cmd_info
*cmd
);
1154 int mlx4_QP_FLOW_STEERING_ATTACH_wrapper(struct mlx4_dev
*dev
, int slave
,
1155 struct mlx4_vhcr
*vhcr
,
1156 struct mlx4_cmd_mailbox
*inbox
,
1157 struct mlx4_cmd_mailbox
*outbox
,
1158 struct mlx4_cmd_info
*cmd
);
1159 int mlx4_QP_FLOW_STEERING_DETACH_wrapper(struct mlx4_dev
*dev
, int slave
,
1160 struct mlx4_vhcr
*vhcr
,
1161 struct mlx4_cmd_mailbox
*inbox
,
1162 struct mlx4_cmd_mailbox
*outbox
,
1163 struct mlx4_cmd_info
*cmd
);
1165 int mlx4_get_mgm_entry_size(struct mlx4_dev
*dev
);
1166 int mlx4_get_qp_per_mgm(struct mlx4_dev
*dev
);
1168 static inline void set_param_l(u64
*arg
, u32 val
)
1170 *((u32
*)arg
) = val
;
1173 static inline void set_param_h(u64
*arg
, u32 val
)
1175 *arg
= (*arg
& 0xffffffff) | ((u64
) val
<< 32);
1178 static inline u32
get_param_l(u64
*arg
)
1180 return (u32
) (*arg
& 0xffffffff);
1183 static inline u32
get_param_h(u64
*arg
)
1185 return (u32
)(*arg
>> 32);
1188 static inline spinlock_t
*mlx4_tlock(struct mlx4_dev
*dev
)
1190 return &mlx4_priv(dev
)->mfunc
.master
.res_tracker
.lock
;
1193 #define NOT_MASKED_PD_BITS 17