History log of /rk3399_rockchip-uboot/common/ (Results 1726 – 1750 of 5256)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
8d2f003912-Jun-2015 Paul Kocialkowski <contact@paulk.fr>

usb: board_usb_init and board_usb_cleanup calls in the fastboot command

Each USB download function command calls board_usb_init before registering the
USB gadget and board_usb_cleanup after de-regis

usb: board_usb_init and board_usb_cleanup calls in the fastboot command

Each USB download function command calls board_usb_init before registering the
USB gadget and board_usb_cleanup after de-registering it. On devices currently
using fasboot, musb-new is usually initialized earlier, but some other boards
might need the board_usb_init call to properly initialize musb-new.

This requires adding an argument (the USB controller index) to the fastboot
command, as it is currently done with other USB download gadget functions.

Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
Tested-by: Lukasz Majewski <l.majewski@samsung.com>

Test HW: Odroid_XU3 (Exynos5422), trats (Exynos4210)

show more ...


/rk3399_rockchip-uboot/README
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/omap-common/boot-common.c
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-ls102xa/config.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-ls102xa/immap_ls102xa.h
/rk3399_rockchip-uboot/board/samsung/common/Makefile
/rk3399_rockchip-uboot/board/siemens/common/factoryset.c
cmd_fastboot.c
/rk3399_rockchip-uboot/doc/README.android-fastboot
/rk3399_rockchip-uboot/drivers/dfu/Makefile
/rk3399_rockchip-uboot/drivers/usb/gadget/Makefile
/rk3399_rockchip-uboot/drivers/usb/host/Makefile
/rk3399_rockchip-uboot/drivers/usb/host/xhci-dwc3.c
/rk3399_rockchip-uboot/drivers/usb/host/xhci-exynos5.c
/rk3399_rockchip-uboot/drivers/usb/host/xhci-fsl.c
/rk3399_rockchip-uboot/drivers/usb/host/xhci-keystone.c
/rk3399_rockchip-uboot/drivers/usb/host/xhci-omap.c
/rk3399_rockchip-uboot/drivers/usb/phy/omap_usb_phy.c
/rk3399_rockchip-uboot/include/configs/am335x_evm.h
/rk3399_rockchip-uboot/include/configs/am43xx_evm.h
/rk3399_rockchip-uboot/include/configs/bav335x.h
/rk3399_rockchip-uboot/include/configs/beagle_x15.h
/rk3399_rockchip-uboot/include/configs/colibri_vf.h
/rk3399_rockchip-uboot/include/configs/dra7xx_evm.h
/rk3399_rockchip-uboot/include/configs/exynos4-common.h
/rk3399_rockchip-uboot/include/configs/exynos5-common.h
/rk3399_rockchip-uboot/include/configs/gw_ventana.h
/rk3399_rockchip-uboot/include/configs/ks2_evm.h
/rk3399_rockchip-uboot/include/configs/ls1021aqds.h
/rk3399_rockchip-uboot/include/configs/ls1021atwr.h
/rk3399_rockchip-uboot/include/configs/mx6sabre_common.h
/rk3399_rockchip-uboot/include/configs/nitrogen6x.h
/rk3399_rockchip-uboot/include/configs/odroid_xu3.h
/rk3399_rockchip-uboot/include/configs/omap3_beagle.h
/rk3399_rockchip-uboot/include/configs/s5p_goni.h
/rk3399_rockchip-uboot/include/configs/siemens-am33x-common.h
/rk3399_rockchip-uboot/include/configs/socfpga_common.h
/rk3399_rockchip-uboot/include/configs/tbs2910.h
/rk3399_rockchip-uboot/include/configs/tegra-common-usb-gadget.h
/rk3399_rockchip-uboot/include/configs/ti_omap5_common.h
/rk3399_rockchip-uboot/include/configs/warp.h
/rk3399_rockchip-uboot/include/configs/zynq-common.h
/rk3399_rockchip-uboot/include/linux/usb/dwc3.h
/rk3399_rockchip-uboot/include/linux/usb/xhci-fsl.h
abb59cff06-Jul-2015 Simon Glass <sjg@chromium.org>

dm: usb: Adjust the USB_DEVICE() macro naming

In Linux USB_DEVICE() is used to declare a USB device by vendor/device ID.
We should follow the same convention in U-Boot. Rename the existing
USB_DEVIC

dm: usb: Adjust the USB_DEVICE() macro naming

In Linux USB_DEVICE() is used to declare a USB device by vendor/device ID.
We should follow the same convention in U-Boot. Rename the existing
USB_DEVICE() macro to U_BOOT_USB_DEVICE() and bring in the USB_DEVICE()
macro from Linux for use in U-Boot.

Signed-off-by: Simon Glass <sjg@chromium.org>

show more ...

c8c2797c06-Jul-2015 Simon Glass <sjg@chromium.org>

dm: usb: eth: Support driver model with USB Ethernet

At present USB Ethernet does not work with CONFIG_DM_ETH. Add driver model
support to this feature, so that it can work alongside other Ethernet

