ufs_device.hh (11168:f98eb2da15a4) ufs_device.hh (11174:5a9019db4a08)
1/*
2 * Copyright (c) 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

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

818 };
819
820 };
821
822 //All access functions are inherrited; no need to make them public
823 /**
824 * Address range functions
825 */
1/*
2 * Copyright (c) 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

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

818 };
819
820 };
821
822 //All access functions are inherrited; no need to make them public
823 /**
824 * Address range functions
825 */
826 AddrRangeList getAddrRanges() const;
826 AddrRangeList getAddrRanges() const override;
827
828 /**
829 * register access functions
830 */
827
828 /**
829 * register access functions
830 */
831 Tick read(PacketPtr pkt);
832 Tick write(PacketPtr pkt);
831 Tick read(PacketPtr pkt) override;
832 Tick write(PacketPtr pkt) override;
833 // end of access functions
834
835 /**
836 * Initialization function. Sets the sefault HCI register values
837 */
838 void setValues();
839
840 /**

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

983 * A read from disk data structure can vary in size and is therefor
984 * allocated on creation. It can only be destroyed once that particular
985 * read action has completed. This function is called on completion of a
986 * read from disk action to handle this.
987 */
988 void readGarbage();
989
990 /**register statistics*/
833 // end of access functions
834
835 /**
836 * Initialization function. Sets the sefault HCI register values
837 */
838 void setValues();
839
840 /**

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

983 * A read from disk data structure can vary in size and is therefor
984 * allocated on creation. It can only be destroyed once that particular
985 * read action has completed. This function is called on completion of a
986 * read from disk action to handle this.
987 */
988 void readGarbage();
989
990 /**register statistics*/
991 void regStats();
991 void regStats() override;
992
993 /**
994 * Host controller information
995 */
996 const Addr pioAddr;
997 const Addr pioSize;
998 const Tick pioDelay;
999 const int intNum;

--- 224 unchanged lines hidden ---
992
993 /**
994 * Host controller information
995 */
996 const Addr pioAddr;
997 const Addr pioSize;
998 const Tick pioDelay;
999 const int intNum;

--- 224 unchanged lines hidden ---