-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'pull-14nov18' of git://git.denx.de/u-boot-dm
- virtio implementation and supporting patches - DM_FLAG_PRE_RELOC fixes - regmap improvements - minor buildman and sandbox things
- Loading branch information
Showing
171 changed files
with
7,486 additions
and
343 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
Documentation/devicetree/bindings/misc/gdsys,iocon_fpga.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
gdsys IHS FPGA for CON devices | ||
|
||
The gdsys IHS FPGA is the main FPGA on gdsys CON devices. This driver provides | ||
support for enabling and starting the FPGA, as well as verifying working bus | ||
communication. | ||
|
||
Required properties: | ||
- compatible: must be "gdsys,iocon_fpga" | ||
- reset-gpios: List of GPIOs controlling the FPGA's reset | ||
- done-gpios: List of GPIOs notifying whether the FPGA's reconfiguration is | ||
done | ||
|
||
Example: | ||
|
||
FPGA0 { | ||
compatible = "gdsys,iocon_fpga"; | ||
reset-gpios = <&PPCPCA 26 0>; | ||
done-gpios = <&GPIO_VB0 19 0>; | ||
}; |
19 changes: 19 additions & 0 deletions
19
Documentation/devicetree/bindings/misc/gdsys,iocpu_fpga.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
gdsys IHS FPGA for CPU devices | ||
|
||
The gdsys IHS FPGA is the main FPGA on gdsys CPU devices. This driver provides | ||
support for enabling and starting the FPGA, as well as verifying working bus | ||
communication. | ||
|
||
Required properties: | ||
- compatible: must be "gdsys,iocpu_fpga" | ||
- reset-gpios: List of GPIOs controlling the FPGA's reset | ||
- done-gpios: List of GPIOs notifying whether the FPGA's reconfiguration is | ||
done | ||
|
||
Example: | ||
|
||
FPGA0 { | ||
compatible = "gdsys,iocpu_fpga"; | ||
reset-gpios = <&PPCPCA 26 0>; | ||
done-gpios = <&GPIO_VB0 19 0>; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
gdsys soc bus driver | ||
|
||
This driver provides a simple interface for the busses associated with gdsys | ||
IHS FPGAs. The bus itself contains devices whose register maps are contained | ||
within the FPGA's register space. | ||
|
||
Required properties: | ||
- fpga: A phandle to the controlling IHS FPGA | ||
|
||
Example: | ||
|
||
FPGA0BUS: fpga0bus { | ||
compatible = "gdsys,soc"; | ||
ranges = <0x0 0xe0600000 0x00004000>; | ||
fpga = <&FPGA0>; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
if TARGET_QEMU_ARM_32BIT || TARGET_QEMU_ARM_64BIT | ||
|
||
config SYS_TEXT_BASE | ||
default 0x00000000 | ||
|
||
config BOARD_SPECIFIC_OPTIONS # dummy | ||
def_bool y | ||
imply VIRTIO_MMIO | ||
imply VIRTIO_PCI | ||
imply VIRTIO_NET | ||
imply VIRTIO_BLK | ||
|
||
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.