Deleted Added
full compact
autoconf.c (53888) autoconf.c (54073)
1/*-
2 * Copyright (c) 1990 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * William Jolitz.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 20 unchanged lines hidden (view full) ---

29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 * from: @(#)autoconf.c 7.1 (Berkeley) 5/9/91
1/*-
2 * Copyright (c) 1990 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * William Jolitz.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 20 unchanged lines hidden (view full) ---

29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 * from: @(#)autoconf.c 7.1 (Berkeley) 5/9/91
37 * $FreeBSD: head/sys/i386/i386/autoconf.c 53888 1999-11-29 18:51:04Z dillon $
37 * $FreeBSD: head/sys/i386/i386/autoconf.c 54073 1999-12-03 08:41:24Z mdodd $
38 */
39
40/*
41 * Setup the system to run on the current machine.
42 *
43 * Configure() is called at boot time and initializes the vba
44 * device tables and the memory controller monitoring. Available
45 * devices are determined (from possibilities mentioned in ioconf.c),

--- 85 unchanged lines hidden (view full) ---

131 bsp_apic_configure();
132 enable_intr();
133#else
134 enable_intr();
135 INTREN(IRQ_SLAVE);
136#endif /* APIC_IO */
137
138 /* nexus0 is the top of the i386 device tree */
38 */
39
40/*
41 * Setup the system to run on the current machine.
42 *
43 * Configure() is called at boot time and initializes the vba
44 * device tables and the memory controller monitoring. Available
45 * devices are determined (from possibilities mentioned in ioconf.c),

--- 85 unchanged lines hidden (view full) ---

131 bsp_apic_configure();
132 enable_intr();
133#else
134 enable_intr();
135 INTREN(IRQ_SLAVE);
136#endif /* APIC_IO */
137
138 /* nexus0 is the top of the i386 device tree */
139 device_add_child(root_bus, "nexus", 0, 0);
139 device_add_child(root_bus, "nexus", 0);
140
141 /* initialize new bus architecture */
142 root_bus_configure();
143
144#if NISA > 0
145 /*
146 * Explicitly probe and attach ISA last. The isa bus saves
147 * it's device node at attach time for us here.

--- 175 unchanged lines hidden ---
140
141 /* initialize new bus architecture */
142 root_bus_configure();
143
144#if NISA > 0
145 /*
146 * Explicitly probe and attach ISA last. The isa bus saves
147 * it's device node at attach time for us here.

--- 175 unchanged lines hidden ---