Deleted Added
full compact
mv_machdep.c (185513) mv_machdep.c (186909)
1/*-
2 * Copyright (c) 1994-1998 Mark Brinicombe.
3 * Copyright (c) 1994 Brini.
4 * All rights reserved.
5 *
6 * This code is derived from software written for Brini by Mark Brinicombe
7 *
8 * Redistribution and use in source and binary forms, with or without

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

34 *
35 * from: FreeBSD: //depot/projects/arm/src/sys/arm/at91/kb920x_machdep.c, rev 45
36 */
37
38#include "opt_msgbuf.h"
39#include "opt_ddb.h"
40
41#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 1994-1998 Mark Brinicombe.
3 * Copyright (c) 1994 Brini.
4 * All rights reserved.
5 *
6 * This code is derived from software written for Brini by Mark Brinicombe
7 *
8 * Redistribution and use in source and binary forms, with or without

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

34 *
35 * from: FreeBSD: //depot/projects/arm/src/sys/arm/at91/kb920x_machdep.c, rev 45
36 */
37
38#include "opt_msgbuf.h"
39#include "opt_ddb.h"
40
41#include <sys/cdefs.h>
42__FBSDID("$FreeBSD: head/sys/arm/mv/mv_machdep.c 185513 2008-12-01 10:16:25Z stas $");
42__FBSDID("$FreeBSD: head/sys/arm/mv/mv_machdep.c 186909 2009-01-08 18:31:43Z raj $");
43
44#define _ARM32_BUS_DMA_PRIVATE
45#include <sys/param.h>
46#include <sys/systm.h>
47#include <sys/sysproto.h>
48#include <sys/signalvar.h>
49#include <sys/imgact.h>
50#include <sys/kernel.h>

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

546 debugf("initarm: console initialized\n");
547 debugf(" arg1 mdp = 0x%08x\n", (uint32_t)mdp);
548 debugf(" boothowto = 0x%08x\n", boothowto);
549 print_bootinfo();
550 print_kernel_section_addr();
551 print_kenv();
552
553 /*
43
44#define _ARM32_BUS_DMA_PRIVATE
45#include <sys/param.h>
46#include <sys/systm.h>
47#include <sys/sysproto.h>
48#include <sys/signalvar.h>
49#include <sys/imgact.h>
50#include <sys/kernel.h>

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

546 debugf("initarm: console initialized\n");
547 debugf(" arg1 mdp = 0x%08x\n", (uint32_t)mdp);
548 debugf(" boothowto = 0x%08x\n", boothowto);
549 print_bootinfo();
550 print_kernel_section_addr();
551 print_kenv();
552
553 /*
554 * Re-initialise MPP
555 */
556 platform_mpp_init();
557
558 /*
554 * Re-initialise decode windows
555 */
556 if (soc_decode_win() != 0)
557 printf("WARNING: could not re-initialise decode windows! "
558 "Running with existing settings...\n");
559 /*
560 * Pages were allocated during the secondary bootstrap for the
561 * stacks for different CPU modes.

--- 80 unchanged lines hidden ---
559 * Re-initialise decode windows
560 */
561 if (soc_decode_win() != 0)
562 printf("WARNING: could not re-initialise decode windows! "
563 "Running with existing settings...\n");
564 /*
565 * Pages were allocated during the secondary bootstrap for the
566 * stacks for different CPU modes.

--- 80 unchanged lines hidden ---