// SPDX-License-Identifier: GPL-2.01/*2* arch/alpha/boot/bootpz.c3*4* Copyright (C) 1997 Jay Estabrook5*6* This file is used for creating a compressed BOOTP file for the7* Linux/AXP kernel8*9* based significantly on the arch/alpha/boot/main.c of Linus Torvalds10* and the decompression code from MILO.11*/12#include <linux/kernel.h>13#include <linux/slab.h>14#include <linux/string.h>15#include <generated/utsrelease.h>16#include <linux/mm.h>1718#include <asm/console.h>19#include <asm/hwrpb.h>20#include <asm/io.h>2122#include <linux/stdarg.h>2324#include "kzsize.h"2526/* FIXME FIXME FIXME */27#define MALLOC_AREA_SIZE 0x200000 /* 2MB for now */28/* FIXME FIXME FIXME */293031/*32WARNING NOTE3334It is very possible that turning on additional messages may cause35kernel image corruption due to stack usage to do the printing.3637*/3839#undef DEBUG_CHECK_RANGE40#undef DEBUG_ADDRESSES41#undef DEBUG_LAST_STEPS4243extern unsigned long switch_to_osf_pal(unsigned long nr,44struct pcb_struct * pcb_va, struct pcb_struct * pcb_pa,45unsigned long *vptb);4647extern int decompress_kernel(void* destination, void *source,48size_t ksize, size_t kzsize);4950extern void move_stack(unsigned long new_stack);5152struct hwrpb_struct *hwrpb = INIT_HWRPB;53static struct pcb_struct pcb_va[1];5455/*56* Find a physical address of a virtual object..57*58* This is easy using the virtual page table address.59*/60#define VPTB ((unsigned long *) 0x200000000)6162static inline unsigned long63find_pa(unsigned long address)64{65unsigned long result;6667result = VPTB[address >> 13];68result >>= 32;69result <<= 13;70result |= address & 0x1fff;71return result;72}7374int75check_range(unsigned long vstart, unsigned long vend,76unsigned long kstart, unsigned long kend)77{78unsigned long vaddr, kaddr;7980#ifdef DEBUG_CHECK_RANGE81srm_printk("check_range: V[0x%lx:0x%lx] K[0x%lx:0x%lx]\n",82vstart, vend, kstart, kend);83#endif84/* do some range checking for detecting an overlap... */85for (vaddr = vstart; vaddr <= vend; vaddr += PAGE_SIZE)86{87kaddr = (find_pa(vaddr) | PAGE_OFFSET);88if (kaddr >= kstart && kaddr <= kend)89{90#ifdef DEBUG_CHECK_RANGE91srm_printk("OVERLAP: vaddr 0x%lx kaddr 0x%lx"92" [0x%lx:0x%lx]\n",93vaddr, kaddr, kstart, kend);94#endif95return 1;96}97}98return 0;99}100101/*102* This function moves into OSF/1 pal-code, and has a temporary103* PCB for that. The kernel proper should replace this PCB with104* the real one as soon as possible.105*106* The page table muckery in here depends on the fact that the boot107* code has the L1 page table identity-map itself in the second PTE108* in the L1 page table. Thus the L1-page is virtually addressable109* itself (through three levels) at virtual address 0x200802000.110*/111112#define L1 ((unsigned long *) 0x200802000)113114void115pal_init(void)116{117unsigned long i, rev;118struct percpu_struct * percpu;119struct pcb_struct * pcb_pa;120121/* Create the dummy PCB. */122pcb_va->ksp = 0;123pcb_va->usp = 0;124pcb_va->ptbr = L1[1] >> 32;125pcb_va->asn = 0;126pcb_va->pcc = 0;127pcb_va->unique = 0;128pcb_va->flags = 1;129pcb_va->res1 = 0;130pcb_va->res2 = 0;131pcb_pa = (struct pcb_struct *)find_pa((unsigned long)pcb_va);132133/*134* a0 = 2 (OSF)135* a1 = return address, but we give the asm the vaddr of the PCB136* a2 = physical addr of PCB137* a3 = new virtual page table pointer138* a4 = KSP (but the asm sets it)139*/140srm_printk("Switching to OSF PAL-code... ");141142i = switch_to_osf_pal(2, pcb_va, pcb_pa, VPTB);143if (i) {144srm_printk("failed, code %ld\n", i);145__halt();146}147148percpu = (struct percpu_struct *)149(INIT_HWRPB->processor_offset + (unsigned long) INIT_HWRPB);150rev = percpu->pal_revision = percpu->palcode_avail[2];151152srm_printk("OK (rev %lx)\n", rev);153154tbia(); /* do it directly in case we are SMP */155}156157/*158* Start the kernel.159*/160static inline void161runkernel(void)162{163__asm__ __volatile__(164"bis %0,%0,$27\n\t"165"jmp ($27)"166: /* no outputs: it doesn't even return */167: "r" (START_ADDR));168}169170/* Must record the SP (it is virtual) on entry, so we can make sure171not to overwrite it during movement or decompression. */172unsigned long SP_on_entry;173174/* Calculate the kernel image address based on the end of the BOOTP175bootstrapper (ie this program).176*/177extern char _end;178#define KERNEL_ORIGIN \179((((unsigned long)&_end) + 511) & ~511)180181/* Round address to next higher page boundary. */182#define NEXT_PAGE(a) (((a) | (PAGE_SIZE - 1)) + 1)183184#ifdef INITRD_IMAGE_SIZE185# define REAL_INITRD_SIZE INITRD_IMAGE_SIZE186#else187# define REAL_INITRD_SIZE 0188#endif189190/* Defines from include/asm-alpha/system.h191192BOOT_ADDR Virtual address at which the consoles loads193the BOOTP image.194195KERNEL_START KSEG address at which the kernel is built to run,196which includes some initial data pages before the197code.198199START_ADDR KSEG address of the entry point of kernel code.200201ZERO_PGE KSEG address of page full of zeroes, but202upon entry to kernel, it can be expected203to hold the parameter list and possible204INTRD information.205206These are used in the local defines below.207*/208209210/* Virtual addresses for the BOOTP image. Note that this includes the211bootstrapper code as well as the compressed kernel image, and212possibly the INITRD image.213214Oh, and do NOT forget the STACK, which appears to be placed virtually215beyond the end of the loaded image.216*/217#define V_BOOT_IMAGE_START BOOT_ADDR218#define V_BOOT_IMAGE_END SP_on_entry219220/* Virtual addresses for just the bootstrapper part of the BOOTP image. */221#define V_BOOTSTRAPPER_START BOOT_ADDR222#define V_BOOTSTRAPPER_END KERNEL_ORIGIN223224/* Virtual addresses for just the data part of the BOOTP225image. This may also include the INITRD image, but always226includes the STACK.227*/228#define V_DATA_START KERNEL_ORIGIN229#define V_INITRD_START (KERNEL_ORIGIN + KERNEL_Z_SIZE)230#define V_INTRD_END (V_INITRD_START + REAL_INITRD_SIZE)231#define V_DATA_END V_BOOT_IMAGE_END232233/* KSEG addresses for the uncompressed kernel.234235Note that the end address includes workspace for the decompression.236Note also that the DATA_START address is ZERO_PGE, to which we write237just before jumping to the kernel image at START_ADDR.238*/239#define K_KERNEL_DATA_START ZERO_PGE240#define K_KERNEL_IMAGE_START START_ADDR241#define K_KERNEL_IMAGE_END (START_ADDR + KERNEL_SIZE)242243/* Define to where we may have to decompress the kernel image, before244we move it to the final position, in case of overlap. This will be245above the final position of the kernel.246247Regardless of overlap, we move the INITRD image to the end of this248copy area, because there needs to be a buffer area after the kernel249for "bootmem" anyway.250*/251#define K_COPY_IMAGE_START NEXT_PAGE(K_KERNEL_IMAGE_END)252/* Reserve one page below INITRD for the new stack. */253#define K_INITRD_START \254NEXT_PAGE(K_COPY_IMAGE_START + KERNEL_SIZE + PAGE_SIZE)255#define K_COPY_IMAGE_END \256(K_INITRD_START + REAL_INITRD_SIZE + MALLOC_AREA_SIZE)257#define K_COPY_IMAGE_SIZE \258NEXT_PAGE(K_COPY_IMAGE_END - K_COPY_IMAGE_START)259260void261start_kernel(void)262{263int must_move = 0;264265/* Initialize these for the decompression-in-place situation,266which is the smallest amount of work and most likely to267occur when using the normal START_ADDR of the kernel268(currently set to 16MB, to clear all console code.269*/270unsigned long uncompressed_image_start = K_KERNEL_IMAGE_START;271unsigned long uncompressed_image_end = K_KERNEL_IMAGE_END;272273unsigned long initrd_image_start = K_INITRD_START;274275/*276* Note that this crufty stuff with static and envval277* and envbuf is because:278*279* 1. Frequently, the stack is short, and we don't want to overrun;280* 2. Frequently the stack is where we are going to copy the kernel to;281* 3. A certain SRM console required the GET_ENV output to stack.282* ??? A comment in the aboot sources indicates that the GET_ENV283* destination must be quadword aligned. Might this explain the284* behaviour, rather than requiring output to the stack, which285* seems rather far-fetched.286*/287static long nbytes;288static char envval[256] __attribute__((aligned(8)));289register unsigned long asm_sp asm("30");290291SP_on_entry = asm_sp;292293srm_printk("Linux/Alpha BOOTPZ Loader for Linux " UTS_RELEASE "\n");294295/* Validity check the HWRPB. */296if (INIT_HWRPB->pagesize != 8192) {297srm_printk("Expected 8kB pages, got %ldkB\n",298INIT_HWRPB->pagesize >> 10);299return;300}301if (INIT_HWRPB->vptb != (unsigned long) VPTB) {302srm_printk("Expected vptb at %p, got %p\n",303VPTB, (void *)INIT_HWRPB->vptb);304return;305}306307/* PALcode (re)initialization. */308pal_init();309310/* Get the parameter list from the console environment variable. */311nbytes = callback_getenv(ENV_BOOTED_OSFLAGS, envval, sizeof(envval));312if (nbytes < 0 || nbytes >= sizeof(envval)) {313nbytes = 0;314}315envval[nbytes] = '\0';316317#ifdef DEBUG_ADDRESSES318srm_printk("START_ADDR 0x%lx\n", START_ADDR);319srm_printk("KERNEL_ORIGIN 0x%lx\n", KERNEL_ORIGIN);320srm_printk("KERNEL_SIZE 0x%x\n", KERNEL_SIZE);321srm_printk("KERNEL_Z_SIZE 0x%x\n", KERNEL_Z_SIZE);322#endif323324/* Since all the SRM consoles load the BOOTP image at virtual325* 0x20000000, we have to ensure that the physical memory326* pages occupied by that image do NOT overlap the physical327* address range where the kernel wants to be run. This328* causes real problems when attempting to cdecompress the329* former into the latter... :-(330*331* So, we may have to decompress/move the kernel/INITRD image332* virtual-to-physical someplace else first before moving333* kernel /INITRD to their final resting places... ;-}334*335* Sigh...336*/337338/* First, check to see if the range of addresses occupied by339the bootstrapper part of the BOOTP image include any of the340physical pages into which the kernel will be placed for341execution.342343We only need check on the final kernel image range, since we344will put the INITRD someplace that we can be sure is not345in conflict.346*/347if (check_range(V_BOOTSTRAPPER_START, V_BOOTSTRAPPER_END,348K_KERNEL_DATA_START, K_KERNEL_IMAGE_END))349{350srm_printk("FATAL ERROR: overlap of bootstrapper code\n");351__halt();352}353354/* Next, check to see if the range of addresses occupied by355the compressed kernel/INITRD/stack portion of the BOOTP356image include any of the physical pages into which the357decompressed kernel or the INITRD will be placed for358execution.359*/360if (check_range(V_DATA_START, V_DATA_END,361K_KERNEL_IMAGE_START, K_COPY_IMAGE_END))362{363#ifdef DEBUG_ADDRESSES364srm_printk("OVERLAP: cannot decompress in place\n");365#endif366uncompressed_image_start = K_COPY_IMAGE_START;367uncompressed_image_end = K_COPY_IMAGE_END;368must_move = 1;369370/* Finally, check to see if the range of addresses371occupied by the compressed kernel/INITRD part of372the BOOTP image include any of the physical pages373into which that part is to be copied for374decompression.375*/376while (check_range(V_DATA_START, V_DATA_END,377uncompressed_image_start,378uncompressed_image_end))379{380#if 0381uncompressed_image_start += K_COPY_IMAGE_SIZE;382uncompressed_image_end += K_COPY_IMAGE_SIZE;383initrd_image_start += K_COPY_IMAGE_SIZE;384#else385/* Keep as close as possible to end of BOOTP image. */386uncompressed_image_start += PAGE_SIZE;387uncompressed_image_end += PAGE_SIZE;388initrd_image_start += PAGE_SIZE;389#endif390}391}392393srm_printk("Starting to load the kernel with args '%s'\n", envval);394395#ifdef DEBUG_ADDRESSES396srm_printk("Decompressing the kernel...\n"397"...from 0x%lx to 0x%lx size 0x%x\n",398V_DATA_START,399uncompressed_image_start,400KERNEL_SIZE);401#endif402decompress_kernel((void *)uncompressed_image_start,403(void *)V_DATA_START,404KERNEL_SIZE, KERNEL_Z_SIZE);405406/*407* Now, move things to their final positions, if/as required.408*/409410#ifdef INITRD_IMAGE_SIZE411412/* First, we always move the INITRD image, if present. */413#ifdef DEBUG_ADDRESSES414srm_printk("Moving the INITRD image...\n"415" from 0x%lx to 0x%lx size 0x%x\n",416V_INITRD_START,417initrd_image_start,418INITRD_IMAGE_SIZE);419#endif420memcpy((void *)initrd_image_start, (void *)V_INITRD_START,421INITRD_IMAGE_SIZE);422423#endif /* INITRD_IMAGE_SIZE */424425/* Next, we may have to move the uncompressed kernel to the426final destination.427*/428if (must_move) {429#ifdef DEBUG_ADDRESSES430srm_printk("Moving the uncompressed kernel...\n"431"...from 0x%lx to 0x%lx size 0x%x\n",432uncompressed_image_start,433K_KERNEL_IMAGE_START,434(unsigned)KERNEL_SIZE);435#endif436/*437* Move the stack to a safe place to ensure it won't be438* overwritten by kernel image.439*/440move_stack(initrd_image_start - PAGE_SIZE);441442memcpy((void *)K_KERNEL_IMAGE_START,443(void *)uncompressed_image_start, KERNEL_SIZE);444}445446/* Clear the zero page, then move the argument list in. */447#ifdef DEBUG_LAST_STEPS448srm_printk("Preparing ZERO_PGE...\n");449#endif450memset((char*)ZERO_PGE, 0, PAGE_SIZE);451strcpy((char*)ZERO_PGE, envval);452453#ifdef INITRD_IMAGE_SIZE454455#ifdef DEBUG_LAST_STEPS456srm_printk("Preparing INITRD info...\n");457#endif458/* Finally, set the INITRD paramenters for the kernel. */459((long *)(ZERO_PGE+256))[0] = initrd_image_start;460((long *)(ZERO_PGE+256))[1] = INITRD_IMAGE_SIZE;461462#endif /* INITRD_IMAGE_SIZE */463464#ifdef DEBUG_LAST_STEPS465srm_printk("Doing 'runkernel()'...\n");466#endif467runkernel();468}469470/* dummy function, should never be called. */471void *__kmalloc(size_t size, gfp_t flags)472{473return (void *)NULL;474}475476477