system.cc (4762:c94e103c83ad) system.cc (4826:259b996a6da6)
1/*
2 * Copyright (c) 2004-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 26 unchanged lines hidden (view full) ---

35 * @file
36 * This code loads the linux kernel, console, pal and patches certain
37 * functions. The symbol tables are loaded so that traces can show
38 * the executing function and we can skip functions. Various delay
39 * loops are skipped and their final values manually computed to speed
40 * up boot time.
41 */
42
1/*
2 * Copyright (c) 2004-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 26 unchanged lines hidden (view full) ---

35 * @file
36 * This code loads the linux kernel, console, pal and patches certain
37 * functions. The symbol tables are loaded so that traces can show
38 * the executing function and we can skip functions. Various delay
39 * loops are skipped and their final values manually computed to speed
40 * up boot time.
41 */
42
43#include "arch/arguments.hh"
44#include "arch/vtophys.hh"
45#include "arch/alpha/idle_event.hh"
46#include "arch/alpha/linux/system.hh"
47#include "arch/alpha/linux/threadinfo.hh"
48#include "arch/alpha/system.hh"
49#include "base/loader/symtab.hh"
50#include "cpu/thread_context.hh"
51#include "cpu/base.hh"
52#include "dev/platform.hh"
53#include "kern/linux/printk.hh"
54#include "kern/linux/events.hh"
55#include "mem/physical.hh"
56#include "mem/port.hh"
43#include "arch/vtophys.hh"
44#include "arch/alpha/idle_event.hh"
45#include "arch/alpha/linux/system.hh"
46#include "arch/alpha/linux/threadinfo.hh"
47#include "arch/alpha/system.hh"
48#include "base/loader/symtab.hh"
49#include "cpu/thread_context.hh"
50#include "cpu/base.hh"
51#include "dev/platform.hh"
52#include "kern/linux/printk.hh"
53#include "kern/linux/events.hh"
54#include "mem/physical.hh"
55#include "mem/port.hh"
56#include "sim/arguments.hh"
57#include "sim/byteswap.hh"
58
59using namespace std;
60using namespace AlphaISA;
61using namespace Linux;
62
63LinuxAlphaSystem::LinuxAlphaSystem(Params *p)
64 : AlphaSystem(p)

--- 134 unchanged lines hidden ---
57#include "sim/byteswap.hh"
58
59using namespace std;
60using namespace AlphaISA;
61using namespace Linux;
62
63LinuxAlphaSystem::LinuxAlphaSystem(Params *p)
64 : AlphaSystem(p)

--- 134 unchanged lines hidden ---