forked from Minki/linux
[POWERPC] Kill flatdevtree.c
Now that earlier patches have switched the bootwrapper to using libfdt for device tree manipulation, this patch removes the now unused flatdevtree.c and related files. Signed-off-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: Paul Mackerras <paulus@samba.org>
This commit is contained in:
parent
2f0dfeaa84
commit
430b01e8f5
@ -47,7 +47,7 @@ $(addprefix $(obj)/,$(zlib) gunzip_util.o main.o): \
|
||||
$(addprefix $(obj)/,$(zliblinuxheader)) $(addprefix $(obj)/,$(zlibheader))
|
||||
|
||||
src-libfdt := fdt.c fdt_ro.c fdt_wip.c fdt_sw.c fdt_rw.c fdt_strerror.c
|
||||
src-wlib := string.S crt0.S stdio.c main.c flatdevtree.c flatdevtree_misc.c \
|
||||
src-wlib := string.S crt0.S stdio.c main.c \
|
||||
$(addprefix libfdt/,$(src-libfdt)) libfdt-wrapper.c \
|
||||
ns16550.c serial.c simple_alloc.c div64.S util.S \
|
||||
gunzip_util.c elf_util.c $(zlib) devtree.c oflib.c ofconsole.c \
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,113 +0,0 @@
|
||||
/*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#ifndef FLATDEVTREE_H
|
||||
#define FLATDEVTREE_H
|
||||
|
||||
#include "flatdevtree_env.h"
|
||||
|
||||
/* Definitions used by the flattened device tree */
|
||||
#define OF_DT_HEADER 0xd00dfeed /* marker */
|
||||
#define OF_DT_BEGIN_NODE 0x1 /* Start of node, full name */
|
||||
#define OF_DT_END_NODE 0x2 /* End node */
|
||||
#define OF_DT_PROP 0x3 /* Property: name off, size, content */
|
||||
#define OF_DT_NOP 0x4 /* nop */
|
||||
#define OF_DT_END 0x9
|
||||
|
||||
#define OF_DT_VERSION 0x10
|
||||
|
||||
struct boot_param_header {
|
||||
u32 magic; /* magic word OF_DT_HEADER */
|
||||
u32 totalsize; /* total size of DT block */
|
||||
u32 off_dt_struct; /* offset to structure */
|
||||
u32 off_dt_strings; /* offset to strings */
|
||||
u32 off_mem_rsvmap; /* offset to memory reserve map */
|
||||
u32 version; /* format version */
|
||||
u32 last_comp_version; /* last compatible version */
|
||||
/* version 2 fields below */
|
||||
u32 boot_cpuid_phys; /* Physical CPU id we're booting on */
|
||||
/* version 3 fields below */
|
||||
u32 dt_strings_size; /* size of the DT strings block */
|
||||
};
|
||||
|
||||
struct ft_reserve {
|
||||
u64 start;
|
||||
u64 len;
|
||||
};
|
||||
|
||||
struct ft_region {
|
||||
char *start;
|
||||
unsigned long size;
|
||||
};
|
||||
|
||||
enum ft_rgn_id {
|
||||
FT_RSVMAP,
|
||||
FT_STRUCT,
|
||||
FT_STRINGS,
|
||||
FT_N_REGION
|
||||
};
|
||||
|
||||
#define FT_MAX_DEPTH 50
|
||||
|
||||
struct ft_cxt {
|
||||
struct boot_param_header *bph;
|
||||
int max_size; /* maximum size of tree */
|
||||
int isordered; /* everything in standard order */
|
||||
void *(*realloc)(void *, unsigned long);
|
||||
char *str_anchor;
|
||||
char *p; /* current insertion point in structs */
|
||||
struct ft_region rgn[FT_N_REGION];
|
||||
void *genealogy[FT_MAX_DEPTH+1];
|
||||
char **node_tbl;
|
||||
unsigned int node_max;
|
||||
unsigned int nodes_used;
|
||||
};
|
||||
|
||||
char *ft_begin_node(struct ft_cxt *cxt, const char *name);
|
||||
void ft_end_node(struct ft_cxt *cxt);
|
||||
|
||||
void ft_begin_tree(struct ft_cxt *cxt);
|
||||
void ft_end_tree(struct ft_cxt *cxt);
|
||||
|
||||
void ft_nop(struct ft_cxt *cxt);
|
||||
int ft_prop(struct ft_cxt *cxt, const char *name,
|
||||
const void *data, unsigned int sz);
|
||||
int ft_prop_str(struct ft_cxt *cxt, const char *name, const char *str);
|
||||
int ft_prop_int(struct ft_cxt *cxt, const char *name, unsigned int val);
|
||||
void ft_begin(struct ft_cxt *cxt, void *blob, unsigned int max_size,
|
||||
void *(*realloc_fn)(void *, unsigned long));
|
||||
int ft_open(struct ft_cxt *cxt, void *blob, unsigned int max_size,
|
||||
unsigned int max_find_device,
|
||||
void *(*realloc_fn)(void *, unsigned long));
|
||||
int ft_add_rsvmap(struct ft_cxt *cxt, u64 physaddr, u64 size);
|
||||
|
||||
void ft_dump_blob(const void *bphp);
|
||||
void ft_merge_blob(struct ft_cxt *cxt, void *blob);
|
||||
void *ft_find_device(struct ft_cxt *cxt, const void *top,
|
||||
const char *srch_path);
|
||||
void *ft_find_descendent(struct ft_cxt *cxt, void *top, const char *srch_path);
|
||||
int ft_get_prop(struct ft_cxt *cxt, const void *phandle, const char *propname,
|
||||
void *buf, const unsigned int buflen);
|
||||
int ft_set_prop(struct ft_cxt *cxt, const void *phandle, const char *propname,
|
||||
const void *buf, const unsigned int buflen);
|
||||
void *ft_get_parent(struct ft_cxt *cxt, const void *phandle);
|
||||
void *ft_find_node_by_prop_value(struct ft_cxt *cxt, const void *prev,
|
||||
const char *propname, const char *propval,
|
||||
int proplen);
|
||||
void *ft_create_node(struct ft_cxt *cxt, const void *parent, const char *name);
|
||||
char *ft_get_path(struct ft_cxt *cxt, const void *phandle, char *buf, int len);
|
||||
|
||||
#endif /* FLATDEVTREE_H */
|
@ -1,79 +0,0 @@
|
||||
/*
|
||||
* This file does the necessary interface mapping between the bootwrapper
|
||||
* device tree operations and the interface provided by shared source
|
||||
* files flatdevicetree.[ch].
|
||||
*
|
||||
* Author: Mark A. Greer <mgreer@mvista.com>
|
||||
*
|
||||
* 2006 (c) MontaVista Software, Inc. This file is licensed under
|
||||
* the terms of the GNU General Public License version 2. This program
|
||||
* is licensed "as is" without any warranty of any kind, whether express
|
||||
* or implied.
|
||||
*/
|
||||
#include <stddef.h>
|
||||
#include "flatdevtree.h"
|
||||
#include "ops.h"
|
||||
|
||||
static struct ft_cxt cxt;
|
||||
|
||||
static void *fdtm_finddevice(const char *name)
|
||||
{
|
||||
return ft_find_device(&cxt, NULL, name);
|
||||
}
|
||||
|
||||
static int fdtm_getprop(const void *phandle, const char *propname,
|
||||
void *buf, const int buflen)
|
||||
{
|
||||
return ft_get_prop(&cxt, phandle, propname, buf, buflen);
|
||||
}
|
||||
|
||||
static int fdtm_setprop(const void *phandle, const char *propname,
|
||||
const void *buf, const int buflen)
|
||||
{
|
||||
return ft_set_prop(&cxt, phandle, propname, buf, buflen);
|
||||
}
|
||||
|
||||
static void *fdtm_get_parent(const void *phandle)
|
||||
{
|
||||
return ft_get_parent(&cxt, phandle);
|
||||
}
|
||||
|
||||
static void *fdtm_create_node(const void *phandle, const char *name)
|
||||
{
|
||||
return ft_create_node(&cxt, phandle, name);
|
||||
}
|
||||
|
||||
static void *fdtm_find_node_by_prop_value(const void *prev,
|
||||
const char *propname,
|
||||
const char *propval,
|
||||
int proplen)
|
||||
{
|
||||
return ft_find_node_by_prop_value(&cxt, prev, propname,
|
||||
propval, proplen);
|
||||
}
|
||||
|
||||
static unsigned long fdtm_finalize(void)
|
||||
{
|
||||
ft_end_tree(&cxt);
|
||||
return (unsigned long)cxt.bph;
|
||||
}
|
||||
|
||||
static char *fdtm_get_path(const void *phandle, char *buf, int len)
|
||||
{
|
||||
return ft_get_path(&cxt, phandle, buf, len);
|
||||
}
|
||||
|
||||
int ft_init(void *dt_blob, unsigned int max_size, unsigned int max_find_device)
|
||||
{
|
||||
dt_ops.finddevice = fdtm_finddevice;
|
||||
dt_ops.getprop = fdtm_getprop;
|
||||
dt_ops.setprop = fdtm_setprop;
|
||||
dt_ops.get_parent = fdtm_get_parent;
|
||||
dt_ops.create_node = fdtm_create_node;
|
||||
dt_ops.find_node_by_prop_value = fdtm_find_node_by_prop_value;
|
||||
dt_ops.finalize = fdtm_finalize;
|
||||
dt_ops.get_path = fdtm_get_path;
|
||||
|
||||
return ft_open(&cxt, dt_blob, max_size, max_find_device,
|
||||
platform_ops.realloc);
|
||||
}
|
@ -16,7 +16,6 @@
|
||||
#include "stdio.h"
|
||||
#include "ops.h"
|
||||
#include "gunzip_util.h"
|
||||
#include "flatdevtree.h"
|
||||
#include "reg.h"
|
||||
|
||||
static struct gunzip_state gzstate;
|
||||
|
@ -79,7 +79,6 @@ struct loader_info {
|
||||
extern struct loader_info loader_info;
|
||||
|
||||
void start(void);
|
||||
int ft_init(void *dt_blob, unsigned int max_size, unsigned int max_find_device);
|
||||
void fdt_init(void *blob);
|
||||
int serial_console_init(void);
|
||||
int ns16550_console_init(void *devp, struct serial_console_data *scdp);
|
||||
|
Loading…
Reference in New Issue
Block a user