| #
3457bbaf |
| 13-Apr-2016 |
Sam Protsenko <semen.protsenko@linaro.org> |
usb: gadget: Move CONFIG_USB_GADGET_DUALSPEED to Kconfig
Move CONFIG_USB_GADGET_DUALSPEED option to Kconfig and make all UDC controllers select USB_GADGET_DUALSPEED: - add next options to Kconfig
usb: gadget: Move CONFIG_USB_GADGET_DUALSPEED to Kconfig
Move CONFIG_USB_GADGET_DUALSPEED option to Kconfig and make all UDC controllers select USB_GADGET_DUALSPEED: - add next options to Kconfig selecting USB_GADGET_DUALSPEED: - USB_GADGET_ATMEL_USBA - USB_GADGET_DWC2_OTG - USB_DWC3 - CI_UDC - make USB_MUSB_GADGET select USB_GADGET_DUALSPEED
While at it, make some related fixes: - remove DUALSPEED from configs that don't enable gadget support: - kwb.h - tseries.h - add missing USB_GADGET option to next configs: - novena_defconfig - pcm051_rev*_defconfig - xfi3_defconfig
Signed-off-by: Sam Protsenko <semen.protsenko@linaro.org>
show more ...
|
| #
a59a77f8 |
| 13-Apr-2016 |
Sam Protsenko <semen.protsenko@linaro.org> |
usb: gadget: Move CONFIG_USB_GADGET_VBUS_DRAW to Kconfig
The description was borrowed from kernel. Definitions were added to defconfig files in a way that "make savedefconfig" generates exactly the
usb: gadget: Move CONFIG_USB_GADGET_VBUS_DRAW to Kconfig
The description was borrowed from kernel. Definitions were added to defconfig files in a way that "make savedefconfig" generates exactly the same file as used defconfig.
Boards using 0 mA as CONFIG_USB_GADGET_VBUS_DRAW value were moved to use 2 mA (as minimal allowed by Kconfig).
Signed-off-by: Sam Protsenko <semen.protsenko@linaro.org>
show more ...
|
| #
541c9be8 |
| 13-Apr-2016 |
Tom Rini <trini@konsulko.com> |
Merge branch 'master' of git://www.denx.de/git/u-boot-microblaze
|
| #
08afaf1b |
| 07-Apr-2016 |
Michal Simek <michal.simek@xilinx.com> |
ARM64: zynqmp: Clean header after moving stuff to Kconfig
Moving stuff to Kconfig by script is keep some empty lines or comment in the file. Remove them.
Signed-off-by: Michal Simek <michal.simek@x
ARM64: zynqmp: Clean header after moving stuff to Kconfig
Moving stuff to Kconfig by script is keep some empty lines or comment in the file. Remove them.
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
show more ...
|
| #
407b76f9 |
| 02-Nov-2015 |
Siva Durga Prasad Paladugu <siva.durga.paladugu@xilinx.com> |
ARM64: zynqmp: Move kernel and fdt offsets and sizes to board config file
Move kernel and fdt offsets and sizes to board config file as the flash size varies across boards
Signed-off-by: Siva Durga
ARM64: zynqmp: Move kernel and fdt offsets and sizes to board config file
Move kernel and fdt offsets and sizes to board config file as the flash size varies across boards
Signed-off-by: Siva Durga Prasad Paladugu <sivadur@xilinx.com> Signed-off-by: Michal Simek <michal.simek@xilinx.com>
show more ...
|
| #
4ed6ed3c |
| 04-Apr-2016 |
Tom Rini <trini@konsulko.com> |
Merge branch 'master' of git://www.denx.de/git/u-boot-microblaze
|
| #
07654ba1 |
| 24-Mar-2016 |
Michal Simek <michal.simek@xilinx.com> |
ARM64: zynqmp: Enable EFI partition support
Enable EFI partition support for ZynqMP.
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
|
| #
679b994a |
| 30-Sep-2015 |
Michal Simek <michal.simek@xilinx.com> |
block: Add support for Ceva sata
Initial Ceva Sata init code.
Signed-off-by: Michal Simek <michal.simek@xilinx.com> Reviewed-by: Tom Rini <trini@konsulko.com>
|
| #
8d59d7f6 |
| 08-Feb-2016 |
Michal Simek <michal.simek@xilinx.com> |
ARM64: zynqmp: Read RAM information from DT
Read information about memory from DT. This patch simplify life with synchronization between DT and board files.
dram_init() only needs maximum RAM size
ARM64: zynqmp: Read RAM information from DT
Read information about memory from DT. This patch simplify life with synchronization between DT and board files.
dram_init() only needs maximum RAM size below 4GB that's why please sort banks in memory node. dram_init_banksize() copies memory setup to bi_dram[]. This will avoid reading information from DT twice.
Memory test start/end were changed to DDR location to let memtest still compiled.
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
show more ...
|
| #
a3afb4a4 |
| 18-Mar-2016 |
Michal Simek <michal.simek@xilinx.com> |
ARM64: Move HUSH enabling from board file to defconfig
Simplify board config file.
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
|
| #
46f68e68 |
| 18-Mar-2016 |
Michal Simek <monstr@monstr.eu> |
ARM64: zynqmp: Enable FAT write and EXT4 write for USB too
Enabling writing files to FAT and EXT4 for USB.
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
|
| #
5cfd9182 |
| 01-Feb-2016 |
Soren Brinkmann <soren.brinkmann@xilinx.com> |
ARM64: zynqmp: Decrease boot delay
Synchronize it with zynq platform.
Signed-off-by: Soren Brinkmann <soren.brinkmann@xilinx.com> Signed-off-by: Michal Simek <michal.simek@xilinx.com>
|
| #
f9d0fd8a |
| 25-Mar-2016 |
Sam Protsenko <semen.protsenko@linaro.org> |
usb: gadget: Move CONFIG_USB_GADGET to Kconfig
The description was borrowed from kernel. "tristate" type was changed to "bool" (I believe we don't support modules for u-boot yet, right?). CONFIG_USB
usb: gadget: Move CONFIG_USB_GADGET to Kconfig
The description was borrowed from kernel. "tristate" type was changed to "bool" (I believe we don't support modules for u-boot yet, right?). CONFIG_USB_GADGET requires CONFIG_USB to be defined too, so add it along as well.
Definitions were added to defconfig files in a way that "make savedefconfig" generates exactly the same file as used defconfig.
Signed-off-by: Sam Protsenko <semen.protsenko@linaro.org> [trini: Add zynq_zc702 conversion] Signed-off-by: Tom Rini <trini@konsulko.com>
show more ...
|
| #
7985cdf7 |
| 04-Mar-2016 |
Alexander Graf <agraf@suse.de> |
arm64: Remove non-full-va map code
By now the code to only have a single page table level with 64k page size and 42 bit address space is no longer used by any board in tree, so we can safely remove
arm64: Remove non-full-va map code
By now the code to only have a single page table level with 64k page size and 42 bit address space is no longer used by any board in tree, so we can safely remove it.
To clean up code, move the layerscape mmu code to the new defines, removing redundant field definitions.
Signed-off-by: Alexander Graf <agraf@suse.de>
show more ...
|
| #
96519f31 |
| 04-Mar-2016 |
Alexander Graf <agraf@suse.de> |
zymqmp: Replace home grown mmu code with generic table approach
Now that we have nice table driven page table creating code that gives us everything we need, move to that.
Signed-off-by: Alexander
zymqmp: Replace home grown mmu code with generic table approach
Now that we have nice table driven page table creating code that gives us everything we need, move to that.
Signed-off-by: Alexander Graf <agraf@suse.de>
show more ...
|
| #
69e173eb |
| 23-Feb-2016 |
Simon Glass <sjg@chromium.org> |
Move CONFIG_OF_LIBFDT to Kconfig
Move this option to Kconfig and tidy up existing boards.
Signed-off-by: Simon Glass <sjg@chromium.org>
|
| #
636ac181 |
| 23-Feb-2016 |
Michal Simek <michal.simek@xilinx.com> |
ARM: zynq: zynqmp: Enable DCC serial driver by default
Compile DCC serial driver by default.
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
|
| #
ce0335f2 |
| 04-Feb-2016 |
Michal Simek <michal.simek@xilinx.com> |
mmc: Kconfig: Add Arasan SDHCI entry
Add Arasan SDHCI entry to Kconfig and fix all references.
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
|
| #
78cb965a |
| 17-Nov-2015 |
Siva Durga Prasad Paladugu <siva.durga.paladugu@xilinx.com> |
zynqmp: nand: Add Nand driver support for zynqmp
Add nand driver support for zynqmp. The Nand controller used in ZynqMP is Arasan Nand Flash controller.
Signed-off-by: Siva Durga Prasad Paladugu <s
zynqmp: nand: Add Nand driver support for zynqmp
Add nand driver support for zynqmp. The Nand controller used in ZynqMP is Arasan Nand Flash controller.
Signed-off-by: Siva Durga Prasad Paladugu <sivadur@xilinx.com> [scottwood: Fix checkpatch warning] Signed-off-by: Scott Wood <oss@buserror.net>
show more ...
|
| #
19bde031 |
| 27-Jan-2016 |
Tom Rini <trini@konsulko.com> |
Merge branch 'master' of git://www.denx.de/git/u-boot-microblaze
|
| #
e2928f32 |
| 05-Jan-2016 |
Siva Durga Prasad Paladugu <siva.durga.paladugu@xilinx.com> |
ARM64: zynqmp: Define auto negotiation timeout
Define auto negotiation timeout as 20secs the default 4secs might not be sufficient always and hence defined for worst case. It is observed that autone
ARM64: zynqmp: Define auto negotiation timeout
Define auto negotiation timeout as 20secs the default 4secs might not be sufficient always and hence defined for worst case. It is observed that autoneg takes moretime if connected to outside network and hence increase it to 20secs.
Signed-off-by: Siva Durga Prasad Paladugu <sivadur@xilinx.com> Signed-off-by: Michal Simek <michal.simek@xilinx.com>
show more ...
|
| #
0cf0ef6a |
| 14-Jan-2016 |
Michal Simek <monstr@monstr.eu> |
ARM64: zynqmp: Do not setup bootargs
Bootargs will be taken from DTS files.
Signed-off-by: Michal Simek <monstr@monstr.eu> Signed-off-by: Michal Simek <michal.simek@xilinx.com>
|
| #
0e43140b |
| 11-Sep-2015 |
Siva Durga Prasad Paladugu <siva.durga.paladugu@xilinx.com> |
ARM64: zynqmp: Dont use shortcut for setenv
Dont use shortcut command for setenv as it wont work now due introduction of new command setexpr.
Signed-off-by: Siva Durga Prasad Paladugu <sivadur@xili
ARM64: zynqmp: Dont use shortcut for setenv
Dont use shortcut command for setenv as it wont work now due introduction of new command setexpr.
Signed-off-by: Siva Durga Prasad Paladugu <sivadur@xilinx.com> Signed-off-by: Michal Simek <michal.simek@xilinx.com>
show more ...
|
| #
1b19daf4 |
| 07-Sep-2015 |
Siva Durga Prasad Paladugu <siva.durga.paladugu@xilinx.com> |
ARM64: zynqmp: Modify the autoboot commands
Modify DFU commands to use latest kernel offsets and sizes as per modified partitions in the linux device tree.
Signed-off-by: Siva Durga Prasad Paladugu
ARM64: zynqmp: Modify the autoboot commands
Modify DFU commands to use latest kernel offsets and sizes as per modified partitions in the linux device tree.
Signed-off-by: Siva Durga Prasad Paladugu <sivadur@xilinx.com> Signed-off-by: Michal Simek <michal.simek@xilinx.com>
show more ...
|
| #
c4c96f2b |
| 24-Sep-2015 |
Michal Simek <michal.simek@xilinx.com> |
ARM64: zynqmp: Include GbE speed/duplex detection
Get right speed/duplex via mii info.
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
|