Home | History | Annotate | Line # | Download | only in pic
ipi_openpic.c revision 1.2
      1 /* $NetBSD: ipi_openpic.c,v 1.2 2007/10/17 19:56:45 garbled Exp $ */
      2 /*-
      3  * Copyright (c) 2007 The NetBSD Foundation, Inc.
      4  * All rights reserved.
      5  *
      6  * This code is derived from software contributed to The NetBSD Foundation
      7  * by Tim Rightnour
      8  *
      9  * Redistribution and use in source and binary forms, with or without
     10  * modification, are permitted provided that the following conditions
     11  * are met:
     12  * 1. Redistributions of source code must retain the above copyright
     13  *    notice, this list of conditions and the following disclaimer.
     14  * 2. Redistributions in binary form must reproduce the above copyright
     15  *    notice, this list of conditions and the following disclaimer in the
     16  *    documentation and/or other materials provided with the distribution.
     17  * 3. All advertising materials mentioning features or use of this software
     18  *    must display the following acknowledgement:
     19  *        This product includes software developed by the NetBSD
     20  *        Foundation, Inc. and its contributors.
     21  * 4. Neither the name of The NetBSD Foundation nor the names of its
     22  *    contributors may be used to endorse or promote products derived
     23  *    from this software without specific prior written permission.
     24  *
     25  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     26  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     27  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     28  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     29  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     30  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     31  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     32  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     33  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     34  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     35  * POSSIBILITY OF SUCH DAMAGE.
     36  */
     37 
     38 #include <sys/cdefs.h>
     39 __KERNEL_RCSID(0, "$NetBSD: ipi_openpic.c,v 1.2 2007/10/17 19:56:45 garbled Exp $");
     40 
     41 #include "opt_multiprocessor.h"
     42 #include <sys/param.h>
     43 #include <sys/malloc.h>
     44 #include <sys/kernel.h>
     45 
     46 #include <uvm/uvm_extern.h>
     47 
     48 #include <machine/pio.h>
     49 #include <powerpc/openpic.h>
     50 #include <powerpc/atomic.h>
     51 
     52 #include <arch/powerpc/pic/picvar.h>
     53 #include <arch/powerpc/pic/ipivar.h>
     54 
     55 #ifdef MULTIPROCESSOR
     56 
     57 extern struct ipi_ops ipiops;
     58 extern volatile u_long IPI[CPU_MAXNUM];
     59 static void openpic_send_ipi(int, u_long);
     60 static void openpic_establish_ipi(int, int, void *);
     61 
     62 void
     63 setup_openpic_ipi(void)
     64 {
     65 	uint32_t x;
     66 
     67 	ipiops.ppc_send_ipi = openpic_send_ipi;
     68 	ipiops.ppc_establish_ipi = openpic_establish_ipi;
     69 	ipiops.ppc_ipi_vector = IPI_VECTOR;
     70 
     71 	x = openpic_read(OPENPIC_IPI_VECTOR(1));
     72 	x &= ~(OPENPIC_IMASK | OPENPIC_PRIORITY_MASK | OPENPIC_VECTOR_MASK);
     73 	x |= (15 << OPENPIC_PRIORITY_SHIFT) | ipiops.ppc_ipi_vector;
     74 	openpic_write(OPENPIC_IPI_VECTOR(1), x);
     75 }
     76 
     77 static void
     78 openpic_send_ipi(int target, u_long mesg)
     79 {
     80 	int cpumask = 0, i;
     81 
     82 	switch(target) {
     83 		case IPI_T_ALL:
     84 			for (i = 0; i < ncpu; i++) {
     85 				cpumask |= 1 << i;
     86 				atomic_setbits_ulong(&IPI[i], mesg);
     87 			}
     88 			break;
     89 		case IPI_T_NOTME:
     90 			for (i = 0; i < ncpu; i++) {
     91 				if (i != cpu_number())
     92 					cpumask |= 1 << i;
     93 				atomic_setbits_ulong(&IPI[i], mesg);
     94 			}
     95 			break;
     96 		default:
     97 			cpumask = 1 << target;
     98 			atomic_setbits_ulong(&IPI[target], mesg);
     99 	}
    100 	openpic_write(OPENPIC_IPI(cpu_number(), 1), cpumask);
    101 }
    102 
    103 static void
    104 openpic_establish_ipi(int type, int level, void *ih_args)
    105 {
    106 /*
    107  * XXX
    108  * for now we catch IPIs early in pic_handle_intr() so no need to do anything
    109  * here
    110  */
    111 #if 0
    112 	intr_establish(ipiops.ppc_ipi_vector, type, level, ppcipi_intr,
    113 	    ih_args);
    114 #endif
    115 }
    116 
    117 #endif /*MULTIPROCESSOR*/
    118