Home | History | Annotate | Line # | Download | only in arm32
stubs.c revision 1.23
      1  1.23       mrg /*	$NetBSD: stubs.c,v 1.23 2011/12/12 19:03:08 mrg Exp $	*/
      2   1.1     chris 
      3   1.1     chris /*
      4   1.1     chris  * Copyright (c) 1994-1998 Mark Brinicombe.
      5   1.1     chris  * Copyright (c) 1994 Brini.
      6   1.1     chris  * All rights reserved.
      7   1.1     chris  *
      8   1.1     chris  * This code is derived from software written for Brini by Mark Brinicombe
      9   1.1     chris  *
     10   1.1     chris  * Redistribution and use in source and binary forms, with or without
     11   1.1     chris  * modification, are permitted provided that the following conditions
     12   1.1     chris  * are met:
     13   1.1     chris  * 1. Redistributions of source code must retain the above copyright
     14   1.1     chris  *    notice, this list of conditions and the following disclaimer.
     15   1.1     chris  * 2. Redistributions in binary form must reproduce the above copyright
     16   1.1     chris  *    notice, this list of conditions and the following disclaimer in the
     17   1.1     chris  *    documentation and/or other materials provided with the distribution.
     18   1.1     chris  * 3. All advertising materials mentioning features or use of this software
     19   1.1     chris  *    must display the following acknowledgement:
     20   1.1     chris  *	This product includes software developed by Mark Brinicombe
     21   1.1     chris  *	for the NetBSD Project.
     22   1.1     chris  * 4. The name of the company nor the name of the author may be used to
     23   1.1     chris  *    endorse or promote products derived from this software without specific
     24   1.1     chris  *    prior written permission.
     25   1.1     chris  *
     26   1.1     chris  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
     27   1.1     chris  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
     28   1.1     chris  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     29   1.1     chris  * IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
     30   1.1     chris  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
     31   1.1     chris  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
     32   1.1     chris  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     33   1.1     chris  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     34   1.1     chris  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     35   1.1     chris  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     36   1.1     chris  * SUCH DAMAGE.
     37   1.1     chris  *
     38   1.1     chris  * Routines that are temporary or do not have a home yet.
     39   1.1     chris  *
     40   1.1     chris  * Created      : 17/09/94
     41   1.1     chris  */
     42  1.14     lukem 
     43  1.14     lukem #include <sys/cdefs.h>
     44  1.23       mrg __KERNEL_RCSID(0, "$NetBSD: stubs.c,v 1.23 2011/12/12 19:03:08 mrg Exp $");
     45   1.1     chris 
     46   1.1     chris #include <sys/param.h>
     47   1.1     chris #include <sys/systm.h>
     48   1.1     chris #include <sys/errno.h>
     49   1.1     chris #include <sys/proc.h>
     50   1.1     chris #include <sys/conf.h>
     51   1.1     chris #include <sys/msgbuf.h>
     52   1.1     chris #include <uvm/uvm_extern.h>
     53   1.1     chris #include <machine/cpu.h>
     54   1.3      matt #include <machine/intr.h>
     55   1.1     chris #include <machine/bootconfig.h>
     56   1.1     chris #include <machine/pcb.h>
     57   1.7     chris #include <arm/arm32/machdep.h>
     58  1.18     chris #include <arm/kcore.h>
     59  1.18     chris #include <sys/kcore.h>
     60  1.18     chris #include <sys/core.h>
     61  1.18     chris #include <sys/exec_aout.h>
     62   1.1     chris 
     63   1.1     chris extern dev_t dumpdev;
     64   1.1     chris 
     65  1.18     chris int	cpu_dump(void);
     66  1.18     chris int	cpu_dumpsize(void);
     67  1.18     chris u_long	cpu_dump_mempagecnt(void);
     68  1.18     chris 
     69   1.1     chris /*
     70   1.1     chris  * These variables are needed by /sbin/savecore
     71   1.1     chris  */
     72   1.8   tsutsui u_int32_t dumpmag = 0x8fca0101;	/* magic number */
     73   1.1     chris int 	dumpsize = 0;		/* pages */
     74   1.1     chris long	dumplo = 0; 		/* blocks */
     75   1.1     chris 
     76   1.1     chris struct pcb dumppcb;
     77   1.1     chris 
     78   1.1     chris /*
     79   1.1     chris  * This is called by main to set dumplo and dumpsize.
     80  1.18     chris  * Dumps always skip the first PAGE_SIZE of disk space
     81   1.1     chris  * in case there might be a disk label stored there.
     82   1.1     chris  * If there is extra space, put dump at the end to
     83   1.1     chris  * reduce the chance that swapping trashes it.
     84   1.1     chris  */
     85   1.1     chris 
     86   1.1     chris void
     87  1.21    cegger cpu_dumpconf(void)
     88   1.1     chris {
     89  1.18     chris 	int nblks, dumpblks;	/* size of dump area */
     90   1.1     chris 
     91   1.1     chris 	if (dumpdev == NODEV)
     92   1.1     chris 		return;
     93  1.23       mrg 	nblks = bdev_size(dumpdev);
     94   1.1     chris 	if (nblks <= ctod(1))
     95   1.1     chris 		return;
     96   1.1     chris 
     97  1.18     chris 	dumpblks = cpu_dumpsize();
     98  1.18     chris 	if (dumpblks < 0)
     99  1.18     chris 		goto bad;
    100  1.18     chris 	dumpblks += ctod(cpu_dump_mempagecnt());
    101  1.18     chris 
    102  1.18     chris 	/* If dump won't fit (incl. room for possible label), punt. */
    103  1.18     chris 	if (dumpblks > (nblks - ctod(1)))
    104  1.18     chris 		goto bad;
    105  1.18     chris 
    106  1.18     chris 	/* Put dump at end of partition */
    107  1.18     chris 	dumplo = nblks - dumpblks;
    108  1.18     chris 
    109  1.18     chris 	/* dumpsize is in page units, and doesn't include headers. */
    110  1.18     chris 	dumpsize = cpu_dump_mempagecnt();
    111  1.18     chris 	return;
    112  1.18     chris 
    113  1.18     chris  bad:
    114  1.18     chris 	dumpsize = 0;
    115  1.18     chris }
    116  1.18     chris 
    117  1.18     chris /*
    118  1.18     chris  * cpu_dump: dump the machine-dependent kernel core dump headers.
    119  1.18     chris  */
    120  1.18     chris int
    121  1.21    cegger cpu_dump(void)
    122  1.18     chris {
    123  1.18     chris 	int (*dump)(dev_t, daddr_t, void *, size_t);
    124  1.18     chris 	char bf[dbtob(1)];
    125  1.18     chris 	kcore_seg_t *segp;
    126  1.18     chris 	cpu_kcore_hdr_t *cpuhdrp;
    127  1.18     chris 	phys_ram_seg_t *memsegp;
    128  1.18     chris 	const struct bdevsw *bdev;
    129  1.18     chris 	int i;
    130  1.18     chris 
    131  1.18     chris 	bdev = bdevsw_lookup(dumpdev);
    132  1.18     chris 	if (bdev == NULL)
    133  1.18     chris 		return (ENXIO);
    134  1.18     chris 	dump = bdev->d_dump;
    135  1.18     chris 
    136  1.18     chris 	memset(bf, 0, sizeof bf);
    137  1.18     chris 	segp = (kcore_seg_t *)bf;
    138  1.18     chris 	cpuhdrp = (cpu_kcore_hdr_t *)&bf[ALIGN(sizeof(*segp))];
    139  1.18     chris 	memsegp = (phys_ram_seg_t *)&bf[ ALIGN(sizeof(*segp)) +
    140  1.18     chris 	    ALIGN(sizeof(*cpuhdrp))];
    141  1.18     chris 
    142  1.18     chris 	/*
    143  1.18     chris 	 * Generate a segment header.
    144  1.18     chris 	 */
    145  1.18     chris 	CORE_SETMAGIC(*segp, KCORE_MAGIC, MID_MACHINE, CORE_CPU);
    146  1.18     chris 	segp->c_size = dbtob(1) - ALIGN(sizeof(*segp));
    147  1.18     chris 
    148  1.18     chris 	/*
    149  1.18     chris 	 * Add the machine-dependent header info.
    150  1.18     chris 	 */
    151  1.18     chris 	cpuhdrp->version = 1;
    152  1.18     chris 	cpuhdrp->PAKernelL1Table = pmap_kernel_L1_addr();
    153  1.18     chris 	cpuhdrp->UserL1TableSize = 0;
    154  1.18     chris 	cpuhdrp->nmemsegs = bootconfig.dramblocks;
    155  1.18     chris 	cpuhdrp->omemsegs = ALIGN(sizeof(*cpuhdrp));
    156  1.18     chris 
    157  1.18     chris 	/*
    158  1.18     chris 	 * Fill in the memory segment descriptors.
    159  1.18     chris 	 */
    160  1.18     chris 	for (i = 0; i < bootconfig.dramblocks; i++) {
    161  1.18     chris 		memsegp[i].start = bootconfig.dram[i].address;
    162  1.18     chris 		memsegp[i].size = bootconfig.dram[i].pages * PAGE_SIZE;
    163  1.18     chris 	}
    164  1.18     chris 
    165  1.18     chris 	return (dump(dumpdev, dumplo, bf, dbtob(1)));
    166  1.18     chris }
    167  1.18     chris 
    168  1.18     chris /*
    169  1.18     chris  * cpu_dumpsize: calculate size of machine-dependent kernel core dump headers.
    170  1.18     chris  */
    171  1.18     chris int
    172  1.21    cegger cpu_dumpsize(void)
    173  1.18     chris {
    174  1.18     chris 	int size;
    175  1.18     chris 
    176  1.18     chris 	size = ALIGN(sizeof(kcore_seg_t)) + ALIGN(sizeof(cpu_kcore_hdr_t)) +
    177  1.18     chris 	    ALIGN( bootconfig.dramblocks * sizeof(phys_ram_seg_t));
    178  1.18     chris 	if (roundup(size, dbtob(1)) != dbtob(1))
    179  1.18     chris 		return (-1);
    180   1.1     chris 
    181  1.18     chris 	return (1);
    182  1.18     chris }
    183  1.18     chris 
    184  1.18     chris 
    185  1.18     chris /*
    186  1.18     chris  * cpu_dump_mempagecnt: calculate the size of RAM (in pages) to be dumped.
    187  1.18     chris  */
    188  1.18     chris u_long
    189  1.21    cegger cpu_dump_mempagecnt(void)
    190  1.18     chris {
    191  1.18     chris 	u_long i, n;
    192  1.18     chris 
    193  1.18     chris 	n = 0;
    194  1.18     chris 	for (i = 0; i < bootconfig.dramblocks; i++) {
    195  1.18     chris 		n += bootconfig.dram[i].pages;
    196  1.18     chris 	}
    197  1.18     chris 
    198  1.18     chris 	return (n);
    199   1.1     chris }
    200   1.1     chris 
    201   1.1     chris /* This should be moved to machdep.c */
    202   1.1     chris 
    203  1.18     chris extern vaddr_t memhook;		/* XXX */
    204   1.1     chris 
    205   1.1     chris /*
    206   1.1     chris  * Doadump comes here after turning off memory management and
    207   1.1     chris  * getting on the dump stack, either when called above, or by
    208   1.1     chris  * the auto-restart code.
    209   1.1     chris  */
    210  1.18     chris void dodumpsys(void);
    211   1.1     chris 
    212   1.1     chris void
    213  1.21    cegger dodumpsys(void)
    214   1.1     chris {
    215  1.10   gehenna 	const struct bdevsw *bdev;
    216   1.1     chris 	daddr_t blkno;
    217   1.1     chris 	int psize;
    218   1.1     chris 	int error;
    219   1.1     chris 	int addr;
    220   1.1     chris 	int block;
    221   1.1     chris 	int len;
    222   1.1     chris 	vaddr_t dumpspace;
    223   1.1     chris 
    224  1.12     chris 	/* flush everything out of caches */
    225  1.12     chris 	cpu_dcache_wbinv_all();
    226   1.1     chris 
    227   1.1     chris 	if (dumpdev == NODEV)
    228   1.1     chris 		return;
    229   1.1     chris 	if (dumpsize == 0) {
    230   1.1     chris 		cpu_dumpconf();
    231   1.1     chris 	}
    232  1.18     chris 	if (dumplo <= 0 || dumpsize == 0) {
    233  1.20        he 		printf("\ndump to dev %u,%u not possible\n",
    234  1.19    cegger 		    major(dumpdev), minor(dumpdev));
    235  1.18     chris 		delay(5000000);
    236   1.1     chris 		return;
    237   1.1     chris 	}
    238  1.20        he 	printf("\ndumping to dev %u,%u offset %ld\n",
    239  1.19    cegger 	    major(dumpdev), minor(dumpdev), dumplo);
    240   1.1     chris 
    241   1.1     chris 
    242  1.10   gehenna 	bdev = bdevsw_lookup(dumpdev);
    243  1.10   gehenna 	if (bdev == NULL || bdev->d_psize == NULL)
    244  1.10   gehenna 		return;
    245  1.23       mrg 	psize = bdev_size(dumpdev);
    246   1.1     chris 	printf("dump ");
    247   1.1     chris 	if (psize == -1) {
    248   1.1     chris 		printf("area unavailable\n");
    249   1.1     chris 		return;
    250   1.1     chris 	}
    251   1.1     chris 
    252  1.18     chris 	if ((error = cpu_dump()) != 0)
    253  1.18     chris 		goto err;
    254  1.18     chris 
    255  1.18     chris 	blkno = dumplo + cpu_dumpsize();
    256  1.18     chris 	dumpspace = memhook;
    257   1.1     chris 	error = 0;
    258   1.1     chris 	len = 0;
    259   1.1     chris 
    260   1.1     chris 	for (block = 0; block < bootconfig.dramblocks && error == 0; ++block) {
    261   1.1     chris 		addr = bootconfig.dram[block].address;
    262   1.1     chris 		for (;addr < (bootconfig.dram[block].address
    263  1.13   thorpej 		    + (bootconfig.dram[block].pages * PAGE_SIZE));
    264  1.13   thorpej 		     addr += PAGE_SIZE) {
    265   1.1     chris 		    	if ((len % (1024*1024)) == 0)
    266   1.1     chris 		    		printf("%d ", len / (1024*1024));
    267  1.18     chris 
    268  1.22    cegger 			pmap_kenter_pa(dumpspace, addr, VM_PROT_READ, 0);
    269  1.12     chris 			pmap_update(pmap_kernel());
    270  1.10   gehenna 			error = (*bdev->d_dump)(dumpdev,
    271  1.17  christos 			    blkno, (void *) dumpspace, PAGE_SIZE);
    272  1.18     chris 
    273  1.18     chris 			if (error) goto err;
    274  1.13   thorpej 			blkno += btodb(PAGE_SIZE);
    275  1.13   thorpej 			len += PAGE_SIZE;
    276   1.1     chris 		}
    277   1.1     chris 	}
    278  1.18     chris err:
    279   1.1     chris 	switch (error) {
    280   1.1     chris 	case ENXIO:
    281   1.1     chris 		printf("device bad\n");
    282   1.1     chris 		break;
    283   1.1     chris 
    284   1.1     chris 	case EFAULT:
    285   1.1     chris 		printf("device not ready\n");
    286   1.1     chris 		break;
    287   1.1     chris 
    288   1.1     chris 	case EINVAL:
    289   1.1     chris 		printf("area improper\n");
    290   1.1     chris 		break;
    291   1.1     chris 
    292   1.1     chris 	case EIO:
    293   1.1     chris 		printf("i/o error\n");
    294   1.1     chris 		break;
    295   1.1     chris 
    296   1.1     chris 	case EINTR:
    297   1.1     chris 		printf("aborted from console\n");
    298   1.1     chris 		break;
    299   1.1     chris 
    300  1.18     chris 	case 0:
    301  1.18     chris 		printf("succeeded\n");
    302  1.18     chris 		break;
    303  1.18     chris 
    304   1.1     chris 	default:
    305  1.18     chris 		printf("error %d\n", error);
    306   1.1     chris 		break;
    307   1.1     chris 	}
    308   1.1     chris 	printf("\n\n");
    309  1.18     chris 	delay(5000000);
    310   1.1     chris }
    311   1.1     chris 
    312   1.1     chris /* End of stubs.c */
    313