2 * linux/drivers/net/ethernet/ibm/ehea/ehea_qmr.c
4 * eHEA ethernet device driver for IBM eServer System p
6 * (C) Copyright IBM Corp. 2006
9 * Christoph Raisch <raisch@de.ibm.com>
10 * Jan-Bernd Themann <themann@de.ibm.com>
11 * Thomas Klein <tklein@de.ibm.com>
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2, or (at your option)
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
29 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
32 #include <linux/slab.h>
34 #include "ehea_phyp.h"
37 static struct ehea_bmap
*ehea_bmap
;
39 static void *hw_qpageit_get_inc(struct hw_queue
*queue
)
41 void *retvalue
= hw_qeit_get(queue
);
43 queue
->current_q_offset
+= queue
->pagesize
;
44 if (queue
->current_q_offset
> queue
->queue_length
) {
45 queue
->current_q_offset
-= queue
->pagesize
;
47 } else if (((u64
) retvalue
) & (EHEA_PAGESIZE
-1)) {
48 pr_err("not on pageboundary\n");
54 static int hw_queue_ctor(struct hw_queue
*queue
, const u32 nr_of_pages
,
55 const u32 pagesize
, const u32 qe_size
)
57 int pages_per_kpage
= PAGE_SIZE
/ pagesize
;
60 if ((pagesize
> PAGE_SIZE
) || (!pages_per_kpage
)) {
61 pr_err("pagesize conflict! kernel pagesize=%d, ehea pagesize=%d\n",
62 (int)PAGE_SIZE
, (int)pagesize
);
66 queue
->queue_length
= nr_of_pages
* pagesize
;
67 queue
->queue_pages
= kmalloc_array(nr_of_pages
, sizeof(void *),
69 if (!queue
->queue_pages
)
73 * allocate pages for queue:
74 * outer loop allocates whole kernel pages (page aligned) and
75 * inner loop divides a kernel page into smaller hea queue pages
78 while (i
< nr_of_pages
) {
79 u8
*kpage
= (u8
*)get_zeroed_page(GFP_KERNEL
);
82 for (k
= 0; k
< pages_per_kpage
&& i
< nr_of_pages
; k
++) {
83 (queue
->queue_pages
)[i
] = (struct ehea_page
*)kpage
;
89 queue
->current_q_offset
= 0;
90 queue
->qe_size
= qe_size
;
91 queue
->pagesize
= pagesize
;
92 queue
->toggle_state
= 1;
96 for (i
= 0; i
< nr_of_pages
; i
+= pages_per_kpage
) {
97 if (!(queue
->queue_pages
)[i
])
99 free_page((unsigned long)(queue
->queue_pages
)[i
]);
104 static void hw_queue_dtor(struct hw_queue
*queue
)
109 if (!queue
|| !queue
->queue_pages
)
112 pages_per_kpage
= PAGE_SIZE
/ queue
->pagesize
;
114 nr_pages
= queue
->queue_length
/ queue
->pagesize
;
116 for (i
= 0; i
< nr_pages
; i
+= pages_per_kpage
)
117 free_page((unsigned long)(queue
->queue_pages
)[i
]);
119 kfree(queue
->queue_pages
);
122 struct ehea_cq
*ehea_create_cq(struct ehea_adapter
*adapter
,
123 int nr_of_cqe
, u64 eq_handle
, u32 cq_token
)
127 u64
*cq_handle_ref
, hret
, rpage
;
128 u32 act_nr_of_entries
, act_pages
, counter
;
132 cq
= kzalloc(sizeof(*cq
), GFP_KERNEL
);
136 cq
->attr
.max_nr_of_cqes
= nr_of_cqe
;
137 cq
->attr
.cq_token
= cq_token
;
138 cq
->attr
.eq_handle
= eq_handle
;
140 cq
->adapter
= adapter
;
142 cq_handle_ref
= &cq
->fw_handle
;
143 act_nr_of_entries
= 0;
146 hret
= ehea_h_alloc_resource_cq(adapter
->handle
, &cq
->attr
,
147 &cq
->fw_handle
, &cq
->epas
);
148 if (hret
!= H_SUCCESS
) {
149 pr_err("alloc_resource_cq failed\n");
153 ret
= hw_queue_ctor(&cq
->hw_queue
, cq
->attr
.nr_pages
,
154 EHEA_PAGESIZE
, sizeof(struct ehea_cqe
));
158 for (counter
= 0; counter
< cq
->attr
.nr_pages
; counter
++) {
159 vpage
= hw_qpageit_get_inc(&cq
->hw_queue
);
161 pr_err("hw_qpageit_get_inc failed\n");
166 hret
= ehea_h_register_rpage(adapter
->handle
,
167 0, EHEA_CQ_REGISTER_ORIG
,
168 cq
->fw_handle
, rpage
, 1);
169 if (hret
< H_SUCCESS
) {
170 pr_err("register_rpage_cq failed ehea_cq=%p hret=%llx counter=%i act_pages=%i\n",
171 cq
, hret
, counter
, cq
->attr
.nr_pages
);
175 if (counter
== (cq
->attr
.nr_pages
- 1)) {
176 vpage
= hw_qpageit_get_inc(&cq
->hw_queue
);
178 if ((hret
!= H_SUCCESS
) || (vpage
)) {
179 pr_err("registration of pages not complete hret=%llx\n",
184 if (hret
!= H_PAGE_REGISTERED
) {
185 pr_err("CQ: registration of page failed hret=%llx\n",
192 hw_qeit_reset(&cq
->hw_queue
);
193 epa
= cq
->epas
.kernel
;
194 ehea_reset_cq_ep(cq
);
195 ehea_reset_cq_n1(cq
);
200 hw_queue_dtor(&cq
->hw_queue
);
203 ehea_h_free_resource(adapter
->handle
, cq
->fw_handle
, FORCE_FREE
);
212 static u64
ehea_destroy_cq_res(struct ehea_cq
*cq
, u64 force
)
215 u64 adapter_handle
= cq
->adapter
->handle
;
217 /* deregister all previous registered pages */
218 hret
= ehea_h_free_resource(adapter_handle
, cq
->fw_handle
, force
);
219 if (hret
!= H_SUCCESS
)
222 hw_queue_dtor(&cq
->hw_queue
);
228 int ehea_destroy_cq(struct ehea_cq
*cq
)
234 hcp_epas_dtor(&cq
->epas
);
235 hret
= ehea_destroy_cq_res(cq
, NORMAL_FREE
);
236 if (hret
== H_R_STATE
) {
237 ehea_error_data(cq
->adapter
, cq
->fw_handle
, &aer
, &aerr
);
238 hret
= ehea_destroy_cq_res(cq
, FORCE_FREE
);
241 if (hret
!= H_SUCCESS
) {
242 pr_err("destroy CQ failed\n");
249 struct ehea_eq
*ehea_create_eq(struct ehea_adapter
*adapter
,
250 const enum ehea_eq_type type
,
251 const u32 max_nr_of_eqes
, const u8 eqe_gen
)
258 eq
= kzalloc(sizeof(*eq
), GFP_KERNEL
);
262 eq
->adapter
= adapter
;
263 eq
->attr
.type
= type
;
264 eq
->attr
.max_nr_of_eqes
= max_nr_of_eqes
;
265 eq
->attr
.eqe_gen
= eqe_gen
;
266 spin_lock_init(&eq
->spinlock
);
268 hret
= ehea_h_alloc_resource_eq(adapter
->handle
,
269 &eq
->attr
, &eq
->fw_handle
);
270 if (hret
!= H_SUCCESS
) {
271 pr_err("alloc_resource_eq failed\n");
275 ret
= hw_queue_ctor(&eq
->hw_queue
, eq
->attr
.nr_pages
,
276 EHEA_PAGESIZE
, sizeof(struct ehea_eqe
));
278 pr_err("can't allocate eq pages\n");
282 for (i
= 0; i
< eq
->attr
.nr_pages
; i
++) {
283 vpage
= hw_qpageit_get_inc(&eq
->hw_queue
);
285 pr_err("hw_qpageit_get_inc failed\n");
292 hret
= ehea_h_register_rpage(adapter
->handle
, 0,
293 EHEA_EQ_REGISTER_ORIG
,
294 eq
->fw_handle
, rpage
, 1);
296 if (i
== (eq
->attr
.nr_pages
- 1)) {
298 vpage
= hw_qpageit_get_inc(&eq
->hw_queue
);
299 if ((hret
!= H_SUCCESS
) || (vpage
))
303 if (hret
!= H_PAGE_REGISTERED
)
309 hw_qeit_reset(&eq
->hw_queue
);
313 hw_queue_dtor(&eq
->hw_queue
);
316 ehea_h_free_resource(adapter
->handle
, eq
->fw_handle
, FORCE_FREE
);
323 struct ehea_eqe
*ehea_poll_eq(struct ehea_eq
*eq
)
325 struct ehea_eqe
*eqe
;
328 spin_lock_irqsave(&eq
->spinlock
, flags
);
329 eqe
= hw_eqit_eq_get_inc_valid(&eq
->hw_queue
);
330 spin_unlock_irqrestore(&eq
->spinlock
, flags
);
335 static u64
ehea_destroy_eq_res(struct ehea_eq
*eq
, u64 force
)
340 spin_lock_irqsave(&eq
->spinlock
, flags
);
342 hret
= ehea_h_free_resource(eq
->adapter
->handle
, eq
->fw_handle
, force
);
343 spin_unlock_irqrestore(&eq
->spinlock
, flags
);
345 if (hret
!= H_SUCCESS
)
348 hw_queue_dtor(&eq
->hw_queue
);
354 int ehea_destroy_eq(struct ehea_eq
*eq
)
360 hcp_epas_dtor(&eq
->epas
);
362 hret
= ehea_destroy_eq_res(eq
, NORMAL_FREE
);
363 if (hret
== H_R_STATE
) {
364 ehea_error_data(eq
->adapter
, eq
->fw_handle
, &aer
, &aerr
);
365 hret
= ehea_destroy_eq_res(eq
, FORCE_FREE
);
368 if (hret
!= H_SUCCESS
) {
369 pr_err("destroy EQ failed\n");
376 /* allocates memory for a queue and registers pages in phyp */
377 static int ehea_qp_alloc_register(struct ehea_qp
*qp
, struct hw_queue
*hw_queue
,
378 int nr_pages
, int wqe_size
, int act_nr_sges
,
379 struct ehea_adapter
*adapter
, int h_call_q_selector
)
385 ret
= hw_queue_ctor(hw_queue
, nr_pages
, EHEA_PAGESIZE
, wqe_size
);
389 for (cnt
= 0; cnt
< nr_pages
; cnt
++) {
390 vpage
= hw_qpageit_get_inc(hw_queue
);
392 pr_err("hw_qpageit_get_inc failed\n");
396 hret
= ehea_h_register_rpage(adapter
->handle
,
397 0, h_call_q_selector
,
398 qp
->fw_handle
, rpage
, 1);
399 if (hret
< H_SUCCESS
) {
400 pr_err("register_rpage_qp failed\n");
404 hw_qeit_reset(hw_queue
);
408 hw_queue_dtor(hw_queue
);
412 static inline u32
map_wqe_size(u8 wqe_enc_size
)
414 return 128 << wqe_enc_size
;
417 struct ehea_qp
*ehea_create_qp(struct ehea_adapter
*adapter
,
418 u32 pd
, struct ehea_qp_init_attr
*init_attr
)
423 u32 wqe_size_in_bytes_sq
, wqe_size_in_bytes_rq1
;
424 u32 wqe_size_in_bytes_rq2
, wqe_size_in_bytes_rq3
;
427 qp
= kzalloc(sizeof(*qp
), GFP_KERNEL
);
431 qp
->adapter
= adapter
;
433 hret
= ehea_h_alloc_resource_qp(adapter
->handle
, init_attr
, pd
,
434 &qp
->fw_handle
, &qp
->epas
);
435 if (hret
!= H_SUCCESS
) {
436 pr_err("ehea_h_alloc_resource_qp failed\n");
440 wqe_size_in_bytes_sq
= map_wqe_size(init_attr
->act_wqe_size_enc_sq
);
441 wqe_size_in_bytes_rq1
= map_wqe_size(init_attr
->act_wqe_size_enc_rq1
);
442 wqe_size_in_bytes_rq2
= map_wqe_size(init_attr
->act_wqe_size_enc_rq2
);
443 wqe_size_in_bytes_rq3
= map_wqe_size(init_attr
->act_wqe_size_enc_rq3
);
445 ret
= ehea_qp_alloc_register(qp
, &qp
->hw_squeue
, init_attr
->nr_sq_pages
,
446 wqe_size_in_bytes_sq
,
447 init_attr
->act_wqe_size_enc_sq
, adapter
,
450 pr_err("can't register for sq ret=%x\n", ret
);
454 ret
= ehea_qp_alloc_register(qp
, &qp
->hw_rqueue1
,
455 init_attr
->nr_rq1_pages
,
456 wqe_size_in_bytes_rq1
,
457 init_attr
->act_wqe_size_enc_rq1
,
460 pr_err("can't register for rq1 ret=%x\n", ret
);
464 if (init_attr
->rq_count
> 1) {
465 ret
= ehea_qp_alloc_register(qp
, &qp
->hw_rqueue2
,
466 init_attr
->nr_rq2_pages
,
467 wqe_size_in_bytes_rq2
,
468 init_attr
->act_wqe_size_enc_rq2
,
471 pr_err("can't register for rq2 ret=%x\n", ret
);
476 if (init_attr
->rq_count
> 2) {
477 ret
= ehea_qp_alloc_register(qp
, &qp
->hw_rqueue3
,
478 init_attr
->nr_rq3_pages
,
479 wqe_size_in_bytes_rq3
,
480 init_attr
->act_wqe_size_enc_rq3
,
483 pr_err("can't register for rq3 ret=%x\n", ret
);
488 qp
->init_attr
= *init_attr
;
493 hw_queue_dtor(&qp
->hw_rqueue2
);
496 hw_queue_dtor(&qp
->hw_rqueue1
);
499 hw_queue_dtor(&qp
->hw_squeue
);
502 ehea_h_disable_and_get_hea(adapter
->handle
, qp
->fw_handle
);
503 ehea_h_free_resource(adapter
->handle
, qp
->fw_handle
, FORCE_FREE
);
510 static u64
ehea_destroy_qp_res(struct ehea_qp
*qp
, u64 force
)
513 struct ehea_qp_init_attr
*qp_attr
= &qp
->init_attr
;
516 ehea_h_disable_and_get_hea(qp
->adapter
->handle
, qp
->fw_handle
);
517 hret
= ehea_h_free_resource(qp
->adapter
->handle
, qp
->fw_handle
, force
);
518 if (hret
!= H_SUCCESS
)
521 hw_queue_dtor(&qp
->hw_squeue
);
522 hw_queue_dtor(&qp
->hw_rqueue1
);
524 if (qp_attr
->rq_count
> 1)
525 hw_queue_dtor(&qp
->hw_rqueue2
);
526 if (qp_attr
->rq_count
> 2)
527 hw_queue_dtor(&qp
->hw_rqueue3
);
533 int ehea_destroy_qp(struct ehea_qp
*qp
)
539 hcp_epas_dtor(&qp
->epas
);
541 hret
= ehea_destroy_qp_res(qp
, NORMAL_FREE
);
542 if (hret
== H_R_STATE
) {
543 ehea_error_data(qp
->adapter
, qp
->fw_handle
, &aer
, &aerr
);
544 hret
= ehea_destroy_qp_res(qp
, FORCE_FREE
);
547 if (hret
!= H_SUCCESS
) {
548 pr_err("destroy QP failed\n");
555 static inline int ehea_calc_index(unsigned long i
, unsigned long s
)
557 return (i
>> s
) & EHEA_INDEX_MASK
;
560 static inline int ehea_init_top_bmap(struct ehea_top_bmap
*ehea_top_bmap
,
563 if (!ehea_top_bmap
->dir
[dir
]) {
564 ehea_top_bmap
->dir
[dir
] =
565 kzalloc(sizeof(struct ehea_dir_bmap
), GFP_KERNEL
);
566 if (!ehea_top_bmap
->dir
[dir
])
572 static inline int ehea_init_bmap(struct ehea_bmap
*ehea_bmap
, int top
, int dir
)
574 if (!ehea_bmap
->top
[top
]) {
575 ehea_bmap
->top
[top
] =
576 kzalloc(sizeof(struct ehea_top_bmap
), GFP_KERNEL
);
577 if (!ehea_bmap
->top
[top
])
580 return ehea_init_top_bmap(ehea_bmap
->top
[top
], dir
);
583 static DEFINE_MUTEX(ehea_busmap_mutex
);
584 static unsigned long ehea_mr_len
;
586 #define EHEA_BUSMAP_ADD_SECT 1
587 #define EHEA_BUSMAP_REM_SECT 0
589 static void ehea_rebuild_busmap(void)
591 u64 vaddr
= EHEA_BUSMAP_START
;
594 for (top
= 0; top
< EHEA_MAP_ENTRIES
; top
++) {
595 struct ehea_top_bmap
*ehea_top
;
596 int valid_dir_entries
= 0;
598 if (!ehea_bmap
->top
[top
])
600 ehea_top
= ehea_bmap
->top
[top
];
601 for (dir
= 0; dir
< EHEA_MAP_ENTRIES
; dir
++) {
602 struct ehea_dir_bmap
*ehea_dir
;
603 int valid_entries
= 0;
605 if (!ehea_top
->dir
[dir
])
608 ehea_dir
= ehea_top
->dir
[dir
];
609 for (idx
= 0; idx
< EHEA_MAP_ENTRIES
; idx
++) {
610 if (!ehea_dir
->ent
[idx
])
613 ehea_dir
->ent
[idx
] = vaddr
;
614 vaddr
+= EHEA_SECTSIZE
;
616 if (!valid_entries
) {
617 ehea_top
->dir
[dir
] = NULL
;
621 if (!valid_dir_entries
) {
622 ehea_bmap
->top
[top
] = NULL
;
628 static int ehea_update_busmap(unsigned long pfn
, unsigned long nr_pages
, int add
)
630 unsigned long i
, start_section
, end_section
;
636 ehea_bmap
= kzalloc(sizeof(struct ehea_bmap
), GFP_KERNEL
);
641 start_section
= (pfn
* PAGE_SIZE
) / EHEA_SECTSIZE
;
642 end_section
= start_section
+ ((nr_pages
* PAGE_SIZE
) / EHEA_SECTSIZE
);
643 /* Mark entries as valid or invalid only; address is assigned later */
644 for (i
= start_section
; i
< end_section
; i
++) {
646 int top
= ehea_calc_index(i
, EHEA_TOP_INDEX_SHIFT
);
647 int dir
= ehea_calc_index(i
, EHEA_DIR_INDEX_SHIFT
);
648 int idx
= i
& EHEA_INDEX_MASK
;
651 int ret
= ehea_init_bmap(ehea_bmap
, top
, dir
);
654 flag
= 1; /* valid */
655 ehea_mr_len
+= EHEA_SECTSIZE
;
657 if (!ehea_bmap
->top
[top
])
659 if (!ehea_bmap
->top
[top
]->dir
[dir
])
661 flag
= 0; /* invalid */
662 ehea_mr_len
-= EHEA_SECTSIZE
;
665 ehea_bmap
->top
[top
]->dir
[dir
]->ent
[idx
] = flag
;
667 ehea_rebuild_busmap(); /* Assign contiguous addresses for mr */
671 int ehea_add_sect_bmap(unsigned long pfn
, unsigned long nr_pages
)
675 mutex_lock(&ehea_busmap_mutex
);
676 ret
= ehea_update_busmap(pfn
, nr_pages
, EHEA_BUSMAP_ADD_SECT
);
677 mutex_unlock(&ehea_busmap_mutex
);
681 int ehea_rem_sect_bmap(unsigned long pfn
, unsigned long nr_pages
)
685 mutex_lock(&ehea_busmap_mutex
);
686 ret
= ehea_update_busmap(pfn
, nr_pages
, EHEA_BUSMAP_REM_SECT
);
687 mutex_unlock(&ehea_busmap_mutex
);
691 static int ehea_is_hugepage(unsigned long pfn
)
695 if (pfn
& EHEA_HUGEPAGE_PFN_MASK
)
698 page_order
= compound_order(pfn_to_page(pfn
));
699 if (page_order
+ PAGE_SHIFT
!= EHEA_HUGEPAGESHIFT
)
705 static int ehea_create_busmap_callback(unsigned long initial_pfn
,
706 unsigned long total_nr_pages
, void *arg
)
709 unsigned long pfn
, start_pfn
, end_pfn
, nr_pages
;
711 if ((total_nr_pages
* PAGE_SIZE
) < EHEA_HUGEPAGE_SIZE
)
712 return ehea_update_busmap(initial_pfn
, total_nr_pages
,
713 EHEA_BUSMAP_ADD_SECT
);
715 /* Given chunk is >= 16GB -> check for hugepages */
716 start_pfn
= initial_pfn
;
717 end_pfn
= initial_pfn
+ total_nr_pages
;
720 while (pfn
< end_pfn
) {
721 if (ehea_is_hugepage(pfn
)) {
722 /* Add mem found in front of the hugepage */
723 nr_pages
= pfn
- start_pfn
;
724 ret
= ehea_update_busmap(start_pfn
, nr_pages
,
725 EHEA_BUSMAP_ADD_SECT
);
729 /* Skip the hugepage */
730 pfn
+= (EHEA_HUGEPAGE_SIZE
/ PAGE_SIZE
);
733 pfn
+= (EHEA_SECTSIZE
/ PAGE_SIZE
);
736 /* Add mem found behind the hugepage(s) */
737 nr_pages
= pfn
- start_pfn
;
738 return ehea_update_busmap(start_pfn
, nr_pages
, EHEA_BUSMAP_ADD_SECT
);
741 int ehea_create_busmap(void)
745 mutex_lock(&ehea_busmap_mutex
);
747 ret
= walk_system_ram_range(0, 1ULL << MAX_PHYSMEM_BITS
, NULL
,
748 ehea_create_busmap_callback
);
749 mutex_unlock(&ehea_busmap_mutex
);
753 void ehea_destroy_busmap(void)
756 mutex_lock(&ehea_busmap_mutex
);
760 for (top
= 0; top
< EHEA_MAP_ENTRIES
; top
++) {
761 if (!ehea_bmap
->top
[top
])
764 for (dir
= 0; dir
< EHEA_MAP_ENTRIES
; dir
++) {
765 if (!ehea_bmap
->top
[top
]->dir
[dir
])
768 kfree(ehea_bmap
->top
[top
]->dir
[dir
]);
771 kfree(ehea_bmap
->top
[top
]);
777 mutex_unlock(&ehea_busmap_mutex
);
780 u64
ehea_map_vaddr(void *caddr
)
783 unsigned long index
, offset
;
786 return EHEA_INVAL_ADDR
;
788 index
= __pa(caddr
) >> SECTION_SIZE_BITS
;
789 top
= (index
>> EHEA_TOP_INDEX_SHIFT
) & EHEA_INDEX_MASK
;
790 if (!ehea_bmap
->top
[top
])
791 return EHEA_INVAL_ADDR
;
793 dir
= (index
>> EHEA_DIR_INDEX_SHIFT
) & EHEA_INDEX_MASK
;
794 if (!ehea_bmap
->top
[top
]->dir
[dir
])
795 return EHEA_INVAL_ADDR
;
797 idx
= index
& EHEA_INDEX_MASK
;
798 if (!ehea_bmap
->top
[top
]->dir
[dir
]->ent
[idx
])
799 return EHEA_INVAL_ADDR
;
801 offset
= (unsigned long)caddr
& (EHEA_SECTSIZE
- 1);
802 return ehea_bmap
->top
[top
]->dir
[dir
]->ent
[idx
] | offset
;
805 static inline void *ehea_calc_sectbase(int top
, int dir
, int idx
)
807 unsigned long ret
= idx
;
808 ret
|= dir
<< EHEA_DIR_INDEX_SHIFT
;
809 ret
|= top
<< EHEA_TOP_INDEX_SHIFT
;
810 return __va(ret
<< SECTION_SIZE_BITS
);
813 static u64
ehea_reg_mr_section(int top
, int dir
, int idx
, u64
*pt
,
814 struct ehea_adapter
*adapter
,
820 u64 pt_abs
= __pa(pt
);
822 void *sectbase
= ehea_calc_sectbase(top
, dir
, idx
);
824 for (j
= 0; j
< (EHEA_PAGES_PER_SECTION
/ EHEA_MAX_RPAGE
); j
++) {
826 for (m
= 0; m
< EHEA_MAX_RPAGE
; m
++) {
827 pg
= sectbase
+ ((k
++) * EHEA_PAGESIZE
);
830 hret
= ehea_h_register_rpage_mr(adapter
->handle
, mr
->handle
, 0,
831 0, pt_abs
, EHEA_MAX_RPAGE
);
833 if ((hret
!= H_SUCCESS
) &&
834 (hret
!= H_PAGE_REGISTERED
)) {
835 ehea_h_free_resource(adapter
->handle
, mr
->handle
,
837 pr_err("register_rpage_mr failed\n");
844 static u64
ehea_reg_mr_sections(int top
, int dir
, u64
*pt
,
845 struct ehea_adapter
*adapter
,
848 u64 hret
= H_SUCCESS
;
851 for (idx
= 0; idx
< EHEA_MAP_ENTRIES
; idx
++) {
852 if (!ehea_bmap
->top
[top
]->dir
[dir
]->ent
[idx
])
855 hret
= ehea_reg_mr_section(top
, dir
, idx
, pt
, adapter
, mr
);
856 if ((hret
!= H_SUCCESS
) && (hret
!= H_PAGE_REGISTERED
))
862 static u64
ehea_reg_mr_dir_sections(int top
, u64
*pt
,
863 struct ehea_adapter
*adapter
,
866 u64 hret
= H_SUCCESS
;
869 for (dir
= 0; dir
< EHEA_MAP_ENTRIES
; dir
++) {
870 if (!ehea_bmap
->top
[top
]->dir
[dir
])
873 hret
= ehea_reg_mr_sections(top
, dir
, pt
, adapter
, mr
);
874 if ((hret
!= H_SUCCESS
) && (hret
!= H_PAGE_REGISTERED
))
880 int ehea_reg_kernel_mr(struct ehea_adapter
*adapter
, struct ehea_mr
*mr
)
885 u32 acc_ctrl
= EHEA_MR_ACC_CTRL
;
889 pt
= (void *)get_zeroed_page(GFP_KERNEL
);
896 hret
= ehea_h_alloc_resource_mr(adapter
->handle
, EHEA_BUSMAP_START
,
897 ehea_mr_len
, acc_ctrl
, adapter
->pd
,
898 &mr
->handle
, &mr
->lkey
);
900 if (hret
!= H_SUCCESS
) {
901 pr_err("alloc_resource_mr failed\n");
907 ehea_h_free_resource(adapter
->handle
, mr
->handle
, FORCE_FREE
);
908 pr_err("no busmap available\n");
913 for (top
= 0; top
< EHEA_MAP_ENTRIES
; top
++) {
914 if (!ehea_bmap
->top
[top
])
917 hret
= ehea_reg_mr_dir_sections(top
, pt
, adapter
, mr
);
918 if((hret
!= H_PAGE_REGISTERED
) && (hret
!= H_SUCCESS
))
922 if (hret
!= H_SUCCESS
) {
923 ehea_h_free_resource(adapter
->handle
, mr
->handle
, FORCE_FREE
);
924 pr_err("registering mr failed\n");
929 mr
->vaddr
= EHEA_BUSMAP_START
;
930 mr
->adapter
= adapter
;
933 free_page((unsigned long)pt
);
937 int ehea_rem_mr(struct ehea_mr
*mr
)
941 if (!mr
|| !mr
->adapter
)
944 hret
= ehea_h_free_resource(mr
->adapter
->handle
, mr
->handle
,
946 if (hret
!= H_SUCCESS
) {
947 pr_err("destroy MR failed\n");
954 int ehea_gen_smr(struct ehea_adapter
*adapter
, struct ehea_mr
*old_mr
,
955 struct ehea_mr
*shared_mr
)
959 hret
= ehea_h_register_smr(adapter
->handle
, old_mr
->handle
,
960 old_mr
->vaddr
, EHEA_MR_ACC_CTRL
,
961 adapter
->pd
, shared_mr
);
962 if (hret
!= H_SUCCESS
)
965 shared_mr
->adapter
= adapter
;
970 static void print_error_data(u64
*data
)
973 u64 type
= EHEA_BMASK_GET(ERROR_DATA_TYPE
, data
[2]);
974 u64 resource
= data
[1];
976 length
= EHEA_BMASK_GET(ERROR_DATA_LENGTH
, data
[0]);
978 if (length
> EHEA_PAGESIZE
)
979 length
= EHEA_PAGESIZE
;
981 if (type
== EHEA_AER_RESTYPE_QP
)
982 pr_err("QP (resource=%llX) state: AER=0x%llX, AERR=0x%llX, port=%llX\n",
983 resource
, data
[6], data
[12], data
[22]);
984 else if (type
== EHEA_AER_RESTYPE_CQ
)
985 pr_err("CQ (resource=%llX) state: AER=0x%llX\n",
987 else if (type
== EHEA_AER_RESTYPE_EQ
)
988 pr_err("EQ (resource=%llX) state: AER=0x%llX\n",
991 ehea_dump(data
, length
, "error data");
994 u64
ehea_error_data(struct ehea_adapter
*adapter
, u64 res_handle
,
1001 rblock
= (void *)get_zeroed_page(GFP_KERNEL
);
1003 pr_err("Cannot allocate rblock memory\n");
1007 ret
= ehea_h_error_data(adapter
->handle
, res_handle
, rblock
);
1009 if (ret
== H_SUCCESS
) {
1010 type
= EHEA_BMASK_GET(ERROR_DATA_TYPE
, rblock
[2]);
1013 print_error_data(rblock
);
1014 } else if (ret
== H_R_STATE
) {
1015 pr_err("No error data available: %llX\n", res_handle
);
1017 pr_err("Error data could not be fetched: %llX\n", res_handle
);
1019 free_page((unsigned long)rblock
);