Deleted Added
full compact
s3c24x0_machdep.c (265852) s3c24x0_machdep.c (272103)
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

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

41 * This file needs a lot of work.
42 *
43 * Created : 17/09/94
44 */
45
46#include "opt_ddb.h"
47
48#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

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

41 * This file needs a lot of work.
42 *
43 * Created : 17/09/94
44 */
45
46#include "opt_ddb.h"
47
48#include <sys/cdefs.h>
49__FBSDID("$FreeBSD: head/sys/arm/s3c2xx0/s3c24x0_machdep.c 265852 2014-05-10 20:03:03Z ian $");
49__FBSDID("$FreeBSD: head/sys/arm/samsung/s3c2xx0/s3c24x0_machdep.c 272103 2014-09-25 11:38:26Z gavin $");
50
51#define _ARM32_BUS_DMA_PRIVATE
52#include <sys/param.h>
53#include <sys/systm.h>
54#include <sys/sysproto.h>
55#include <sys/signalvar.h>
56#include <sys/imgact.h>
57#include <sys/kernel.h>

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

84#include <machine/pcb.h>
85#include <machine/undefined.h>
86#include <machine/machdep.h>
87#include <machine/metadata.h>
88#include <machine/armreg.h>
89#include <machine/bus.h>
90#include <sys/reboot.h>
91
50
51#define _ARM32_BUS_DMA_PRIVATE
52#include <sys/param.h>
53#include <sys/systm.h>
54#include <sys/sysproto.h>
55#include <sys/signalvar.h>
56#include <sys/imgact.h>
57#include <sys/kernel.h>

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

84#include <machine/pcb.h>
85#include <machine/undefined.h>
86#include <machine/machdep.h>
87#include <machine/metadata.h>
88#include <machine/armreg.h>
89#include <machine/bus.h>
90#include <sys/reboot.h>
91
92#include
93#include
94#include
92#include <arm/samsung/s3c2xx0/s3c24x0var.h>
93#include <arm/samsung/s3c2xx0/s3c2410reg.h>
94#include <arm/samsung/s3c2xx0/s3c2xx0board.h>
95
96/* Page table for mapping proc0 zero page */
97#define KERNEL_PT_SYS 0
98#define KERNEL_PT_KERN 1
99#define KERNEL_PT_KERN_NUM 44
100/* L2 table for mapping after kernel */
101#define KERNEL_PT_AFKERNEL KERNEL_PT_KERN + KERNEL_PT_KERN_NUM
102#define KERNEL_PT_AFKERNEL_NUM 5

--- 302 unchanged lines hidden ---
95
96/* Page table for mapping proc0 zero page */
97#define KERNEL_PT_SYS 0
98#define KERNEL_PT_KERN 1
99#define KERNEL_PT_KERN_NUM 44
100/* L2 table for mapping after kernel */
101#define KERNEL_PT_AFKERNEL KERNEL_PT_KERN + KERNEL_PT_KERN_NUM
102#define KERNEL_PT_AFKERNEL_NUM 5

--- 302 unchanged lines hidden ---