blob: e8d0d2ab4c0f599e23c4253fbc0f42f304ef8bfe [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _PPC64_PROM_H
2#define _PPC64_PROM_H
3
4/*
5 * Definitions for talking to the Open Firmware PROM on
6 * Power Macintosh computers.
7 *
8 * Copyright (C) 1996 Paul Mackerras.
9 *
10 * Updates for PPC64 by Peter Bergner & David Engebretsen, IBM Corp.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version
15 * 2 of the License, or (at your option) any later version.
16 */
Stephen Rothwell426c1a12005-10-14 14:51:42 +100017#include <linux/config.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/proc_fs.h>
19#include <asm/atomic.h>
20
21#define PTRRELOC(x) ((typeof(x))((unsigned long)(x) - offset))
22#define PTRUNRELOC(x) ((typeof(x))((unsigned long)(x) + offset))
23#define RELOC(x) (*PTRRELOC(&(x)))
24
25/* Definitions used by the flattened device tree */
Benjamin Herrenschmidt34153fa2005-08-09 10:36:34 +020026#define OF_DT_HEADER 0xd00dfeed /* marker */
27#define OF_DT_BEGIN_NODE 0x1 /* Start of node, full name */
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#define OF_DT_END_NODE 0x2 /* End node */
Benjamin Herrenschmidt34153fa2005-08-09 10:36:34 +020029#define OF_DT_PROP 0x3 /* Property: name off, size,
30 * content */
31#define OF_DT_NOP 0x4 /* nop */
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#define OF_DT_END 0x9
33
Benjamin Herrenschmidt34153fa2005-08-09 10:36:34 +020034#define OF_DT_VERSION 0x10
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36/*
37 * This is what gets passed to the kernel by prom_init or kexec
38 *
39 * The dt struct contains the device tree structure, full pathes and
40 * property contents. The dt strings contain a separate block with just
41 * the strings for the property names, and is fully page aligned and
42 * self contained in a page, so that it can be kept around by the kernel,
43 * each property name appears only once in this page (cheap compression)
44 *
45 * the mem_rsvmap contains a map of reserved ranges of physical memory,
46 * passing it here instead of in the device-tree itself greatly simplifies
47 * the job of everybody. It's just a list of u64 pairs (base/size) that
48 * ends when size is 0
49 */
50struct boot_param_header
51{
52 u32 magic; /* magic word OF_DT_HEADER */
53 u32 totalsize; /* total size of DT block */
54 u32 off_dt_struct; /* offset to structure */
55 u32 off_dt_strings; /* offset to strings */
56 u32 off_mem_rsvmap; /* offset to memory reserve map */
57 u32 version; /* format version */
58 u32 last_comp_version; /* last compatible version */
59 /* version 2 fields below */
Benjamin Herrenschmidt34153fa2005-08-09 10:36:34 +020060 u32 boot_cpuid_phys; /* Physical CPU id we're booting on */
61 /* version 3 fields below */
62 u32 dt_strings_size; /* size of the DT strings block */
Linus Torvalds1da177e2005-04-16 15:20:36 -070063};
64
65
66
67typedef u32 phandle;
68typedef u32 ihandle;
69
70struct address_range {
71 unsigned long space;
72 unsigned long address;
73 unsigned long size;
74};
75
76struct interrupt_info {
77 int line;
78 int sense; /* +ve/-ve logic, edge or level, etc. */
79};
80
81struct pci_address {
82 u32 a_hi;
83 u32 a_mid;
84 u32 a_lo;
85};
86
87struct isa_address {
88 u32 a_hi;
89 u32 a_lo;
90};
91
92struct isa_range {
93 struct isa_address isa_addr;
94 struct pci_address pci_addr;
95 unsigned int size;
96};
97
98struct reg_property {
99 unsigned long address;
100 unsigned long size;
101};
102
103struct reg_property32 {
104 unsigned int address;
105 unsigned int size;
106};
107
108struct reg_property64 {
109 unsigned long address;
110 unsigned long size;
111};
112
113struct property {
114 char *name;
115 int length;
116 unsigned char *value;
117 struct property *next;
118};
119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120struct device_node {
121 char *name;
122 char *type;
123 phandle node;
124 phandle linux_phandle;
125 int n_addrs;
126 struct address_range *addrs;
127 int n_intrs;
128 struct interrupt_info *intrs;
129 char *full_name;
130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 struct property *properties;
132 struct device_node *parent;
133 struct device_node *child;
134 struct device_node *sibling;
135 struct device_node *next; /* next device of same type */
136 struct device_node *allnext; /* next in list of all nodes */
Benjamin Herrenschmidt5f64f732005-06-01 17:07:27 +1000137 struct proc_dir_entry *pde; /* this node's proc directory */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 struct kref kref;
139 unsigned long _flags;
Paul Mackerras16353172005-09-06 13:17:54 +1000140 void *data;
Stephen Rothwell252e75a2005-09-28 14:40:40 +1000141#ifdef CONFIG_PPC_ISERIES
142 struct list_head Device_List;
143#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144};
145
146extern struct device_node *of_chosen;
147
148/* flag descriptions */
149#define OF_DYNAMIC 1 /* node and properties were allocated via kmalloc */
150
151#define OF_IS_DYNAMIC(x) test_bit(OF_DYNAMIC, &x->_flags)
152#define OF_MARK_DYNAMIC(x) set_bit(OF_DYNAMIC, &x->_flags)
153
154/*
155 * Until 32-bit ppc can add proc_dir_entries to its device_node
156 * definition, we cannot refer to pde, name_link, and addr_link
157 * in arch-independent code.
158 */
159#define HAVE_ARCH_DEVTREE_FIXUPS
160
161static inline void set_node_proc_entry(struct device_node *dn, struct proc_dir_entry *de)
162{
163 dn->pde = de;
164}
165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
167/* OBSOLETE: Old stlye node lookup */
168extern struct device_node *find_devices(const char *name);
169extern struct device_node *find_type_devices(const char *type);
170extern struct device_node *find_path_device(const char *path);
171extern struct device_node *find_compatible_devices(const char *type,
172 const char *compat);
173extern struct device_node *find_all_nodes(void);
174
175/* New style node lookup */
176extern struct device_node *of_find_node_by_name(struct device_node *from,
177 const char *name);
178extern struct device_node *of_find_node_by_type(struct device_node *from,
179 const char *type);
180extern struct device_node *of_find_compatible_node(struct device_node *from,
181 const char *type, const char *compat);
182extern struct device_node *of_find_node_by_path(const char *path);
183extern struct device_node *of_find_node_by_phandle(phandle handle);
184extern struct device_node *of_find_all_nodes(struct device_node *prev);
185extern struct device_node *of_get_parent(const struct device_node *node);
186extern struct device_node *of_get_next_child(const struct device_node *node,
187 struct device_node *prev);
188extern struct device_node *of_node_get(struct device_node *node);
189extern void of_node_put(struct device_node *node);
190
191/* For updating the device tree at runtime */
192extern void of_attach_node(struct device_node *);
193extern void of_detach_node(const struct device_node *);
194
195/* Other Prototypes */
196extern unsigned long prom_init(unsigned long, unsigned long, unsigned long,
197 unsigned long, unsigned long);
198extern void finish_device_tree(void);
199extern int device_is_compatible(struct device_node *device, const char *);
200extern int machine_is_compatible(const char *compat);
201extern unsigned char *get_property(struct device_node *node, const char *name,
202 int *lenp);
203extern void print_properties(struct device_node *node);
204extern int prom_n_addr_cells(struct device_node* np);
205extern int prom_n_size_cells(struct device_node* np);
206extern int prom_n_intr_cells(struct device_node* np);
207extern void prom_get_irq_senses(unsigned char *senses, int off, int max);
208extern void prom_add_property(struct device_node* np, struct property* prop);
209
210#endif /* _PPC64_PROM_H */