1 /* 2 * Copyright (c) 1980, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright 9 * notice, this list of conditions and the following disclaimer. 10 * 2. Redistributions in binary form must reproduce the above copyright 11 * notice, this list of conditions and the following disclaimer in the 12 * documentation and/or other materials provided with the distribution. 13 * 3. All advertising materials mentioning features or use of this software 14 * must display the following acknowledgement: 15 * This product includes software developed by the University of 16 * California, Berkeley and its contributors. 17 * 4. Neither the name of the University nor the names of its contributors 18 * may be used to endorse or promote products derived from this software 19 * without specific prior written permission. 20 * 21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 31 * SUCH DAMAGE. 32 * 33 * @(#)config.h 8.1 (Berkeley) 6/6/93 34 * $FreeBSD$ 35 */ 36 37 /* 38 * Config. 39 */ 40 #include <sys/types.h> 41 #include <stdlib.h> 42 #include <string.h> 43 44 struct file_list { 45 struct file_list *f_next; 46 char *f_fn; /* the name */ 47 int f_type; /* type or count */ 48 u_char f_flags; /* see below */ 49 char *f_special; /* special make rule if present */ 50 char *f_depends; /* additional dependancies */ 51 char *f_clean; /* File list to add to clean rule */ 52 char *f_needs; 53 }; 54 55 /* 56 * Types. 57 */ 58 #define NORMAL 1 59 #define INVISIBLE 2 60 #define PROFILING 3 61 #define NODEPEND 4 62 #define LOCAL 5 63 #define DEVDONE 0x80000000 64 #define TYPEMASK 0x7fffffff 65 66 /* 67 * Attributes (flags). 68 */ 69 #define CONFIGDEP 1 70 #define NO_IMPLCT_RULE 2 71 #define NO_OBJ 4 72 #define BEFORE_DEPEND 8 73 74 struct device { 75 int d_type; /* CONTROLLER, DEVICE, bus adaptor */ 76 struct device *d_conn; /* what it is connected to */ 77 char *d_name; /* name of device (e.g. rk11) */ 78 int d_unit; /* unit number */ 79 int d_drive; /* drive number */ 80 int d_target; /* target number */ 81 int d_lun; /* unit number */ 82 int d_slave; /* slave number */ 83 int d_count; /* pseudo-device count */ 84 #define QUES -1 /* -1 means '?' */ 85 #define UNKNOWN -2 /* -2 means not set yet */ 86 int d_dk; /* if init 1 set to number for iostat */ 87 int d_flags; /* flags for device init */ 88 int d_conflicts; /* I'm allowed to conflict */ 89 int d_disabled; /* nonzero to skip probe/attach */ 90 char *d_port; /* io port base manifest constant */ 91 int d_portn; /* io port base (if number not manifest) */ 92 int d_maddr; /* io memory base */ 93 int d_msize; /* io memory size */ 94 int d_drq; /* DMA request */ 95 int d_irq; /* interrupt request */ 96 struct device *d_next; /* Next one in list */ 97 }; 98 #define TO_NEXUS (struct device *)-1 99 100 struct config { 101 char *s_sysname; 102 }; 103 104 /* 105 * Config has a global notion of which machine type is 106 * being used. It uses the name of the machine in choosing 107 * files and directories. Thus if the name of the machine is ``i386'', 108 * it will build from ``Makefile.i386'' and use ``../i386/inline'' 109 * in the makerules, etc. 110 */ 111 int machine; 112 char *machinename; 113 #define MACHINE_I386 1 114 #define MACHINE_PC98 2 115 #define MACHINE_ALPHA 3 116 117 /* 118 * For each machine, a set of CPU's may be specified as supported. 119 * These and the options (below) are put in the C flags in the makefile. 120 */ 121 struct cputype { 122 char *cpu_name; 123 struct cputype *cpu_next; 124 } *cputype; 125 126 /* 127 * A set of options may also be specified which are like CPU types, 128 * but which may also specify values for the options. 129 * A separate set of options may be defined for make-style options. 130 */ 131 struct opt { 132 char *op_name; 133 char *op_value; 134 int op_line; /* line number for error-reporting */ 135 int op_ownfile; /* true = own file, false = makefile */ 136 struct opt *op_next; 137 } *opt, *mkopt; 138 139 struct opt_list { 140 char *o_name; 141 char *o_file; 142 struct opt_list *o_next; 143 } *otab; 144 145 extern char *ident; 146 extern int do_trace; 147 148 char *get_word __P((FILE *)); 149 char *get_quoted_word __P((FILE *)); 150 char *path __P((char *)); 151 char *raisestr __P((char *)); 152 void moveifchanged __P((const char *, const char *)); 153 void init_dev __P((struct device *)); 154 void newbus_ioconf __P((void)); 155 int yyparse __P((void)); 156 int yylex __P((void)); 157 void options __P((void)); 158 void makefile __P((void)); 159 void headers __P((void)); 160 161 162 extern int seen_scbus; 163 extern struct device *dtab; 164 165 extern char errbuf[80]; 166 extern int yyline; 167 168 extern struct file_list *ftab; 169 170 extern int profiling; 171 extern int debugging; 172 173 extern int maxusers; 174 175 extern int old_config_present; /* Old config/build directory still there */ 176 177 extern char *PREFIX; /* Config file name - for error messages */ 178 extern char srcdir[]; /* root of the kernel source tree */ 179 180 #define eq(a,b) (!strcmp(a,b)) 181 #define ns(s) strdup(s) 182