RealView.py (9835:cc7a7fc71c42) RealView.py (9939:735d73e394d3)
1# Copyright (c) 2009-2012 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

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

134 amba_id = 0x00141050
135
136class Pl111(AmbaDmaDevice):
137 type = 'Pl111'
138 cxx_header = "dev/arm/pl111.hh"
139 pixel_clock = Param.Clock('24MHz', "Pixel clock")
140 vnc = Param.VncInput(Parent.any, "Vnc server for remote frame buffer display")
141 amba_id = 0x00141111
1# Copyright (c) 2009-2012 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

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

134 amba_id = 0x00141050
135
136class Pl111(AmbaDmaDevice):
137 type = 'Pl111'
138 cxx_header = "dev/arm/pl111.hh"
139 pixel_clock = Param.Clock('24MHz', "Pixel clock")
140 vnc = Param.VncInput(Parent.any, "Vnc server for remote frame buffer display")
141 amba_id = 0x00141111
142 enable_capture = Param.Bool(True, "capture frame to system.framebuffer.bmp")
142
143
144
143class HDLcd(AmbaDmaDevice):
144 type = 'HDLcd'
145 cxx_header = "dev/arm/hdlcd.hh"
146 pixel_clock = Param.Clock('65MHz', "Clock frequency of the pixel clock "
147 "(i.e. PXLREFCLK / OSCCLK 5; 23.75MHz "
148 "default up to 165MHz)")
149 vnc = Param.VncInput(Parent.any, "Vnc server for remote frame buffer "
150 "display")
151 amba_id = 0x00141000
145class HDLcd(AmbaDmaDevice):
146 type = 'HDLcd'
147 cxx_header = "dev/arm/hdlcd.hh"
148 pixel_clock = Param.Clock('65MHz', "Clock frequency of the pixel clock "
149 "(i.e. PXLREFCLK / OSCCLK 5; 23.75MHz "
150 "default up to 165MHz)")
151 vnc = Param.VncInput(Parent.any, "Vnc server for remote frame buffer "
152 "display")
153 amba_id = 0x00141000
154 enable_capture = Param.Bool(True, "capture frame to system.framebuffer.bmp")
152
153class RealView(Platform):
154 type = 'RealView'
155 cxx_header = "dev/arm/realview.hh"
156 system = Param.System(Parent.any, "system")
157 pci_cfg_base = Param.Addr(0, "Base address of PCI Configuraiton Space")
158 mem_start_addr = Param.Addr(0, "Start address of main memory")
159 max_mem_size = Param.Addr('256MB', "Maximum amount of RAM supported by platform")

--- 275 unchanged lines hidden ---
155
156class RealView(Platform):
157 type = 'RealView'
158 cxx_header = "dev/arm/realview.hh"
159 system = Param.System(Parent.any, "system")
160 pci_cfg_base = Param.Addr(0, "Base address of PCI Configuraiton Space")
161 mem_start_addr = Param.Addr(0, "Start address of main memory")
162 max_mem_size = Param.Addr('256MB', "Maximum amount of RAM supported by platform")

--- 275 unchanged lines hidden ---