650d103d3e
In my "build everything" tree, changing hw/hw.h triggers a recompile of some 2600 out of 6600 objects (not counting tests and objects that don't depend on qemu/osdep.h). The previous commits have left only the declaration of hw_error() in hw/hw.h. This permits dropping most of its inclusions. Touching it now recompiles less than 200 objects. Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Alistair Francis <alistair.francis@wdc.com> Message-Id: <20190812052359.30071-19-armbru@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>
85 lines
2.3 KiB
C
85 lines
2.3 KiB
C
/*
|
|
* Common Hardware Reference Platform NVRAM helper functions.
|
|
*
|
|
* The CHRP NVRAM layout is used by OpenBIOS and SLOF. See CHRP
|
|
* specification, chapter 8, or the LoPAPR specification for details
|
|
* about the NVRAM layout.
|
|
*
|
|
* This code 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; either version 2 of the License,
|
|
* or (at your option) any later version.
|
|
*
|
|
* 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.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "qemu/osdep.h"
|
|
#include "qemu/cutils.h"
|
|
#include "hw/nvram/chrp_nvram.h"
|
|
#include "sysemu/sysemu.h"
|
|
|
|
static int chrp_nvram_set_var(uint8_t *nvram, int addr, const char *str)
|
|
{
|
|
int len;
|
|
|
|
len = strlen(str) + 1;
|
|
memcpy(&nvram[addr], str, len);
|
|
|
|
return addr + len;
|
|
}
|
|
|
|
/**
|
|
* Create a "system partition", used for the Open Firmware
|
|
* environment variables.
|
|
*/
|
|
int chrp_nvram_create_system_partition(uint8_t *data, int min_len)
|
|
{
|
|
ChrpNvramPartHdr *part_header;
|
|
unsigned int i;
|
|
int end;
|
|
|
|
part_header = (ChrpNvramPartHdr *)data;
|
|
part_header->signature = CHRP_NVPART_SYSTEM;
|
|
pstrcpy(part_header->name, sizeof(part_header->name), "system");
|
|
|
|
end = sizeof(ChrpNvramPartHdr);
|
|
for (i = 0; i < nb_prom_envs; i++) {
|
|
end = chrp_nvram_set_var(data, end, prom_envs[i]);
|
|
}
|
|
|
|
/* End marker */
|
|
data[end++] = '\0';
|
|
|
|
end = (end + 15) & ~15;
|
|
/* XXX: OpenBIOS is not able to grow up a partition. Leave some space for
|
|
new variables. */
|
|
if (end < min_len) {
|
|
end = min_len;
|
|
}
|
|
chrp_nvram_finish_partition(part_header, end);
|
|
|
|
return end;
|
|
}
|
|
|
|
/**
|
|
* Create a "free space" partition
|
|
*/
|
|
int chrp_nvram_create_free_partition(uint8_t *data, int len)
|
|
{
|
|
ChrpNvramPartHdr *part_header;
|
|
|
|
part_header = (ChrpNvramPartHdr *)data;
|
|
part_header->signature = CHRP_NVPART_FREE;
|
|
pstrcpy(part_header->name, sizeof(part_header->name), "free");
|
|
|
|
chrp_nvram_finish_partition(part_header, len);
|
|
|
|
return len;
|
|
}
|