/* SPDX-License-Identifier: GPL-2.0 */1/*2* head.S: The initial boot code for the Sparc port of Linux.3*4* Copyright (C) 1995 David S. Miller ([email protected])5* Copyright (C) 1995,1999 Pete Zaitcev ([email protected])6* Copyright (C) 1996 Miguel de Icaza ([email protected])7* Copyright (C) 1997 Jakub Jelinek ([email protected])8* Copyright (C) 1997 Michael A. Griffith ([email protected])9*10* CompactPCI platform by Eric Brower, 1999.11*/1213#include <linux/export.h>14#include <linux/version.h>15#include <linux/init.h>1617#include <asm/head.h>18#include <asm/asi.h>19#include <asm/contregs.h>20#include <asm/ptrace.h>21#include <asm/psr.h>22#include <asm/page.h>23#include <asm/kdebug.h>24#include <asm/winmacro.h>25#include <asm/thread_info.h> /* TI_UWINMASK */26#include <asm/errno.h>27#include <asm/pgtable.h> /* PGDIR_SHIFT */2829.data30/* The following are used with the prom_vector node-ops to figure out31* the cpu-type32*/33.align 434.globl cputypval35cputypval:36.asciz "sun4m"37.ascii " "3839/* Tested on SS-5, SS-10 */40.align 441cputypvar:42.asciz "compatible"4344.align 44546notsup:47.asciz "Sparc-Linux sun4/sun4c or MMU-less not supported\n\n"48.align 44950sun4e_notsup:51.asciz "Sparc-Linux sun4e support does not exist\n\n"52.align 45354/* The trap-table - located in the __HEAD section */55#include "ttable_32.S"5657.align PAGE_SIZE5859/* This was the only reasonable way I could think of to properly align60* these page-table data structures.61*/62.globl empty_zero_page63empty_zero_page: .skip PAGE_SIZE64EXPORT_SYMBOL(empty_zero_page)6566.global root_flags67.global ram_flags68.global root_dev69.global sparc_ramdisk_image70.global sparc_ramdisk_size7172/* This stuff has to be in sync with SILO and other potential boot loaders73* Fields should be kept upward compatible and whenever any change is made,74* HdrS version should be incremented.75*/76.ascii "HdrS"77.word LINUX_VERSION_CODE78.half 0x0203 /* HdrS version */79root_flags:80.half 181root_dev:82.half 083ram_flags:84.half 085sparc_ramdisk_image:86.word 087sparc_ramdisk_size:88.word 089.word reboot_command90.word 0, 0, 091.word _end9293/* Cool, here we go. Pick up the romvec pointer in %o0 and stash it in94* %g7 and at prom_vector_p. And also quickly check whether we are on95* a v0, v2, or v3 prom.96*/97gokernel:98/* Ok, it's nice to know, as early as possible, if we99* are already mapped where we expect to be in virtual100* memory. The Solaris /boot elf format bootloader101* will peek into our elf header and load us where102* we want to be, otherwise we have to re-map.103*104* Some boot loaders don't place the jmp'rs address105* in %o7, so we do a pc-relative call to a local106* label, then see what %o7 has.107*/108109mov %o7, %g4 ! Save %o7110111/* Jump to it, and pray... */112current_pc:113call 1f114nop1151161:117mov %o7, %g3118119tst %o0120bne 2f121mov %g4, %o7 /* Previous %o7. */122sethi %hi(no_sun4u_here), %l1123jmpl %l1 + %lo(no_sun4u_here), %g0124nop1252:126mov %o0, %l0 ! stash away romvec127mov %o0, %g7 ! put it here too128mov %o1, %l1 ! stash away debug_vec too129130/* Ok, let's check out our run time program counter. */131set current_pc, %g5132cmp %g3, %g5133be already_mapped134nop135136/* %l6 will hold the offset we have to subtract137* from absolute symbols in order to access areas138* in our own image. If already mapped this is139* just plain zero, else it is KERNBASE.140*/141set KERNBASE, %l6142b copy_prom_lvl14143nop144145already_mapped:146mov 0, %l6147148/* Copy over the Prom's level 14 clock handler. */149copy_prom_lvl14:150#if 1151/* DJHR152* preserve our linked/calculated instructions153*/154set lvl14_save, %g1155set t_irq14, %g3156sub %g1, %l6, %g1 ! translate to physical157sub %g3, %l6, %g3 ! translate to physical158ldd [%g3], %g4159std %g4, [%g1]160ldd [%g3+8], %g4161std %g4, [%g1+8]162#endif163rd %tbr, %g1164andn %g1, 0xfff, %g1 ! proms trap table base165or %g0, (0x1e<<4), %g2 ! offset to lvl14 intr166or %g1, %g2, %g2167set t_irq14, %g3168sub %g3, %l6, %g3169ldd [%g2], %g4170std %g4, [%g3]171ldd [%g2 + 0x8], %g4172std %g4, [%g3 + 0x8] ! Copy proms handler173174/* DON'T TOUCH %l0 thru %l5 in these remapping routines,175* we need their values afterwards!176*/177178/* Now check whether we are already mapped, if we179* are we can skip all this garbage coming up.180*/181copy_prom_done:182cmp %l6, 0183be go_to_highmem ! this will be a nop then184nop185186/* Validate that we are in fact running on an187* SRMMU based cpu.188*/189set 0x4000, %g6190cmp %g7, %g6191bne not_a_sun4192nop193194halt_notsup:195ld [%g7 + 0x68], %o1196set notsup, %o0197sub %o0, %l6, %o0198call %o1199nop200sethi %hi(halt_me), %o0201jmpl %o0 + %lo(halt_me), %g0202nop203204not_a_sun4:205/* It looks like this is a machine we support.206* Now find out what MMU we are dealing with207* LEON - identified by the psr.impl field208* Viking - identified by the psr.impl field209* In all other cases a sun4m srmmu.210* We check that the MMU is enabled in all cases.211*/212213/* Check if this is a LEON CPU */214rd %psr, %g3215srl %g3, PSR_IMPL_SHIFT, %g3216and %g3, PSR_IMPL_SHIFTED_MASK, %g3217cmp %g3, PSR_IMPL_LEON218be leon_remap /* It is a LEON - jump */219nop220221/* Sanity-check, is MMU enabled */222lda [%g0] ASI_M_MMUREGS, %g1223andcc %g1, 1, %g0224be halt_notsup225nop226227/* Check for a viking (TI) module. */228cmp %g3, PSR_IMPL_TI229bne srmmu_not_viking230nop231232/* Figure out what kind of viking we are on.233* We need to know if we have to play with the234* AC bit and disable traps or not.235*/236237/* I've only seen MicroSparc's on SparcClassics with this238* bit set.239*/240set 0x800, %g2241lda [%g0] ASI_M_MMUREGS, %g3 ! peek in the control reg242and %g2, %g3, %g3243subcc %g3, 0x0, %g0244bnz srmmu_not_viking ! is in mbus mode245nop246247rd %psr, %g3 ! DO NOT TOUCH %g3248andn %g3, PSR_ET, %g2249wr %g2, 0x0, %psr250WRITE_PAUSE251252/* Get context table pointer, then convert to253* a physical address, which is 36 bits.254*/255set AC_M_CTPR, %g4256lda [%g4] ASI_M_MMUREGS, %g4257sll %g4, 0x4, %g4 ! We use this below258! DO NOT TOUCH %g4259260/* Set the AC bit in the Viking's MMU control reg. */261lda [%g0] ASI_M_MMUREGS, %g5 ! DO NOT TOUCH %g5262set 0x8000, %g6 ! AC bit mask263or %g5, %g6, %g6 ! Or it in...264sta %g6, [%g0] ASI_M_MMUREGS ! Close your eyes...265266/* Grrr, why does it seem like every other load/store267* on the sun4m is in some ASI space...268* Fine with me, let's get the pointer to the level 1269* page table directory and fetch its entry.270*/271lda [%g4] ASI_M_BYPASS, %o1 ! This is a level 1 ptr272srl %o1, 0x4, %o1 ! Clear low 4 bits273sll %o1, 0x8, %o1 ! Make physical274275/* Ok, pull in the PTD. */276lda [%o1] ASI_M_BYPASS, %o2 ! This is the 0x0 16MB pgd277278/* Calculate to KERNBASE entry. */279add %o1, KERNBASE >> (PGDIR_SHIFT - 2), %o3280281/* Poke the entry into the calculated address. */282sta %o2, [%o3] ASI_M_BYPASS283284/* I don't get it Sun, if you engineered all these285* boot loaders and the PROM (thank you for the debugging286* features btw) why did you not have them load kernel287* images up in high address space, since this is necessary288* for ABI compliance anyways? Does this low-mapping provide289* enhanced interoperability?290*291* "The PROM is the computer."292*/293294/* Ok, restore the MMU control register we saved in %g5 */295sta %g5, [%g0] ASI_M_MMUREGS ! POW... ouch296297/* Turn traps back on. We saved it in %g3 earlier. */298wr %g3, 0x0, %psr ! tick tock, tick tock299300/* Now we burn precious CPU cycles due to bad engineering. */301WRITE_PAUSE302303/* Wow, all that just to move a 32-bit value from one304* place to another... Jump to high memory.305*/306b go_to_highmem307nop308309srmmu_not_viking:310/* This works on viking's in Mbus mode and all311* other MBUS modules. It is virtually the same as312* the above madness sans turning traps off and flipping313* the AC bit.314*/315set AC_M_CTPR, %g1316lda [%g1] ASI_M_MMUREGS, %g1 ! get ctx table ptr317sll %g1, 0x4, %g1 ! make physical addr318lda [%g1] ASI_M_BYPASS, %g1 ! ptr to level 1 pg_table319srl %g1, 0x4, %g1320sll %g1, 0x8, %g1 ! make phys addr for l1 tbl321322lda [%g1] ASI_M_BYPASS, %g2 ! get level1 entry for 0x0323add %g1, KERNBASE >> (PGDIR_SHIFT - 2), %g3324sta %g2, [%g3] ASI_M_BYPASS ! place at KERNBASE entry325b go_to_highmem326nop ! wheee....327328329leon_remap:330/* Sanity-check, is MMU enabled */331lda [%g0] ASI_LEON_MMUREGS, %g1332andcc %g1, 1, %g0333be halt_notsup334nop335336/* Same code as in the srmmu_not_viking case,337* with the LEON ASI for mmuregs338*/339set AC_M_CTPR, %g1340lda [%g1] ASI_LEON_MMUREGS, %g1 ! get ctx table ptr341sll %g1, 0x4, %g1 ! make physical addr342lda [%g1] ASI_M_BYPASS, %g1 ! ptr to level 1 pg_table343srl %g1, 0x4, %g1344sll %g1, 0x8, %g1 ! make phys addr for l1 tbl345346lda [%g1] ASI_M_BYPASS, %g2 ! get level1 entry for 0x0347add %g1, KERNBASE >> (PGDIR_SHIFT - 2), %g3348sta %g2, [%g3] ASI_M_BYPASS ! place at KERNBASE entry349b go_to_highmem350nop ! wheee....351352/* Now do a non-relative jump so that PC is in high-memory */353go_to_highmem:354set execute_in_high_mem, %g1355jmpl %g1, %g0356nop357358/* The code above should be at beginning and we have to take care about359* short jumps, as branching to .init.text section from .text is usually360* impossible */361__INIT362/* Acquire boot time privileged register values, this will help debugging.363* I figure out and store nwindows and nwindowsm1 later on.364*/365execute_in_high_mem:366mov %l0, %o0 ! put back romvec367mov %l1, %o1 ! and debug_vec368369sethi %hi(prom_vector_p), %g1370st %o0, [%g1 + %lo(prom_vector_p)]371372sethi %hi(linux_dbvec), %g1373st %o1, [%g1 + %lo(linux_dbvec)]374375/* Get the machine type via the romvec376* getprops node operation377*/378add %g7, 0x1c, %l1379ld [%l1], %l0380ld [%l0], %l0381call %l0382or %g0, %g0, %o0 ! next_node(0) = first_node383or %o0, %g0, %g6384385sethi %hi(cputypvar), %o1 ! First node has cpu-arch386or %o1, %lo(cputypvar), %o1387sethi %hi(cputypval), %o2 ! information, the string388or %o2, %lo(cputypval), %o2389ld [%l1], %l0 ! 'compatible' tells390ld [%l0 + 0xc], %l0 ! that we want 'sun4x' where391call %l0 ! x is one of 'm', 'd' or 'e'.392nop ! %o2 holds pointer393! to a buf where above string394! will get stored by the prom.395396397/* Check value of "compatible" property.398* "value" => "model"399* leon => sparc_leon400* sun4m => sun4m401* sun4s => sun4m402* sun4d => sun4d403* sun4e => "no_sun4e_here"404* '*' => "no_sun4u_here"405* Check single letters only406*/407408set cputypval, %o2409/* If cputypval[0] == 'l' (lower case letter L) this is leon */410ldub [%o2], %l1411cmp %l1, 'l'412be leon_init413nop414415/* Check cputypval[4] to find the sun model */416ldub [%o2 + 0x4], %l1417418cmp %l1, 'm'419be sun4m_init420cmp %l1, 's'421be sun4m_init422cmp %l1, 'd'423be sun4d_init424cmp %l1, 'e'425be no_sun4e_here ! Could be a sun4e.426nop427b no_sun4u_here ! AIEEE, a V9 sun4u... Get our BIG BROTHER kernel :))428nop429430leon_init:431/* LEON CPU - set boot_cpu_id */432sethi %hi(boot_cpu_id), %g2 ! boot-cpu index433434#ifdef CONFIG_SMP435ldub [%g2 + %lo(boot_cpu_id)], %g1436cmp %g1, 0xff ! unset means first CPU437be 1f438sethi %hi(leon_smp_cpu_startup), %g1439jmpl %g1 + %lo(leon_smp_cpu_startup), %g0440nop4411:442#endif443/* Get CPU-ID from most significant 4-bit of ASR17 */444rd %asr17, %g1445srl %g1, 28, %g1446447/* Update boot_cpu_id only on boot cpu */448stub %g1, [%g2 + %lo(boot_cpu_id)]449450ba continue_boot451nop452453/* CPUID in bootbus can be found at PA 0xff0140000 */454#define SUN4D_BOOTBUS_CPUID 0xf0140000455456sun4d_init:457/* Need to patch call to handler_irq */458set patch_handler_irq, %g4459set sun4d_handler_irq, %g5460sethi %hi(0x40000000), %g3 ! call461sub %g5, %g4, %g5462srl %g5, 2, %g5463or %g5, %g3, %g5464st %g5, [%g4]465466#ifdef CONFIG_SMP467/* Get our CPU id out of bootbus */468set SUN4D_BOOTBUS_CPUID, %g3469lduba [%g3] ASI_M_CTL, %g3470and %g3, 0xf8, %g3471srl %g3, 3, %g4472sta %g4, [%g0] ASI_M_VIKING_TMP1473sethi %hi(boot_cpu_id), %g5474stb %g4, [%g5 + %lo(boot_cpu_id)]475#endif476477/* Fall through to sun4m_init */478479sun4m_init:480/* Ok, the PROM could have done funny things and apple cider could still481* be sitting in the fault status/address registers. Read them all to482* clear them so we don't get magic faults later on.483*/484/* This sucks, apparently this makes Vikings call prom panic, will fix later */4852:486rd %psr, %o1487srl %o1, PSR_IMPL_SHIFT, %o1 ! Get a type of the CPU488489subcc %o1, PSR_IMPL_TI, %g0 ! TI: Viking or MicroSPARC490be continue_boot491nop492493set AC_M_SFSR, %o0494lda [%o0] ASI_M_MMUREGS, %g0495set AC_M_SFAR, %o0496lda [%o0] ASI_M_MMUREGS, %g0497498/* Fujitsu MicroSPARC-II has no asynchronous flavors of FARs */499subcc %o1, 0, %g0500be continue_boot501nop502503set AC_M_AFSR, %o0504lda [%o0] ASI_M_MMUREGS, %g0505set AC_M_AFAR, %o0506lda [%o0] ASI_M_MMUREGS, %g0507nop508509510continue_boot:511512/* Aieee, now set PC and nPC, enable traps, give ourselves a stack and it's513* show-time!514*/515/* Turn on Supervisor, EnableFloating, and all the PIL bits.516* Also puts us in register window zero with traps off.517*/518set (PSR_PS | PSR_S | PSR_PIL | PSR_EF), %g2519wr %g2, 0x0, %psr520WRITE_PAUSE521522/* I want a kernel stack NOW! */523set init_thread_union, %g1524set (THREAD_SIZE - STACKFRAME_SZ - TRACEREG_SZ), %g2525add %g1, %g2, %sp526mov 0, %fp /* And for good luck */527528/* Zero out our BSS section. */529set __bss_start , %o0 ! First address of BSS530set _end , %o1 ! Last address of BSS531add %o0, 0x1, %o05321:533stb %g0, [%o0]534subcc %o0, %o1, %g0535bl 1b536add %o0, 0x1, %o0537538/* If boot_cpu_id has not been setup by machine specific539* init-code above we default it to zero.540*/541sethi %hi(boot_cpu_id), %g2542ldub [%g2 + %lo(boot_cpu_id)], %g3543cmp %g3, 0xff544bne 1f545nop546mov %g0, %g3547stub %g3, [%g2 + %lo(boot_cpu_id)]5485491: sll %g3, 2, %g3550551/* Initialize the uwinmask value for init task just in case.552* But first make current_set[boot_cpu_id] point to something useful.553*/554set init_thread_union, %g6555set current_set, %g2556#ifdef CONFIG_SMP557st %g6, [%g2]558add %g2, %g3, %g2559#endif560st %g6, [%g2]561562st %g0, [%g6 + TI_UWINMASK]563564/* Compute NWINDOWS and stash it away. Now uses %wim trick explained565* in the V8 manual. Ok, this method seems to work, Sparc is cool...566* No, it doesn't work, have to play the save/readCWP/restore trick.567*/568569wr %g0, 0x0, %wim ! so we do not get a trap570WRITE_PAUSE571572save573574rd %psr, %g3575576restore577578and %g3, 0x1f, %g3579add %g3, 0x1, %g3580581mov 2, %g1582wr %g1, 0x0, %wim ! make window 1 invalid583WRITE_PAUSE584585cmp %g3, 0x7586bne 2f587nop588589/* Adjust our window handling routines to590* do things correctly on 7 window Sparcs.591*/592593#define PATCH_INSN(src, dest) \594set src, %g5; \595set dest, %g2; \596ld [%g5], %g4; \597st %g4, [%g2];598599/* Patch for window spills... */600PATCH_INSN(spnwin_patch1_7win, spnwin_patch1)601PATCH_INSN(spnwin_patch2_7win, spnwin_patch2)602PATCH_INSN(spnwin_patch3_7win, spnwin_patch3)603604/* Patch for window fills... */605PATCH_INSN(fnwin_patch1_7win, fnwin_patch1)606PATCH_INSN(fnwin_patch2_7win, fnwin_patch2)607608/* Patch for trap entry setup... */609PATCH_INSN(tsetup_7win_patch1, tsetup_patch1)610PATCH_INSN(tsetup_7win_patch2, tsetup_patch2)611PATCH_INSN(tsetup_7win_patch3, tsetup_patch3)612PATCH_INSN(tsetup_7win_patch4, tsetup_patch4)613PATCH_INSN(tsetup_7win_patch5, tsetup_patch5)614PATCH_INSN(tsetup_7win_patch6, tsetup_patch6)615616/* Patch for returning from traps... */617PATCH_INSN(rtrap_7win_patch1, rtrap_patch1)618PATCH_INSN(rtrap_7win_patch2, rtrap_patch2)619PATCH_INSN(rtrap_7win_patch3, rtrap_patch3)620PATCH_INSN(rtrap_7win_patch4, rtrap_patch4)621PATCH_INSN(rtrap_7win_patch5, rtrap_patch5)622623/* Patch for killing user windows from the register file. */624PATCH_INSN(kuw_patch1_7win, kuw_patch1)625626/* Now patch the kernel window flush sequences.627* This saves 2 traps on every switch and fork.628*/629set 0x01000000, %g4630set flush_patch_one, %g5631st %g4, [%g5 + 0x18]632st %g4, [%g5 + 0x1c]633set flush_patch_two, %g5634st %g4, [%g5 + 0x18]635st %g4, [%g5 + 0x1c]636set flush_patch_three, %g5637st %g4, [%g5 + 0x18]638st %g4, [%g5 + 0x1c]639set flush_patch_four, %g5640st %g4, [%g5 + 0x18]641st %g4, [%g5 + 0x1c]642set flush_patch_exception, %g5643st %g4, [%g5 + 0x18]644st %g4, [%g5 + 0x1c]645set flush_patch_switch, %g5646st %g4, [%g5 + 0x18]647st %g4, [%g5 + 0x1c]6486492:650sethi %hi(nwindows), %g4651st %g3, [%g4 + %lo(nwindows)] ! store final value652sub %g3, 0x1, %g3653sethi %hi(nwindowsm1), %g4654st %g3, [%g4 + %lo(nwindowsm1)]655656/* Here we go, start using Linux's trap table... */657set trapbase, %g3658wr %g3, 0x0, %tbr659WRITE_PAUSE660661/* Finally, turn on traps so that we can call c-code. */662rd %psr, %g3663wr %g3, 0x0, %psr664WRITE_PAUSE665666wr %g3, PSR_ET, %psr667WRITE_PAUSE668669/* Call sparc32_start_kernel(struct linux_romvec *rp) */670sethi %hi(prom_vector_p), %g5671ld [%g5 + %lo(prom_vector_p)], %o0672call sparc32_start_kernel673nop674675/* We should not get here. */676call halt_me677nop678679no_sun4e_here:680ld [%g7 + 0x68], %o1681set sun4e_notsup, %o0682call %o1683nop684b halt_me685nop686687__INITDATA688689sun4u_1:690.asciz "finddevice"691.align 4692sun4u_2:693.asciz "/chosen"694.align 4695sun4u_3:696.asciz "getprop"697.align 4698sun4u_4:699.asciz "stdout"700.align 4701sun4u_5:702.asciz "write"703.align 4704sun4u_6:705.asciz "\n\rOn sun4u you have to use sparc64 kernel\n\rand not a sparc32 version\n\r\n\r"706sun4u_6e:707.align 4708sun4u_7:709.asciz "exit"710.align 8711sun4u_a1:712.word 0, sun4u_1, 0, 1, 0, 1, 0, sun4u_2, 0713sun4u_r1:714.word 0715sun4u_a2:716.word 0, sun4u_3, 0, 4, 0, 1, 0717sun4u_i2:718.word 0, 0, sun4u_4, 0, sun4u_1, 0, 8, 0719sun4u_r2:720.word 0721sun4u_a3:722.word 0, sun4u_5, 0, 3, 0, 1, 0723sun4u_i3:724.word 0, 0, sun4u_6, 0, sun4u_6e - sun4u_6 - 1, 0725sun4u_r3:726.word 0727sun4u_a4:728.word 0, sun4u_7, 0, 0, 0, 0729sun4u_r4:730731__INIT732no_sun4u_here:733set sun4u_a1, %o0734set current_pc, %l2735cmp %l2, %g3736be 1f737mov %o4, %l0738sub %g3, %l2, %l6739add %o0, %l6, %o0740mov %o0, %l4741mov sun4u_r4 - sun4u_a1, %l3742ld [%l4], %l57432:744add %l4, 4, %l4745cmp %l5, %l2746add %l5, %l6, %l5747bgeu,a 3f748st %l5, [%l4 - 4]7493:750subcc %l3, 4, %l3751bne 2b752ld [%l4], %l57531:754call %l0755mov %o0, %l1756757ld [%l1 + (sun4u_r1 - sun4u_a1)], %o1758add %l1, (sun4u_a2 - sun4u_a1), %o0759call %l0760st %o1, [%o0 + (sun4u_i2 - sun4u_a2)]761762ld [%l1 + (sun4u_1 - sun4u_a1)], %o1763add %l1, (sun4u_a3 - sun4u_a1), %o0764call %l0765st %o1, [%o0 + (sun4u_i3 - sun4u_a3)]766767call %l0768add %l1, (sun4u_a4 - sun4u_a1), %o0769770/* Not reached */771halt_me:772ld [%g7 + 0x74], %o0773call %o0 ! Get us out of here...774nop ! Apparently Solaris is better.775776/* Ok, now we continue in the .data/.text sections */777778.data779.align 4780781/*782* Fill up the prom vector, note in particular the kind first element,783* no joke. I don't need all of them in here as the entire prom vector784* gets initialized in c-code so all routines can use it.785*/786787prom_vector_p:788.word 0789790/* We calculate the following at boot time, window fills/spills and trap entry791* code uses these to keep track of the register windows.792*/793794.align 4795.globl nwindows796.globl nwindowsm1797nwindows:798.word 8799nwindowsm1:800.word 7801802/* Boot time debugger vector value. We need this later on. */803804.align 4805.globl linux_dbvec806linux_dbvec:807.word 0808.word 0809810.align 8811812.globl lvl14_save813lvl14_save:814.word 0815.word 0816.word 0817.word 0818.word t_irq14819820821