upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
687 B
23 lines
687 B
* Guntermann & Drunck Integrated Hardware Systems OSD
|
|
|
|
Required properties:
|
|
- compatible: "gdsys,ihs_video_out"
|
|
- reg: A combination of three register spaces:
|
|
- Register base for the video registers
|
|
- Register base for the OSD registers
|
|
- Address of the OSD video memory
|
|
- mode: The initial resolution and frequency: "1024_768_60", "720_400_70", or
|
|
"640_480_70"
|
|
- clk_gen: phandle to the pixel clock generator
|
|
- dp_tx: phandle to the display associated with the OSD
|
|
|
|
Example:
|
|
|
|
fpga0_video0 {
|
|
compatible = "gdsys,ihs_video_out";
|
|
reg = <0x100 0x40
|
|
0x180 0x20
|
|
0x1000 0x1000>;
|
|
dp_tx = <&fpga0_dp_video0>;
|
|
clk_gen = <&fpga0_video0_clkgen>;
|
|
};
|
|
|