Andrew Scull | 1883487 | 2018-10-12 11:48:09 +0100 | [diff] [blame] | 1 | /* |
| 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 Scull | fbc938a | 2018-08-20 14:09:28 +0100 | [diff] [blame] | 17 | #pragma once |
Wedson Almeida Filho | fdf4afc | 2018-07-19 15:45:21 +0100 | [diff] [blame] | 18 | |
| 19 | #include <stdbool.h> |
| 20 | |
Andrew Scull | 3740287 | 2018-10-24 14:23:06 +0100 | [diff] [blame] | 21 | #include "hf/arch/cpu.h" |
| 22 | |
Andrew Scull | 18c78fc | 2018-08-20 12:57:41 +0100 | [diff] [blame] | 23 | #include "hf/mm.h" |
Wedson Almeida Filho | 22d5eaa | 2018-12-16 00:38:49 +0000 | [diff] [blame] | 24 | #include "hf/mpool.h" |
Wedson Almeida Filho | fdf4afc | 2018-07-19 15:45:21 +0100 | [diff] [blame] | 25 | |
Andrew Walbran | 34ce72e | 2018-09-13 16:47:44 +0100 | [diff] [blame] | 26 | #define MAX_MEM_RANGES 20 |
| 27 | |
| 28 | struct mem_range { |
| 29 | paddr_t begin; |
| 30 | paddr_t end; |
| 31 | }; |
| 32 | |
Wedson Almeida Filho | fdf4afc | 2018-07-19 15:45:21 +0100 | [diff] [blame] | 33 | struct boot_params { |
Andrew Scull | bb3ab6c | 2018-11-26 20:38:49 +0000 | [diff] [blame^] | 34 | uint64_t cpu_ids[MAX_CPUS]; |
| 35 | size_t cpu_count; |
Andrew Walbran | 34ce72e | 2018-09-13 16:47:44 +0100 | [diff] [blame] | 36 | struct mem_range mem_ranges[MAX_MEM_RANGES]; |
| 37 | size_t mem_ranges_count; |
Wedson Almeida Filho | fdf4afc | 2018-07-19 15:45:21 +0100 | [diff] [blame] | 38 | paddr_t initrd_begin; |
| 39 | paddr_t initrd_end; |
Andrew Scull | 3740287 | 2018-10-24 14:23:06 +0100 | [diff] [blame] | 40 | uintreg_t kernel_arg; |
Wedson Almeida Filho | fdf4afc | 2018-07-19 15:45:21 +0100 | [diff] [blame] | 41 | }; |
| 42 | |
| 43 | struct boot_params_update { |
Andrew Walbran | 34ce72e | 2018-09-13 16:47:44 +0100 | [diff] [blame] | 44 | struct mem_range reserved_ranges[MAX_MEM_RANGES]; |
| 45 | size_t reserved_ranges_count; |
Wedson Almeida Filho | fdf4afc | 2018-07-19 15:45:21 +0100 | [diff] [blame] | 46 | paddr_t initrd_begin; |
| 47 | paddr_t initrd_end; |
| 48 | }; |
| 49 | |
Wedson Almeida Filho | 22d5eaa | 2018-12-16 00:38:49 +0000 | [diff] [blame] | 50 | bool plat_get_boot_params(struct boot_params *p, struct mpool *ppool); |
| 51 | bool plat_update_boot_params(struct boot_params_update *p, struct mpool *ppool); |