dvfs_handler.hh (10249:6bbb7ae309ac) dvfs_handler.hh (10360:919c02740209)
1/*
2 * Copyright (c) 2013-2014 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

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

186
187
188
189 /**
190 * Update performance level event, encapsulates all the required information
191 * for a future call to change a domain's performance level.
192 */
193 struct UpdateEvent : public Event {
1/*
2 * Copyright (c) 2013-2014 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

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

186
187
188
189 /**
190 * Update performance level event, encapsulates all the required information
191 * for a future call to change a domain's performance level.
192 */
193 struct UpdateEvent : public Event {
194 UpdateEvent() : Event(DVFS_Update_Pri) {}
194 UpdateEvent() : Event(DVFS_Update_Pri), domainIDToSet(0),
195 perfLevelToSet(0) {}
195
196 /**
197 * Static pointer to the single DVFS hander for all the update events
198 */
199 static DVFSHandler *dvfsHandler;
200
201 /**
202 * ID of the domain that will be changed by the in-flight event

--- 28 unchanged lines hidden ---
196
197 /**
198 * Static pointer to the single DVFS hander for all the update events
199 */
200 static DVFSHandler *dvfsHandler;
201
202 /**
203 * ID of the domain that will be changed by the in-flight event

--- 28 unchanged lines hidden ---