realview.hh (9525:0587c8983d47) realview.hh (10356:198dfef33403)
1/*
2 * Copyright (c) 2009 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

74 /**
75 * Constructor for the Tsunami Class.
76 * @param name name of the object
77 * @param s system the object belongs to
78 * @param intctrl pointer to the interrupt controller
79 */
80 RealView(const Params *p);
81
1/*
2 * Copyright (c) 2009 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

74 /**
75 * Constructor for the Tsunami Class.
76 * @param name name of the object
77 * @param s system the object belongs to
78 * @param intctrl pointer to the interrupt controller
79 */
80 RealView(const Params *p);
81
82 /** In init do some checks to help verify we're setup correctly */
83 virtual void initState();
84
82 /** Give platform a pointer to interrupt controller */
83 void setGic(BaseGic *_gic) { gic = _gic; }
84
85 /**
86 * Cause the cpu to post a serial interrupt to the CPU.
87 */
88 virtual void postConsoleInt();
89

--- 35 unchanged lines hidden ---
85 /** Give platform a pointer to interrupt controller */
86 void setGic(BaseGic *_gic) { gic = _gic; }
87
88 /**
89 * Cause the cpu to post a serial interrupt to the CPU.
90 */
91 virtual void postConsoleInt();
92

--- 35 unchanged lines hidden ---