dm: usb: eth: Support driver model with USB Ethernet

At present USB Ethernet does not work with CONFIG_DM_ETH. Add driver model
support to this feature, so that it can work alongside other Ethernet
devices with driver model.

It was found that quite a bit of code is common in most of the USB Ethernet
drivers. Add this code to the common layer to reduce the amount of duplicate
code needed in USB Ethernet drivers when CONFIG_DM_ETH is used.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Marek Vasut <marex@denx.de>

show more ...

6955909306-Jul-2015 Simon Glass <sjg@chromium.org>

dm: usb: Avoid using USB ethernet with CONFIG_DM_USB and no DM_ETH

If driver model is used for Ethernet then USB Ethernet does not build. This
can be made to work with driver model is used for USB a

dm: usb: Avoid using USB ethernet with CONFIG_DM_USB and no DM_ETH

If driver model is used for Ethernet then USB Ethernet does not build. This
can be made to work with driver model is used for USB also. Add #ifdef logic
to make this clear when building.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Marek Vasut <marex@denx.de>

show more ...

aba9296206-Jul-2015 Simon Glass <sjg@chromium.org>

dm: pci: Add support for PCI driver matching

At present all PCI devices must be present in the device tree in order to
be used. Many or most PCI devices don't require any configuration other than
th

dm: pci: Add support for PCI driver matching

At present all PCI devices must be present in the device tree in order to
be used. Many or most PCI devices don't require any configuration other than
that which is done automatically by U-Boot. It is inefficent to add a node
with nothing but a compatible string in order to get a device working.

Add a mechanism whereby PCI drivers can be declared along with the device
parameters they support (vendor/device/class). When no suitable driver is
found in the device tree the list of such devices is consulted to determine
the correct driver. If this also fails, then a generic driver is used as
before.

The mechanism used is very similar to that provided by Linux and the header
file defintions are copied from Linux 4.1.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Joe Hershberger <joe.hershberger@ni.com>

show more ...

fd1bd21b17-Jun-2015 Hans de Goede <hdegoede@redhat.com>

dm: usb: Do not assume that first child is always a hub

On some single port (otg) controllers there is no emulated root hub, so
the first child (if any) may be one of: UCLASS_MASS_STORAGE,
UCLASS_US

dm: usb: Do not assume that first child is always a hub

On some single port (otg) controllers there is no emulated root hub, so
the first child (if any) may be one of: UCLASS_MASS_STORAGE,
UCLASS_USB_DEV_GENERIC or UCLASS_USB_HUB.

All three of these (and in the future others) are suitable for our
purposes, remove the check for the device being a hub, and add a check to
deal with the fact that there may be no child-dev.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Acked-by: Simon Glass <sjg@chromium.org>

show more ...

c27b329017-Jun-2015 Hans de Goede <hdegoede@redhat.com>

dm: usb: Fix "usb tree" output

last_child was abused by the old usb code to first store 1 if the
usb_device was not the root of the usb tree, and then later on re-used
to store whether or not the us

dm: usb: Fix "usb tree" output

last_child was abused by the old usb code to first store 1 if the
usb_device was not the root of the usb tree, and then later on re-used
to store whether or not the usb_device is actually the last child.

The dm-usb code was always setting it to actually reflect the last-child
status which is wrong for the last child leading to output like this:

USB device tree:
1 Hub (12 Mb/s, 100mA)
| ALCOR USB Hub 2.0
|
| 2 Mass Storage (12 Mb/s, 100mA)
| USB Flash Disk 4C0E960F
|
+-3 Human Interface (1.5 Mb/s, 100mA)
SINO WEALTH USB Composite Device

Instead of this:

USB device tree:
1 Hub (12 Mb/s, 100mA)
| ALCOR USB Hub 2.0
|
+-2 Mass Storage (12 Mb/s, 100mA)
| USB Flash Disk 4C0E960F
|
+-3 Human Interface (1.5 Mb/s, 100mA)
SINO WEALTH USB Composite Device

This commit fixes this by first checking that the device is not root,
and then setting last_child. This commit also updates the old code to not
abuse the last_child variable to store the root check result.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Acked-by: Simon Glass <sjg@chromium.org>

show more ...

8802f56317-Jun-2015 Hans de Goede <hdegoede@redhat.com>

usb: Add an usb_device parameter to usb_reset_root_port

Add an usb_device parameter to usb_reset_root_port so that it knows which
root-port it is resetting. This is necessary for proper device-model

usb: Add an usb_device parameter to usb_reset_root_port

Add an usb_device parameter to usb_reset_root_port so that it knows which
root-port it is resetting. This is necessary for proper device-model support
for usb_reset_root_port.

Also remove a duplicate declaration of usb_reset_root_port() from usb.h .

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Acked-by: Simon Glass <sjg@chromium.org>

show more ...

682c9f8d17-Jun-2015 Hans de Goede <hdegoede@redhat.com>

usb: Pass device instead of portnr to usb_legacy_port_reset

