Deleted Added
sdiff udiff text old ( 11168:f98eb2da15a4 ) new ( 11421:74c1e6513bd0 )
full compact
1/*
2 * Copyright (c) 2010,2013,2015 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

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

39
40#ifndef __DEV_ARM_RV_HH__
41#define __DEV_ARM_RV_HH__
42
43#include "base/bitunion.hh"
44#include "dev/io_device.hh"
45#include "params/RealViewCtrl.hh"
46#include "params/RealViewOsc.hh"
47
48/** @file
49 * This implements the simple real view registers on a PBXA9
50 */
51
52class RealViewCtrl : public BasicPioDevice
53{
54 public:

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

214 public: // RealViewCtrl::Device interface
215 uint32_t read() const override;
216 void write(uint32_t freq) override;
217
218 protected:
219 void clockPeriod(Tick clock_period);
220};
221
222
223#endif // __DEV_ARM_RV_HH__