Avnish Chouhan 8406cfe477 kern/ieee1275/init: Convert plain numbers to constants in Vec5
This patch converts the plain numbers used in Vec5 properties to constants.

1. LPAR: Client program supports logical partitioning and
   associated hcall()s.
2. SPLPAR: Client program supports the Shared
   Processor LPAR Option.
3. CMO: Enables the Cooperative Memory Over-commitment Option.
4. MAX_CPU: Defines maximum number of CPUs supported.

Signed-off-by: Avnish Chouhan <avnish@linux.vnet.ibm.com>
Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
2023-03-29 20:35:05 +02:00

725 lines
20 KiB
C

/* init.c -- Initialize GRUB on the newworld mac (PPC). */
/*
* GRUB -- GRand Unified Bootloader
* Copyright (C) 2003,2004,2005,2007,2008,2009 Free Software Foundation, Inc.
*
* GRUB 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 3 of the License, or
* (at your option) any later version.
*
* GRUB 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 GRUB. If not, see <http://www.gnu.org/licenses/>.
*/
#include <grub/kernel.h>
#include <grub/dl.h>
#include <grub/disk.h>
#include <grub/mm.h>
#include <grub/partition.h>
#include <grub/normal.h>
#include <grub/fs.h>
#include <grub/setjmp.h>
#include <grub/env.h>
#include <grub/misc.h>
#include <grub/time.h>
#include <grub/ieee1275/console.h>
#include <grub/ieee1275/ofdisk.h>
#ifdef __sparc__
#include <grub/ieee1275/obdisk.h>
#endif
#include <grub/ieee1275/ieee1275.h>
#include <grub/net.h>
#include <grub/offsets.h>
#include <grub/memory.h>
#include <grub/loader.h>
#ifdef __i386__
#include <grub/cpu/tsc.h>
#endif
#ifdef __sparc__
#include <grub/machine/kernel.h>
#endif
/* The maximum heap size we're going to claim at boot. Not used by sparc. */
#ifdef __i386__
#define HEAP_MAX_SIZE (unsigned long) (64 * 1024 * 1024)
#else /* __powerpc__ */
#define HEAP_MAX_SIZE (unsigned long) (32 * 1024 * 1024)
#endif
/* RMO max. address at 768 MB */
#define RMO_ADDR_MAX (grub_uint64_t) (768 * 1024 * 1024)
/*
* The amount of OF space we will not claim here so as to leave space for
* the loader and linux to service early allocations.
*
* In 2021, Daniel Axtens claims that we should leave at least 128MB to
* ensure we can load a stock kernel and initrd on a pseries guest with
* a 512MB real memory area under PowerVM.
*/
#define RUNTIME_MIN_SPACE (128UL * 1024 * 1024)
extern char _start[];
extern char _end[];
#ifdef __sparc__
grub_addr_t grub_ieee1275_original_stack;
#endif
#define LPAR 0x80
#define SPLPAR 0x40
#define BYTE2 (LPAR | SPLPAR)
#define CMO 0x80
#define MAX_CPU 256
void
grub_exit (void)
{
grub_ieee1275_exit ();
}
/* Translate an OF filesystem path (separated by backslashes), into a GRUB
path (separated by forward slashes). */
static void
grub_translate_ieee1275_path (char *filepath)
{
char *backslash;
backslash = grub_strchr (filepath, '\\');
while (backslash != 0)
{
*backslash = '/';
backslash = grub_strchr (filepath, '\\');
}
}
void (*grub_ieee1275_net_config) (const char *dev, char **device, char **path,
char *bootpath);
void
grub_machine_get_bootlocation (char **device, char **path)
{
char *bootpath;
char *filename;
char *type;
bootpath = grub_ieee1275_get_boot_dev ();
if (! bootpath)
return;
/* Transform an OF device path to a GRUB path. */
type = grub_ieee1275_get_device_type (bootpath);
if (type && grub_strcmp (type, "network") == 0)
{
char *dev, *canon;
char *ptr;
dev = grub_ieee1275_get_aliasdevname (bootpath);
canon = grub_ieee1275_canonicalise_devname (dev);
if (! canon)
return;
ptr = canon + grub_strlen (canon) - 1;
while (ptr > canon && (*ptr == ',' || *ptr == ':'))
ptr--;
ptr++;
*ptr = 0;
if (grub_ieee1275_net_config)
grub_ieee1275_net_config (canon, device, path, bootpath);
grub_free (dev);
grub_free (canon);
}
else
*device = grub_ieee1275_encode_devname (bootpath);
grub_free (type);
filename = grub_ieee1275_get_filename (bootpath);
if (filename)
{
char *lastslash = grub_strrchr (filename, '\\');
/* Truncate at last directory. */
if (lastslash)
{
*lastslash = '\0';
grub_translate_ieee1275_path (filename);
*path = filename;
}
}
grub_free (bootpath);
}
/* Claim some available memory in the first /memory node. */
#ifdef __sparc__
static void
grub_claim_heap (void)
{
grub_mm_init_region ((void *) (grub_modules_get_end ()
+ GRUB_KERNEL_MACHINE_STACK_SIZE), 0x200000);
}
#else
/* Helpers for mm on powerpc. */
/*
* How much memory does OF believe exists in total?
*
* This isn't necessarily the true total. It can be the total memory
* accessible in real mode for a pseries guest, for example.
*/
static grub_uint64_t rmo_top;
static int
count_free (grub_uint64_t addr, grub_uint64_t len, grub_memory_type_t type,
void *data)
{
if (type != GRUB_MEMORY_AVAILABLE)
return 0;
/* Do not consider memory beyond 4GB */
if (addr > 0xffffffffULL)
return 0;
if (addr + len > 0xffffffffULL)
len = 0xffffffffULL - addr;
*(grub_uint32_t *) data += len;
return 0;
}
static int
regions_claim (grub_uint64_t addr, grub_uint64_t len, grub_memory_type_t type,
unsigned int flags, void *data)
{
grub_uint32_t total = *(grub_uint32_t *) data;
grub_uint64_t linux_rmo_save;
if (type != GRUB_MEMORY_AVAILABLE)
return 0;
/* Do not consider memory beyond 4GB */
if (addr > 0xffffffffULL)
return 0;
if (addr + len > 0xffffffffULL)
len = 0xffffffffULL - addr;
if (grub_ieee1275_test_flag (GRUB_IEEE1275_FLAG_NO_PRE1_5M_CLAIM))
{
if (addr + len <= 0x180000)
return 0;
if (addr < 0x180000)
{
len = addr + len - 0x180000;
addr = 0x180000;
}
}
/* In theory, firmware should already prevent this from happening by not
listing our own image in /memory/available. The check below is intended
as a safeguard in case that doesn't happen. However, it doesn't protect
us from corrupting our module area, which extends up to a
yet-undetermined region above _end. */
if ((addr < (grub_addr_t) _end) && ((addr + len) > (grub_addr_t) _start))
{
grub_printf ("Warning: attempt to claim over our own code!\n");
len = 0;
}
/*
* Linux likes to claim memory at min(RMO top, 768MB) and works down
* without reference to /memory/available. (See prom_init.c::alloc_down)
*
* If this block contains min(RMO top, 768MB), do not claim below that for
* at least a few MB (this is where RTAS, SML and potentially TCEs live).
*
* We also need to leave enough space for the DT in the RMA. (See
* prom_init.c::alloc_up)
*
* Finally, we also want to make sure that when grub loads the kernel,
* it isn't going to use up all the memory we're trying to reserve! So
* enforce our entire RUNTIME_MIN_SPACE here:
*
* |---------- Top of memory ----------|
* | |
* | available |
* | |
* |---------- 768 MB ----------|
* | |
* | reserved |
* | |
* |--- 768 MB - runtime min space ---|
* | |
* | available |
* | |
* |---------- 0 MB ----------|
*
* Edge cases:
*
* - Total memory less than RUNTIME_MIN_SPACE: only claim up to HEAP_MAX_SIZE.
* (enforced elsewhere)
*
* - Total memory between RUNTIME_MIN_SPACE and 768MB:
*
* |---------- Top of memory ----------|
* | |
* | reserved |
* | |
* |---- top - runtime min space ----|
* | |
* | available |
* | |
* |---------- 0 MB ----------|
*
* This by itself would not leave us with RUNTIME_MIN_SPACE of free bytes: if
* rmo_top < 768MB, we will almost certainly have FW claims in the reserved
* region. We try to address that elsewhere: grub_ieee1275_mm_add_region will
* not call us if the resulting free space would be less than RUNTIME_MIN_SPACE.
*/
linux_rmo_save = grub_min (RMO_ADDR_MAX, rmo_top) - RUNTIME_MIN_SPACE;
if (rmo_top > RUNTIME_MIN_SPACE)
{
if (rmo_top <= RMO_ADDR_MAX)
{
if (addr > linux_rmo_save)
{
grub_dprintf ("ieee1275", "rejecting region in RUNTIME_MIN_SPACE reservation (%llx)\n",
addr);
return 0;
}
else if (addr + len > linux_rmo_save)
{
grub_dprintf ("ieee1275", "capping region: (%llx -> %llx) -> (%llx -> %llx)\n",
addr, addr + len, addr, rmo_top - RUNTIME_MIN_SPACE);
len = linux_rmo_save - addr;
}
}
else
{
/*
* we order these cases to prefer higher addresses and avoid some
* splitting issues
*/
if (addr < RMO_ADDR_MAX && (addr + len) > RMO_ADDR_MAX)
{
grub_dprintf ("ieee1275",
"adjusting region for RUNTIME_MIN_SPACE: (%llx -> %llx) -> (%llx -> %llx)\n",
addr, addr + len, RMO_ADDR_MAX, addr + len);
len = (addr + len) - RMO_ADDR_MAX;
addr = RMO_ADDR_MAX;
}
else if ((addr < linux_rmo_save) && ((addr + len) > linux_rmo_save))
{
grub_dprintf ("ieee1275", "capping region: (%llx -> %llx) -> (%llx -> %llx)\n",
addr, addr + len, addr, linux_rmo_save);
len = linux_rmo_save - addr;
}
else if (addr >= linux_rmo_save && (addr + len) <= RMO_ADDR_MAX)
{
grub_dprintf ("ieee1275", "rejecting region in RUNTIME_MIN_SPACE reservation (%llx)\n",
addr);
return 0;
}
}
}
if (flags & GRUB_MM_ADD_REGION_CONSECUTIVE && len < total)
return 0;
if (len > total)
len = total;
if (len)
{
grub_err_t err;
/* Claim and use it. */
err = grub_claimmap (addr, len);
if (err)
return err;
grub_mm_init_region ((void *) (grub_addr_t) addr, len);
total -= len;
}
*(grub_uint32_t *) data = total;
if (total == 0)
return 1;
return 0;
}
static int
heap_init (grub_uint64_t addr, grub_uint64_t len, grub_memory_type_t type,
void *data)
{
return regions_claim (addr, len, type, GRUB_MM_ADD_REGION_NONE, data);
}
static int
region_claim (grub_uint64_t addr, grub_uint64_t len, grub_memory_type_t type,
void *data)
{
return regions_claim (addr, len, type, GRUB_MM_ADD_REGION_CONSECUTIVE, data);
}
static grub_err_t
grub_ieee1275_mm_add_region (grub_size_t size, unsigned int flags)
{
grub_uint32_t free_memory = 0;
grub_uint32_t avail = 0;
grub_uint32_t total;
grub_dprintf ("ieee1275", "mm requested region of size %x, flags %x\n",
size, flags);
/*
* Update free memory each time, which is a bit inefficient but guards us
* against a situation where some OF driver goes out to firmware for
* memory and we don't realise.
*/
grub_machine_mmap_iterate (count_free, &free_memory);
/* Ensure we leave enough space to boot. */
if (free_memory <= RUNTIME_MIN_SPACE + size)
{
grub_dprintf ("ieee1275", "Cannot satisfy allocation and retain minimum runtime space\n");
return GRUB_ERR_OUT_OF_MEMORY;
}
if (free_memory > RUNTIME_MIN_SPACE)
avail = free_memory - RUNTIME_MIN_SPACE;
grub_dprintf ("ieee1275", "free = 0x%x available = 0x%x\n", free_memory, avail);
if (flags & GRUB_MM_ADD_REGION_CONSECUTIVE)
{
/* first try rounding up hard for the sake of speed */
total = grub_max (ALIGN_UP (size, 1024 * 1024) + 1024 * 1024, 32 * 1024 * 1024);
total = grub_min (avail, total);
grub_dprintf ("ieee1275", "looking for %x bytes of memory (%x requested)\n", total, size);
grub_machine_mmap_iterate (region_claim, &total);
grub_dprintf ("ieee1275", "get memory from fw %s\n", total == 0 ? "succeeded" : "failed");
if (total != 0)
{
total = grub_min (avail, size);
grub_dprintf ("ieee1275", "fallback for %x bytes of memory (%x requested)\n", total, size);
grub_machine_mmap_iterate (region_claim, &total);
grub_dprintf ("ieee1275", "fallback from fw %s\n", total == 0 ? "succeeded" : "failed");
}
}
else
{
/* provide padding for a grub_mm_header_t and region */
total = grub_min (avail, size);
grub_machine_mmap_iterate (heap_init, &total);
grub_dprintf ("ieee1275", "get noncontig memory from fw %s\n", total == 0 ? "succeeded" : "failed");
}
if (total == 0)
return GRUB_ERR_NONE;
else
return GRUB_ERR_OUT_OF_MEMORY;
}
/*
* How much memory does OF believe it has? (regardless of whether
* it's accessible or not)
*/
static grub_err_t
grub_ieee1275_total_mem (grub_uint64_t *total)
{
grub_ieee1275_phandle_t root;
grub_ieee1275_phandle_t memory;
grub_uint32_t reg[4];
grub_ssize_t reg_size;
grub_uint32_t address_cells = 1;
grub_uint32_t size_cells = 1;
grub_uint64_t size;
/* If we fail to get to the end, report 0. */
*total = 0;
/* Determine the format of each entry in `reg'. */
if (grub_ieee1275_finddevice ("/", &root))
return grub_error (GRUB_ERR_UNKNOWN_DEVICE, "couldn't find / node");
if (grub_ieee1275_get_integer_property (root, "#address-cells", &address_cells,
sizeof (address_cells), 0))
return grub_error (GRUB_ERR_UNKNOWN_DEVICE, "couldn't examine #address-cells");
if (grub_ieee1275_get_integer_property (root, "#size-cells", &size_cells,
sizeof (size_cells), 0))
return grub_error (GRUB_ERR_UNKNOWN_DEVICE, "couldn't examine #size-cells");
if (size_cells > address_cells)
address_cells = size_cells;
/* Load `/memory/reg'. */
if (grub_ieee1275_finddevice ("/memory", &memory))
return grub_error (GRUB_ERR_UNKNOWN_DEVICE, "couldn't find /memory node");
if (grub_ieee1275_get_integer_property (memory, "reg", reg,
sizeof (reg), &reg_size))
return grub_error (GRUB_ERR_UNKNOWN_DEVICE, "couldn't examine /memory/reg property");
if (reg_size < 0 || (grub_size_t) reg_size > sizeof (reg))
return grub_error (GRUB_ERR_UNKNOWN_DEVICE, "/memory response buffer exceeded");
if (grub_ieee1275_test_flag (GRUB_IEEE1275_FLAG_BROKEN_ADDRESS_CELLS))
{
address_cells = 1;
size_cells = 1;
}
/* Decode only the size */
size = reg[address_cells];
if (size_cells == 2)
size = (size << 32) | reg[address_cells + 1];
*total = size;
return grub_errno;
}
#if defined(__powerpc__)
/* See PAPR or arch/powerpc/kernel/prom_init.c */
struct option_vector2
{
grub_uint8_t byte1;
grub_uint16_t reserved;
grub_uint32_t real_base;
grub_uint32_t real_size;
grub_uint32_t virt_base;
grub_uint32_t virt_size;
grub_uint32_t load_base;
grub_uint32_t min_rma;
grub_uint32_t min_load;
grub_uint8_t min_rma_percent;
grub_uint8_t max_pft_size;
} GRUB_PACKED;
struct option_vector5
{
grub_uint8_t byte1;
grub_uint8_t byte2;
grub_uint8_t byte3;
grub_uint8_t cmo;
grub_uint8_t associativity;
grub_uint8_t bin_opts;
grub_uint8_t micro_checkpoint;
grub_uint8_t reserved0;
grub_uint32_t max_cpus;
} GRUB_PACKED;
struct pvr_entry
{
grub_uint32_t mask;
grub_uint32_t entry;
};
struct cas_vector
{
struct
{
struct pvr_entry terminal;
} pvr_list;
grub_uint8_t num_vecs;
grub_uint8_t vec1_size;
grub_uint8_t vec1;
grub_uint8_t vec2_size;
struct option_vector2 vec2;
grub_uint8_t vec3_size;
grub_uint16_t vec3;
grub_uint8_t vec4_size;
grub_uint16_t vec4;
grub_uint8_t vec5_size;
struct option_vector5 vec5;
} GRUB_PACKED;
/*
* Call ibm,client-architecture-support to try to get more RMA.
* We ask for 512MB which should be enough to verify a distro kernel.
* We ignore most errors: if we don't succeed we'll proceed with whatever
* memory we have.
*/
static void
grub_ieee1275_ibm_cas (void)
{
int rc;
grub_ieee1275_ihandle_t root;
struct cas_args
{
struct grub_ieee1275_common_hdr common;
grub_ieee1275_cell_t method;
grub_ieee1275_ihandle_t ihandle;
grub_ieee1275_cell_t cas_addr;
grub_ieee1275_cell_t result;
} args;
struct cas_vector vector =
{
.pvr_list = { { 0x00000000, 0xffffffff } }, /* any processor */
.num_vecs = 5 - 1,
.vec1_size = 0,
.vec1 = 0x80, /* ignore */
.vec2_size = 1 + sizeof (struct option_vector2) - 2,
.vec2 = {
0, 0, -1, -1, -1, -1, -1, 512, -1, 0, 48
},
.vec3_size = 2 - 1,
.vec3 = 0x00e0, /* ask for FP + VMX + DFP but don't halt if unsatisfied */
.vec4_size = 2 - 1,
.vec4 = 0x0001, /* set required minimum capacity % to the lowest value */
.vec5_size = 1 + sizeof (struct option_vector5) - 2,
.vec5 = {
0, BYTE2, 0, CMO, 0, 0, 0, 0, MAX_CPU
}
};
INIT_IEEE1275_COMMON (&args.common, "call-method", 3, 2);
args.method = (grub_ieee1275_cell_t) "ibm,client-architecture-support";
rc = grub_ieee1275_open ("/", &root);
if (rc)
{
grub_error (GRUB_ERR_IO, "could not open root when trying to call CAS");
return;
}
args.ihandle = root;
args.cas_addr = (grub_ieee1275_cell_t) &vector;
grub_printf ("Calling ibm,client-architecture-support from grub...");
IEEE1275_CALL_ENTRY_FN (&args);
grub_printf ("done\n");
grub_ieee1275_close (root);
}
#endif /* __powerpc__ */
static void
grub_claim_heap (void)
{
grub_err_t err;
grub_uint32_t total = HEAP_MAX_SIZE;
err = grub_ieee1275_total_mem (&rmo_top);
/*
* If we cannot size the available memory, we can't be sure we're leaving
* space for the kernel, initrd and things Linux loads early in boot. So only
* allow further allocations from firmware on success
*/
if (err == GRUB_ERR_NONE)
grub_mm_add_region_fn = grub_ieee1275_mm_add_region;
#if defined(__powerpc__)
if (grub_ieee1275_test_flag (GRUB_IEEE1275_FLAG_CAN_TRY_CAS_FOR_MORE_MEMORY))
{
/* if we have an error, don't call CAS, just hope for the best */
if (err == GRUB_ERR_NONE && rmo_top < (512 * 1024 * 1024))
grub_ieee1275_ibm_cas ();
}
#endif
grub_machine_mmap_iterate (heap_init, &total);
}
#endif
static void
grub_parse_cmdline (void)
{
grub_ssize_t actual;
char args[256];
if (grub_ieee1275_get_property (grub_ieee1275_chosen, "bootargs", &args,
sizeof args, &actual) == 0
&& actual > 1)
{
int i = 0;
while (i < actual)
{
char *command = &args[i];
char *end;
char *val;
end = grub_strchr (command, ';');
if (end == 0)
i = actual; /* No more commands after this one. */
else
{
*end = '\0';
i += end - command + 1;
while (grub_isspace(args[i]))
i++;
}
/* Process command. */
val = grub_strchr (command, '=');
if (val)
{
*val = '\0';
grub_env_set (command, val + 1);
}
}
}
}
grub_addr_t grub_modbase;
void
grub_machine_init (void)
{
grub_modbase = ALIGN_UP((grub_addr_t) _end
+ GRUB_KERNEL_MACHINE_MOD_GAP,
GRUB_KERNEL_MACHINE_MOD_ALIGN);
grub_ieee1275_init ();
grub_console_init_early ();
grub_claim_heap ();
grub_console_init_lately ();
#ifdef __sparc__
grub_obdisk_init ();
#else
grub_ofdisk_init ();
#endif
grub_parse_cmdline ();
#ifdef __i386__
grub_tsc_init ();
#else
grub_install_get_time_ms (grub_rtc_get_time_ms);
#endif
}
void
grub_machine_fini (int flags)
{
if (flags & GRUB_LOADER_FLAG_NORETURN)
{
#ifdef __sparc__
grub_obdisk_fini ();
#else
grub_ofdisk_fini ();
#endif
grub_console_fini ();
}
}
grub_uint64_t
grub_rtc_get_time_ms (void)
{
grub_uint32_t msecs = 0;
grub_ieee1275_milliseconds (&msecs);
return msecs;
}