blob: 35b66248a47588806215f5628d880bb5fb4e1c5e [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
19#include <stdbool.h>
20
Andrew Scull37402872018-10-24 14:23:06 +010021#include "hf/arch/cpu.h"
22
David Brazdil0dbb41f2019-09-09 18:03:35 +010023#include "hf/fdt.h"
Andrew Scull18c78fc2018-08-20 12:57:41 +010024#include "hf/mm.h"
Wedson Almeida Filho22d5eaa2018-12-16 00:38:49 +000025#include "hf/mpool.h"
Wedson Almeida Filhofdf4afc2018-07-19 15:45:21 +010026
Andrew Walbran34ce72e2018-09-13 16:47:44 +010027#define MAX_MEM_RANGES 20
Andrew Scull48929fd2020-01-28 10:39:10 +000028#define MAX_DEVICE_MEM_RANGES 10
Andrew Walbran34ce72e2018-09-13 16:47:44 +010029
30struct mem_range {
31 paddr_t begin;
32 paddr_t end;
33};
34
Wedson Almeida Filhofdf4afc2018-07-19 15:45:21 +010035struct boot_params {
Andrew Walbran4d3fa282019-06-26 13:31:15 +010036 cpu_id_t cpu_ids[MAX_CPUS];
Andrew Scullbb3ab6c2018-11-26 20:38:49 +000037 size_t cpu_count;
Andrew Walbran34ce72e2018-09-13 16:47:44 +010038 struct mem_range mem_ranges[MAX_MEM_RANGES];
39 size_t mem_ranges_count;
Andrew Scull48929fd2020-01-28 10:39:10 +000040 struct mem_range device_mem_ranges[MAX_DEVICE_MEM_RANGES];
41 size_t device_mem_ranges_count;
Wedson Almeida Filhofdf4afc2018-07-19 15:45:21 +010042 paddr_t initrd_begin;
43 paddr_t initrd_end;
Andrew Scull37402872018-10-24 14:23:06 +010044 uintreg_t kernel_arg;
Wedson Almeida Filhofdf4afc2018-07-19 15:45:21 +010045};
46
47struct boot_params_update {
Andrew Walbran34ce72e2018-09-13 16:47:44 +010048 struct mem_range reserved_ranges[MAX_MEM_RANGES];
49 size_t reserved_ranges_count;
Wedson Almeida Filhofdf4afc2018-07-19 15:45:21 +010050 paddr_t initrd_begin;
51 paddr_t initrd_end;
52};