131a132,147
> class RealViewTemperatureSensor(SimObject):
> type = 'RealViewTemperatureSensor'
> cxx_header = "dev/arm/rv_ctrl.hh"
>
> parent = Param.RealViewCtrl(Parent.any, "RealView controller")
>
> system = Param.System(Parent.any, "system")
>
> # See ARM DUI 0447J (ARM Motherboard Express uATX -- V2M-P1) and
> # the individual core/logic tile reference manuals for details
> # about the site/position/dcc/device allocation.
> site = Param.UInt8("Board Site")
> position = Param.UInt8("Position in device stack")
> dcc = Param.UInt8("Daughterboard Configuration Controller")
> device = Param.UInt8("Device ID")
>
142a159,161
> class Temperature(RealViewTemperatureSensor):
> site, position, dcc = (0, 0, 0)
>
147a167,169
> # See Table 4.19 in ARM DUI 0447J (Motherboard Express uATX TRM).
> temp_crtl = Temperature(device=0)
>