Pass the usb_device instead of the portnr to usb_legacy_port_reset and
rename it to usb_hub_port_reset as there is nothing legacy about it

usb: Pass device instead of portnr to usb_legacy_port_reset

Pass the usb_device instead of the portnr to usb_legacy_port_reset and
rename it to usb_hub_port_reset as there is nothing legacy about it.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Acked-by: Simon Glass <sjg@chromium.org>

show more ...

9eb72dd117-Jun-2015 Hans de Goede <hdegoede@redhat.com>

usb: usb_setup_device: Drop unneeded portnr function argument

Drop the unneeded portnr function argument, the portnr is part of the
usb_device struct which is passed via the dev argument.

Signed-of

usb: usb_setup_device: Drop unneeded portnr function argument

Drop the unneeded portnr function argument, the portnr is part of the
usb_device struct which is passed via the dev argument.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Acked-by: Simon Glass <sjg@chromium.org>

show more ...

6bfe80e717-Jun-2015 Hans de Goede <hdegoede@redhat.com>

usb: Drop device-model specific copy of usb_legacy_port_reset

The device-model usb_legacy_port_reset function calls the device-model
usb_port_reset function which is a 1 on 1 copy of the non dm
usb_

usb: Drop device-model specific copy of usb_legacy_port_reset

The device-model usb_legacy_port_reset function calls the device-model
usb_port_reset function which is a 1 on 1 copy of the non dm
usb_legacy_port_reset and this is the only use of usb_port_reset in all
of u-boot.

Drop both, and alway use the usb_legacy_port_reset() version in
common/usb.c .

Also while at it make it static as it is only used in common/usb.c .

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Acked-by: Simon Glass <sjg@chromium.org>

show more ...


/rk3399_rockchip-uboot/arch/arm/mach-zynq/clk.c
/rk3399_rockchip-uboot/arch/sandbox/cpu/cpu.c
/rk3399_rockchip-uboot/arch/sandbox/cpu/state.c
/rk3399_rockchip-uboot/arch/sandbox/dts/test.dts
/rk3399_rockchip-uboot/arch/sandbox/include/asm/state.h
/rk3399_rockchip-uboot/arch/sandbox/include/asm/test.h
/rk3399_rockchip-uboot/arch/sandbox/include/asm/u-boot-sandbox.h
usb.c
/rk3399_rockchip-uboot/configs/sandbox_defconfig
/rk3399_rockchip-uboot/doc/driver-model/README.txt
/rk3399_rockchip-uboot/drivers/Kconfig
/rk3399_rockchip-uboot/drivers/Makefile
/rk3399_rockchip-uboot/drivers/clk/Kconfig
/rk3399_rockchip-uboot/drivers/clk/Makefile
/rk3399_rockchip-uboot/drivers/clk/clk-uclass.c
/rk3399_rockchip-uboot/drivers/clk/clk_sandbox.c
/rk3399_rockchip-uboot/drivers/core/Makefile
/rk3399_rockchip-uboot/drivers/core/device.c
/rk3399_rockchip-uboot/drivers/core/syscon-uclass.c
/rk3399_rockchip-uboot/drivers/core/uclass.c
/rk3399_rockchip-uboot/drivers/led/led-uclass.c
/rk3399_rockchip-uboot/drivers/led/led_gpio.c
/rk3399_rockchip-uboot/drivers/misc/Kconfig
/rk3399_rockchip-uboot/drivers/misc/Makefile
/rk3399_rockchip-uboot/drivers/misc/reset-uclass.c
/rk3399_rockchip-uboot/drivers/misc/reset_sandbox.c
/rk3399_rockchip-uboot/drivers/misc/syscon_sandbox.c
/rk3399_rockchip-uboot/drivers/mmc/Makefile
/rk3399_rockchip-uboot/drivers/mmc/sandbox_mmc.c
/rk3399_rockchip-uboot/drivers/power/pmic/pmic-uclass.c
/rk3399_rockchip-uboot/drivers/ram/Makefile
/rk3399_rockchip-uboot/drivers/ram/sandbox_ram.c
/rk3399_rockchip-uboot/drivers/usb/host/usb-uclass.c
/rk3399_rockchip-uboot/include/clk.h
/rk3399_rockchip-uboot/include/dm/platdata.h
/rk3399_rockchip-uboot/include/dm/uclass-id.h
/rk3399_rockchip-uboot/include/led.h
/rk3399_rockchip-uboot/include/reset.h
/rk3399_rockchip-uboot/include/test/ut.h
/rk3399_rockchip-uboot/include/usb.h
/rk3399_rockchip-uboot/scripts/Makefile.spl
/rk3399_rockchip-uboot/test/dm/Makefile
/rk3399_rockchip-uboot/test/dm/clk.c
/rk3399_rockchip-uboot/test/dm/led.c
/rk3399_rockchip-uboot/test/dm/mmc.c
/rk3399_rockchip-uboot/test/dm/ram.c
/rk3399_rockchip-uboot/test/dm/regmap.c
/rk3399_rockchip-uboot/test/dm/reset.c
/rk3399_rockchip-uboot/test/dm/syscon.c
/rk3399_rockchip-uboot/test/dm/test-main.c
/rk3399_rockchip-uboot/tools/imagetool.h
/rk3399_rockchip-uboot/tools/mkimage.c
aea3d40d23-Jun-2015 Simon Glass <sjg@chromium.org>

