From: kajoljain379 Date: Sat, 12 Jan 2019 08:47:30 +0000 (+0530) Subject: arch-power: Added Logical Partitioning Control Register(LPCR) Register X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=019e920c151f4ed95386c572b0ad75bed1675602;p=gem5.git arch-power: Added Logical Partitioning Control Register(LPCR) Register Change-Id: Id9bf672007cc7dfdabc3a073d79715d74e1975ed Signed-off-by: kajoljain379 --- diff --git a/src/arch/power/miscregs.hh b/src/arch/power/miscregs.hh index 0e10e053f..0f2d0e72a 100644 --- a/src/arch/power/miscregs.hh +++ b/src/arch/power/miscregs.hh @@ -132,6 +132,26 @@ BitUnion64(Ptcr) Bitfield<4,0> pats; EndBitUnion(Ptcr) +BitUnion64(Lpcr) + Bitfield<63,60> vc; + Bitfield<54,52> dpfd; + Bitfield<25> ile; + Bitfield<24,23> ail; + Bitfield<22> uprt; + Bitfield<21> evirt; + Bitfield<20> hr; + Bitfield<18> onl; + Bitfield<17> ld; + Bitfield<16,12> pece; + Bitfield<11> mer; + Bitfield<10> gtse; + Bitfield<9> tc; + Bitfield<4> heic; + Bitfield<3> lpes; + Bitfield<1> hvice; + Bitfield<0> hdice; +EndBitUnion(Lpcr) + } // namespace PowerISA #endif // __ARCH_POWER_MISCREGS_HH__