Deleted Added
sdiff udiff text old ( 14009:a4b36ce75361 ) new ( 14196:ce364f5517f3 )
full compact
1/*
2 * Copyright (c) 2011-2013, 2018 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

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

65 * This object is a proxy for a structural port, to be used for debug
66 * accesses to secure memory.
67 *
68 * The addresses are interpreted as physical addresses to secure memory.
69 */
70class SecurePortProxy : public PortProxy
71{
72 public:
73 using PortProxy::PortProxy;
74
75 bool tryReadBlob(Addr addr, void *p, int size) const override;
76 bool tryWriteBlob(Addr addr, const void *p, int size) const override;
77 bool tryMemsetBlob(Addr addr, uint8_t val, int size) const override;
78};
79
80#endif // __MEM_SECURE_PORT_PROXY_HH__