spl: Add a debug string before the jump to U-Boot

As a debug option, add positive confirmation that SPL has completed
execution. This can help with diagnosing the location of unexpected hangs.

Sign

spl: Add a debug string before the jump to U-Boot

As a debug option, add positive confirmation that SPL has completed
execution. This can help with diagnosing the location of unexpected hangs.

Signed-off-by: Simon Glass <sjg@chromium.org>

show more ...

070d00b823-Jun-2015 Simon Glass <sjg@chromium.org>

dm: spl: Allow device tree/driver model in board_init_f()

Add an spl_init() function that does basic init such that board_init_f() can
use simple malloc(), device tree and driver model. Each one is

dm: spl: Allow device tree/driver model in board_init_f()

Add an spl_init() function that does basic init such that board_init_f() can
use simple malloc(), device tree and driver model. Each one is set up only
if enabled for SPL.

Note: We really should refactor SPL such that there is a single
board_init_f() and rename the existing weak board_init_f() functions
provided by boards, calling them from the single board_init_f().

Signed-off-by: Simon Glass <sjg@chromium.org>

show more ...

dc3dedfe23-Jun-2015 Simon Glass <sjg@chromium.org>

dm: mmc: Allow driver model to be used for MMC in SPL

Enable MMC using driver model in SPL for consistency with U-Boot proper.

Signed-off-by: Simon Glass <sjg@chromium.org>

fdfa39d323-Jun-2015 Simon Glass <sjg@chromium.org>

spl: Add debugging info for spl_mmc boot

Add a few messages to indicate progress and failure.

Signed-off-by: Simon Glass <sjg@chromium.org>

da229e4e23-Jun-2015 Simon Glass <sjg@chromium.org>

sandbox: Drop special-case sandbox console code

At present printf() skips output if it can see there is no console. This
is really just an optimisation, and is not necessary. Also it is currently
in

sandbox: Drop special-case sandbox console code

At present printf() skips output if it can see there is no console. This
is really just an optimisation, and is not necessary. Also it is currently
incorrect in some cases. Rather than update the logic, just remove it so
that we don't need to keep it in sync.

Signed-off-by: Simon Glass <sjg@chromium.org>

show more ...

d6ea530723-Jun-2015 Simon Glass <sjg@chromium.org>

dm: Allow debug UART to support an early console

When there is no console ready, allow the debug UART to be used for output.
This makes debugging of early code considerably easier.

Signed-off-by: S

dm: Allow debug UART to support an early console

When there is no console ready, allow the debug UART to be used for output.
This makes debugging of early code considerably easier.

Signed-off-by: Simon Glass <sjg@chromium.org>

show more ...

5b9d44df23-Jun-2015 Simon Glass <sjg@chromium.org>

mkimage: Display a better list of available image types

Offer to display the available image types in help. Also, rather than
hacking the genimg_get_type_id() function to display a list of types,
do

mkimage: Display a better list of available image types

Offer to display the available image types in help. Also, rather than
hacking the genimg_get_type_id() function to display a list of types,
do this in the tool. Also, sort the list.

The list of image types is quite long, and hard to discover. Print it out
when we show help information.

Signed-off-by: Simon Glass <sjg@chromium.org>

show more ...

b217c89e20-Jul-2015 Tom Rini <trini@konsulko.com>

Merge branch 'master' of git://git.denx.de/u-boot-fsl-qoriq


