1 1.3 chs /* $NetBSD: sysconf.h,v 1.3 2012/10/27 17:17:46 chs Exp $ */ 2 1.1 pooka 3 1.1 pooka /* 4 1.1 pooka * Copyright (c) 1996 Christopher G. Demetriou. All rights reserved. 5 1.1 pooka * 6 1.1 pooka * Redistribution and use in source and binary forms, with or without 7 1.1 pooka * modification, are permitted provided that the following conditions 8 1.1 pooka * are met: 9 1.1 pooka * 1. Redistributions of source code must retain the above copyright 10 1.1 pooka * notice, this list of conditions and the following disclaimer. 11 1.1 pooka * 2. Redistributions in binary form must reproduce the above copyright 12 1.1 pooka * notice, this list of conditions and the following disclaimer in the 13 1.1 pooka * documentation and/or other materials provided with the distribution. 14 1.1 pooka * 3. All advertising materials mentioning features or use of this software 15 1.1 pooka * must display the following acknowledgement: 16 1.1 pooka * This product includes software developed by Christopher G. Demetriou 17 1.1 pooka * for the NetBSD Project. 18 1.1 pooka * 4. The name of the author may not be used to endorse or promote products 19 1.1 pooka * derived from this software without specific prior written permission 20 1.1 pooka * 21 1.1 pooka * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 22 1.1 pooka * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 23 1.1 pooka * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 24 1.1 pooka * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 25 1.1 pooka * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 26 1.1 pooka * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 27 1.1 pooka * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 28 1.1 pooka * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 29 1.1 pooka * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 30 1.1 pooka * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 31 1.1 pooka */ 32 1.1 pooka 33 1.1 pooka /* 34 1.1 pooka * Additional reworking by Matthew Jacob for NASA/Ames Research Center. 35 1.1 pooka * Copyright (c) 1997 36 1.1 pooka */ 37 1.1 pooka 38 1.1 pooka /* 39 1.1 pooka * Copyright (c) 1998 Jonathan Stone. All rights reserved. 40 1.1 pooka * Additional reworking for emipses. 41 1.1 pooka * Since emips mboard support different CPU daughterboards, 42 1.1 pooka * and others are mmultiprocessors, rename from cpu_* to sys_*. 43 1.1 pooka */ 44 1.1 pooka 45 1.1 pooka #ifndef _EMIPS_SYSCONF_H_ 46 1.1 pooka #define _EMIPS_SYSCONF_H_ 47 1.1 pooka 48 1.1 pooka #ifdef _KERNEL 49 1.1 pooka /* 50 1.1 pooka * Platform Specific Information and Function Hooks. 51 1.1 pooka */ 52 1.1 pooka 53 1.1 pooka struct platform { 54 1.1 pooka const char *iobus; /* Primary iobus name */ 55 1.1 pooka 56 1.1 pooka /* 57 1.1 pooka * Platform Specific Function Hooks 58 1.1 pooka * bus_reset - clear memory error condition 59 1.1 pooka * cons_init - console initialization 60 1.1 pooka * iointr - I/O interrupt handler 61 1.1 pooka * intr_establish - establish interrupt handler 62 1.1 pooka * memsize - find out how much memory we have 63 1.1 pooka */ 64 1.1 pooka void (*bus_reset) (void); 65 1.1 pooka void (*cons_init) (void); 66 1.2 matt void (*iointr) (uint32_t, vaddr_t, uint32_t); 67 1.3 chs void (*intr_establish) (device_t, void *, int, 68 1.1 pooka int (*)(void *, void *), void *); 69 1.1 pooka int (*memsize) (void *); 70 1.1 pooka }; 71 1.1 pooka 72 1.1 pooka /* 73 1.1 pooka * An array of functions to initialize the platform structure. 74 1.1 pooka */ 75 1.1 pooka struct sysinit { 76 1.1 pooka void (*init) (void); 77 1.1 pooka const char *option; 78 1.1 pooka }; 79 1.1 pooka 80 1.1 pooka #define sys_notsupp(st) { platform_not_supported, st } 81 1.1 pooka #define sys_init(fn, opt) { fn, opt } 82 1.1 pooka 83 1.1 pooka extern struct platform platform; 84 1.1 pooka extern struct sysinit sysinit[]; 85 1.1 pooka extern int nsysinit; 86 1.1 pooka 87 1.1 pooka int memsize_scan (void *); 88 1.1 pooka int memsize_pmt (void *); 89 1.1 pooka void platform_not_configured (void); 90 1.1 pooka void platform_not_supported (void); 91 1.1 pooka 92 1.1 pooka /* defaults */ 93 1.1 pooka void noop(void); 94 1.3 chs void emips_intr_establish(device_t, void *, int, 95 1.1 pooka int (*)(void *, void *), void *); 96 1.2 matt void emips_aic_intr(uint32_t, vaddr_t, uint32_t); 97 1.1 pooka #endif /* _KERNEL */ 98 1.1 pooka 99 1.1 pooka #endif /* !_EMIPS_SYSCONF_H_ */ 100