2015-01-09 14:14:20 +01:00
|
|
|
/*
|
|
|
|
* This file is part of the coreboot project.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2014 Imagination Technologies
|
2015-03-20 15:42:05 +01:00
|
|
|
* Copyright 2015 Google Inc.
|
2015-01-09 14:14:20 +01:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; version 2 of the License.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <program_loading.h>
|
|
|
|
|
|
|
|
/* For each segment of a program loaded this function is called*/
|
2016-03-31 20:49:00 +02:00
|
|
|
void prog_segment_loaded(uintptr_t start, size_t size, int flags)
|
|
|
|
{
|
|
|
|
platform_segment_loaded(start, size, flags);
|
|
|
|
arch_segment_loaded(start, size, flags);
|
|
|
|
}
|
|
|
|
|
2017-07-13 02:20:27 +02:00
|
|
|
void __attribute__((weak)) platform_segment_loaded(uintptr_t start,
|
2016-03-31 20:49:00 +02:00
|
|
|
size_t size, int flags)
|
|
|
|
{
|
|
|
|
/* do nothing */
|
|
|
|
}
|
|
|
|
|
2017-07-13 02:20:27 +02:00
|
|
|
void __attribute__((weak)) arch_segment_loaded(uintptr_t start, size_t size,
|
2015-03-20 15:42:05 +01:00
|
|
|
int flags)
|
2015-01-09 14:14:20 +01:00
|
|
|
{
|
|
|
|
/* do nothing */
|
|
|
|
}
|
2015-03-20 21:55:08 +01:00
|
|
|
|
|
|
|
void prog_run(struct prog *prog)
|
|
|
|
{
|
|
|
|
platform_prog_run(prog);
|
|
|
|
arch_prog_run(prog);
|
|
|
|
}
|
|
|
|
|
2017-07-13 02:20:27 +02:00
|
|
|
void __attribute__((weak)) platform_prog_run(struct prog *prog)
|
2015-03-20 21:55:08 +01:00
|
|
|
{
|
|
|
|
/* do nothing */
|
|
|
|
}
|