Deleted Added
full compact
xlr_machdep.c (211893) xlr_machdep.c (211994)
1/*-
2 * Copyright (c) 2006-2009 RMI Corporation
3 * Copyright (c) 2002-2004 Juli Mallett <jmallett@FreeBSD.org>
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

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

21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 * SUCH DAMAGE.
26 *
27 */
28#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 2006-2009 RMI Corporation
3 * Copyright (c) 2002-2004 Juli Mallett <jmallett@FreeBSD.org>
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

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

21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 * SUCH DAMAGE.
26 *
27 */
28#include <sys/cdefs.h>
29__FBSDID("$FreeBSD: head/sys/mips/rmi/xlr_machdep.c 211893 2010-08-27 19:53:57Z jchandra $");
29__FBSDID("$FreeBSD: head/sys/mips/rmi/xlr_machdep.c 211994 2010-08-30 13:05:21Z jchandra $");
30
31#include "opt_ddb.h"
32
33#include <sys/param.h>
34#include <sys/bus.h>
35#include <sys/conf.h>
36#include <sys/rtprio.h>
37#include <sys/systm.h>

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

61#include <machine/md_var.h>
62#include <machine/asm.h>
63#include <machine/pmap.h>
64#include <machine/trap.h>
65#include <machine/clock.h>
66#include <machine/fls64.h>
67#include <machine/intr_machdep.h>
68#include <machine/smp.h>
30
31#include "opt_ddb.h"
32
33#include <sys/param.h>
34#include <sys/bus.h>
35#include <sys/conf.h>
36#include <sys/rtprio.h>
37#include <sys/systm.h>

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

61#include <machine/md_var.h>
62#include <machine/asm.h>
63#include <machine/pmap.h>
64#include <machine/trap.h>
65#include <machine/clock.h>
66#include <machine/fls64.h>
67#include <machine/intr_machdep.h>
68#include <machine/smp.h>
69#include <mips/rmi/rmi_mips_exts.h>
70
71#include <mips/rmi/iomap.h>
69
70#include <mips/rmi/iomap.h>
72#include <mips/rmi/clock.h>
73#include <mips/rmi/msgring.h>
71#include <mips/rmi/msgring.h>
74#include <mips/rmi/xlrconfig.h>
75#include <mips/rmi/interrupt.h>
76#include <mips/rmi/pic.h>
77#include <mips/rmi/board.h>
72#include <mips/rmi/interrupt.h>
73#include <mips/rmi/pic.h>
74#include <mips/rmi/board.h>
75#include <mips/rmi/rmi_mips_exts.h>
76#include <mips/rmi/rmi_boot_info.h>
78
79void mpwait(void);
80unsigned long xlr_io_base = (unsigned long)(DEFAULT_XLR_IO_BASE);
81
82/* 4KB static data aread to keep a copy of the bootload env until
83 the dynamic kenv is setup */
84char boot1_env[4096];
85int rmi_spin_mutex_safe=0;

--- 544 unchanged lines hidden ---
77
78void mpwait(void);
79unsigned long xlr_io_base = (unsigned long)(DEFAULT_XLR_IO_BASE);
80
81/* 4KB static data aread to keep a copy of the bootload env until
82 the dynamic kenv is setup */
83char boot1_env[4096];
84int rmi_spin_mutex_safe=0;

--- 544 unchanged lines hidden ---