Deleted Added
sdiff udiff text old ( 8739:925f15f96322 ) new ( 8741:491297d019f3 )
full compact
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;

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

31/** @file
32 * Implementation of Tsunami platform.
33 */
34
35#include <deque>
36#include <string>
37#include <vector>
38
39#include "config/the_isa.hh"
40#include "cpu/intr_control.hh"
41#include "dev/alpha/tsunami.hh"
42#include "dev/alpha/tsunami_cchip.hh"
43#include "dev/alpha/tsunami_io.hh"
44#include "dev/alpha/tsunami_pchip.hh"
45#include "dev/terminal.hh"
46#include "sim/system.hh"
47
48using namespace std;
49//Should this be AlphaISA?
50using namespace TheISA;
51
52Tsunami::Tsunami(const Params *p)
53 : Platform(p), system(p->system)
54{
55#if FULL_SYSTEM //XXX No platform pointer in SE mode.
56 // set the back pointer from the system to myself
57 system->platform = this;
58#endif
59
60 for (int i = 0; i < Tsunami::Max_CPUs; i++)
61 intr_sum_type[i] = 0;
62}
63
64Tick
65Tsunami::intrFrequency()
66{
67 return io->frequency();
68}
69
70void
71Tsunami::postConsoleInt()
72{
73 io->postPIC(0x10);
74}
75

--- 60 unchanged lines hidden ---