/rk3399_rockchip-uboot/README
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/ls102xa/Makefile
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/ls102xa/fdt.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/ls102xa/psci.S
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/psci_sun6i.S
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/sunxi/psci_sun7i.S
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-lsch3/README
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-lsch3/cpu.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-lsch3/fdt.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-lsch3/speed.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/start.S
/rk3399_rockchip-uboot/arch/arm/dts/Makefile
/rk3399_rockchip-uboot/arch/arm/dts/fsl-ls2085a-qds.dts
/rk3399_rockchip-uboot/arch/arm/dts/fsl-ls2085a-rdb.dts
/rk3399_rockchip-uboot/arch/arm/dts/fsl-ls2085a.dtsi
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-armv7/generictimer.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-fsl-lsch3/clock.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-fsl-lsch3/config.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-fsl-lsch3/fdt.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-fsl-lsch3/ls2085a_stream_id.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-fsl-lsch3/soc.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-ls102xa/immap_ls102xa.h
/rk3399_rockchip-uboot/arch/arm/include/asm/armv8/mmu.h
/rk3399_rockchip-uboot/board/freescale/common/sys_eeprom.c
/rk3399_rockchip-uboot/board/freescale/ls1021aqds/ls1021aqds.c
/rk3399_rockchip-uboot/board/freescale/ls1021atwr/ls1021atwr.c
/rk3399_rockchip-uboot/board/freescale/ls2085a/README
/rk3399_rockchip-uboot/board/freescale/ls2085a/ls2085a.c
/rk3399_rockchip-uboot/board/freescale/ls2085aqds/README
/rk3399_rockchip-uboot/board/freescale/ls2085aqds/eth.c
/rk3399_rockchip-uboot/board/freescale/ls2085aqds/ls2085aqds.c
/rk3399_rockchip-uboot/board/freescale/ls2085ardb/Makefile
/rk3399_rockchip-uboot/board/freescale/ls2085ardb/README
/rk3399_rockchip-uboot/board/freescale/ls2085ardb/eth_ls2085rdb.c
/rk3399_rockchip-uboot/board/freescale/ls2085ardb/ls2085ardb.c
exports.c
/rk3399_rockchip-uboot/configs/ls2085aqds_defconfig
/rk3399_rockchip-uboot/configs/ls2085ardb_defconfig
/rk3399_rockchip-uboot/drivers/ddr/fsl/main.c
/rk3399_rockchip-uboot/drivers/misc/fsl_debug_server.c
/rk3399_rockchip-uboot/drivers/net/fsl-mc/dpio/qbman_portal.c
/rk3399_rockchip-uboot/drivers/net/fsl-mc/dpio/qbman_portal.h
/rk3399_rockchip-uboot/drivers/net/fsl-mc/dpio/qbman_private.h
/rk3399_rockchip-uboot/drivers/net/fsl-mc/dpni.c
/rk3399_rockchip-uboot/drivers/net/fsl-mc/mc.c
/rk3399_rockchip-uboot/drivers/net/ldpaa_eth/ldpaa_eth.c
/rk3399_rockchip-uboot/drivers/net/ldpaa_eth/ldpaa_eth.h
/rk3399_rockchip-uboot/drivers/pci/pcie_layerscape.c
/rk3399_rockchip-uboot/include/_exports.h
/rk3399_rockchip-uboot/include/configs/ls1021aqds.h
/rk3399_rockchip-uboot/include/configs/ls1021atwr.h
/rk3399_rockchip-uboot/include/configs/ls2085a_common.h
/rk3399_rockchip-uboot/include/configs/ls2085aqds.h
/rk3399_rockchip-uboot/include/configs/ls2085ardb.h
/rk3399_rockchip-uboot/include/exports.h
/rk3399_rockchip-uboot/include/fsl-mc/fsl_dpio.h
/rk3399_rockchip-uboot/include/fsl-mc/fsl_dpmng.h
/rk3399_rockchip-uboot/include/fsl-mc/fsl_dpni.h
/rk3399_rockchip-uboot/include/fsl-mc/fsl_dprc.h
/rk3399_rockchip-uboot/include/fsl-mc/fsl_mc.h
/rk3399_rockchip-uboot/include/fsl_ddr.h
/rk3399_rockchip-uboot/include/libfdt.h
/rk3399_rockchip-uboot/lib/libfdt/fdt_ro.c
9527931528-Jun-2015 Prabhakar Kushwaha <prabhakar@freescale.com>

board/ls2085rdb: Export functions for standalone AQ FW load apps

Export functions required by Aquntia PHY firmware load application.
functions are memset, strcpy, mdelay, mdio_get_current_dev,
phy_f

board/ls2085rdb: Export functions for standalone AQ FW load apps

Export functions required by Aquntia PHY firmware load application.
functions are memset, strcpy, mdelay, mdio_get_current_dev,
phy_find_by_mask, mdio_phydev_for_ethname and miiphy_set_current_dev

Signed-off-by: Prabhakar Kushwaha <prabhakar@freescale.com>
Reviewed-by: York Sun <yorksun@freescale.com>

show more ...


