Deleted Added
full compact
exynos5_machdep.c (266301) exynos5_machdep.c (267388)
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 266301 2014-05-17 11:27:36Z andrew $");
31__FBSDID("$FreeBSD: head/sys/arm/samsung/exynos/exynos5_machdep.c 267388 2014-06-12 11:37:38Z 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

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

69{
70
71}
72
73int
74platform_devmap_init(void)
75{
76
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

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

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