2 * IBM eServer eHCA Infiniband device driver for Linux on POWER
4 * Functions for EQs, NEQs and interrupts
6 * Authors: Heiko J Schick <schickhj@de.ibm.com>
7 * Khadija Souissi <souissi@de.ibm.com>
8 * Hoang-Nam Nguyen <hnguyen@de.ibm.com>
9 * Joachim Fenkes <fenkes@de.ibm.com>
11 * Copyright (c) 2005 IBM Corporation
13 * All rights reserved.
15 * This source code is distributed under a dual license of GPL v2.0 and OpenIB
20 * Redistribution and use in source and binary forms, with or without
21 * modification, are permitted provided that the following conditions are met:
23 * Redistributions of source code must retain the above copyright notice, this
24 * list of conditions and the following disclaimer.
26 * Redistributions in binary form must reproduce the above copyright notice,
27 * this list of conditions and the following disclaimer in the documentation
28 * and/or other materials
29 * provided with the distribution.
31 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
32 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
33 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
34 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
35 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
36 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
37 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
38 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
39 * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
40 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41 * POSSIBILITY OF SUCH DAMAGE.
44 #include "ehca_classes.h"
46 #include "ehca_iverbs.h"
47 #include "ehca_tools.h"
50 #include "ipz_pt_fn.h"
52 #define EQE_COMPLETION_EVENT EHCA_BMASK_IBM( 1, 1)
53 #define EQE_CQ_QP_NUMBER EHCA_BMASK_IBM( 8, 31)
54 #define EQE_EE_IDENTIFIER EHCA_BMASK_IBM( 2, 7)
55 #define EQE_CQ_NUMBER EHCA_BMASK_IBM( 8, 31)
56 #define EQE_QP_NUMBER EHCA_BMASK_IBM( 8, 31)
57 #define EQE_QP_TOKEN EHCA_BMASK_IBM(32, 63)
58 #define EQE_CQ_TOKEN EHCA_BMASK_IBM(32, 63)
60 #define NEQE_COMPLETION_EVENT EHCA_BMASK_IBM( 1, 1)
61 #define NEQE_EVENT_CODE EHCA_BMASK_IBM( 2, 7)
62 #define NEQE_PORT_NUMBER EHCA_BMASK_IBM( 8, 15)
63 #define NEQE_PORT_AVAILABILITY EHCA_BMASK_IBM(16, 16)
64 #define NEQE_DISRUPTIVE EHCA_BMASK_IBM(16, 16)
66 #define ERROR_DATA_LENGTH EHCA_BMASK_IBM(52, 63)
67 #define ERROR_DATA_TYPE EHCA_BMASK_IBM( 0, 7)
69 static void queue_comp_task(struct ehca_cq *__cq);
71 static struct ehca_comp_pool *pool;
72 #ifdef CONFIG_HOTPLUG_CPU
73 static struct notifier_block comp_pool_callback_nb;
76 static inline void comp_event_callback(struct ehca_cq *cq)
78 if (!cq->ib_cq.comp_handler)
81 spin_lock(&cq->cb_lock);
82 cq->ib_cq.comp_handler(&cq->ib_cq, cq->ib_cq.cq_context);
83 spin_unlock(&cq->cb_lock);
88 static void print_error_data(struct ehca_shca *shca, void *data,
89 u64 *rblock, int length)
91 u64 type = EHCA_BMASK_GET(ERROR_DATA_TYPE, rblock[2]);
92 u64 resource = rblock[1];
95 case 0x1: /* Queue Pair */
97 struct ehca_qp *qp = (struct ehca_qp *)data;
99 /* only print error data if AER is set */
103 ehca_err(&shca->ib_device,
104 "QP 0x%x (resource=%lx) has errors.",
105 qp->ib_qp.qp_num, resource);
108 case 0x4: /* Completion Queue */
110 struct ehca_cq *cq = (struct ehca_cq *)data;
112 ehca_err(&shca->ib_device,
113 "CQ 0x%x (resource=%lx) has errors.",
114 cq->cq_number, resource);
118 ehca_err(&shca->ib_device,
119 "Unknown error type: %lx on %s.",
120 type, shca->ib_device.name);
124 ehca_err(&shca->ib_device, "Error data is available: %lx.", resource);
125 ehca_err(&shca->ib_device, "EHCA ----- error data begin "
126 "---------------------------------------------------");
127 ehca_dmp(rblock, length, "resource=%lx", resource);
128 ehca_err(&shca->ib_device, "EHCA ----- error data end "
129 "----------------------------------------------------");
134 int ehca_error_data(struct ehca_shca *shca, void *data,
140 unsigned long block_count;
142 rblock = ehca_alloc_fw_ctrlblock(GFP_ATOMIC);
144 ehca_err(&shca->ib_device, "Cannot allocate rblock memory.");
149 /* rblock must be 4K aligned and should be 4K large */
150 ret = hipz_h_error_data(shca->ipz_hca_handle,
155 if (ret == H_R_STATE)
156 ehca_err(&shca->ib_device,
157 "No error data is available: %lx.", resource);
158 else if (ret == H_SUCCESS) {
161 length = EHCA_BMASK_GET(ERROR_DATA_LENGTH, rblock[0]);
163 if (length > EHCA_PAGESIZE)
164 length = EHCA_PAGESIZE;
166 print_error_data(shca, data, rblock, length);
168 ehca_err(&shca->ib_device,
169 "Error data could not be fetched: %lx", resource);
171 ehca_free_fw_ctrlblock(rblock);
178 static void dispatch_qp_event(struct ehca_shca *shca, struct ehca_qp *qp,
179 enum ib_event_type event_type)
181 struct ib_event event;
183 event.device = &shca->ib_device;
184 event.event = event_type;
186 if (qp->ext_type == EQPT_SRQ) {
187 if (!qp->ib_srq.event_handler)
190 event.element.srq = &qp->ib_srq;
191 qp->ib_srq.event_handler(&event, qp->ib_srq.srq_context);
193 if (!qp->ib_qp.event_handler)
196 event.element.qp = &qp->ib_qp;
197 qp->ib_qp.event_handler(&event, qp->ib_qp.qp_context);
201 static void qp_event_callback(struct ehca_shca *shca, u64 eqe,
202 enum ib_event_type event_type, int fatal)
205 u32 token = EHCA_BMASK_GET(EQE_QP_TOKEN, eqe);
207 read_lock(&ehca_qp_idr_lock);
208 qp = idr_find(&ehca_qp_idr, token);
209 read_unlock(&ehca_qp_idr_lock);
215 ehca_error_data(shca, qp, qp->ipz_qp_handle.handle);
217 dispatch_qp_event(shca, qp, fatal && qp->ext_type == EQPT_SRQ ?
218 IB_EVENT_SRQ_ERR : event_type);
221 * eHCA only processes one WQE at a time for SRQ base QPs,
222 * so the last WQE has been processed as soon as the QP enters
225 if (fatal && qp->ext_type == EQPT_SRQBASE)
226 dispatch_qp_event(shca, qp, IB_EVENT_QP_LAST_WQE_REACHED);
231 static void cq_event_callback(struct ehca_shca *shca,
235 u32 token = EHCA_BMASK_GET(EQE_CQ_TOKEN, eqe);
237 read_lock(&ehca_cq_idr_lock);
238 cq = idr_find(&ehca_cq_idr, token);
240 atomic_inc(&cq->nr_events);
241 read_unlock(&ehca_cq_idr_lock);
246 ehca_error_data(shca, cq, cq->ipz_cq_handle.handle);
248 if (atomic_dec_and_test(&cq->nr_events))
249 wake_up(&cq->wait_completion);
254 static void parse_identifier(struct ehca_shca *shca, u64 eqe)
256 u8 identifier = EHCA_BMASK_GET(EQE_EE_IDENTIFIER, eqe);
258 switch (identifier) {
259 case 0x02: /* path migrated */
260 qp_event_callback(shca, eqe, IB_EVENT_PATH_MIG, 0);
262 case 0x03: /* communication established */
263 qp_event_callback(shca, eqe, IB_EVENT_COMM_EST, 0);
265 case 0x04: /* send queue drained */
266 qp_event_callback(shca, eqe, IB_EVENT_SQ_DRAINED, 0);
268 case 0x05: /* QP error */
269 case 0x06: /* QP error */
270 qp_event_callback(shca, eqe, IB_EVENT_QP_FATAL, 1);
272 case 0x07: /* CQ error */
273 case 0x08: /* CQ error */
274 cq_event_callback(shca, eqe);
276 case 0x09: /* MRMWPTE error */
277 ehca_err(&shca->ib_device, "MRMWPTE error.");
279 case 0x0A: /* port event */
280 ehca_err(&shca->ib_device, "Port event.");
282 case 0x0B: /* MR access error */
283 ehca_err(&shca->ib_device, "MR access error.");
285 case 0x0C: /* EQ error */
286 ehca_err(&shca->ib_device, "EQ error.");
288 case 0x0D: /* P/Q_Key mismatch */
289 ehca_err(&shca->ib_device, "P/Q_Key mismatch.");
291 case 0x10: /* sampling complete */
292 ehca_err(&shca->ib_device, "Sampling complete.");
294 case 0x11: /* unaffiliated access error */
295 ehca_err(&shca->ib_device, "Unaffiliated access error.");
297 case 0x12: /* path migrating error */
298 ehca_err(&shca->ib_device, "Path migration error.");
300 case 0x13: /* interface trace stopped */
301 ehca_err(&shca->ib_device, "Interface trace stopped.");
303 case 0x14: /* first error capture info available */
304 ehca_info(&shca->ib_device, "First error capture available");
306 case 0x15: /* SRQ limit reached */
307 qp_event_callback(shca, eqe, IB_EVENT_SRQ_LIMIT_REACHED, 0);
310 ehca_err(&shca->ib_device, "Unknown identifier: %x on %s.",
311 identifier, shca->ib_device.name);
318 static void dispatch_port_event(struct ehca_shca *shca, int port_num,
319 enum ib_event_type type, const char *msg)
321 struct ib_event event;
323 ehca_info(&shca->ib_device, "port %d %s.", port_num, msg);
324 event.device = &shca->ib_device;
326 event.element.port_num = port_num;
327 ib_dispatch_event(&event);
330 static void notify_port_conf_change(struct ehca_shca *shca, int port_num)
332 struct ehca_sma_attr new_attr;
333 struct ehca_sma_attr *old_attr = &shca->sport[port_num - 1].saved_attr;
335 ehca_query_sma_attr(shca, port_num, &new_attr);
337 if (new_attr.sm_sl != old_attr->sm_sl ||
338 new_attr.sm_lid != old_attr->sm_lid)
339 dispatch_port_event(shca, port_num, IB_EVENT_SM_CHANGE,
342 if (new_attr.lid != old_attr->lid ||
343 new_attr.lmc != old_attr->lmc)
344 dispatch_port_event(shca, port_num, IB_EVENT_LID_CHANGE,
347 if (new_attr.pkey_tbl_len != old_attr->pkey_tbl_len ||
348 memcmp(new_attr.pkeys, old_attr->pkeys,
349 sizeof(u16) * new_attr.pkey_tbl_len))
350 dispatch_port_event(shca, port_num, IB_EVENT_PKEY_CHANGE,
353 *old_attr = new_attr;
356 static void parse_ec(struct ehca_shca *shca, u64 eqe)
358 u8 ec = EHCA_BMASK_GET(NEQE_EVENT_CODE, eqe);
359 u8 port = EHCA_BMASK_GET(NEQE_PORT_NUMBER, eqe);
362 case 0x30: /* port availability change */
363 if (EHCA_BMASK_GET(NEQE_PORT_AVAILABILITY, eqe)) {
364 shca->sport[port - 1].port_state = IB_PORT_ACTIVE;
365 dispatch_port_event(shca, port, IB_EVENT_PORT_ACTIVE,
367 ehca_query_sma_attr(shca, port,
368 &shca->sport[port - 1].saved_attr);
370 shca->sport[port - 1].port_state = IB_PORT_DOWN;
371 dispatch_port_event(shca, port, IB_EVENT_PORT_ERR,
376 /* port configuration change
377 * disruptive change is caused by
378 * LID, PKEY or SM change
380 if (EHCA_BMASK_GET(NEQE_DISRUPTIVE, eqe)) {
381 ehca_warn(&shca->ib_device, "disruptive port "
382 "%d configuration change", port);
384 shca->sport[port - 1].port_state = IB_PORT_DOWN;
385 dispatch_port_event(shca, port, IB_EVENT_PORT_ERR,
388 shca->sport[port - 1].port_state = IB_PORT_ACTIVE;
389 dispatch_port_event(shca, port, IB_EVENT_PORT_ACTIVE,
392 notify_port_conf_change(shca, port);
394 case 0x32: /* adapter malfunction */
395 ehca_err(&shca->ib_device, "Adapter malfunction.");
397 case 0x33: /* trace stopped */
398 ehca_err(&shca->ib_device, "Traced stopped.");
401 ehca_err(&shca->ib_device, "Unknown event code: %x on %s.",
402 ec, shca->ib_device.name);
409 static inline void reset_eq_pending(struct ehca_cq *cq)
412 struct h_galpa gal = cq->galpas.kernel;
414 hipz_galpa_store_cq(gal, cqx_ep, 0x0);
415 CQx_EP = hipz_galpa_load(gal, CQTEMM_OFFSET(cqx_ep));
420 irqreturn_t ehca_interrupt_neq(int irq, void *dev_id)
422 struct ehca_shca *shca = (struct ehca_shca*)dev_id;
424 tasklet_hi_schedule(&shca->neq.interrupt_task);
429 void ehca_tasklet_neq(unsigned long data)
431 struct ehca_shca *shca = (struct ehca_shca*)data;
432 struct ehca_eqe *eqe;
435 eqe = (struct ehca_eqe *)ehca_poll_eq(shca, &shca->neq);
438 if (!EHCA_BMASK_GET(NEQE_COMPLETION_EVENT, eqe->entry))
439 parse_ec(shca, eqe->entry);
441 eqe = (struct ehca_eqe *)ehca_poll_eq(shca, &shca->neq);
444 ret = hipz_h_reset_event(shca->ipz_hca_handle,
445 shca->neq.ipz_eq_handle, 0xFFFFFFFFFFFFFFFFL);
447 if (ret != H_SUCCESS)
448 ehca_err(&shca->ib_device, "Can't clear notification events.");
453 irqreturn_t ehca_interrupt_eq(int irq, void *dev_id)
455 struct ehca_shca *shca = (struct ehca_shca*)dev_id;
457 tasklet_hi_schedule(&shca->eq.interrupt_task);
463 static inline void process_eqe(struct ehca_shca *shca, struct ehca_eqe *eqe)
469 eqe_value = eqe->entry;
470 ehca_dbg(&shca->ib_device, "eqe_value=%lx", eqe_value);
471 if (EHCA_BMASK_GET(EQE_COMPLETION_EVENT, eqe_value)) {
472 ehca_dbg(&shca->ib_device, "Got completion event");
473 token = EHCA_BMASK_GET(EQE_CQ_TOKEN, eqe_value);
474 read_lock(&ehca_cq_idr_lock);
475 cq = idr_find(&ehca_cq_idr, token);
477 atomic_inc(&cq->nr_events);
478 read_unlock(&ehca_cq_idr_lock);
480 ehca_err(&shca->ib_device,
481 "Invalid eqe for non-existing cq token=%x",
485 reset_eq_pending(cq);
486 if (ehca_scaling_code)
489 comp_event_callback(cq);
490 if (atomic_dec_and_test(&cq->nr_events))
491 wake_up(&cq->wait_completion);
494 ehca_dbg(&shca->ib_device, "Got non completion event");
495 parse_identifier(shca, eqe_value);
499 void ehca_process_eq(struct ehca_shca *shca, int is_irq)
501 struct ehca_eq *eq = &shca->eq;
502 struct ehca_eqe_cache_entry *eqe_cache = eq->eqe_cache;
508 spin_lock_irqsave(&eq->irq_spinlock, flags);
510 const int max_query_cnt = 100;
514 int_state = hipz_h_query_int_state(
515 shca->ipz_hca_handle, eq->ist);
518 } while (int_state && query_cnt < max_query_cnt);
519 if (unlikely((query_cnt == max_query_cnt)))
520 ehca_dbg(&shca->ib_device, "int_state=%x query_cnt=%x",
521 int_state, query_cnt);
524 /* read out all eqes */
528 eqe_cache[eqe_cnt].eqe =
529 (struct ehca_eqe *)ehca_poll_eq(shca, eq);
530 if (!eqe_cache[eqe_cnt].eqe)
532 eqe_value = eqe_cache[eqe_cnt].eqe->entry;
533 if (EHCA_BMASK_GET(EQE_COMPLETION_EVENT, eqe_value)) {
534 token = EHCA_BMASK_GET(EQE_CQ_TOKEN, eqe_value);
535 read_lock(&ehca_cq_idr_lock);
536 eqe_cache[eqe_cnt].cq = idr_find(&ehca_cq_idr, token);
537 if (eqe_cache[eqe_cnt].cq)
538 atomic_inc(&eqe_cache[eqe_cnt].cq->nr_events);
539 read_unlock(&ehca_cq_idr_lock);
540 if (!eqe_cache[eqe_cnt].cq) {
541 ehca_err(&shca->ib_device,
542 "Invalid eqe for non-existing cq "
547 eqe_cache[eqe_cnt].cq = NULL;
549 } while (eqe_cnt < EHCA_EQE_CACHE_SIZE);
552 ehca_dbg(&shca->ib_device,
553 "No eqe found for irq event");
554 goto unlock_irq_spinlock;
556 ehca_dbg(&shca->ib_device, "deadman found %x eqe", eqe_cnt);
557 if (unlikely(eqe_cnt == EHCA_EQE_CACHE_SIZE))
558 ehca_dbg(&shca->ib_device, "too many eqes for one irq event");
559 /* enable irq for new packets */
560 for (i = 0; i < eqe_cnt; i++) {
561 if (eq->eqe_cache[i].cq)
562 reset_eq_pending(eq->eqe_cache[i].cq);
565 spin_lock(&eq->spinlock);
566 eq_empty = (!ipz_eqit_eq_peek_valid(&shca->eq.ipz_queue));
567 spin_unlock(&eq->spinlock);
568 /* call completion handler for cached eqes */
569 for (i = 0; i < eqe_cnt; i++)
570 if (eq->eqe_cache[i].cq) {
571 if (ehca_scaling_code)
572 queue_comp_task(eq->eqe_cache[i].cq);
574 struct ehca_cq *cq = eq->eqe_cache[i].cq;
575 comp_event_callback(cq);
576 if (atomic_dec_and_test(&cq->nr_events))
577 wake_up(&cq->wait_completion);
580 ehca_dbg(&shca->ib_device, "Got non completion event");
581 parse_identifier(shca, eq->eqe_cache[i].eqe->entry);
583 /* poll eq if not empty */
585 goto unlock_irq_spinlock;
587 struct ehca_eqe *eqe;
588 eqe = (struct ehca_eqe *)ehca_poll_eq(shca, &shca->eq);
591 process_eqe(shca, eqe);
595 spin_unlock_irqrestore(&eq->irq_spinlock, flags);
598 void ehca_tasklet_eq(unsigned long data)
600 ehca_process_eq((struct ehca_shca*)data, 1);
603 static inline int find_next_online_cpu(struct ehca_comp_pool *pool)
608 WARN_ON_ONCE(!in_interrupt());
609 if (ehca_debug_level)
610 ehca_dmp(&cpu_online_map, sizeof(cpumask_t), "");
612 spin_lock_irqsave(&pool->last_cpu_lock, flags);
613 cpu = next_cpu(pool->last_cpu, cpu_online_map);
615 cpu = first_cpu(cpu_online_map);
616 pool->last_cpu = cpu;
617 spin_unlock_irqrestore(&pool->last_cpu_lock, flags);
622 static void __queue_comp_task(struct ehca_cq *__cq,
623 struct ehca_cpu_comp_task *cct)
627 spin_lock_irqsave(&cct->task_lock, flags);
628 spin_lock(&__cq->task_lock);
630 if (__cq->nr_callbacks == 0) {
631 __cq->nr_callbacks++;
632 list_add_tail(&__cq->entry, &cct->cq_list);
634 wake_up(&cct->wait_queue);
636 __cq->nr_callbacks++;
638 spin_unlock(&__cq->task_lock);
639 spin_unlock_irqrestore(&cct->task_lock, flags);
642 static void queue_comp_task(struct ehca_cq *__cq)
645 struct ehca_cpu_comp_task *cct;
649 cpu_id = find_next_online_cpu(pool);
650 BUG_ON(!cpu_online(cpu_id));
652 cct = per_cpu_ptr(pool->cpu_comp_tasks, cpu_id);
655 spin_lock_irqsave(&cct->task_lock, flags);
656 cq_jobs = cct->cq_jobs;
657 spin_unlock_irqrestore(&cct->task_lock, flags);
659 cpu_id = find_next_online_cpu(pool);
660 cct = per_cpu_ptr(pool->cpu_comp_tasks, cpu_id);
664 __queue_comp_task(__cq, cct);
667 static void run_comp_task(struct ehca_cpu_comp_task *cct)
672 spin_lock_irqsave(&cct->task_lock, flags);
674 while (!list_empty(&cct->cq_list)) {
675 cq = list_entry(cct->cq_list.next, struct ehca_cq, entry);
676 spin_unlock_irqrestore(&cct->task_lock, flags);
678 comp_event_callback(cq);
679 if (atomic_dec_and_test(&cq->nr_events))
680 wake_up(&cq->wait_completion);
682 spin_lock_irqsave(&cct->task_lock, flags);
683 spin_lock(&cq->task_lock);
685 if (!cq->nr_callbacks) {
686 list_del_init(cct->cq_list.next);
689 spin_unlock(&cq->task_lock);
692 spin_unlock_irqrestore(&cct->task_lock, flags);
695 static int comp_task(void *__cct)
697 struct ehca_cpu_comp_task *cct = __cct;
699 DECLARE_WAITQUEUE(wait, current);
701 set_current_state(TASK_INTERRUPTIBLE);
702 while (!kthread_should_stop()) {
703 add_wait_queue(&cct->wait_queue, &wait);
705 spin_lock_irq(&cct->task_lock);
706 cql_empty = list_empty(&cct->cq_list);
707 spin_unlock_irq(&cct->task_lock);
711 __set_current_state(TASK_RUNNING);
713 remove_wait_queue(&cct->wait_queue, &wait);
715 spin_lock_irq(&cct->task_lock);
716 cql_empty = list_empty(&cct->cq_list);
717 spin_unlock_irq(&cct->task_lock);
719 run_comp_task(__cct);
721 set_current_state(TASK_INTERRUPTIBLE);
723 __set_current_state(TASK_RUNNING);
728 static struct task_struct *create_comp_task(struct ehca_comp_pool *pool,
731 struct ehca_cpu_comp_task *cct;
733 cct = per_cpu_ptr(pool->cpu_comp_tasks, cpu);
734 spin_lock_init(&cct->task_lock);
735 INIT_LIST_HEAD(&cct->cq_list);
736 init_waitqueue_head(&cct->wait_queue);
737 cct->task = kthread_create(comp_task, cct, "ehca_comp/%d", cpu);
742 static void destroy_comp_task(struct ehca_comp_pool *pool,
745 struct ehca_cpu_comp_task *cct;
746 struct task_struct *task;
747 unsigned long flags_cct;
749 cct = per_cpu_ptr(pool->cpu_comp_tasks, cpu);
751 spin_lock_irqsave(&cct->task_lock, flags_cct);
757 spin_unlock_irqrestore(&cct->task_lock, flags_cct);
763 #ifdef CONFIG_HOTPLUG_CPU
764 static void take_over_work(struct ehca_comp_pool *pool,
767 struct ehca_cpu_comp_task *cct = per_cpu_ptr(pool->cpu_comp_tasks, cpu);
770 unsigned long flags_cct;
772 spin_lock_irqsave(&cct->task_lock, flags_cct);
774 list_splice_init(&cct->cq_list, &list);
776 while (!list_empty(&list)) {
777 cq = list_entry(cct->cq_list.next, struct ehca_cq, entry);
779 list_del(&cq->entry);
780 __queue_comp_task(cq, per_cpu_ptr(pool->cpu_comp_tasks,
781 smp_processor_id()));
784 spin_unlock_irqrestore(&cct->task_lock, flags_cct);
788 static int comp_pool_callback(struct notifier_block *nfb,
789 unsigned long action,
792 unsigned int cpu = (unsigned long)hcpu;
793 struct ehca_cpu_comp_task *cct;
797 case CPU_UP_PREPARE_FROZEN:
798 ehca_gen_dbg("CPU: %x (CPU_PREPARE)", cpu);
799 if (!create_comp_task(pool, cpu)) {
800 ehca_gen_err("Can't create comp_task for cpu: %x", cpu);
804 case CPU_UP_CANCELED:
805 case CPU_UP_CANCELED_FROZEN:
806 ehca_gen_dbg("CPU: %x (CPU_CANCELED)", cpu);
807 cct = per_cpu_ptr(pool->cpu_comp_tasks, cpu);
808 kthread_bind(cct->task, any_online_cpu(cpu_online_map));
809 destroy_comp_task(pool, cpu);
812 case CPU_ONLINE_FROZEN:
813 ehca_gen_dbg("CPU: %x (CPU_ONLINE)", cpu);
814 cct = per_cpu_ptr(pool->cpu_comp_tasks, cpu);
815 kthread_bind(cct->task, cpu);
816 wake_up_process(cct->task);
818 case CPU_DOWN_PREPARE:
819 case CPU_DOWN_PREPARE_FROZEN:
820 ehca_gen_dbg("CPU: %x (CPU_DOWN_PREPARE)", cpu);
822 case CPU_DOWN_FAILED:
823 case CPU_DOWN_FAILED_FROZEN:
824 ehca_gen_dbg("CPU: %x (CPU_DOWN_FAILED)", cpu);
827 case CPU_DEAD_FROZEN:
828 ehca_gen_dbg("CPU: %x (CPU_DEAD)", cpu);
829 destroy_comp_task(pool, cpu);
830 take_over_work(pool, cpu);
838 int ehca_create_comp_pool(void)
841 struct task_struct *task;
843 if (!ehca_scaling_code)
846 pool = kzalloc(sizeof(struct ehca_comp_pool), GFP_KERNEL);
850 spin_lock_init(&pool->last_cpu_lock);
851 pool->last_cpu = any_online_cpu(cpu_online_map);
853 pool->cpu_comp_tasks = alloc_percpu(struct ehca_cpu_comp_task);
854 if (pool->cpu_comp_tasks == NULL) {
859 for_each_online_cpu(cpu) {
860 task = create_comp_task(pool, cpu);
862 kthread_bind(task, cpu);
863 wake_up_process(task);
867 #ifdef CONFIG_HOTPLUG_CPU
868 comp_pool_callback_nb.notifier_call = comp_pool_callback;
869 comp_pool_callback_nb.priority = 0;
870 register_cpu_notifier(&comp_pool_callback_nb);
873 printk(KERN_INFO "eHCA scaling code enabled\n");
878 void ehca_destroy_comp_pool(void)
882 if (!ehca_scaling_code)
885 #ifdef CONFIG_HOTPLUG_CPU
886 unregister_cpu_notifier(&comp_pool_callback_nb);
889 for (i = 0; i < NR_CPUS; i++) {
891 destroy_comp_task(pool, i);
893 free_percpu(pool->cpu_comp_tasks);