system.cc revision 12483
15132Sgblack@eecs.umich.edu/*
25132Sgblack@eecs.umich.edu * Copyright (c) 2007 The Hewlett-Packard Development Company
312483Smaximilian.stein@tu-dresden.de * Copyright (c) 2018 TU Dresden
45132Sgblack@eecs.umich.edu * All rights reserved.
55132Sgblack@eecs.umich.edu *
67087Snate@binkert.org * The license below extends only to copyright in the software and shall
77087Snate@binkert.org * not be construed as granting a license to any other intellectual
87087Snate@binkert.org * property including but not limited to intellectual property relating
97087Snate@binkert.org * to a hardware implementation of the functionality of the software
107087Snate@binkert.org * licensed hereunder.  You may use the software subject to the license
117087Snate@binkert.org * terms below provided that you ensure that this notice is replicated
127087Snate@binkert.org * unmodified and in its entirety in all distributions of the software,
137087Snate@binkert.org * modified or unmodified, in source code or in binary form.
145132Sgblack@eecs.umich.edu *
157087Snate@binkert.org * Redistribution and use in source and binary forms, with or without
167087Snate@binkert.org * modification, are permitted provided that the following conditions are
177087Snate@binkert.org * met: redistributions of source code must retain the above copyright
187087Snate@binkert.org * notice, this list of conditions and the following disclaimer;
197087Snate@binkert.org * redistributions in binary form must reproduce the above copyright
207087Snate@binkert.org * notice, this list of conditions and the following disclaimer in the
217087Snate@binkert.org * documentation and/or other materials provided with the distribution;
227087Snate@binkert.org * neither the name of the copyright holders nor the names of its
235132Sgblack@eecs.umich.edu * contributors may be used to endorse or promote products derived from
247087Snate@binkert.org * this software without specific prior written permission.
255132Sgblack@eecs.umich.edu *
265132Sgblack@eecs.umich.edu * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
275132Sgblack@eecs.umich.edu * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
285132Sgblack@eecs.umich.edu * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
295132Sgblack@eecs.umich.edu * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
305132Sgblack@eecs.umich.edu * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
315132Sgblack@eecs.umich.edu * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
325132Sgblack@eecs.umich.edu * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
335132Sgblack@eecs.umich.edu * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
345132Sgblack@eecs.umich.edu * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
355132Sgblack@eecs.umich.edu * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
365132Sgblack@eecs.umich.edu * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
375132Sgblack@eecs.umich.edu *
385132Sgblack@eecs.umich.edu * Authors: Gabe Black
3912483Smaximilian.stein@tu-dresden.de *          Maximilian Stein
405132Sgblack@eecs.umich.edu */
415132Sgblack@eecs.umich.edu
4211793Sbrandon.potter@amd.com#include "arch/x86/system.hh"
4311793Sbrandon.potter@amd.com
448229Snate@binkert.org#include "arch/x86/bios/intelmp.hh"
455612Sgblack@eecs.umich.edu#include "arch/x86/bios/smbios.hh"
4611793Sbrandon.potter@amd.com#include "arch/x86/isa_traits.hh"
475132Sgblack@eecs.umich.edu#include "base/loader/object_file.hh"
485299Sgblack@eecs.umich.edu#include "cpu/thread_context.hh"
495132Sgblack@eecs.umich.edu#include "params/X86System.hh"
505132Sgblack@eecs.umich.edu
515299Sgblack@eecs.umich.eduusing namespace LittleEndianGuest;
525299Sgblack@eecs.umich.eduusing namespace X86ISA;
535132Sgblack@eecs.umich.edu
545625Sgblack@eecs.umich.eduX86System::X86System(Params *p) :
555625Sgblack@eecs.umich.edu    System(p), smbiosTable(p->smbios_table),
565625Sgblack@eecs.umich.edu    mpFloatingPointer(p->intel_mp_pointer),
575627Sgblack@eecs.umich.edu    mpConfigTable(p->intel_mp_table),
585627Sgblack@eecs.umich.edu    rsdp(p->acpi_description_table_pointer)
597704Sgblack@eecs.umich.edu{
607704Sgblack@eecs.umich.edu}
615132Sgblack@eecs.umich.edu
6210554Salexandru.dutu@amd.comvoid
6310554Salexandru.dutu@amd.comX86ISA::installSegDesc(ThreadContext *tc, SegmentRegIndex seg,
646220Sgblack@eecs.umich.edu        SegDescriptor desc, bool longmode)
656220Sgblack@eecs.umich.edu{
666220Sgblack@eecs.umich.edu    uint64_t base = desc.baseLow + (desc.baseHigh << 24);
676220Sgblack@eecs.umich.edu    bool honorBase = !longmode || seg == SEGMENT_REG_FS ||
686220Sgblack@eecs.umich.edu                                  seg == SEGMENT_REG_GS ||
696220Sgblack@eecs.umich.edu                                  seg == SEGMENT_REG_TSL ||
706220Sgblack@eecs.umich.edu                                  seg == SYS_SEGMENT_REG_TR;
716220Sgblack@eecs.umich.edu    uint64_t limit = desc.limitLow | (desc.limitHigh << 16);
7212483Smaximilian.stein@tu-dresden.de    if (desc.g)
7312483Smaximilian.stein@tu-dresden.de        limit = (limit << 12) | mask(12);
746220Sgblack@eecs.umich.edu
756220Sgblack@eecs.umich.edu    SegAttr attr = 0;
766222Sgblack@eecs.umich.edu
776222Sgblack@eecs.umich.edu    attr.dpl = desc.dpl;
786222Sgblack@eecs.umich.edu    attr.unusable = 0;
796222Sgblack@eecs.umich.edu    attr.defaultSize = desc.d;
806222Sgblack@eecs.umich.edu    attr.longMode = desc.l;
816222Sgblack@eecs.umich.edu    attr.avl = desc.avl;
826222Sgblack@eecs.umich.edu    attr.granularity = desc.g;
836222Sgblack@eecs.umich.edu    attr.present = desc.p;
846222Sgblack@eecs.umich.edu    attr.system = desc.s;
856222Sgblack@eecs.umich.edu    attr.type = desc.type;
866220Sgblack@eecs.umich.edu    if (desc.s) {
876220Sgblack@eecs.umich.edu        if (desc.type.codeOrData) {
886220Sgblack@eecs.umich.edu            // Code segment
896222Sgblack@eecs.umich.edu            attr.expandDown = 0;
906220Sgblack@eecs.umich.edu            attr.readable = desc.type.r;
916222Sgblack@eecs.umich.edu            attr.writable = 0;
926220Sgblack@eecs.umich.edu        } else {
936220Sgblack@eecs.umich.edu            // Data segment
946222Sgblack@eecs.umich.edu            attr.expandDown = desc.type.e;
956220Sgblack@eecs.umich.edu            attr.readable = 1;
966220Sgblack@eecs.umich.edu            attr.writable = desc.type.w;
976220Sgblack@eecs.umich.edu        }
986220Sgblack@eecs.umich.edu    } else {
996222Sgblack@eecs.umich.edu        attr.readable = 1;
1006220Sgblack@eecs.umich.edu        attr.writable = 1;
1016220Sgblack@eecs.umich.edu        attr.expandDown = 0;
1026220Sgblack@eecs.umich.edu    }
1036220Sgblack@eecs.umich.edu
1046220Sgblack@eecs.umich.edu    tc->setMiscReg(MISCREG_SEG_BASE(seg), base);
1056220Sgblack@eecs.umich.edu    tc->setMiscReg(MISCREG_SEG_EFF_BASE(seg), honorBase ? base : 0);
1066220Sgblack@eecs.umich.edu    tc->setMiscReg(MISCREG_SEG_LIMIT(seg), limit);
1076220Sgblack@eecs.umich.edu    tc->setMiscReg(MISCREG_SEG_ATTR(seg), (MiscReg)attr);
1086220Sgblack@eecs.umich.edu}
1096220Sgblack@eecs.umich.edu
1105299Sgblack@eecs.umich.eduvoid
1117532Ssteve.reinhardt@amd.comX86System::initState()
1125299Sgblack@eecs.umich.edu{
1137532Ssteve.reinhardt@amd.com    System::initState();
1147532Ssteve.reinhardt@amd.com
1158958Sgblack@eecs.umich.edu    if (!kernel)
1168958Sgblack@eecs.umich.edu        fatal("No kernel to load.\n");
1178958Sgblack@eecs.umich.edu
1188706Sandreas.hansson@arm.com    if (kernel->getArch() == ObjectFile::I386)
1198706Sandreas.hansson@arm.com        fatal("Loading a 32 bit x86 kernel is not supported.\n");
1208706Sandreas.hansson@arm.com
1216220Sgblack@eecs.umich.edu    ThreadContext *tc = threadContexts[0];
1225299Sgblack@eecs.umich.edu    // This is the boot strap processor (BSP). Initialize it to look like
1235299Sgblack@eecs.umich.edu    // the boot loader has just turned control over to the 64 bit OS. We
1245299Sgblack@eecs.umich.edu    // won't actually set up real mode or legacy protected mode descriptor
1255299Sgblack@eecs.umich.edu    // tables because we aren't executing any code that would require
1265299Sgblack@eecs.umich.edu    // them. We do, however toggle the control bits in the correct order
1275299Sgblack@eecs.umich.edu    // while allowing consistency checks and the underlying mechansims
1285299Sgblack@eecs.umich.edu    // just to be safe.
1295299Sgblack@eecs.umich.edu
1305299Sgblack@eecs.umich.edu    const int NumPDTs = 4;
1315299Sgblack@eecs.umich.edu
1325299Sgblack@eecs.umich.edu    const Addr PageMapLevel4 = 0x70000;
1335299Sgblack@eecs.umich.edu    const Addr PageDirPtrTable = 0x71000;
1345299Sgblack@eecs.umich.edu    const Addr PageDirTable[NumPDTs] =
1355299Sgblack@eecs.umich.edu        {0x72000, 0x73000, 0x74000, 0x75000};
1365299Sgblack@eecs.umich.edu    const Addr GDTBase = 0x76000;
1375299Sgblack@eecs.umich.edu
1385299Sgblack@eecs.umich.edu    const int PML4Bits = 9;
1395299Sgblack@eecs.umich.edu    const int PDPTBits = 9;
1405299Sgblack@eecs.umich.edu    const int PDTBits = 9;
1415299Sgblack@eecs.umich.edu
1425299Sgblack@eecs.umich.edu    /*
1435299Sgblack@eecs.umich.edu     * Set up the gdt.
1445299Sgblack@eecs.umich.edu     */
1456220Sgblack@eecs.umich.edu    uint8_t numGDTEntries = 0;
1465299Sgblack@eecs.umich.edu    // Place holder at selector 0
1475299Sgblack@eecs.umich.edu    uint64_t nullDescriptor = 0;
1488852Sandreas.hansson@arm.com    physProxy.writeBlob(GDTBase + numGDTEntries * 8,
1498852Sandreas.hansson@arm.com                        (uint8_t *)(&nullDescriptor), 8);
1506220Sgblack@eecs.umich.edu    numGDTEntries++;
1515299Sgblack@eecs.umich.edu
15210554Salexandru.dutu@amd.com    SegDescriptor initDesc = 0;
15310554Salexandru.dutu@amd.com    initDesc.type.codeOrData = 0; // code or data type
15410554Salexandru.dutu@amd.com    initDesc.type.c = 0;          // conforming
15510554Salexandru.dutu@amd.com    initDesc.type.r = 1;          // readable
15610554Salexandru.dutu@amd.com    initDesc.dpl = 0;             // privilege
15710554Salexandru.dutu@amd.com    initDesc.p = 1;               // present
15810554Salexandru.dutu@amd.com    initDesc.l = 1;               // longmode - 64 bit
15910554Salexandru.dutu@amd.com    initDesc.d = 0;               // operand size
16010554Salexandru.dutu@amd.com    initDesc.g = 1;               // granularity
16110554Salexandru.dutu@amd.com    initDesc.s = 1;               // system segment
16212483Smaximilian.stein@tu-dresden.de    initDesc.limitHigh = 0xF;
16312483Smaximilian.stein@tu-dresden.de    initDesc.limitLow = 0xFFFF;
16410554Salexandru.dutu@amd.com    initDesc.baseHigh = 0x0;
16510554Salexandru.dutu@amd.com    initDesc.baseLow = 0x0;
16610554Salexandru.dutu@amd.com
1675299Sgblack@eecs.umich.edu    //64 bit code segment
16810554Salexandru.dutu@amd.com    SegDescriptor csDesc = initDesc;
1696220Sgblack@eecs.umich.edu    csDesc.type.codeOrData = 1;
17010554Salexandru.dutu@amd.com    csDesc.dpl = 0;
1715299Sgblack@eecs.umich.edu    //Because we're dealing with a pointer and I don't think it's
1725299Sgblack@eecs.umich.edu    //guaranteed that there isn't anything in a nonvirtual class between
1735299Sgblack@eecs.umich.edu    //it's beginning in memory and it's actual data, we'll use an
1745299Sgblack@eecs.umich.edu    //intermediary.
1755299Sgblack@eecs.umich.edu    uint64_t csDescVal = csDesc;
1768852Sandreas.hansson@arm.com    physProxy.writeBlob(GDTBase + numGDTEntries * 8,
1778852Sandreas.hansson@arm.com                        (uint8_t *)(&csDescVal), 8);
1785299Sgblack@eecs.umich.edu
1796220Sgblack@eecs.umich.edu    numGDTEntries++;
1806220Sgblack@eecs.umich.edu
1816220Sgblack@eecs.umich.edu    SegSelector cs = 0;
1826220Sgblack@eecs.umich.edu    cs.si = numGDTEntries - 1;
1836220Sgblack@eecs.umich.edu
1846220Sgblack@eecs.umich.edu    tc->setMiscReg(MISCREG_CS, (MiscReg)cs);
1856220Sgblack@eecs.umich.edu
1866220Sgblack@eecs.umich.edu    //32 bit data segment
18710554Salexandru.dutu@amd.com    SegDescriptor dsDesc = initDesc;
1886220Sgblack@eecs.umich.edu    uint64_t dsDescVal = dsDesc;
1898852Sandreas.hansson@arm.com    physProxy.writeBlob(GDTBase + numGDTEntries * 8,
1908852Sandreas.hansson@arm.com                        (uint8_t *)(&dsDescVal), 8);
1916220Sgblack@eecs.umich.edu
1926220Sgblack@eecs.umich.edu    numGDTEntries++;
1936220Sgblack@eecs.umich.edu
1946712Snate@binkert.org    SegSelector ds = 0;
1956220Sgblack@eecs.umich.edu    ds.si = numGDTEntries - 1;
1966220Sgblack@eecs.umich.edu
1976220Sgblack@eecs.umich.edu    tc->setMiscReg(MISCREG_DS, (MiscReg)ds);
1986220Sgblack@eecs.umich.edu    tc->setMiscReg(MISCREG_ES, (MiscReg)ds);
1996220Sgblack@eecs.umich.edu    tc->setMiscReg(MISCREG_FS, (MiscReg)ds);
2006220Sgblack@eecs.umich.edu    tc->setMiscReg(MISCREG_GS, (MiscReg)ds);
2016220Sgblack@eecs.umich.edu    tc->setMiscReg(MISCREG_SS, (MiscReg)ds);
2026220Sgblack@eecs.umich.edu
2036220Sgblack@eecs.umich.edu    tc->setMiscReg(MISCREG_TSL, 0);
2046220Sgblack@eecs.umich.edu    tc->setMiscReg(MISCREG_TSG_BASE, GDTBase);
2056220Sgblack@eecs.umich.edu    tc->setMiscReg(MISCREG_TSG_LIMIT, 8 * numGDTEntries - 1);
2066220Sgblack@eecs.umich.edu
20710554Salexandru.dutu@amd.com    SegDescriptor tssDesc = initDesc;
2086220Sgblack@eecs.umich.edu    uint64_t tssDescVal = tssDesc;
2098852Sandreas.hansson@arm.com    physProxy.writeBlob(GDTBase + numGDTEntries * 8,
2108852Sandreas.hansson@arm.com                        (uint8_t *)(&tssDescVal), 8);
2116220Sgblack@eecs.umich.edu
2126220Sgblack@eecs.umich.edu    numGDTEntries++;
2136220Sgblack@eecs.umich.edu
2146220Sgblack@eecs.umich.edu    SegSelector tss = 0;
2156220Sgblack@eecs.umich.edu    tss.si = numGDTEntries - 1;
2166220Sgblack@eecs.umich.edu
2176220Sgblack@eecs.umich.edu    tc->setMiscReg(MISCREG_TR, (MiscReg)tss);
2186220Sgblack@eecs.umich.edu    installSegDesc(tc, SYS_SEGMENT_REG_TR, tssDesc, true);
2195299Sgblack@eecs.umich.edu
2205299Sgblack@eecs.umich.edu    /*
2215299Sgblack@eecs.umich.edu     * Identity map the first 4GB of memory. In order to map this region
2225299Sgblack@eecs.umich.edu     * of memory in long mode, there needs to be one actual page map level
2235299Sgblack@eecs.umich.edu     * 4 entry which points to one page directory pointer table which
2245299Sgblack@eecs.umich.edu     * points to 4 different page directory tables which are full of two
2255299Sgblack@eecs.umich.edu     * megabyte pages. All of the other entries in valid tables are set
2265299Sgblack@eecs.umich.edu     * to indicate that they don't pertain to anything valid and will
2275299Sgblack@eecs.umich.edu     * cause a fault if used.
2285299Sgblack@eecs.umich.edu     */
2295299Sgblack@eecs.umich.edu
2305299Sgblack@eecs.umich.edu    // Put valid values in all of the various table entries which indicate
2315299Sgblack@eecs.umich.edu    // that those entries don't point to further tables or pages. Then
2325299Sgblack@eecs.umich.edu    // set the values of those entries which are needed.
2335299Sgblack@eecs.umich.edu
2345299Sgblack@eecs.umich.edu    // Page Map Level 4
2355299Sgblack@eecs.umich.edu
2365299Sgblack@eecs.umich.edu    // read/write, user, not present
2375299Sgblack@eecs.umich.edu    uint64_t pml4e = X86ISA::htog(0x6);
2385299Sgblack@eecs.umich.edu    for (int offset = 0; offset < (1 << PML4Bits) * 8; offset += 8) {
2398852Sandreas.hansson@arm.com        physProxy.writeBlob(PageMapLevel4 + offset, (uint8_t *)(&pml4e), 8);
2405299Sgblack@eecs.umich.edu    }
2415299Sgblack@eecs.umich.edu    // Point to the only PDPT
2425299Sgblack@eecs.umich.edu    pml4e = X86ISA::htog(0x7 | PageDirPtrTable);
2438852Sandreas.hansson@arm.com    physProxy.writeBlob(PageMapLevel4, (uint8_t *)(&pml4e), 8);
2445299Sgblack@eecs.umich.edu
2455299Sgblack@eecs.umich.edu    // Page Directory Pointer Table
2465299Sgblack@eecs.umich.edu
2475299Sgblack@eecs.umich.edu    // read/write, user, not present
2485299Sgblack@eecs.umich.edu    uint64_t pdpe = X86ISA::htog(0x6);
2495299Sgblack@eecs.umich.edu    for (int offset = 0; offset < (1 << PDPTBits) * 8; offset += 8) {
2508852Sandreas.hansson@arm.com        physProxy.writeBlob(PageDirPtrTable + offset,
2518852Sandreas.hansson@arm.com                            (uint8_t *)(&pdpe), 8);
2525299Sgblack@eecs.umich.edu    }
2535299Sgblack@eecs.umich.edu    // Point to the PDTs
2545299Sgblack@eecs.umich.edu    for (int table = 0; table < NumPDTs; table++) {
2555299Sgblack@eecs.umich.edu        pdpe = X86ISA::htog(0x7 | PageDirTable[table]);
2568852Sandreas.hansson@arm.com        physProxy.writeBlob(PageDirPtrTable + table * 8,
2578852Sandreas.hansson@arm.com                            (uint8_t *)(&pdpe), 8);
2585299Sgblack@eecs.umich.edu    }
2595299Sgblack@eecs.umich.edu
2605299Sgblack@eecs.umich.edu    // Page Directory Tables
2615299Sgblack@eecs.umich.edu
2625299Sgblack@eecs.umich.edu    Addr base = 0;
2635299Sgblack@eecs.umich.edu    const Addr pageSize = 2 << 20;
2645299Sgblack@eecs.umich.edu    for (int table = 0; table < NumPDTs; table++) {
2655299Sgblack@eecs.umich.edu        for (int offset = 0; offset < (1 << PDTBits) * 8; offset += 8) {
2665299Sgblack@eecs.umich.edu            // read/write, user, present, 4MB
2675299Sgblack@eecs.umich.edu            uint64_t pdte = X86ISA::htog(0x87 | base);
2688852Sandreas.hansson@arm.com            physProxy.writeBlob(PageDirTable[table] + offset,
2698852Sandreas.hansson@arm.com                                (uint8_t *)(&pdte), 8);
2705299Sgblack@eecs.umich.edu            base += pageSize;
2715299Sgblack@eecs.umich.edu        }
2725299Sgblack@eecs.umich.edu    }
2735299Sgblack@eecs.umich.edu
2745299Sgblack@eecs.umich.edu    /*
2755299Sgblack@eecs.umich.edu     * Transition from real mode all the way up to Long mode
2765299Sgblack@eecs.umich.edu     */
2776220Sgblack@eecs.umich.edu    CR0 cr0 = tc->readMiscRegNoEffect(MISCREG_CR0);
2785299Sgblack@eecs.umich.edu    //Turn off paging.
2795299Sgblack@eecs.umich.edu    cr0.pg = 0;
2806220Sgblack@eecs.umich.edu    tc->setMiscReg(MISCREG_CR0, cr0);
2815299Sgblack@eecs.umich.edu    //Turn on protected mode.
2825299Sgblack@eecs.umich.edu    cr0.pe = 1;
2836220Sgblack@eecs.umich.edu    tc->setMiscReg(MISCREG_CR0, cr0);
2845299Sgblack@eecs.umich.edu
2856220Sgblack@eecs.umich.edu    CR4 cr4 = tc->readMiscRegNoEffect(MISCREG_CR4);
2865299Sgblack@eecs.umich.edu    //Turn on pae.
2875299Sgblack@eecs.umich.edu    cr4.pae = 1;
2886220Sgblack@eecs.umich.edu    tc->setMiscReg(MISCREG_CR4, cr4);
2895299Sgblack@eecs.umich.edu
2905299Sgblack@eecs.umich.edu    //Point to the page tables.
2916220Sgblack@eecs.umich.edu    tc->setMiscReg(MISCREG_CR3, PageMapLevel4);
2925299Sgblack@eecs.umich.edu
2936220Sgblack@eecs.umich.edu    Efer efer = tc->readMiscRegNoEffect(MISCREG_EFER);
2945299Sgblack@eecs.umich.edu    //Enable long mode.
2955299Sgblack@eecs.umich.edu    efer.lme = 1;
2966220Sgblack@eecs.umich.edu    tc->setMiscReg(MISCREG_EFER, efer);
2976220Sgblack@eecs.umich.edu
2986220Sgblack@eecs.umich.edu    //Start using longmode segments.
2996220Sgblack@eecs.umich.edu    installSegDesc(tc, SEGMENT_REG_CS, csDesc, true);
3006220Sgblack@eecs.umich.edu    installSegDesc(tc, SEGMENT_REG_DS, dsDesc, true);
3016220Sgblack@eecs.umich.edu    installSegDesc(tc, SEGMENT_REG_ES, dsDesc, true);
3026220Sgblack@eecs.umich.edu    installSegDesc(tc, SEGMENT_REG_FS, dsDesc, true);
3036220Sgblack@eecs.umich.edu    installSegDesc(tc, SEGMENT_REG_GS, dsDesc, true);
3046220Sgblack@eecs.umich.edu    installSegDesc(tc, SEGMENT_REG_SS, dsDesc, true);
3055299Sgblack@eecs.umich.edu
3065299Sgblack@eecs.umich.edu    //Activate long mode.
3075299Sgblack@eecs.umich.edu    cr0.pg = 1;
3086220Sgblack@eecs.umich.edu    tc->setMiscReg(MISCREG_CR0, cr0);
3095299Sgblack@eecs.umich.edu
3107720Sgblack@eecs.umich.edu    tc->pcState(tc->getSystemPtr()->kernelEntry);
3115299Sgblack@eecs.umich.edu
3125299Sgblack@eecs.umich.edu    // We should now be in long mode. Yay!
3135334Sgblack@eecs.umich.edu
3145615Sgblack@eecs.umich.edu    Addr ebdaPos = 0xF0000;
3155625Sgblack@eecs.umich.edu    Addr fixed, table;
3165615Sgblack@eecs.umich.edu
3175334Sgblack@eecs.umich.edu    //Write out the SMBios/DMI table
3185625Sgblack@eecs.umich.edu    writeOutSMBiosTable(ebdaPos, fixed, table);
3195625Sgblack@eecs.umich.edu    ebdaPos += (fixed + table);
3205625Sgblack@eecs.umich.edu    ebdaPos = roundUp(ebdaPos, 16);
3215625Sgblack@eecs.umich.edu
3225625Sgblack@eecs.umich.edu    //Write out the Intel MP Specification configuration table
3235625Sgblack@eecs.umich.edu    writeOutMPTable(ebdaPos, fixed, table);
3245625Sgblack@eecs.umich.edu    ebdaPos += (fixed + table);
3255299Sgblack@eecs.umich.edu}
3265299Sgblack@eecs.umich.edu
3275334Sgblack@eecs.umich.eduvoid
3285615Sgblack@eecs.umich.eduX86System::writeOutSMBiosTable(Addr header,
3295615Sgblack@eecs.umich.edu        Addr &headerSize, Addr &structSize, Addr table)
3305334Sgblack@eecs.umich.edu{
3315334Sgblack@eecs.umich.edu    // If the table location isn't specified, just put it after the header.
3325334Sgblack@eecs.umich.edu    // The header size as of the 2.5 SMBios specification is 0x1F bytes
3335615Sgblack@eecs.umich.edu    if (!table)
3345615Sgblack@eecs.umich.edu        table = header + 0x1F;
3355615Sgblack@eecs.umich.edu    smbiosTable->setTableAddr(table);
3365334Sgblack@eecs.umich.edu
3378706Sandreas.hansson@arm.com    smbiosTable->writeOut(physProxy, header, headerSize, structSize);
3385615Sgblack@eecs.umich.edu
3395615Sgblack@eecs.umich.edu    // Do some bounds checking to make sure we at least didn't step on
3405615Sgblack@eecs.umich.edu    // ourselves.
3415615Sgblack@eecs.umich.edu    assert(header > table || header + headerSize <= table);
3425615Sgblack@eecs.umich.edu    assert(table > header || table + structSize <= header);
3435334Sgblack@eecs.umich.edu}
3445334Sgblack@eecs.umich.edu
3455625Sgblack@eecs.umich.eduvoid
3465625Sgblack@eecs.umich.eduX86System::writeOutMPTable(Addr fp,
3475625Sgblack@eecs.umich.edu        Addr &fpSize, Addr &tableSize, Addr table)
3485625Sgblack@eecs.umich.edu{
3495625Sgblack@eecs.umich.edu    // If the table location isn't specified and it exists, just put
3505625Sgblack@eecs.umich.edu    // it after the floating pointer. The fp size as of the 1.4 Intel MP
3515625Sgblack@eecs.umich.edu    // specification is 0x10 bytes.
3525625Sgblack@eecs.umich.edu    if (mpConfigTable) {
3535625Sgblack@eecs.umich.edu        if (!table)
3545625Sgblack@eecs.umich.edu            table = fp + 0x10;
3555625Sgblack@eecs.umich.edu        mpFloatingPointer->setTableAddr(table);
3565625Sgblack@eecs.umich.edu    }
3575625Sgblack@eecs.umich.edu
3588706Sandreas.hansson@arm.com    fpSize = mpFloatingPointer->writeOut(physProxy, fp);
3595625Sgblack@eecs.umich.edu    if (mpConfigTable)
3608706Sandreas.hansson@arm.com        tableSize = mpConfigTable->writeOut(physProxy, table);
3615625Sgblack@eecs.umich.edu    else
3625625Sgblack@eecs.umich.edu        tableSize = 0;
3635625Sgblack@eecs.umich.edu
3645625Sgblack@eecs.umich.edu    // Do some bounds checking to make sure we at least didn't step on
3655625Sgblack@eecs.umich.edu    // ourselves and the fp structure was the size we thought it was.
3665625Sgblack@eecs.umich.edu    assert(fp > table || fp + fpSize <= table);
3675625Sgblack@eecs.umich.edu    assert(table > fp || table + tableSize <= fp);
3685625Sgblack@eecs.umich.edu    assert(fpSize == 0x10);
3695625Sgblack@eecs.umich.edu}
3705625Sgblack@eecs.umich.edu
3715334Sgblack@eecs.umich.edu
3725132Sgblack@eecs.umich.eduX86System::~X86System()
3735132Sgblack@eecs.umich.edu{
3745334Sgblack@eecs.umich.edu    delete smbiosTable;
3755132Sgblack@eecs.umich.edu}
3765132Sgblack@eecs.umich.edu
3775132Sgblack@eecs.umich.eduX86System *
3785132Sgblack@eecs.umich.eduX86SystemParams::create()
3795132Sgblack@eecs.umich.edu{
3805132Sgblack@eecs.umich.edu    return new X86System(this);
3815132Sgblack@eecs.umich.edu}
382