/rk3399_rockchip-uboot/Makefile
/rk3399_rockchip-uboot/README
/rk3399_rockchip-uboot/arch/arm/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/stv0991/clock.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/stv0991/pinmux.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-lsch3/README
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-lsch3/cpu.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/fsl-lsch3/fdt.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv8/start.S
/rk3399_rockchip-uboot/arch/arm/dts/socfpga.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/stv0991.dts
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-fsl-lsch3/fdt.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-fsl-lsch3/ls2085a_stream_id.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-fsl-lsch3/soc.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-stv0991/stv0991_cgu.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-stv0991/stv0991_creg.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-stv0991/stv0991_periph.h
/rk3399_rockchip-uboot/arch/x86/Kconfig
/rk3399_rockchip-uboot/arch/x86/cpu/Makefile
/rk3399_rockchip-uboot/arch/x86/cpu/baytrail/Makefile
/rk3399_rockchip-uboot/arch/x86/cpu/coreboot/pci.c
/rk3399_rockchip-uboot/arch/x86/cpu/cpu.c
/rk3399_rockchip-uboot/arch/x86/cpu/ioapic.c
/rk3399_rockchip-uboot/arch/x86/cpu/irq.c
/rk3399_rockchip-uboot/arch/x86/cpu/lapic.c
/rk3399_rockchip-uboot/arch/x86/cpu/mp_init.c
/rk3399_rockchip-uboot/arch/x86/cpu/queensbay/Kconfig
/rk3399_rockchip-uboot/arch/x86/cpu/queensbay/tnc.c
/rk3399_rockchip-uboot/arch/x86/dts/crownbay.dts
/rk3399_rockchip-uboot/arch/x86/dts/minnowmax.dts
/rk3399_rockchip-uboot/arch/x86/dts/rtc.dtsi
/rk3399_rockchip-uboot/arch/x86/include/asm/ioapic.h
/rk3399_rockchip-uboot/arch/x86/include/asm/lapic.h
/rk3399_rockchip-uboot/arch/x86/include/asm/mpspec.h
/rk3399_rockchip-uboot/arch/x86/include/asm/mtrr.h
/rk3399_rockchip-uboot/arch/x86/include/asm/tables.h
/rk3399_rockchip-uboot/arch/x86/include/asm/zimage.h
/rk3399_rockchip-uboot/arch/x86/lib/Makefile
/rk3399_rockchip-uboot/arch/x86/lib/bios_asm.S
/rk3399_rockchip-uboot/arch/x86/lib/bios_interrupts.c
/rk3399_rockchip-uboot/arch/x86/lib/cmd_mtrr.c
/rk3399_rockchip-uboot/arch/x86/lib/mpspec.c
/rk3399_rockchip-uboot/arch/x86/lib/tables.c
/rk3399_rockchip-uboot/arch/x86/lib/zimage.c
/rk3399_rockchip-uboot/board/freescale/common/sys_eeprom.c
/rk3399_rockchip-uboot/board/freescale/ls2085a/README
/rk3399_rockchip-uboot/board/freescale/ls2085a/ls2085a.c
/rk3399_rockchip-uboot/board/freescale/ls2085aqds/README
/rk3399_rockchip-uboot/board/freescale/ls2085aqds/eth.c
/rk3399_rockchip-uboot/board/freescale/ls2085aqds/ls2085aqds.c
/rk3399_rockchip-uboot/board/freescale/ls2085ardb/Makefile
/rk3399_rockchip-uboot/board/freescale/ls2085ardb/README
/rk3399_rockchip-uboot/board/freescale/ls2085ardb/eth_ls2085rdb.c
/rk3399_rockchip-uboot/board/freescale/ls2085ardb/ls2085ardb.c
/rk3399_rockchip-uboot/board/google/chromebook_link/Kconfig
/rk3399_rockchip-uboot/board/google/chromebox_panther/Kconfig
/rk3399_rockchip-uboot/board/st/stv0991/stv0991.c
exports.c
/rk3399_rockchip-uboot/configs/chromebook_link_defconfig
/rk3399_rockchip-uboot/configs/chromebox_panther_defconfig
/rk3399_rockchip-uboot/configs/crownbay_defconfig
/rk3399_rockchip-uboot/configs/minnowmax_defconfig
/rk3399_rockchip-uboot/configs/stv0991_defconfig
/rk3399_rockchip-uboot/doc/README.x86
/rk3399_rockchip-uboot/doc/device-tree-bindings/spi/spi-cadence.txt
/rk3399_rockchip-uboot/drivers/block/Makefile
/rk3399_rockchip-uboot/drivers/ddr/fsl/main.c
/rk3399_rockchip-uboot/drivers/misc/fsl_debug_server.c
/rk3399_rockchip-uboot/drivers/net/fsl-mc/dpio/qbman_portal.c
/rk3399_rockchip-uboot/drivers/net/fsl-mc/dpio/qbman_portal.h
/rk3399_rockchip-uboot/drivers/net/fsl-mc/dpio/qbman_private.h
/rk3399_rockchip-uboot/drivers/net/fsl-mc/dpni.c
/rk3399_rockchip-uboot/drivers/net/fsl-mc/mc.c
/rk3399_rockchip-uboot/drivers/net/ldpaa_eth/ldpaa_eth.c
/rk3399_rockchip-uboot/drivers/net/ldpaa_eth/ldpaa_eth.h
/rk3399_rockchip-uboot/drivers/pci/pci-uclass.c
/rk3399_rockchip-uboot/drivers/pci/pci_auto.c
/rk3399_rockchip-uboot/drivers/pci/pci_common.c
/rk3399_rockchip-uboot/drivers/pci/pci_rom.c
/rk3399_rockchip-uboot/drivers/pci/pci_x86.c
/rk3399_rockchip-uboot/drivers/pci/pcie_layerscape.c
/rk3399_rockchip-uboot/drivers/spi/cadence_qspi.c
/rk3399_rockchip-uboot/drivers/spi/cadence_qspi.h
/rk3399_rockchip-uboot/drivers/spi/cadence_qspi_apb.c
/rk3399_rockchip-uboot/drivers/spi/ich.c
/rk3399_rockchip-uboot/drivers/video/vesa_fb.c
/rk3399_rockchip-uboot/include/_exports.h
/rk3399_rockchip-uboot/include/asm-generic/global_data.h
/rk3399_rockchip-uboot/include/configs/crownbay.h
/rk3399_rockchip-uboot/include/configs/ls2085a_common.h
/rk3399_rockchip-uboot/include/configs/ls2085aqds.h
/rk3399_rockchip-uboot/include/configs/ls2085ardb.h
/rk3399_rockchip-uboot/include/configs/minnowmax.h
/rk3399_rockchip-uboot/include/configs/stv0991.h
/rk3399_rockchip-uboot/include/configs/x86-chromebook.h
/rk3399_rockchip-uboot/include/exports.h
/rk3399_rockchip-uboot/include/fsl-mc/fsl_dpio.h
/rk3399_rockchip-uboot/include/fsl-mc/fsl_dpmng.h
/rk3399_rockchip-uboot/include/fsl-mc/fsl_dpni.h
/rk3399_rockchip-uboot/include/fsl-mc/fsl_dprc.h
/rk3399_rockchip-uboot/include/fsl-mc/fsl_mc.h
/rk3399_rockchip-uboot/include/fsl_ddr.h
/rk3399_rockchip-uboot/include/pci.h
/rk3399_rockchip-uboot/include/vbe.h
/rk3399_rockchip-uboot/tools/ifdtool.c
8a133bb510-Jul-2015 Sudeep Holla <Sudeep.Holla@arm.com>

