tsunami.cc (8741:491297d019f3) tsunami.cc (8789:a8b63a0ee14c)
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
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"
39#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{
40#include "config/the_isa.hh"
41#include "cpu/intr_control.hh"
42#include "dev/alpha/tsunami.hh"
43#include "dev/alpha/tsunami_cchip.hh"
44#include "dev/alpha/tsunami_io.hh"
45#include "dev/alpha/tsunami_pchip.hh"
46#include "dev/terminal.hh"
47

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

54{
55 for (int i = 0; i < Tsunami::Max_CPUs; i++)
56 intr_sum_type[i] = 0;
57}
58
59void
60Tsunami::init()
61{
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());
62 AlphaSystem *alphaSystem = dynamic_cast<AlphaSystem *>(system);
63 assert(alphaSystem);
64 alphaSystem->setIntrFreq(io->frequency());
71#endif
72}
73
74void
75Tsunami::postConsoleInt()
76{
77 io->postPIC(0x10);
78}
79

--- 60 unchanged lines hidden ---
65}
66
67void
68Tsunami::postConsoleInt()
69{
70 io->postPIC(0x10);
71}
72

--- 60 unchanged lines hidden ---