blob: 0560188db394229b116c20439f286732d3aad7ea [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 <stddef.h>
20#include <stdint.h>
21
Andrew Walbran34ce72e2018-09-13 16:47:44 +010022#include "hf/boot_params.h"
Andrew Scull18c78fc2018-08-20 12:57:41 +010023#include "hf/cpio.h"
24#include "hf/memiter.h"
25#include "hf/mm.h"
Wedson Almeida Filho22d5eaa2018-12-16 00:38:49 +000026#include "hf/mpool.h"
Wedson Almeida Filhofdf4afc2018-07-19 15:45:21 +010027
Alfredo Mazzinghi17a6dc12019-02-12 16:45:45 +000028bool load_primary(const struct memiter *cpio, uintreg_t kernel_arg,
Wedson Almeida Filho22d5eaa2018-12-16 00:38:49 +000029 struct memiter *initrd, struct mpool *ppool);
Andrew Walbran34ce72e2018-09-13 16:47:44 +010030bool load_secondary(const struct memiter *cpio,
31 const struct boot_params *params,
Wedson Almeida Filho22d5eaa2018-12-16 00:38:49 +000032 struct boot_params_update *update, struct mpool *ppool);