cmd_fdt: save fdtaddr in hex format

Commit 90fbee3e4051 ("cmd_fdt: Actually fix fdt command in sandbox")
changed the format(from hex address to unsigned long) in which "fdtaddr"
is saved . However d

cmd_fdt: save fdtaddr in hex format

Commit 90fbee3e4051 ("cmd_fdt: Actually fix fdt command in sandbox")
changed the format(from hex address to unsigned long) in which "fdtaddr"
is saved . However do_fdt continues reads the "fdtaddr" assuming it to
be in hex format. This may lead to fdt being either loaded or attempted
to load at erroneous address generating fault if the address is out of
memory.

This patch changes back the format to hex while saving the "fdtaddr"
as it was done before.

Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>
Cc: Linus Walleij <linus.walleij@linaro.org>
Cc: Tom Rini <trini@konsulko.com>
Cc: Simon Glass <sjg@chromium.org>
Cc: Hua Yanghao <huayanghao@gmail.com>
Cc: Heiko Schocher <hs@denx.de>
Acked-by: Linus Walleij <linus.walleij@linaro.org>
Acked-by: Simon Glass <sjg@chromium.org>

show more ...

5c1cf89f20-Jun-2015 Andre Przywara <osp@andrep.de>

fdt: prevent clearing memory node if there are no banks

Avoid clearing the reg property in the memory DT node if no memory
banks have been specified for a board (CONFIG_NR_DRAM_BANKS == 0).
This all

fdt: prevent clearing memory node if there are no banks

Avoid clearing the reg property in the memory DT node if no memory
banks have been specified for a board (CONFIG_NR_DRAM_BANKS == 0).
This allows boards to let U-Boot skip the DT memory tinkering in case
other firmware has already setup the node properly before.
This should be safe as all callers of fdt_fixup_memory_banks that use
a computed <banks> value put at least 1 in there.
Add some documentation comments to the header file.

Signed-off-by: Andre Przywara <osp@andrep.de>
Acked-by: Simon Glass <sjg@chromium.org>

show more ...


