Home | History | Annotate | Line # | Download | only in arch
mips.c revision 1.1
      1  1.1  mrg /*	$NetBSD: mips.c,v 1.1 2020/08/17 04:15:33 mrg Exp $	*/
      2  1.1  mrg 
      3  1.1  mrg /*
      4  1.1  mrg  * Copyright (c) 2020 Matthew R. Green
      5  1.1  mrg  * All rights reserved.
      6  1.1  mrg  *
      7  1.1  mrg  * Redistribution and use in source and binary forms, with or without
      8  1.1  mrg  * modification, are permitted provided that the following conditions
      9  1.1  mrg  * are met:
     10  1.1  mrg  * 1. Redistributions of source code must retain the above copyright
     11  1.1  mrg  *    notice, this list of conditions and the following disclaimer.
     12  1.1  mrg  * 2. Redistributions in binary form must reproduce the above copyright
     13  1.1  mrg  *    notice, this list of conditions and the following disclaimer in the
     14  1.1  mrg  *    documentation and/or other materials provided with the distribution.
     15  1.1  mrg  * 3. The name of the author may not be used to endorse or promote products
     16  1.1  mrg  *    derived from this software without specific prior written permission.
     17  1.1  mrg  *
     18  1.1  mrg  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     19  1.1  mrg  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     20  1.1  mrg  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     21  1.1  mrg  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     22  1.1  mrg  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
     23  1.1  mrg  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
     24  1.1  mrg  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
     25  1.1  mrg  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
     26  1.1  mrg  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     27  1.1  mrg  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     28  1.1  mrg  * SUCH DAMAGE.
     29  1.1  mrg  */
     30  1.1  mrg 
     31  1.1  mrg #include <sys/cdefs.h>
     32  1.1  mrg #ifndef lint
     33  1.1  mrg __RCSID("$NetBSD: mips.c,v 1.1 2020/08/17 04:15:33 mrg Exp $");
     34  1.1  mrg #endif /* not lint */
     35  1.1  mrg 
     36  1.1  mrg #include <ddb/ddb.h>
     37  1.1  mrg 
     38  1.1  mrg #include <kvm.h>
     39  1.1  mrg #include <nlist.h>
     40  1.1  mrg #include <err.h>
     41  1.1  mrg #include <stdlib.h>
     42  1.1  mrg 
     43  1.1  mrg #include <machine/pcb.h>
     44  1.1  mrg 
     45  1.1  mrg #include "extern.h"
     46  1.1  mrg 
     47  1.1  mrg static struct nlist nl[] = {
     48  1.1  mrg 	{ .n_name = "dumppcb" },
     49  1.1  mrg 	{ .n_name = "cpu_switchto" },
     50  1.1  mrg 	{ .n_name = NULL },
     51  1.1  mrg };
     52  1.1  mrg 
     53  1.1  mrg struct pcb	pcb;
     54  1.1  mrg 
     55  1.1  mrg void
     56  1.1  mrg db_mach_init(kvm_t *kd)
     57  1.1  mrg {
     58  1.1  mrg 
     59  1.1  mrg 	if (kvm_nlist(kd, nl) == -1) {
     60  1.1  mrg 		errx(EXIT_FAILURE, "kvm_nlist: %s", kvm_geterr(kd));
     61  1.1  mrg 	}
     62  1.1  mrg 	if ((size_t)kvm_read(kd, nl[0].n_value, &pcb, sizeof(pcb)) !=
     63  1.1  mrg 	    sizeof(pcb)) {
     64  1.1  mrg 		warnx("cannot read dumppcb: %s", kvm_geterr(kd));
     65  1.1  mrg 	}
     66  1.1  mrg }
     67  1.1  mrg 
     68  1.1  mrg /* Provided for db_trace.c. */
     69  1.1  mrg vaddr_t
     70  1.1  mrg db_mach_addr_cpuswitch(void)
     71  1.1  mrg {
     72  1.1  mrg 	return (vaddr_t)nl[1].n_value;
     73  1.1  mrg }
     74