intmessage.hh (5654:340254de2031) intmessage.hh (5655:74f76480407f)
1/*
2 * Copyright (c) 2008 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;

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

61 };
62
63 static const char * const names[NumModes] = {
64 "Fixed", "LowestPriority", "SMI", "Reserved",
65 "NMI", "INIT", "Reserved", "ExtInt"
66 };
67
68 static inline bool
1/*
2 * Copyright (c) 2008 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;

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

61 };
62
63 static const char * const names[NumModes] = {
64 "Fixed", "LowestPriority", "SMI", "Reserved",
65 "NMI", "INIT", "Reserved", "ExtInt"
66 };
67
68 static inline bool
69 isUnmaskable(int mode)
70 {
71 return (mode == SMI || mode == NMI ||
72 mode == INIT || mode == ExtInt);
73 }
74
75 static inline bool
76 isMaskable(int mode)
77 {
78 return (mode == Fixed || mode == LowestPriority);
79 }
80
81 static inline bool
82 isReserved(int mode)
83 {
69 isReserved(int mode)
70 {
84 return !(isMaskable(mode) || isUnmaskable(mode));
71 return mode == 3 || mode == 6;
85 }
86 }
87
88 static const Addr TriggerIntOffset = 0;
89
90 static inline PacketPtr
91 prepIntRequest(const uint8_t id, Addr offset, Addr size)
92 {

--- 31 unchanged lines hidden ---
72 }
73 }
74
75 static const Addr TriggerIntOffset = 0;
76
77 static inline PacketPtr
78 prepIntRequest(const uint8_t id, Addr offset, Addr size)
79 {

--- 31 unchanged lines hidden ---