/rk3399_rockchip-uboot/Makefile
/rk3399_rockchip-uboot/arch/arm/Kconfig
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/stv0991/clock.c
/rk3399_rockchip-uboot/arch/arm/cpu/armv7/stv0991/pinmux.c
/rk3399_rockchip-uboot/arch/arm/dts/socfpga.dtsi
/rk3399_rockchip-uboot/arch/arm/dts/stv0991.dts
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-stv0991/stv0991_cgu.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-stv0991/stv0991_creg.h
/rk3399_rockchip-uboot/arch/arm/include/asm/arch-stv0991/stv0991_periph.h
/rk3399_rockchip-uboot/arch/x86/Kconfig
/rk3399_rockchip-uboot/arch/x86/cpu/Makefile
/rk3399_rockchip-uboot/arch/x86/cpu/baytrail/Makefile
/rk3399_rockchip-uboot/arch/x86/cpu/coreboot/pci.c
/rk3399_rockchip-uboot/arch/x86/cpu/cpu.c
/rk3399_rockchip-uboot/arch/x86/cpu/ioapic.c
/rk3399_rockchip-uboot/arch/x86/cpu/irq.c
/rk3399_rockchip-uboot/arch/x86/cpu/lapic.c
/rk3399_rockchip-uboot/arch/x86/cpu/mp_init.c
/rk3399_rockchip-uboot/arch/x86/cpu/queensbay/Kconfig
/rk3399_rockchip-uboot/arch/x86/cpu/queensbay/tnc.c
/rk3399_rockchip-uboot/arch/x86/dts/crownbay.dts
/rk3399_rockchip-uboot/arch/x86/dts/minnowmax.dts
/rk3399_rockchip-uboot/arch/x86/dts/rtc.dtsi
/rk3399_rockchip-uboot/arch/x86/include/asm/ioapic.h
/rk3399_rockchip-uboot/arch/x86/include/asm/lapic.h
/rk3399_rockchip-uboot/arch/x86/include/asm/mpspec.h
/rk3399_rockchip-uboot/arch/x86/include/asm/mtrr.h
/rk3399_rockchip-uboot/arch/x86/include/asm/tables.h
/rk3399_rockchip-uboot/arch/x86/include/asm/zimage.h
/rk3399_rockchip-uboot/arch/x86/lib/Makefile
/rk3399_rockchip-uboot/arch/x86/lib/bios_asm.S
/rk3399_rockchip-uboot/arch/x86/lib/bios_interrupts.c
/rk3399_rockchip-uboot/arch/x86/lib/cmd_mtrr.c
/rk3399_rockchip-uboot/arch/x86/lib/mpspec.c
/rk3399_rockchip-uboot/arch/x86/lib/tables.c
/rk3399_rockchip-uboot/arch/x86/lib/zimage.c
/rk3399_rockchip-uboot/board/google/chromebook_link/Kconfig
/rk3399_rockchip-uboot/board/google/chromebox_panther/Kconfig
/rk3399_rockchip-uboot/board/st/stv0991/stv0991.c
fdt_support.c
/rk3399_rockchip-uboot/configs/chromebook_link_defconfig
/rk3399_rockchip-uboot/configs/chromebox_panther_defconfig
/rk3399_rockchip-uboot/configs/crownbay_defconfig
/rk3399_rockchip-uboot/configs/minnowmax_defconfig
/rk3399_rockchip-uboot/configs/stv0991_defconfig
/rk3399_rockchip-uboot/doc/README.x86
/rk3399_rockchip-uboot/doc/device-tree-bindings/spi/spi-cadence.txt
/rk3399_rockchip-uboot/drivers/block/Makefile
/rk3399_rockchip-uboot/drivers/pci/pci-uclass.c
/rk3399_rockchip-uboot/drivers/pci/pci_auto.c
/rk3399_rockchip-uboot/drivers/pci/pci_common.c
/rk3399_rockchip-uboot/drivers/pci/pci_rom.c
/rk3399_rockchip-uboot/drivers/pci/pci_x86.c
/rk3399_rockchip-uboot/drivers/spi/cadence_qspi.c
/rk3399_rockchip-uboot/drivers/spi/cadence_qspi.h
/rk3399_rockchip-uboot/drivers/spi/cadence_qspi_apb.c
/rk3399_rockchip-uboot/drivers/spi/ich.c
/rk3399_rockchip-uboot/drivers/video/vesa_fb.c
/rk3399_rockchip-uboot/include/asm-generic/global_data.h
/rk3399_rockchip-uboot/include/configs/crownbay.h
/rk3399_rockchip-uboot/include/configs/minnowmax.h
/rk3399_rockchip-uboot/include/configs/stv0991.h
/rk3399_rockchip-uboot/include/configs/x86-chromebook.h
/rk3399_rockchip-uboot/include/fdt_support.h
/rk3399_rockchip-uboot/include/pci.h
/rk3399_rockchip-uboot/include/vbe.h
/rk3399_rockchip-uboot/tools/ifdtool.c
ffe3879823-Jun-2015 Bin Meng <bmeng.cn@gmail.com>

cmd: date: Change to use CONFIG_DM_RTC instead of CONFIG_DM_I2C

Currently CONFIG_DM_I2C is used in cmd_date.c for driver model,
but it should be actually CONFIG_DM_RTC.

Signed-off-by: Bin Meng <bme

cmd: date: Change to use CONFIG_DM_RTC instead of CONFIG_DM_I2C

Currently CONFIG_DM_I2C is used in cmd_date.c for driver model,
but it should be actually CONFIG_DM_RTC.

Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Acked-by: Simon Glass <sjg@chromium.org>

show more ...

166c398412-Jun-2015 Bin Meng <bmeng.cn@gmail.com>

dm: cpu: Fix undefined ENOSYS build error

Include <errno.h> otherwise ENOSYS is undefined.

Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Acked-by: Simon Glass <sjg@chromium.org>

a7d0711a07-Jun-2015 Simon Glass <sjg@chromium.org>

spi: sf: Print the error code on failure

Rather than just 'ERROR', display the error code, which may be useful, at
least with driver model.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by

spi: sf: Print the error code on failure

Rather than just 'ERROR', display the error code, which may be useful, at
least with driver model.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Acked-by: Marek Vasut <marex@denx.de>
Reviewed-by: Jagan Teki <jteki@openedev.com>

show more ...

1...<<61626364656667686970>>...211