Deleted Added
sdiff udiff text old ( 13826:34a9929c35eb ) new ( 13878:40a2ec55ad89 )
full compact
1/*
2 * Copyright (c) 2018 Metempsy Technology Consulting
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;

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

37class Gicv3CPUInterface;
38class Gicv3Distributor;
39class Gicv3Redistributor;
40
41class Gicv3 : public BaseGic
42{
43 protected:
44 friend class Gicv3CPUInterface;
45
46 typedef Gicv3Params Params;
47 Gicv3Distributor * distributor;
48 std::vector<Gicv3Redistributor *> redistributors;
49 std::vector<Gicv3CPUInterface *> cpuInterfaces;
50 AddrRange distRange;
51 AddrRange redistRange;
52 AddrRangeList addrRanges;
53
54 public:
55
56 // Special interrupt IDs, as per SPEC 2.2.1 section
57 static const int INTID_SECURE = 1020;
58 static const int INTID_NONSECURE = 1021;
59 static const int INTID_SPURIOUS = 1023;
60

--- 85 unchanged lines hidden ---