Deleted Added
full compact
exynos5_machdep.c (269703) exynos5_machdep.c (272712)
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 269703 2014-08-08 06:30:17Z nwhitehorn $");
31__FBSDID("$FreeBSD: head/sys/arm/samsung/exynos/exynos5_machdep.c 272712 2014-10-07 17:39:30Z br $");
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

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

73{
74
75 /* CHIP ID */
76 arm_devmap_add_entry(0x10000000, 0x100000);
77
78 /* UART */
79 arm_devmap_add_entry(0x12C00000, 0x100000);
80
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

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

73{
74
75 /* CHIP ID */
76 arm_devmap_add_entry(0x10000000, 0x100000);
77
78 /* UART */
79 arm_devmap_add_entry(0x12C00000, 0x100000);
80
81 /* DWMMC */
82 arm_devmap_add_entry(0x12200000, 0x100000);
83
81 return (0);
82}
83
84struct arm32_dma_range *
85bus_dma_get_range(void)
86{
87
88 return (NULL);
89}
90
91int
92bus_dma_get_range_nb(void)
93{
94
95 return (0);
96}
84 return (0);
85}
86
87struct arm32_dma_range *
88bus_dma_get_range(void)
89{
90
91 return (NULL);
92}
93
94int
95bus_dma_get_range_nb(void)
96{
97
98 return (0);
99}