Deleted Added
sdiff udiff text old ( 8741:491297d019f3 ) new ( 8789:a8b63a0ee14c )
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/full_system.hh"
40
41#if FULL_SYSTEM //XXX AlphaSystem doesn't build in SE mode yet.
42#include "arch/alpha/system.hh"
43#endif
44
45#include "config/the_isa.hh"
46#include "cpu/intr_control.hh"
47#include "dev/alpha/tsunami.hh"
48#include "dev/alpha/tsunami_cchip.hh"
49#include "dev/alpha/tsunami_io.hh"
50#include "dev/alpha/tsunami_pchip.hh"
51#include "dev/terminal.hh"
52

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

59{
60 for (int i = 0; i < Tsunami::Max_CPUs; i++)
61 intr_sum_type[i] = 0;
62}
63
64void
65Tsunami::init()
66{
67#if FULL_SYSTEM //XXX AlphaSystem doesn't build in SE mode yet.
68 AlphaSystem *alphaSystem = dynamic_cast<AlphaSystem *>(system);
69 assert(alphaSystem);
70 alphaSystem->setIntrFreq(io->frequency());
71#endif
72}
73
74void
75Tsunami::postConsoleInt()
76{
77 io->postPIC(0x10);
78}
79

--- 60 unchanged lines hidden ---