]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - sys/dev/fdt/fdt_common.h
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / sys / dev / fdt / fdt_common.h
1 /*-
2  * Copyright (c) 2009-2010 The FreeBSD Foundation
3  * All rights reserved.
4  *
5  * This software was developed by Semihalf under sponsorship from
6  * the FreeBSD Foundation.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  *
29  * $FreeBSD$
30  */
31
32 #ifndef _FDT_COMMON_H_
33 #define _FDT_COMMON_H_
34
35 #include <sys/slicer.h>
36 #include <contrib/libfdt/libfdt_env.h>
37 #include <dev/ofw/ofw_bus.h>
38
39 #define FDT_MEM_REGIONS 8
40
41 #define DI_MAX_INTR_NUM 32
42
43 struct fdt_sense_level {
44         enum intr_trigger       trig;
45         enum intr_polarity      pol;
46 };
47
48 typedef int (*fdt_pic_decode_t)(phandle_t, pcell_t *, int *, int *, int *);
49 extern fdt_pic_decode_t fdt_pic_table[];
50
51 typedef void (*fdt_fixup_t)(phandle_t);
52 struct fdt_fixup_entry {
53         char            *model;
54         fdt_fixup_t     handler;
55 };
56 extern struct fdt_fixup_entry fdt_fixup_table[];
57
58 extern SLIST_HEAD(fdt_ic_list, fdt_ic) fdt_ic_list_head;
59 struct fdt_ic {
60         SLIST_ENTRY(fdt_ic)     fdt_ics;
61         ihandle_t               iph;
62         device_t                dev;
63 };
64
65 extern vm_paddr_t fdt_immr_pa;
66 extern vm_offset_t fdt_immr_va;
67 extern vm_offset_t fdt_immr_size;
68
69 struct fdt_pm_mask_entry {
70         char            *compat;
71         uint32_t        mask;
72 };
73 extern struct fdt_pm_mask_entry fdt_pm_mask_table[];
74
75 #if defined(FDT_DTB_STATIC)
76 extern u_char fdt_static_dtb;
77 #endif
78
79 int fdt_addrsize_cells(phandle_t, int *, int *);
80 u_long fdt_data_get(void *, int);
81 int fdt_data_to_res(pcell_t *, int, int, u_long *, u_long *);
82 int fdt_data_verify(void *, int);
83 phandle_t fdt_find_compatible(phandle_t, const char *, int);
84 phandle_t fdt_depth_search_compatible(phandle_t, const char *, int);
85 int fdt_get_mem_regions(struct mem_region *, int *, uint32_t *);
86 int fdt_get_reserved_regions(struct mem_region *, int *);
87 int fdt_get_phyaddr(phandle_t, device_t, int *, void **);
88 int fdt_get_range(phandle_t, int, u_long *, u_long *);
89 int fdt_immr_addr(vm_offset_t);
90 int fdt_regsize(phandle_t, u_long *, u_long *);
91 int fdt_is_compatible(phandle_t, const char *);
92 int fdt_is_compatible_strict(phandle_t, const char *);
93 int fdt_is_enabled(phandle_t);
94 int fdt_pm_is_enabled(phandle_t);
95 int fdt_is_type(phandle_t, const char *);
96 int fdt_parent_addr_cells(phandle_t);
97 int fdt_ranges_verify(pcell_t *, int, int, int, int);
98 int fdt_reg_to_rl(phandle_t, struct resource_list *);
99 int fdt_pm(phandle_t);
100 int fdt_get_unit(device_t);
101
102 #endif /* _FDT_COMMON_H_ */