blob: 4e18afc46d18c0776fe46cfbe14ee2434bb425d8 [file] [log] [blame]
Andrew Scull18834872018-10-12 11:48:09 +01001/*
Andrew Walbran692b3252019-03-07 15:51:31 +00002 * Copyright 2018 The Hafnium Authors.
Andrew Scull18834872018-10-12 11:48:09 +01003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * https://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Andrew Scullfbc938a2018-08-20 14:09:28 +010017#pragma once
Wedson Almeida Filhofdf4afc2018-07-19 15:45:21 +010018
Andrew Scull18c78fc2018-08-20 12:57:41 +010019#include "hf/boot_params.h"
20#include "hf/fdt.h"
21#include "hf/mm.h"
Wedson Almeida Filho22d5eaa2018-12-16 00:38:49 +000022#include "hf/mpool.h"
Andrew Scull6c9a4ab2020-01-27 17:09:12 +000023#include "hf/string.h"
Wedson Almeida Filhofdf4afc2018-07-19 15:45:21 +010024
Andrew Scull3c0a90a2019-07-01 11:55:53 +010025struct fdt_header *fdt_map(struct mm_stage1_locked stage1_locked,
26 paddr_t fdt_addr, struct fdt_node *n,
Wedson Almeida Filho22d5eaa2018-12-16 00:38:49 +000027 struct mpool *ppool);
Andrew Scull3c0a90a2019-07-01 11:55:53 +010028bool fdt_unmap(struct mm_stage1_locked stage1_locked, struct fdt_header *fdt,
29 struct mpool *ppool);
David Brazdil0dbb41f2019-09-09 18:03:35 +010030bool fdt_find_cpus(const struct fdt_node *root, cpu_id_t *cpu_ids,
Andrew Scullbb3ab6c2018-11-26 20:38:49 +000031 size_t *cpu_count);
Andrew Scull6c9a4ab2020-01-27 17:09:12 +000032bool fdt_find_memory_ranges(const struct fdt_node *root,
33 struct string *device_type,
34 struct mem_range *mem_ranges,
35 size_t *mem_ranges_count, size_t mem_range_limit);
David Brazdil0dbb41f2019-09-09 18:03:35 +010036bool fdt_find_initrd(const struct fdt_node *root, paddr_t *begin, paddr_t *end);
Andrew Scullb401ba32018-11-09 10:30:54 +000037
38/** Apply an update to the FDT. */
Andrew Scull3c0a90a2019-07-01 11:55:53 +010039bool fdt_patch(struct mm_stage1_locked stage1_locked, paddr_t fdt_addr,
40 struct boot_params_update *p, struct mpool *ppool);