- Nov 06, 2016
-
-
Fabio Estevam authored
Since commit ce412b79 ("drivers: net: phy: atheros: add separate config for AR8031") ethernet does not work on mx6sabresd. This commit correctly assigns ar8031_config() as the configuration function for AR8031 in the same way as done in the Linux kernel. However, on mx6sabresd design we need some additional configuration, such as enabling the 125 MHz AR8031 output that needs to be done in the board file. This also aligns with the same method that the kernel performs the AR8031 fixup in arch/arm/mach-imx/mach-imx6q.c. Signed-off-by:
Fabio Estevam <fabio.estevam@nxp.com>
-
- Nov 05, 2016
-
-
Jagan Teki authored
Config file names on MAINTAINERS and README in board/engicam/icorem6 seems to be wrong, hence fixed the same. Cc: Stefano Babic <sbabic@denx.de> Cc: Michael Trimarchi <michael@amarulasolutions.com> Signed-off-by:
Jagan Teki <jagan@amarulasolutions.com>
-
Andre Przywara authored
For 64-bit ARM systems we provide just a timer_read_counter() implementation and rely on the generic non-uclass get_ticks() function in lib/time.c to call the former. However this function is actually not 64-bit safe, as it assumes a "long" to be 32-bit. Beside the fact that the resulting uint64_t isn't bigger than "long" on 64-bit architectures and thus combining two counters makes no sense, we get all kind of weird results when we try to OR in the high value shifted by _32_ bits. So let's avoid that function at all and provide a straight forward get_ticks() implementation for ARMv8, which also is in line with ARMv7. This fixes occasional immediate time-out expiration issues I see on the Pine64 board. The root cause of this needs to be investigated, but this fix looks like the right thing anyway. Signed-off-by:
Andre Przywara <andre.przywara@arm.com>
-
Andre Przywara authored
This file apparently hasn't seen an update in a while, so just sync it with reality. Signed-off-by:
Andre Przywara <andre.przywara@arm.com>
-
Peng Fan authored
Check return value when open the plugin file. Coverity report: ** CID 153926: Error handling issues (NEGATIVE_RETURNS) /tools/imximage.c: 542 in copy_plugin_code() ifd = open(plugin_file, O_RDONLY|O_BINARY); >>> CID 153926: Error handling issues (NEGATIVE_RETURNS) >>> "ifd" is passed to a parameter that cannot be negative. Signed-off-by:
Peng Fan <peng.fan@nxp.com> Cc: Stefano Babic <sbabic@denx.de> Cc: Tom Rini <trini@konsulko.com> Reported-by: Coverity (CID: 153926) Reviewed-by:
Tom Rini <trini@konsulko.com>
-
Simon Glass authored
Coverity complains that this can overflow. If we later increase the size of one of the strings in the table, it could happen. Adjust the code to protect against this. Signed-off-by:
Simon Glass <sjg@chromium.org> Reported-by: Coverity (CID: 150964)
-
Marcel Ziswiler authored
As the upcoming driver model integration takes up some more precious flash space first make sure to drop expensive LZMA support. Signed-off-by:
Marcel Ziswiler <marcel.ziswiler@toradex.com>
-
- Nov 03, 2016
-
-
git://git.denx.de/u-boot-usbTom Rini authored
-
Patrick Delaunay authored
Signed-off-by:
Patrick Delaunay <patrick.delaunay73@gmail.com>
-
Michal Simek authored
board_usb_init() can failed and error should be handled properly. Signed-off-by:
Michal Simek <michal.simek@xilinx.com>
-
- Nov 02, 2016
-
- Oct 31, 2016
-
-
Tom Rini authored
Signed-off-by:
Tom Rini <trini@konsulko.com>
-
Jelle van der Waa authored
Signed-off-by:
Jelle van der Waa <jelle@vdwaa.nl>
-
Tom Rini authored
- Add in system aarch64-linux-gnu toolchain - Now that all VMs will have aarch64 available, don't exclude them from other jobs but instead exclude them from the catch-all aarch64 build - Add JOB= to the Freescale/ARM build to be clear about what it does. - Add uniphier as a stand-alone job Signed-off-by:
Tom Rini <trini@konsulko.com>
-
Simon Glass authored
The allocated memory should be freed. Fix it. Signed-off-by:
Simon Glass <sjg@chromium.org> Reported-by: Coverity (CID: 150963) Reviewed-by:
Tom Rini <trini@konsulko.com>
-
Chris Packham authored
Prevent cache misalignment message by ensuring that a whole cache line is flushed. Signed-off-by:
Chris Packham <judge.packham@gmail.com> Reviewed-by:
Stefan Roese <sr@denx.de>
-
Vagrant Cascadian authored
Cover-Letter: Fixes several spelling errors for the words "resetting", "extended", "occur", and "multiple". Signed-off-by:
Vagrant Cascadian <vagrant@debian.org> Reviewed-by:
Simon Glass <sjg@chromium.org>
-
Vagrant Cascadian authored
Signed-off-by:
Vagrant Cascadian <vagrant@debian.org> Reviewed-by:
Simon Glass <sjg@chromium.org>
-
Vagrant Cascadian authored
Signed-off-by:
Vagrant Cascadian <vagrant@debian.org> Acked-by:
Angelo Dureghello <angelo@sysam.it> Reviewed-by:
Simon Glass <sjg@chromium.org>
-
Vagrant Cascadian authored
Signed-off-by:
Vagrant Cascadian <vagrant@debian.org> Reviewed-by:
Simon Glass <sjg@chromium.org>
-
Adam Ford authored
The autodetect feature doesn't allow users to specify the device tree. This fix will make it only autodetect if 'fdtimage' is not defined. Signed-off-by:
Adam Ford <aford173@gmail.com> Reviewed-by:
Tom Rini <trini@konsulko.com>
-
Adam Ford authored
Not all networks have a DHCP server configured properly, so these scripts make it easier to boot in that scenario. Signed-off-by:
Adam Ford <aford173@gmail.com> Reviewed-by:
Tom Rini <trini@konsulko.com>
-
Adam Ford authored
The LCD isn't supported in U-Boot and the LCD is now configured in the device tree, so this code is pointless. V2: Eliminiate erroneous newline. Signed-off-by:
Adam Ford <aford173@gmail.com> Reviewed-by:
Tom Rini <trini@konsulko.com>
-
Nishanth Menon authored
Current logic for query of revision, board_name, config returns NULL. Users of these functions do a direct strncmp to compare. Unfortunately, as per conventions require two valid strings to compare against and the current implementation causes a crash when compared with NULL. We'd still like to maintain the simplistic usage of these APIs instead of redundant if (string) res=strncmp(fn(),"cmp",n); flowing all over the place. Hence, since the version, name and config is already pre-initialized with empty string, just dont check for invalid header in the first place and return the empty string to the caller. Reported-by:
Brad Griffis <bgriffis@ti.com> Signed-off-by:
Nishanth Menon <nm@ti.com> Reviewed-by:
Lokesh Vutla <lokeshvutla@ti.com> Reviewed-by:
Tom Rini <trini@konsulko.com> [trini: Correct was'nt -> wasn't typo] Signed-off-by:
Tom Rini <trini@konsulko.com>
-
Nishanth Menon authored
config should have been initialized along with others as defaults. Signed-off-by:
Nishanth Menon <nm@ti.com> Reviewed-by:
Lokesh Vutla <lokeshvutla@ti.com> Reviewed-by:
Tom Rini <trini@konsulko.com>
-
Nishanth Menon authored
We should have used TI_DEAD_EEPROM_MAGIC in the first place. Fixes: d3b98a9e ("ti: common: dra7: Add standard access for board description EEPROM") Signed-off-by:
Nishanth Menon <nm@ti.com> Reviewed-by:
Lokesh Vutla <lokeshvutla@ti.com> Reviewed-by:
Tom Rini <trini@konsulko.com>
-
Alexander von Gernler authored
Signed-off-by:
Alexander von Gernler <grunk@pestilenz.org>
-
- Oct 30, 2016
-
-
Kever Yang authored
SPL_MMC_SUPPORT defined in rockchip top level Kconfig instead of inside rk3288 and default to disable if ROCKCHIP_SPL_BACK_TO_BROM defined. Signed-off-by:
Kever Yang <kever.yang@rock-chips.com> Reviewed-by:
Simon Glass <sjg@chromium.org>
-
Jacob Chen authored
A simple introduction. Signed-off-by:
Jacob Chen <jacob2.chen@rock-chips.com> Acked-by:
Simon Glass <sjg@chromium.org>
-
Jacob Chen authored
Unify the partitions of each chip then it will be more easy for us to write scripts, tools or guides for rockchip chips. Those extra partitions mostly are used to be compatible with our internal loaders (such as miniloader which was same as spl, or android loader then we can support dual boot) Signed-off-by:
Jacob Chen <jacob2.chen@rock-chips.com> Reviewed-by:
Kever Yang <kever.yang@rock-chips.com>
-
Kever Yang authored
Since we implement the dram capacity auto detect, we don't need to set the channel number and sdram-channel in dts. Signed-off-by:
Kever Yang <kever.yang@rock-chips.com> Acked-by:
Simon Glass <sjg@chromium.org> Tested-by:
Simon Glass <sjg@chromium.org> Tested-by:
Vagrant Cascadian <vagrant@debian.org>
-
Kever Yang authored
Add support for rk3288 dram capacity auto detect, support DDR3 and LPDDR3, DDR2 is not supported. The program will automatically detect: - channel number - rank number - column address number - row address number The dts file do not need to describe those info after apply this patch. Signed-off-by:
Kever Yang <kever.yang@rock-chips.com> Tested-by:
Simon Glass <sjg@chromium.org> Tested-by:
Vagrant Cascadian <vagrant@debian.org> Tested-by:
Vagrant Cascadian <vagrant@debian.org>
-
Kever Yang authored
Enable ROCKCHIP_SPL_BACK_TO_BROM and disable CONFIG_SPL_MMC_SUPPORT to save memory in order to enable add source code for dram capacity auto-detect. Signed-off-by:
Kever Yang <kever.yang@rock-chips.com>
-
Kever Yang authored
rk3399 has two mmc dev controller: mmc 0: SD card; mmc 1: EMMC U-Boot will scan the mmc boot device configured by CONFIG_SYS_MMC_ENV_DEV, since evb has emmc on board, let's set the EMMC as default. Signed-off-by:
Kever Yang <kever.yang@rock-chips.com>
-
Kever Yang authored
The GRF base address is missing, fix it. Signed-off-by:
Kever Yang <kever.yang@rock-chips.com>
-
Kever Yang authored
The Clock Multiplier in rk3399 EMMC programmable clock generator is broken, we can remove its support from SoC GRF register. Without this patch, rk3399 emmc driver is not work after below patch applied: 6dffdbc3 mmc: sdhci: Add the programmable clock mode support Signed-off-by:
Kever Yang <kever.yang@rock-chips.com>
-
Simon Glass authored
This function is called from outside the driver. It should be placed into common SoC code. Move it. Signed-off-by:
Simon Glass <sjg@chromium.org> Reviewed-by:
Kever Yang <kever.yang@rock-chips.com>
-
Simon Glass authored
This function is called from outside the driver. It should be placed into common SoC code. Move it. Also rename the driver symbol to be more consistent with the other rockchip clock drivers. Signed-off-by:
Simon Glass <sjg@chromium.org> Reviewed-by:
Kever Yang <kever.yang@rock-chips.com>
-
Simon Glass authored
This function is called from outside the driver. It should be placed into common SoC code. Move it. Also rename the driver symbol to be more consistent with the other rockchip clock drivers. Signed-off-by:
Simon Glass <sjg@chromium.org> Reviewed-by:
Kever Yang <kever.yang@rock-chips.com>
-
Jacob Chen authored
clk_rk3399 is driver name, not device name Signed-off-by:
Jacob Chen <jacob2.chen@rock-chips.com> Acked-by:
Simon Glass <sjg@chromium.org>
-