From 4d53a10a15baa37684c9ad1e14a9392da215dc84 Mon Sep 17 00:00:00 2001 From: kajoljain379 Date: Sat, 12 Jan 2019 14:17:30 +0530 Subject: [PATCH] arch-power: Added Logical Partitioning Control Register(LPCR) Register Change-Id: Id9bf672007cc7dfdabc3a073d79715d74e1975ed Signed-off-by: kajoljain379 --- src/arch/power/miscregs.hh | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/src/arch/power/miscregs.hh b/src/arch/power/miscregs.hh index 201fa2b37..cb05b114d 100644 --- a/src/arch/power/miscregs.hh +++ b/src/arch/power/miscregs.hh @@ -134,6 +134,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__ -- 2.30.2