blob: f7eb3241134b49f0bec60e0cafd0d74dec1507d3 [file] [log] [blame]
Andrew Scull18834872018-10-12 11:48:09 +01001/*
2 * Copyright 2018 Google LLC
3 *
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 Scull18c78fc2018-08-20 12:57:41 +010021#include "hf/mm.h"
Wedson Almeida Filhofdf4afc2018-07-19 15:45:21 +010022
Andrew Walbran34ce72e2018-09-13 16:47:44 +010023#define MAX_MEM_RANGES 20
24
25struct mem_range {
26 paddr_t begin;
27 paddr_t end;
28};
29
Wedson Almeida Filhofdf4afc2018-07-19 15:45:21 +010030struct boot_params {
Andrew Walbran34ce72e2018-09-13 16:47:44 +010031 struct mem_range mem_ranges[MAX_MEM_RANGES];
32 size_t mem_ranges_count;
Wedson Almeida Filhofdf4afc2018-07-19 15:45:21 +010033 paddr_t initrd_begin;
34 paddr_t initrd_end;
35 size_t kernel_arg;
36};
37
38struct boot_params_update {
Andrew Walbran34ce72e2018-09-13 16:47:44 +010039 struct mem_range reserved_ranges[MAX_MEM_RANGES];
40 size_t reserved_ranges_count;
Wedson Almeida Filhofdf4afc2018-07-19 15:45:21 +010041 paddr_t initrd_begin;
42 paddr_t initrd_end;
43};
44
45bool plat_get_boot_params(struct boot_params *p);
46bool plat_update_boot_params(struct boot_params_update *p);