iob.cc (11294:a368064a2ab5) iob.cc (11793:ef606668d247)
1/*
2 * Copyright (c) 2006 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;

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

30
31/** @file
32 * This device implemetns the niagara I/O bridge chip. It manages incomming
33 * interrupts and posts them to the CPU when needed. It holds mask registers and
34 * various status registers for CPUs to check what interrupts are pending as
35 * well as facilities to send IPIs to other cpus.
36 */
37
1/*
2 * Copyright (c) 2006 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;

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

30
31/** @file
32 * This device implemetns the niagara I/O bridge chip. It manages incomming
33 * interrupts and posts them to the CPU when needed. It holds mask registers and
34 * various status registers for CPUs to check what interrupts are pending as
35 * well as facilities to send IPIs to other cpus.
36 */
37
38#include "dev/sparc/iob.hh"
39
38#include <cstring>
39
40#include "arch/sparc/faults.hh"
41#include "arch/sparc/isa_traits.hh"
42#include "base/bitfield.hh"
43#include "base/trace.hh"
44#include "cpu/intr_control.hh"
45#include "cpu/thread_context.hh"
46#include "debug/Iob.hh"
40#include <cstring>
41
42#include "arch/sparc/faults.hh"
43#include "arch/sparc/isa_traits.hh"
44#include "base/bitfield.hh"
45#include "base/trace.hh"
46#include "cpu/intr_control.hh"
47#include "cpu/thread_context.hh"
48#include "debug/Iob.hh"
47#include "dev/sparc/iob.hh"
48#include "dev/platform.hh"
49#include "mem/packet_access.hh"
50#include "mem/port.hh"
51#include "sim/faults.hh"
52#include "sim/system.hh"
53
54Iob::Iob(const Params *p)
55 : PioDevice(p), ic(p->platform->intrctrl)

--- 328 unchanged lines hidden ---
49#include "dev/platform.hh"
50#include "mem/packet_access.hh"
51#include "mem/port.hh"
52#include "sim/faults.hh"
53#include "sim/system.hh"
54
55Iob::Iob(const Params *p)
56 : PioDevice(p), ic(p->platform->intrctrl)

--- 328 unchanged lines hidden ---