Deleted Added
full compact
exynos5_machdep.c (257200) exynos5_machdep.c (257201)
1/*-
2 * Copyright (c) 2013 Ruslan Bukin <br@bsdpad.com>
3 * 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

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

23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 */
26
27#include "opt_ddb.h"
28#include "opt_platform.h"
29
30#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 2013 Ruslan Bukin <br@bsdpad.com>
3 * 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

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

23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 */
26
27#include "opt_ddb.h"
28#include "opt_platform.h"
29
30#include <sys/cdefs.h>
31__FBSDID("$FreeBSD: head/sys/arm/samsung/exynos/exynos5_machdep.c 257200 2013-10-27 01:34:10Z ian $");
31__FBSDID("$FreeBSD: head/sys/arm/samsung/exynos/exynos5_machdep.c 257201 2013-10-27 03:13:26Z ian $");
32
33#define _ARM32_BUS_DMA_PRIVATE
34#include <sys/param.h>
35#include <sys/systm.h>
36#include <sys/bus.h>
37
38#include <vm/vm.h>
39#include <vm/pmap.h>

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

44#include <dev/fdt/fdt_common.h>
45
46#define DEVMAP_BOOTSTRAP_MAP_START 0xF0000000
47
48vm_offset_t
49initarm_lastaddr(void)
50{
51
32
33#define _ARM32_BUS_DMA_PRIVATE
34#include <sys/param.h>
35#include <sys/systm.h>
36#include <sys/bus.h>
37
38#include <vm/vm.h>
39#include <vm/pmap.h>

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

44#include <dev/fdt/fdt_common.h>
45
46#define DEVMAP_BOOTSTRAP_MAP_START 0xF0000000
47
48vm_offset_t
49initarm_lastaddr(void)
50{
51
52 return (DEVMAP_BOOTSTRAP_MAP_START - ARM_NOCACHE_KVA_SIZE);
52 return (DEVMAP_BOOTSTRAP_MAP_START);
53}
54
55void
56initarm_gpio_init(void)
57{
58}
59
60void

--- 42 unchanged lines hidden ---
53}
54
55void
56initarm_gpio_init(void)
57{
58}
59
60void

--- 42 unchanged lines hidden ---