blob: eb9935020a9d11c8960b464ef06baf279fde7b38 [file] [log] [blame]
Aaron Durbinbdf913a2014-02-24 14:56:34 -06001/*
2 * This file is part of the coreboot project.
3 *
Aaron Durbin04654a22015-03-17 11:43:44 -05004 * Copyright 2015 Google Inc.
Ionela Voinescu00903e52015-01-09 13:14:20 +00005 * Copyright (C) 2014 Imagination Technologies
Aaron Durbinbdf913a2014-02-24 14:56:34 -06006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
Patrick Georgib890a122015-03-26 15:17:45 +010018 * Foundation, Inc.
Aaron Durbinbdf913a2014-02-24 14:56:34 -060019 */
Aaron Durbin04654a22015-03-17 11:43:44 -050020#ifndef PROGRAM_LOADING_H
21#define PROGRAM_LOADING_H
Aaron Durbinbdf913a2014-02-24 14:56:34 -060022
23#include <stdint.h>
24#include <stddef.h>
Aaron Durbin899d13d2015-05-15 23:39:23 -050025#include <region.h>
Aaron Durbinbdf913a2014-02-24 14:56:34 -060026
Aaron Durbin6e76fff2015-03-20 09:42:05 -050027enum {
28 /* Last segment of program. Can be used to take different actions for
29 * cache maintenance of a program load. */
30 SEG_FINAL = 1 << 0,
31};
Ionela Voinescu00903e52015-01-09 13:14:20 +000032
Aaron Durbin3948e532015-03-20 13:00:20 -050033/* Called for each segment of a program loaded. The SEG_FINAL flag will be
Aaron Durbin6e76fff2015-03-20 09:42:05 -050034 * set on the last segment loaded. */
35void arch_segment_loaded(uintptr_t start, size_t size, int flags);
Ionela Voinescu00903e52015-01-09 13:14:20 +000036
Aaron Durbin3948e532015-03-20 13:00:20 -050037struct buffer_area {
38 void *data;
39 size_t size;
40};
41
42enum prog_type {
Aaron Durbin17200ad2015-05-01 16:48:54 -050043 PROG_VERSTAGE,
Aaron Durbin3948e532015-03-20 13:00:20 -050044 PROG_ROMSTAGE,
45 PROG_RAMSTAGE,
Aaron Durbin899d13d2015-05-15 23:39:23 -050046 PROG_REFCODE,
Aaron Durbin3948e532015-03-20 13:00:20 -050047 PROG_PAYLOAD,
Aaron Durbin899d13d2015-05-15 23:39:23 -050048 PROG_BL31,
Aaron Durbin3948e532015-03-20 13:00:20 -050049};
50
51/* Representation of a program. */
52struct prog {
53 enum prog_type type;
54 const char *name;
Aaron Durbin899d13d2015-05-15 23:39:23 -050055 /* Source of program content to load. */
56 struct region_device rdev;
Aaron Durbin3948e532015-03-20 13:00:20 -050057 /* The area can mean different things depending on what type the
Aaron Durbin899d13d2015-05-15 23:39:23 -050058 * program is. A stage after being loaded reflects the memory occupied
59 * by the program, Since payloads are multi-segment one can't express
60 * the memory layout with one range. Instead this field is updated
61 * to reflect the bounce buffer used. */
Aaron Durbin3948e532015-03-20 13:00:20 -050062 struct buffer_area area;
63 /* Entry to program with optional argument. It's up to the architecture
64 * to decide if argument is passed. */
65 void (*entry)(void *);
66 void *arg;
67};
68
69static inline size_t prog_size(const struct prog *prog)
70{
71 return prog->area.size;
72}
73
74static inline void *prog_start(const struct prog *prog)
75{
76 return prog->area.data;
77}
78
79static inline void *prog_entry(const struct prog *prog)
80{
81 return prog->entry;
82}
83
84static inline void *prog_entry_arg(const struct prog *prog)
85{
86 return prog->arg;
87}
88
89static inline void prog_set_area(struct prog *prog, void *start, size_t size)
90{
91 prog->area.data = start;
92 prog->area.size = size;
93}
94
95static inline void prog_set_entry(struct prog *prog, void *e, void *arg)
96{
97 prog->entry = e;
98 prog->arg = arg;
99}
100
Aaron Durbin899d13d2015-05-15 23:39:23 -0500101/* Locate the identified program to run. Return 0 on success. < 0 on error. */
102int prog_locate(struct prog *prog);
Aaron Durbinb3847e62015-03-20 15:55:08 -0500103/* Run the program described by prog. */
104void prog_run(struct prog *prog);
105/* Per architecture implementation running a program. */
106void arch_prog_run(struct prog *prog);
107/* Platform (SoC/chipset) specific overrides for running a program. This is
108 * called prior to calling the arch_prog_run. Thus, if there is anything
109 * special that needs to be done by the platform similar to the architecture
110 * code it needs to that as well. */
111void platform_prog_run(struct prog *prog);
112
Aaron Durbince9efe02015-03-20 16:37:12 -0500113struct prog_loader_ops {
114 const char *name;
Aaron Durbin5e8286b2015-04-28 15:59:12 -0500115 /* Determine if the loader is the active one. If so returns 1 else 0
116 * or < 0 on error. */
117 int (*is_loader_active)(struct prog *prog);
Aaron Durbin899d13d2015-05-15 23:39:23 -0500118 /* Returns < 0 on error or 0 on success. This function locates
119 * the rdev representing the file data associated with the passed in
120 * prog. */
121 int (*locate)(struct prog *prog);
Aaron Durbince9efe02015-03-20 16:37:12 -0500122};
123
Aaron Durbind1b0e872015-03-17 13:17:06 -0500124/************************
125 * ROMSTAGE LOADING *
126 ************************/
127
128/* Run romstage from bootblock. */
129void run_romstage(void);
Aaron Durbin04654a22015-03-17 11:43:44 -0500130
131/************************
132 * RAMSTAGE LOADING *
133 ************************/
134
Aaron Durbince9efe02015-03-20 16:37:12 -0500135/* Run ramstage from romstage. */
136void run_ramstage(void);
137
Aaron Durbinbd74a4b2015-03-06 23:17:33 -0600138/* Called when the stage cache couldn't load ramstage on resume. */
139void ramstage_cache_invalid(void);
Aaron Durbinfcfdff82015-03-20 10:58:41 -0500140
Aaron Durbin04654a22015-03-17 11:43:44 -0500141/***********************
142 * PAYLOAD LOADING *
143 ***********************/
144
Aaron Durbinebf2ed42015-03-20 10:20:15 -0500145/* Load payload into memory in preparation to run. */
146void payload_load(void);
Aaron Durbinbdf913a2014-02-24 14:56:34 -0600147
148/* Run the loaded payload. */
Aaron Durbinebf2ed42015-03-20 10:20:15 -0500149void payload_run(void);
Aaron Durbinbdf913a2014-02-24 14:56:34 -0600150
Aaron Durbinc34713d2014-02-25 20:36:56 -0600151/* Mirror the payload to be loaded. */
Aaron Durbince9efe02015-03-20 16:37:12 -0500152void mirror_payload(struct prog *payload);
Aaron Durbinbdf913a2014-02-24 14:56:34 -0600153
154/* Defined in src/lib/selfboot.c */
Aaron Durbince9efe02015-03-20 16:37:12 -0500155void *selfload(struct prog *payload);
Aaron Durbin04654a22015-03-17 11:43:44 -0500156
157#endif /* PROGRAM_LOADING_H */