1008c1008
< class VExpress_GEM5_V1(RealView):
---
> class VExpress_GEM5_V1_Base(RealView):
1133,1135d1132
< hdlcd = HDLcd(pxl_clk=dcc.osc_pxl,
< pio_addr=0x2b000000, int_num=95)
<
1139d1135
< self.hdlcd,
1204c1200
< dt = list(super(VExpress_GEM5_V1, self).generateDeviceTree(state))
---
> dt = list(super(VExpress_GEM5_V1_Base, self).generateDeviceTree(state))
1214a1211,1220
>
>
> class VExpress_GEM5_V1(VExpress_GEM5_V1_Base):
> hdlcd = HDLcd(pxl_clk=VExpress_GEM5_V1_Base.dcc.osc_pxl,
> pio_addr=0x2b000000, int_num=95)
>
> def _on_chip_devices(self):
> return super(VExpress_GEM5_V1,self)._on_chip_devices() + [
> self.hdlcd,
> ]