1/*
2 * Copyright (c) 2014-2015 ARM Limited
3 * All rights reserved
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *

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

42 */
43class JobControl
44 : public GPUBlockInt
45{
46 public:
47 JobControl(GPU &_gpu);
48 virtual ~JobControl();
49
50 void reset() override;
51
52 uint32_t readReg(RegAddr idx) override;
53 void writeReg(RegAddr idx, uint32_t value) override;
54
55 uint32_t readRegRaw(RegAddr idx) override;
56 void writeRegRaw(RegAddr idx, uint32_t value) override;
57
58 /**
59 * Signal job done.

--- 36 unchanged lines hidden ---