RealView.py (10037:5cac77888310) RealView.py (10187:7fef26827810)
1# Copyright (c) 2009-2013 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

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

160 vnc = Param.VncInput(Parent.any, "Vnc server for remote frame buffer display")
161 amba_id = 0x00141111
162 enable_capture = Param.Bool(True, "capture frame to system.framebuffer.bmp")
163
164
165class HDLcd(AmbaDmaDevice):
166 type = 'HDLcd'
167 cxx_header = "dev/arm/hdlcd.hh"
1# Copyright (c) 2009-2013 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

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

160 vnc = Param.VncInput(Parent.any, "Vnc server for remote frame buffer display")
161 amba_id = 0x00141111
162 enable_capture = Param.Bool(True, "capture frame to system.framebuffer.bmp")
163
164
165class HDLcd(AmbaDmaDevice):
166 type = 'HDLcd'
167 cxx_header = "dev/arm/hdlcd.hh"
168 pixel_clock = Param.Clock('65MHz', "Clock frequency of the pixel clock "
169 "(i.e. PXLREFCLK / OSCCLK 5; 23.75MHz "
170 "default up to 165MHz)")
168 # For reference, 1024x768MR-16@60 ~= 56 MHz
169 # 1920x1080MR-16@60 ~= 137 MHz
170 # 3840x2160MR-16@60 ~= 533 MHz
171 # Match against the resolution selected in the Linux DTS/DTB file.
172 pixel_clock = Param.Clock('137MHz', "Clock frequency of the pixel clock "
173 "(i.e. PXLREFCLK / OSCCLK 5")
171 vnc = Param.VncInput(Parent.any, "Vnc server for remote frame buffer "
172 "display")
173 amba_id = 0x00141000
174 enable_capture = Param.Bool(True, "capture frame to system.framebuffer.bmp")
175
176class RealView(Platform):
177 type = 'RealView'
178 cxx_header = "dev/arm/realview.hh"

--- 298 unchanged lines hidden ---
174 vnc = Param.VncInput(Parent.any, "Vnc server for remote frame buffer "
175 "display")
176 amba_id = 0x00141000
177 enable_capture = Param.Bool(True, "capture frame to system.framebuffer.bmp")
178
179class RealView(Platform):
180 type = 'RealView'
181 cxx_header = "dev/arm/realview.hh"

--- 298 unchanged lines hidden ---