system.cc revision 10554
15132Sgblack@eecs.umich.edu/*
25132Sgblack@eecs.umich.edu * Copyright (c) 2007 The Hewlett-Packard Development Company
35132Sgblack@eecs.umich.edu * All rights reserved.
45132Sgblack@eecs.umich.edu *
57087Snate@binkert.org * The license below extends only to copyright in the software and shall
67087Snate@binkert.org * not be construed as granting a license to any other intellectual
77087Snate@binkert.org * property including but not limited to intellectual property relating
87087Snate@binkert.org * to a hardware implementation of the functionality of the software
97087Snate@binkert.org * licensed hereunder.  You may use the software subject to the license
107087Snate@binkert.org * terms below provided that you ensure that this notice is replicated
117087Snate@binkert.org * unmodified and in its entirety in all distributions of the software,
127087Snate@binkert.org * modified or unmodified, in source code or in binary form.
135132Sgblack@eecs.umich.edu *
147087Snate@binkert.org * Redistribution and use in source and binary forms, with or without
157087Snate@binkert.org * modification, are permitted provided that the following conditions are
167087Snate@binkert.org * met: redistributions of source code must retain the above copyright
177087Snate@binkert.org * notice, this list of conditions and the following disclaimer;
187087Snate@binkert.org * redistributions in binary form must reproduce the above copyright
197087Snate@binkert.org * notice, this list of conditions and the following disclaimer in the
207087Snate@binkert.org * documentation and/or other materials provided with the distribution;
217087Snate@binkert.org * neither the name of the copyright holders nor the names of its
225132Sgblack@eecs.umich.edu * contributors may be used to endorse or promote products derived from
237087Snate@binkert.org * this software without specific prior written permission.
245132Sgblack@eecs.umich.edu *
255132Sgblack@eecs.umich.edu * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
265132Sgblack@eecs.umich.edu * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
275132Sgblack@eecs.umich.edu * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
285132Sgblack@eecs.umich.edu * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
295132Sgblack@eecs.umich.edu * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
305132Sgblack@eecs.umich.edu * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
315132Sgblack@eecs.umich.edu * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
325132Sgblack@eecs.umich.edu * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
335132Sgblack@eecs.umich.edu * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
345132Sgblack@eecs.umich.edu * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
355132Sgblack@eecs.umich.edu * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
365132Sgblack@eecs.umich.edu *
375132Sgblack@eecs.umich.edu * Authors: Gabe Black
385132Sgblack@eecs.umich.edu */
395132Sgblack@eecs.umich.edu
408229Snate@binkert.org#include "arch/x86/bios/intelmp.hh"
415612Sgblack@eecs.umich.edu#include "arch/x86/bios/smbios.hh"
428229Snate@binkert.org#include "arch/x86/regs/misc.hh"
437901Shestness@cs.utexas.edu#include "arch/x86/isa_traits.hh"
445132Sgblack@eecs.umich.edu#include "arch/x86/system.hh"
455132Sgblack@eecs.umich.edu#include "arch/vtophys.hh"
465132Sgblack@eecs.umich.edu#include "base/loader/object_file.hh"
475132Sgblack@eecs.umich.edu#include "base/loader/symtab.hh"
488229Snate@binkert.org#include "base/intmath.hh"
495132Sgblack@eecs.umich.edu#include "base/trace.hh"
505299Sgblack@eecs.umich.edu#include "cpu/thread_context.hh"
518706Sandreas.hansson@arm.com#include "mem/port_proxy.hh"
525132Sgblack@eecs.umich.edu#include "params/X86System.hh"
535132Sgblack@eecs.umich.edu#include "sim/byteswap.hh"
545132Sgblack@eecs.umich.edu
555299Sgblack@eecs.umich.eduusing namespace LittleEndianGuest;
565299Sgblack@eecs.umich.eduusing namespace X86ISA;
575132Sgblack@eecs.umich.edu
585625Sgblack@eecs.umich.eduX86System::X86System(Params *p) :
595625Sgblack@eecs.umich.edu    System(p), smbiosTable(p->smbios_table),
605625Sgblack@eecs.umich.edu    mpFloatingPointer(p->intel_mp_pointer),
615627Sgblack@eecs.umich.edu    mpConfigTable(p->intel_mp_table),
625627Sgblack@eecs.umich.edu    rsdp(p->acpi_description_table_pointer)
637704Sgblack@eecs.umich.edu{
647704Sgblack@eecs.umich.edu}
655132Sgblack@eecs.umich.edu
6610554Salexandru.dutu@amd.comvoid
6710554Salexandru.dutu@amd.comX86ISA::installSegDesc(ThreadContext *tc, SegmentRegIndex seg,
686220Sgblack@eecs.umich.edu        SegDescriptor desc, bool longmode)
696220Sgblack@eecs.umich.edu{
706220Sgblack@eecs.umich.edu    uint64_t base = desc.baseLow + (desc.baseHigh << 24);
716220Sgblack@eecs.umich.edu    bool honorBase = !longmode || seg == SEGMENT_REG_FS ||
726220Sgblack@eecs.umich.edu                                  seg == SEGMENT_REG_GS ||
736220Sgblack@eecs.umich.edu                                  seg == SEGMENT_REG_TSL ||
746220Sgblack@eecs.umich.edu                                  seg == SYS_SEGMENT_REG_TR;
756220Sgblack@eecs.umich.edu    uint64_t limit = desc.limitLow | (desc.limitHigh << 16);
766220Sgblack@eecs.umich.edu
776220Sgblack@eecs.umich.edu    SegAttr attr = 0;
786222Sgblack@eecs.umich.edu
796222Sgblack@eecs.umich.edu    attr.dpl = desc.dpl;
806222Sgblack@eecs.umich.edu    attr.unusable = 0;
816222Sgblack@eecs.umich.edu    attr.defaultSize = desc.d;
826222Sgblack@eecs.umich.edu    attr.longMode = desc.l;
836222Sgblack@eecs.umich.edu    attr.avl = desc.avl;
846222Sgblack@eecs.umich.edu    attr.granularity = desc.g;
856222Sgblack@eecs.umich.edu    attr.present = desc.p;
866222Sgblack@eecs.umich.edu    attr.system = desc.s;
876222Sgblack@eecs.umich.edu    attr.type = desc.type;
886220Sgblack@eecs.umich.edu    if (desc.s) {
896220Sgblack@eecs.umich.edu        if (desc.type.codeOrData) {
906220Sgblack@eecs.umich.edu            // Code segment
916222Sgblack@eecs.umich.edu            attr.expandDown = 0;
926220Sgblack@eecs.umich.edu            attr.readable = desc.type.r;
936222Sgblack@eecs.umich.edu            attr.writable = 0;
946220Sgblack@eecs.umich.edu        } else {
956220Sgblack@eecs.umich.edu            // Data segment
966222Sgblack@eecs.umich.edu            attr.expandDown = desc.type.e;
976220Sgblack@eecs.umich.edu            attr.readable = 1;
986220Sgblack@eecs.umich.edu            attr.writable = desc.type.w;
996220Sgblack@eecs.umich.edu        }
1006220Sgblack@eecs.umich.edu    } else {
1016222Sgblack@eecs.umich.edu        attr.readable = 1;
1026220Sgblack@eecs.umich.edu        attr.writable = 1;
1036220Sgblack@eecs.umich.edu        attr.expandDown = 0;
1046220Sgblack@eecs.umich.edu    }
1056220Sgblack@eecs.umich.edu
1066220Sgblack@eecs.umich.edu    tc->setMiscReg(MISCREG_SEG_BASE(seg), base);
1076220Sgblack@eecs.umich.edu    tc->setMiscReg(MISCREG_SEG_EFF_BASE(seg), honorBase ? base : 0);
1086220Sgblack@eecs.umich.edu    tc->setMiscReg(MISCREG_SEG_LIMIT(seg), limit);
1096220Sgblack@eecs.umich.edu    tc->setMiscReg(MISCREG_SEG_ATTR(seg), (MiscReg)attr);
1106220Sgblack@eecs.umich.edu}
1116220Sgblack@eecs.umich.edu
1125299Sgblack@eecs.umich.eduvoid
1137532Ssteve.reinhardt@amd.comX86System::initState()
1145299Sgblack@eecs.umich.edu{
1157532Ssteve.reinhardt@amd.com    System::initState();
1167532Ssteve.reinhardt@amd.com
1178958Sgblack@eecs.umich.edu    if (!kernel)
1188958Sgblack@eecs.umich.edu        fatal("No kernel to load.\n");
1198958Sgblack@eecs.umich.edu
1208706Sandreas.hansson@arm.com    if (kernel->getArch() == ObjectFile::I386)
1218706Sandreas.hansson@arm.com        fatal("Loading a 32 bit x86 kernel is not supported.\n");
1228706Sandreas.hansson@arm.com
1236220Sgblack@eecs.umich.edu    ThreadContext *tc = threadContexts[0];
1245299Sgblack@eecs.umich.edu    // This is the boot strap processor (BSP). Initialize it to look like
1255299Sgblack@eecs.umich.edu    // the boot loader has just turned control over to the 64 bit OS. We
1265299Sgblack@eecs.umich.edu    // won't actually set up real mode or legacy protected mode descriptor
1275299Sgblack@eecs.umich.edu    // tables because we aren't executing any code that would require
1285299Sgblack@eecs.umich.edu    // them. We do, however toggle the control bits in the correct order
1295299Sgblack@eecs.umich.edu    // while allowing consistency checks and the underlying mechansims
1305299Sgblack@eecs.umich.edu    // just to be safe.
1315299Sgblack@eecs.umich.edu
1325299Sgblack@eecs.umich.edu    const int NumPDTs = 4;
1335299Sgblack@eecs.umich.edu
1345299Sgblack@eecs.umich.edu    const Addr PageMapLevel4 = 0x70000;
1355299Sgblack@eecs.umich.edu    const Addr PageDirPtrTable = 0x71000;
1365299Sgblack@eecs.umich.edu    const Addr PageDirTable[NumPDTs] =
1375299Sgblack@eecs.umich.edu        {0x72000, 0x73000, 0x74000, 0x75000};
1385299Sgblack@eecs.umich.edu    const Addr GDTBase = 0x76000;
1395299Sgblack@eecs.umich.edu
1405299Sgblack@eecs.umich.edu    const int PML4Bits = 9;
1415299Sgblack@eecs.umich.edu    const int PDPTBits = 9;
1425299Sgblack@eecs.umich.edu    const int PDTBits = 9;
1435299Sgblack@eecs.umich.edu
1445299Sgblack@eecs.umich.edu    /*
1455299Sgblack@eecs.umich.edu     * Set up the gdt.
1465299Sgblack@eecs.umich.edu     */
1476220Sgblack@eecs.umich.edu    uint8_t numGDTEntries = 0;
1485299Sgblack@eecs.umich.edu    // Place holder at selector 0
1495299Sgblack@eecs.umich.edu    uint64_t nullDescriptor = 0;
1508852Sandreas.hansson@arm.com    physProxy.writeBlob(GDTBase + numGDTEntries * 8,
1518852Sandreas.hansson@arm.com                        (uint8_t *)(&nullDescriptor), 8);
1526220Sgblack@eecs.umich.edu    numGDTEntries++;
1535299Sgblack@eecs.umich.edu
15410554Salexandru.dutu@amd.com    SegDescriptor initDesc = 0;
15510554Salexandru.dutu@amd.com    initDesc.type.codeOrData = 0; // code or data type
15610554Salexandru.dutu@amd.com    initDesc.type.c = 0;          // conforming
15710554Salexandru.dutu@amd.com    initDesc.type.r = 1;          // readable
15810554Salexandru.dutu@amd.com    initDesc.dpl = 0;             // privilege
15910554Salexandru.dutu@amd.com    initDesc.p = 1;               // present
16010554Salexandru.dutu@amd.com    initDesc.l = 1;               // longmode - 64 bit
16110554Salexandru.dutu@amd.com    initDesc.d = 0;               // operand size
16210554Salexandru.dutu@amd.com    initDesc.g = 1;               // granularity
16310554Salexandru.dutu@amd.com    initDesc.s = 1;               // system segment
16410554Salexandru.dutu@amd.com    initDesc.limitHigh = 0xFFFF;
16510554Salexandru.dutu@amd.com    initDesc.limitLow = 0xF;
16610554Salexandru.dutu@amd.com    initDesc.baseHigh = 0x0;
16710554Salexandru.dutu@amd.com    initDesc.baseLow = 0x0;
16810554Salexandru.dutu@amd.com
1695299Sgblack@eecs.umich.edu    //64 bit code segment
17010554Salexandru.dutu@amd.com    SegDescriptor csDesc = initDesc;
1716220Sgblack@eecs.umich.edu    csDesc.type.codeOrData = 1;
17210554Salexandru.dutu@amd.com    csDesc.dpl = 0;
1735299Sgblack@eecs.umich.edu    //Because we're dealing with a pointer and I don't think it's
1745299Sgblack@eecs.umich.edu    //guaranteed that there isn't anything in a nonvirtual class between
1755299Sgblack@eecs.umich.edu    //it's beginning in memory and it's actual data, we'll use an
1765299Sgblack@eecs.umich.edu    //intermediary.
1775299Sgblack@eecs.umich.edu    uint64_t csDescVal = csDesc;
1788852Sandreas.hansson@arm.com    physProxy.writeBlob(GDTBase + numGDTEntries * 8,
1798852Sandreas.hansson@arm.com                        (uint8_t *)(&csDescVal), 8);
1805299Sgblack@eecs.umich.edu
1816220Sgblack@eecs.umich.edu    numGDTEntries++;
1826220Sgblack@eecs.umich.edu
1836220Sgblack@eecs.umich.edu    SegSelector cs = 0;
1846220Sgblack@eecs.umich.edu    cs.si = numGDTEntries - 1;
1856220Sgblack@eecs.umich.edu
1866220Sgblack@eecs.umich.edu    tc->setMiscReg(MISCREG_CS, (MiscReg)cs);
1876220Sgblack@eecs.umich.edu
1886220Sgblack@eecs.umich.edu    //32 bit data segment
18910554Salexandru.dutu@amd.com    SegDescriptor dsDesc = initDesc;
1906220Sgblack@eecs.umich.edu    uint64_t dsDescVal = dsDesc;
1918852Sandreas.hansson@arm.com    physProxy.writeBlob(GDTBase + numGDTEntries * 8,
1928852Sandreas.hansson@arm.com                        (uint8_t *)(&dsDescVal), 8);
1936220Sgblack@eecs.umich.edu
1946220Sgblack@eecs.umich.edu    numGDTEntries++;
1956220Sgblack@eecs.umich.edu
1966712Snate@binkert.org    SegSelector ds = 0;
1976220Sgblack@eecs.umich.edu    ds.si = numGDTEntries - 1;
1986220Sgblack@eecs.umich.edu
1996220Sgblack@eecs.umich.edu    tc->setMiscReg(MISCREG_DS, (MiscReg)ds);
2006220Sgblack@eecs.umich.edu    tc->setMiscReg(MISCREG_ES, (MiscReg)ds);
2016220Sgblack@eecs.umich.edu    tc->setMiscReg(MISCREG_FS, (MiscReg)ds);
2026220Sgblack@eecs.umich.edu    tc->setMiscReg(MISCREG_GS, (MiscReg)ds);
2036220Sgblack@eecs.umich.edu    tc->setMiscReg(MISCREG_SS, (MiscReg)ds);
2046220Sgblack@eecs.umich.edu
2056220Sgblack@eecs.umich.edu    tc->setMiscReg(MISCREG_TSL, 0);
2066220Sgblack@eecs.umich.edu    tc->setMiscReg(MISCREG_TSG_BASE, GDTBase);
2076220Sgblack@eecs.umich.edu    tc->setMiscReg(MISCREG_TSG_LIMIT, 8 * numGDTEntries - 1);
2086220Sgblack@eecs.umich.edu
20910554Salexandru.dutu@amd.com    SegDescriptor tssDesc = initDesc;
2106220Sgblack@eecs.umich.edu    uint64_t tssDescVal = tssDesc;
2118852Sandreas.hansson@arm.com    physProxy.writeBlob(GDTBase + numGDTEntries * 8,
2128852Sandreas.hansson@arm.com                        (uint8_t *)(&tssDescVal), 8);
2136220Sgblack@eecs.umich.edu
2146220Sgblack@eecs.umich.edu    numGDTEntries++;
2156220Sgblack@eecs.umich.edu
2166220Sgblack@eecs.umich.edu    SegSelector tss = 0;
2176220Sgblack@eecs.umich.edu    tss.si = numGDTEntries - 1;
2186220Sgblack@eecs.umich.edu
2196220Sgblack@eecs.umich.edu    tc->setMiscReg(MISCREG_TR, (MiscReg)tss);
2206220Sgblack@eecs.umich.edu    installSegDesc(tc, SYS_SEGMENT_REG_TR, tssDesc, true);
2215299Sgblack@eecs.umich.edu
2225299Sgblack@eecs.umich.edu    /*
2235299Sgblack@eecs.umich.edu     * Identity map the first 4GB of memory. In order to map this region
2245299Sgblack@eecs.umich.edu     * of memory in long mode, there needs to be one actual page map level
2255299Sgblack@eecs.umich.edu     * 4 entry which points to one page directory pointer table which
2265299Sgblack@eecs.umich.edu     * points to 4 different page directory tables which are full of two
2275299Sgblack@eecs.umich.edu     * megabyte pages. All of the other entries in valid tables are set
2285299Sgblack@eecs.umich.edu     * to indicate that they don't pertain to anything valid and will
2295299Sgblack@eecs.umich.edu     * cause a fault if used.
2305299Sgblack@eecs.umich.edu     */
2315299Sgblack@eecs.umich.edu
2325299Sgblack@eecs.umich.edu    // Put valid values in all of the various table entries which indicate
2335299Sgblack@eecs.umich.edu    // that those entries don't point to further tables or pages. Then
2345299Sgblack@eecs.umich.edu    // set the values of those entries which are needed.
2355299Sgblack@eecs.umich.edu
2365299Sgblack@eecs.umich.edu    // Page Map Level 4
2375299Sgblack@eecs.umich.edu
2385299Sgblack@eecs.umich.edu    // read/write, user, not present
2395299Sgblack@eecs.umich.edu    uint64_t pml4e = X86ISA::htog(0x6);
2405299Sgblack@eecs.umich.edu    for (int offset = 0; offset < (1 << PML4Bits) * 8; offset += 8) {
2418852Sandreas.hansson@arm.com        physProxy.writeBlob(PageMapLevel4 + offset, (uint8_t *)(&pml4e), 8);
2425299Sgblack@eecs.umich.edu    }
2435299Sgblack@eecs.umich.edu    // Point to the only PDPT
2445299Sgblack@eecs.umich.edu    pml4e = X86ISA::htog(0x7 | PageDirPtrTable);
2458852Sandreas.hansson@arm.com    physProxy.writeBlob(PageMapLevel4, (uint8_t *)(&pml4e), 8);
2465299Sgblack@eecs.umich.edu
2475299Sgblack@eecs.umich.edu    // Page Directory Pointer Table
2485299Sgblack@eecs.umich.edu
2495299Sgblack@eecs.umich.edu    // read/write, user, not present
2505299Sgblack@eecs.umich.edu    uint64_t pdpe = X86ISA::htog(0x6);
2515299Sgblack@eecs.umich.edu    for (int offset = 0; offset < (1 << PDPTBits) * 8; offset += 8) {
2528852Sandreas.hansson@arm.com        physProxy.writeBlob(PageDirPtrTable + offset,
2538852Sandreas.hansson@arm.com                            (uint8_t *)(&pdpe), 8);
2545299Sgblack@eecs.umich.edu    }
2555299Sgblack@eecs.umich.edu    // Point to the PDTs
2565299Sgblack@eecs.umich.edu    for (int table = 0; table < NumPDTs; table++) {
2575299Sgblack@eecs.umich.edu        pdpe = X86ISA::htog(0x7 | PageDirTable[table]);
2588852Sandreas.hansson@arm.com        physProxy.writeBlob(PageDirPtrTable + table * 8,
2598852Sandreas.hansson@arm.com                            (uint8_t *)(&pdpe), 8);
2605299Sgblack@eecs.umich.edu    }
2615299Sgblack@eecs.umich.edu
2625299Sgblack@eecs.umich.edu    // Page Directory Tables
2635299Sgblack@eecs.umich.edu
2645299Sgblack@eecs.umich.edu    Addr base = 0;
2655299Sgblack@eecs.umich.edu    const Addr pageSize = 2 << 20;
2665299Sgblack@eecs.umich.edu    for (int table = 0; table < NumPDTs; table++) {
2675299Sgblack@eecs.umich.edu        for (int offset = 0; offset < (1 << PDTBits) * 8; offset += 8) {
2685299Sgblack@eecs.umich.edu            // read/write, user, present, 4MB
2695299Sgblack@eecs.umich.edu            uint64_t pdte = X86ISA::htog(0x87 | base);
2708852Sandreas.hansson@arm.com            physProxy.writeBlob(PageDirTable[table] + offset,
2718852Sandreas.hansson@arm.com                                (uint8_t *)(&pdte), 8);
2725299Sgblack@eecs.umich.edu            base += pageSize;
2735299Sgblack@eecs.umich.edu        }
2745299Sgblack@eecs.umich.edu    }
2755299Sgblack@eecs.umich.edu
2765299Sgblack@eecs.umich.edu    /*
2775299Sgblack@eecs.umich.edu     * Transition from real mode all the way up to Long mode
2785299Sgblack@eecs.umich.edu     */
2796220Sgblack@eecs.umich.edu    CR0 cr0 = tc->readMiscRegNoEffect(MISCREG_CR0);
2805299Sgblack@eecs.umich.edu    //Turn off paging.
2815299Sgblack@eecs.umich.edu    cr0.pg = 0;
2826220Sgblack@eecs.umich.edu    tc->setMiscReg(MISCREG_CR0, cr0);
2835299Sgblack@eecs.umich.edu    //Turn on protected mode.
2845299Sgblack@eecs.umich.edu    cr0.pe = 1;
2856220Sgblack@eecs.umich.edu    tc->setMiscReg(MISCREG_CR0, cr0);
2865299Sgblack@eecs.umich.edu
2876220Sgblack@eecs.umich.edu    CR4 cr4 = tc->readMiscRegNoEffect(MISCREG_CR4);
2885299Sgblack@eecs.umich.edu    //Turn on pae.
2895299Sgblack@eecs.umich.edu    cr4.pae = 1;
2906220Sgblack@eecs.umich.edu    tc->setMiscReg(MISCREG_CR4, cr4);
2915299Sgblack@eecs.umich.edu
2925299Sgblack@eecs.umich.edu    //Point to the page tables.
2936220Sgblack@eecs.umich.edu    tc->setMiscReg(MISCREG_CR3, PageMapLevel4);
2945299Sgblack@eecs.umich.edu
2956220Sgblack@eecs.umich.edu    Efer efer = tc->readMiscRegNoEffect(MISCREG_EFER);
2965299Sgblack@eecs.umich.edu    //Enable long mode.
2975299Sgblack@eecs.umich.edu    efer.lme = 1;
2986220Sgblack@eecs.umich.edu    tc->setMiscReg(MISCREG_EFER, efer);
2996220Sgblack@eecs.umich.edu
3006220Sgblack@eecs.umich.edu    //Start using longmode segments.
3016220Sgblack@eecs.umich.edu    installSegDesc(tc, SEGMENT_REG_CS, csDesc, true);
3026220Sgblack@eecs.umich.edu    installSegDesc(tc, SEGMENT_REG_DS, dsDesc, true);
3036220Sgblack@eecs.umich.edu    installSegDesc(tc, SEGMENT_REG_ES, dsDesc, true);
3046220Sgblack@eecs.umich.edu    installSegDesc(tc, SEGMENT_REG_FS, dsDesc, true);
3056220Sgblack@eecs.umich.edu    installSegDesc(tc, SEGMENT_REG_GS, dsDesc, true);
3066220Sgblack@eecs.umich.edu    installSegDesc(tc, SEGMENT_REG_SS, dsDesc, true);
3075299Sgblack@eecs.umich.edu
3085299Sgblack@eecs.umich.edu    //Activate long mode.
3095299Sgblack@eecs.umich.edu    cr0.pg = 1;
3106220Sgblack@eecs.umich.edu    tc->setMiscReg(MISCREG_CR0, cr0);
3115299Sgblack@eecs.umich.edu
3127720Sgblack@eecs.umich.edu    tc->pcState(tc->getSystemPtr()->kernelEntry);
3135299Sgblack@eecs.umich.edu
3145299Sgblack@eecs.umich.edu    // We should now be in long mode. Yay!
3155334Sgblack@eecs.umich.edu
3165615Sgblack@eecs.umich.edu    Addr ebdaPos = 0xF0000;
3175625Sgblack@eecs.umich.edu    Addr fixed, table;
3185615Sgblack@eecs.umich.edu
3195334Sgblack@eecs.umich.edu    //Write out the SMBios/DMI table
3205625Sgblack@eecs.umich.edu    writeOutSMBiosTable(ebdaPos, fixed, table);
3215625Sgblack@eecs.umich.edu    ebdaPos += (fixed + table);
3225625Sgblack@eecs.umich.edu    ebdaPos = roundUp(ebdaPos, 16);
3235625Sgblack@eecs.umich.edu
3245625Sgblack@eecs.umich.edu    //Write out the Intel MP Specification configuration table
3255625Sgblack@eecs.umich.edu    writeOutMPTable(ebdaPos, fixed, table);
3265625Sgblack@eecs.umich.edu    ebdaPos += (fixed + table);
3275299Sgblack@eecs.umich.edu}
3285299Sgblack@eecs.umich.edu
3295334Sgblack@eecs.umich.eduvoid
3305615Sgblack@eecs.umich.eduX86System::writeOutSMBiosTable(Addr header,
3315615Sgblack@eecs.umich.edu        Addr &headerSize, Addr &structSize, Addr table)
3325334Sgblack@eecs.umich.edu{
3335334Sgblack@eecs.umich.edu    // If the table location isn't specified, just put it after the header.
3345334Sgblack@eecs.umich.edu    // The header size as of the 2.5 SMBios specification is 0x1F bytes
3355615Sgblack@eecs.umich.edu    if (!table)
3365615Sgblack@eecs.umich.edu        table = header + 0x1F;
3375615Sgblack@eecs.umich.edu    smbiosTable->setTableAddr(table);
3385334Sgblack@eecs.umich.edu
3398706Sandreas.hansson@arm.com    smbiosTable->writeOut(physProxy, header, headerSize, structSize);
3405615Sgblack@eecs.umich.edu
3415615Sgblack@eecs.umich.edu    // Do some bounds checking to make sure we at least didn't step on
3425615Sgblack@eecs.umich.edu    // ourselves.
3435615Sgblack@eecs.umich.edu    assert(header > table || header + headerSize <= table);
3445615Sgblack@eecs.umich.edu    assert(table > header || table + structSize <= header);
3455334Sgblack@eecs.umich.edu}
3465334Sgblack@eecs.umich.edu
3475625Sgblack@eecs.umich.eduvoid
3485625Sgblack@eecs.umich.eduX86System::writeOutMPTable(Addr fp,
3495625Sgblack@eecs.umich.edu        Addr &fpSize, Addr &tableSize, Addr table)
3505625Sgblack@eecs.umich.edu{
3515625Sgblack@eecs.umich.edu    // If the table location isn't specified and it exists, just put
3525625Sgblack@eecs.umich.edu    // it after the floating pointer. The fp size as of the 1.4 Intel MP
3535625Sgblack@eecs.umich.edu    // specification is 0x10 bytes.
3545625Sgblack@eecs.umich.edu    if (mpConfigTable) {
3555625Sgblack@eecs.umich.edu        if (!table)
3565625Sgblack@eecs.umich.edu            table = fp + 0x10;
3575625Sgblack@eecs.umich.edu        mpFloatingPointer->setTableAddr(table);
3585625Sgblack@eecs.umich.edu    }
3595625Sgblack@eecs.umich.edu
3608706Sandreas.hansson@arm.com    fpSize = mpFloatingPointer->writeOut(physProxy, fp);
3615625Sgblack@eecs.umich.edu    if (mpConfigTable)
3628706Sandreas.hansson@arm.com        tableSize = mpConfigTable->writeOut(physProxy, table);
3635625Sgblack@eecs.umich.edu    else
3645625Sgblack@eecs.umich.edu        tableSize = 0;
3655625Sgblack@eecs.umich.edu
3665625Sgblack@eecs.umich.edu    // Do some bounds checking to make sure we at least didn't step on
3675625Sgblack@eecs.umich.edu    // ourselves and the fp structure was the size we thought it was.
3685625Sgblack@eecs.umich.edu    assert(fp > table || fp + fpSize <= table);
3695625Sgblack@eecs.umich.edu    assert(table > fp || table + tableSize <= fp);
3705625Sgblack@eecs.umich.edu    assert(fpSize == 0x10);
3715625Sgblack@eecs.umich.edu}
3725625Sgblack@eecs.umich.edu
3735334Sgblack@eecs.umich.edu
3745132Sgblack@eecs.umich.eduX86System::~X86System()
3755132Sgblack@eecs.umich.edu{
3765334Sgblack@eecs.umich.edu    delete smbiosTable;
3775132Sgblack@eecs.umich.edu}
3785132Sgblack@eecs.umich.edu
3795132Sgblack@eecs.umich.eduX86System *
3805132Sgblack@eecs.umich.eduX86SystemParams::create()
3815132Sgblack@eecs.umich.edu{
3825132Sgblack@eecs.umich.edu    return new X86System(this);
3835132Sgblack@eecs.umich.edu}
384