forked from enclustra-bsp/xilinx-uboot
-
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 'v2019.01-rc3' into master
Prepare v2019.01-rc3 CONFIG_USB_STORAGE is removed from zc702/zc706_eeprom because it is selected automatically. Signed-off-by: Michal Simek <[email protected]>
- Loading branch information
Showing
2,052 changed files
with
96,462 additions
and
17,077 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,8 @@ Descriptions of section entries: | |
|
||
P: Person (obsolete) | ||
M: Mail patches to: FullName <address@domain> | ||
R: Designated reviewer: FullName <address@domain> | ||
These reviewers should be CCed on patches. | ||
L: Mailing list that is relevant to this area | ||
W: Web-page with status/info | ||
Q: Patchwork web based patch tracking system site | ||
|
@@ -158,6 +160,26 @@ T: git git://git.denx.de/u-boot-pxa.git | |
F: arch/arm/cpu/pxa/ | ||
F: arch/arm/include/asm/arch-pxa/ | ||
|
||
ARM MEDIATEK | ||
M: Ryder Lee <[email protected]> | ||
M: Weijie Gao <[email protected]> | ||
S: Maintained | ||
F: arch/arm/mach-mediatek/ | ||
F: arch/arm/include/asm/arch-mediatek/ | ||
F: board/mediatek/ | ||
F: doc/README.mediatek | ||
F: drivers/clk/mediatek/ | ||
F: drivers/mmc/mtk-sd.c | ||
F: drivers/pinctrl/mediatek/ | ||
F: drivers/power/domain/mtk-power-domain.c | ||
F: drivers/ram/mediatek/ | ||
F: drivers/spi/mtk_qspi.c | ||
F: drivers/timer/mtk_timer.c | ||
F: drivers/watchdog/mtk_wdt.c | ||
F: tools/mtk_image.c | ||
F: tools/mtk_image.h | ||
N: mediatek | ||
|
||
ARM OWL | ||
M: Manivannan Sadhasivam <[email protected]> | ||
S: Maintained | ||
|
@@ -358,6 +380,11 @@ S: Maintained | |
T: git git://git.denx.de/u-boot-microblaze.git | ||
F: arch/arm/mach-zynqmp-r5/ | ||
|
||
BINMAN | ||
M: Simon Glass <[email protected]> | ||
S: Maintained | ||
F: tools/binman/ | ||
|
||
BUILDMAN | ||
M: Simon Glass <[email protected]> | ||
S: Maintained | ||
|
@@ -394,6 +421,7 @@ F: test/dm/ | |
|
||
EFI PAYLOAD | ||
M: Alexander Graf <[email protected]> | ||
R: Heinrich Schuchardt <[email protected]> | ||
S: Maintained | ||
T: git git://github.com/agraf/u-boot.git | ||
F: doc/README.uefi | ||
|
@@ -484,6 +512,24 @@ S: Maintained | |
T: git git://git.denx.de/u-boot-mips.git | ||
F: arch/mips/ | ||
|
||
MIPS MSCC | ||
M: Gregory CLEMENT <[email protected]> | ||
M: Lars Povlsen <[email protected]> | ||
M: Horatiu Vultur <[email protected]> | ||
S: Maintained | ||
F: arch/mips/mach-mscc/ | ||
F: arch/mips/dts/luton* | ||
F: arch/mips/dts/mscc* | ||
F: arch/mips/dts/ocelot* | ||
F: board/mscc/ | ||
F: configs/mscc* | ||
F: include/configs/vcoreiii.h | ||
|
||
MIPS JZ4780 | ||
M: Ezequiel Garcia <[email protected]> | ||
S: Maintained | ||
F: arch/mips/mach-jz47xx/ | ||
|
||
MMC | ||
M: Jaehoon Chung <[email protected]> | ||
S: Maintained | ||
|
@@ -691,5 +737,6 @@ L: [email protected] | |
Q: http://patchwork.ozlabs.org/project/uboot/list/ | ||
S: Maintained | ||
T: git git://git.denx.de/u-boot.git | ||
F: configs/tools-only_defconfig | ||
F: * | ||
F: */ |
Oops, something went wrong.