On 11/04/21 1:09 pm, Dario Binacchi wrote:
>
> The series was born from the need to check the pinmux setting of a
> peripheral on a beaglebone board. I then ran the 'pinmux status -a'
> command but it failed because some operations (get_pin_muxing,
> get_pin_name and get_pins_count) were missin
On 18/03/21 6:10 pm, Adam Ford wrote:
> A few functions are defined without being labeled as static
> to that file. In an effort to keep SPL as small as possible,
> one function needs to be moved into an #ifdef so it's only enabled
> when the calling function is available, and all of these can
There are no system calls in U-Boot, but ENOSYS is still allowed (and
preferred since 42a2668743 ("dm: core: Document the common error codes")).
Silence this warning.
Signed-off-by: Sean Anderson
Seriies-to: sjg
---
.checkpatch.conf | 3 +++
1 file changed, 3 insertions(+)
diff --git a/.checkp
This adds the unit test for the K210 PLL to the sandbox defconfigs.
Signed-off-by: Sean Anderson
---
configs/sandbox64_defconfig| 2 ++
configs/sandbox_defconfig | 2 ++
configs/sandbox_flattree_defconfig | 2 ++
3 files changed, 6 insertions(+)
diff --git a/configs/sandbox64_
Linux has had some stability issues when using AISRAM with a different
frequency from SRAM. Mirror their change here now that we relocate into
AISRAM.
Signed-off-by: Sean Anderson
---
arch/riscv/dts/k210.dtsi | 2 ++
1 file changed, 2 insertions(+)
diff --git a/arch/riscv/dts/k210.dtsi b/arch/
Now that the k210 clock driver does not depend on CCF, we should no longer
imply it (and probably should not have in the first place). We can also
reduce the pre-relocation malloc arena back to something sensible.
Signed-off-by: Sean Anderson
---
board/sipeed/maix/Kconfig | 2 --
confi
Now that we have only one clock driver, we don't need to have our own
subdirectory. Move the driver back with the rest of the clock drivers.
The MAINTAINERS for kendryte pinctrl is also fixed since it has always been
wrong.
Signed-off-by: Sean Anderson
---
MAINTAINERS
This speeds up boot by preventing multiple reconfigurations of the PLLs.
Signed-off-by: Sean Anderson
---
drivers/clk/kendryte/clk.c | 15 ---
1 file changed, 8 insertions(+), 7 deletions(-)
diff --git a/drivers/clk/kendryte/clk.c b/drivers/clk/kendryte/clk.c
index cdea3d6f2b..8e84
This driver no longer serves a purpose now that we have moved away from
CCF. Drop it.
Signed-off-by: Sean Anderson
---
drivers/clk/kendryte/Makefile | 2 +-
drivers/clk/kendryte/bypass.c | 273 --
include/kendryte/bypass.h | 31
3 files changed, 1 ins
This is effectively a complete rewrite to remove all dependency on CCF.
The code is now smaller, and so is the binary (TODO: numbers). It also
takes up less memory at runtime (since we don't have to create 40
udevices). In general, I am much happier with this driver as much of the
complexity and la
Now that there no separate PLL driver, we can no longer make the PLL
functions static. By moving the PLL driver in with the rest of the clock
code, we can make these functions static again. We still keep the pll
header for unit testing, but it is pretty reduced.
Signed-off-by: Sean Anderson
---
This adds support for setting clock rates, which was left out of the
initial CCF expunging. There are several tricky bits here, mostly related
to the PLLS:
* The PLL's bypass is broken. If the PLL is reconfigured, any child clocks
will be stopped.
* PLL0 is the parent of ACLK which is the CPU an
Since we are no longer using CCF we cannot use the default soc_clk_dump.
Instead, implement our own.
Signed-off-by: Sean Anderson
---
drivers/clk/kendryte/clk.c | 68 --
1 file changed, 66 insertions(+), 2 deletions(-)
diff --git a/drivers/clk/kendryte/clk.c
Since 291da96b8e ("clk: Allow clock defaults to be set during re-reloc
state for SPL only") it has been impossible to set clock defaults before
relocation. This is annoying on boards without SPL, since there is no way
to set clock defaults before U-Boot proper. In particular, the aisram rate
must b
This is something I've been meaning to do for a while but only just got around
to. The CCF has been quite unwieldy in a few ways:
* It is very rigid, and there are not easy ways to hook into it without
rewriting many things. See e.g. things like the bypass clock and all the _half
clocks which
On Fri, Apr 9, 2021 at 12:10 AM Sean Anderson wrote:
>
> If we fail to probe for whatever reason, we cannot unregister/free the
> MII bus unless we registered it with fec_get_miibus. This fixes FECs
> sharing an MDIO bus from destroying it, preventing the other FEC from
> using it.
>
> Fixes: 6a89
On Fri, Apr 9, 2021 at 12:10 AM Sean Anderson wrote:
>
> If a phy is disabled, don't use it. This matches Linux's behavior.
>
> Signed-off-by: Sean Anderson
> ---
>
> drivers/net/fec_mxc.c | 13 -
> 1 file changed, 8 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/net/fec_mxc.
Hi Bin and Sean,
While we keep the consistency of cache control discussion going, later
today I'd like to send the v5 patch which is not directly relevant to
cache control.
Regards,
Green
On Sun, Apr 11, 2021 at 11:43 PM Sean Anderson wrote:
>
> On 4/9/21 12:05 PM, Green Wan wrote:
> > Hi folks
On 4/12/21 1:28 AM, Marek Vasut wrote:
> The driver is compatible with iMX8MN, add missing compatible string.
>
> Signed-off-by: Marek Vasut
> Cc: Fabio Estevam
> Cc: Peng Fan
> Cc: Stefano Babic
> Cc: Ye Li
> Cc: uboot-imx
Reviewed-by: Jaehoon Chung
Best Regards,
Jaehoon chung
> ---
> V
On 4/12/21 1:28 AM, Marek Vasut wrote:
> The driver is compatible with iMX8MM, add missing compatible string.
>
> Signed-off-by: Marek Vasut
> Cc: Fabio Estevam
> Cc: Peng Fan
> Cc: Stefano Babic
> Cc: Ye Li
> Cc: uboot-imx
Reviewed-by: Jaehoon Chung
Best Regards,
Jaehoon chung
> ---
> V
Hi,
A gentle ping. Thanks.
The 03/10/2021 09:31, Horatiu Vultur wrote:
> This patch series contains two patches. The first patch resets the
> switch at probe time while the second one fixes an issue with the
> serdes6g configuration which is used on jr2_pcb111 board
>
> Horatiu Vultur (2):
> n
On Mon, Apr 12, 2021 at 01:04:50AM +0100, Andre Przywara wrote:
> So far on Highbank/Midway machines U-Boot only ever uses 512MB of DRAM,
> even though the machines have typically 4GB and 8GB, respectively.
> That means that so far we didn't need an extra limit for placing the DTB
> and initrd, as
On Sat, Feb 20, 2021 at 08:06:31PM -0500, Tom Rini wrote:
> This board has not been converted to CONFIG_DM_MMC by the deadline.
> Remove it.
>
> Cc: Priyanka Jain
> Signed-off-by: Tom Rini
[note: Reworked to leave the rest of the ARCH support as we have another
one in family that was updated]
On Sat, Feb 20, 2021 at 08:06:30PM -0500, Tom Rini wrote:
> These boards have not been converted to CONFIG_DM_MMC by the deadline.
> Remove them. As the P5020 is the last ARCH_P5020 platform, remove that
> support as well.
>
> Cc: Andy Fleming
> Cc: Priyanka Jain
> Signed-off-by: Tom Rini
> R
On Sat, Feb 20, 2021 at 08:06:25PM -0500, Tom Rini wrote:
> These boards have not been converted to CONFIG_DM_MMC by the deadline.
> Remove them.
>
> Cc: Mario Six
> Cc: Dirk Eibach
> Signed-off-by: Tom Rini
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: PGP signature
On Sat, Feb 20, 2021 at 08:06:26PM -0500, Tom Rini wrote:
> With the last of the ARCH_P1022 platforms removed, finish removing the
> rest of the platform support.
>
> Cc: Priyanka Jain
> Signed-off-by: Tom Rini
> Reviewed-by: Priyanka Jain
Applied to u-boot/master, thanks!
--
Tom
signatur
On Sat, Feb 20, 2021 at 08:06:24PM -0500, Tom Rini wrote:
> These boards have not been converted to CONFIG_DM_MMC, along with other
> DM conversions, by the deadline. Remove them.
>
> Cc: Dirk Eibach
> Signed-off-by: Tom Rini
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Descript
On Sat, Feb 20, 2021 at 08:06:23PM -0500, Tom Rini wrote:
> These boards have not been converted to CONFIG_DM_MMC, along with other
> DM conversions, by the deadline. Remove them.
>
> Cc: Dirk Eibach
> Signed-off-by: Tom Rini
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Descript
On Sat, Feb 20, 2021 at 08:06:22PM -0500, Tom Rini wrote:
> This board has not been converted to CONFIG_DM_MMC by the deadline.
> Remove it.
>
> Cc: Ilya Yanok
> Signed-off-by: Tom Rini
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: PGP signature
On Sat, Feb 20, 2021 at 08:06:21PM -0500, Tom Rini wrote:
> This board has not been converted to CONFIG_DM_MMC by the deadline.
> Remove it. It is also the only ARCH_T2081 board so remove that support
> as well.
>
> Cc: Shengzhou Liu
> Cc: Ruchika Gupta
> Signed-off-by: Tom Rini
Applied to u
On Sat, Feb 20, 2021 at 08:06:20PM -0500, Tom Rini wrote:
> The TARGET_T1040QDS platforms have been removed already, drop some
> remaining references in the code.
>
> Signed-off-by: Tom Rini
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: PGP signature
On Sat, Feb 20, 2021 at 08:06:18PM -0500, Tom Rini wrote:
> This board has not been converted to CONFIG_DM_MMC by the deadline.
> Remove it.
>
> Cc: Markus Niebel
> Signed-off-by: Tom Rini
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: PGP signature
On Sat, Feb 20, 2021 at 08:06:16PM -0500, Tom Rini wrote:
> This board has not been converted to CONFIG_DM_MMC by the deadline.
> Remove it.
>
> Cc: Jason Liu
> Cc: Ye Li
> Signed-off-by: Tom Rini
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: PGP signature
On Sat, Feb 20, 2021 at 08:06:15PM -0500, Tom Rini wrote:
> This board has not been converted to CONFIG_DM_MMC by the deadline.
> Remove it.
>
> Cc: Otavio Salvador
> Signed-off-by: Tom Rini
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: PGP signature
On Sat, Feb 20, 2021 at 08:06:14PM -0500, Tom Rini wrote:
> This board has not been converted to CONFIG_DM_MMC by the deadline.
> Remove it.
>
> Cc: Stefan Roese
> Signed-off-by: Tom Rini
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: PGP signature
On Sat, Feb 20, 2021 at 08:06:13PM -0500, Tom Rini wrote:
> This board has not been converted to CONFIG_DM_MMC by the deadline.
> Remove it.
>
> Cc: Lucile Quirion
> Signed-off-by: Tom Rini
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: PGP signature
On Sat, Feb 20, 2021 at 08:06:11PM -0500, Tom Rini wrote:
> This board has not been converted to CONFIG_DM_MMC by the deadline.
> Remove it.
>
> Cc: Jason Liu
> Signed-off-by: Tom Rini
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: PGP signature
On Sat, Feb 20, 2021 at 08:06:09PM -0500, Tom Rini wrote:
> This board has not been converted to CONFIG_DM_MMC by the deadline.
> Remove it.
>
> Cc: Stefano Babic
> Signed-off-by: Tom Rini
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: PGP signature
On Sat, Feb 20, 2021 at 08:06:08PM -0500, Tom Rini wrote:
> These boards have not been converted to CONFIG_DM_MMC by the deadline.
> Remove them.
>
> Cc: Stefano Babic
> Signed-off-by: Tom Rini
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: PGP signature
On Sat, Feb 20, 2021 at 08:06:06PM -0500, Tom Rini wrote:
> This board has not been converted to CONFIG_DM_MMC by the deadline.
> Remove it.
>
> Cc: Stefan Roese
> Signed-off-by: Tom Rini
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: PGP signature
On Sat, Feb 20, 2021 at 08:06:04PM -0500, Tom Rini wrote:
> This board has not been converted to CONFIG_DM_MMC by the deadline.
> Remove it.
>
> Cc: Paul Kocialkowski
> Signed-off-by: Tom Rini
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: PGP signature
On Sat, Feb 20, 2021 at 08:06:03PM -0500, Tom Rini wrote:
> This board has not been converted to CONFIG_DM_MMC by the deadline.
> Remove it.
>
> Cc: Nagendra T S
> Signed-off-by: Tom Rini
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: PGP signature
On Sat, Feb 20, 2021 at 08:05:58PM -0500, Tom Rini wrote:
> This board has not been converted to CONFIG_DM_MMC by the deadline.
> Remove it.
>
> Cc: Stefan Roese
> Signed-off-by: Tom Rini
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: PGP signature
On Sat, Feb 20, 2021 at 08:06:02PM -0500, Tom Rini wrote:
> This board has not been converted to CONFIG_DM_MMC by the deadline.
> Remove it.
>
> Cc: Stefan Roese
> Cc: Tapani Utriainen
> Signed-off-by: Tom Rini
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: PGP signat
On Sat, Feb 20, 2021 at 08:06:01PM -0500, Tom Rini wrote:
> This board has not been converted to CONFIG_DM_MMC by the deadline.
> Remove it.
>
> Cc: Thomas Weber
> Signed-off-by: Tom Rini
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: PGP signature
On Sat, Feb 20, 2021 at 08:05:55PM -0500, Tom Rini wrote:
> This board has not been converted to CONFIG_DM_MMC by the deadline.
> Remove it.
>
> Cc: Steve Rae
> Signed-off-by: Tom Rini
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: PGP signature
On Sat, Feb 20, 2021 at 08:05:57PM -0500, Tom Rini wrote:
> These boards have not been converted to CONFIG_DM by the deadline.
> Remove them.
>
> Cc: Steve Rae
> Signed-off-by: Tom Rini
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: PGP signature
On Sat, Feb 20, 2021 at 08:05:54PM -0500, Tom Rini wrote:
> This board has not been converted to CONFIG_DM_MMC by the deadline.
> Remove it.
>
> Cc: Steve Rae
> Signed-off-by: Tom Rini
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: PGP signature
On Sat, Feb 20, 2021 at 08:05:53PM -0500, Tom Rini wrote:
> This board has not been converted to CONFIG_DM_MMC by the deadline.
> Remove it.
>
> Cc: Erik van Luijk
> Signed-off-by: Tom Rini
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: PGP signature
On Sat, Feb 20, 2021 at 08:05:52PM -0500, Tom Rini wrote:
> This board has not been converted to CONFIG_DM_MMC by the deadline.
> Remove it.
>
> Cc: Ben Whitten
> Signed-off-by: Tom Rini
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: PGP signature
On Sat, Feb 20, 2021 at 08:05:51PM -0500, Tom Rini wrote:
> This board has not been converted to CONFIG_DM_MMC by the deadline.
> Remove it.
>
> Cc: Ben Whitten
> Signed-off-by: Tom Rini
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: PGP signature
On Sat, Feb 20, 2021 at 08:05:50PM -0500, Tom Rini wrote:
> This board has not been converted to CONFIG_DM_MMC by the deadline.
> Remove it.
>
> Cc: Jon Mason
> Signed-off-by: Tom Rini
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: PGP signature
On Sat, Feb 20, 2021 at 08:05:49PM -0500, Tom Rini wrote:
> This board has not been converted to CONFIG_DM_MMC by the deadline.
> Remove it.
>
> Cc: Eddy Petrișor
> Signed-off-by: Tom Rini
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: PGP signature
On Sat, Feb 20, 2021 at 08:05:48PM -0500, Tom Rini wrote:
> This board has not been converted to CONFIG_DM_MMC by the deadline.
> Remove it.
>
> Cc: Boris Brezillon
> Signed-off-by: Tom Rini
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: PGP signature
On Sat, Feb 20, 2021 at 08:05:47PM -0500, Tom Rini wrote:
> This board has not been converted to CONFIG_DM_MMC by the deadline.
> Remove it.
>
> Cc: Linus Walleij
> Signed-off-by: Tom Rini
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: PGP signature
On Sat, Feb 20, 2021 at 08:05:42PM -0500, Tom Rini wrote:
> This board has not been converted to CONFIG_DM_MMC by the deadline.
> Remove it.
>
> Cc: Sebastien Bourdelin
> Signed-off-by: Tom Rini
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: PGP signature
On Sat, Feb 20, 2021 at 08:05:41PM -0500, Tom Rini wrote:
> This board has not been converted to CONFIG_DM_MMC by the deadline.
> Remove it.
>
> Cc: Marek Vasut
> Signed-off-by: Tom Rini
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: PGP signature
On Sat, Feb 20, 2021 at 08:05:43PM -0500, Tom Rini wrote:
> This board has not been converted to CONFIG_DM_MMC by the deadline.
> Remove it.
>
> Cc: Philippe Reynes
> Cc: Eric Jarrige
> Signed-off-by: Tom Rini
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: PGP signatu
On Sat, Feb 20, 2021 at 08:05:38PM -0500, Tom Rini wrote:
> This board has not been converted to CONFIG_DM_MMC by the deadline.
> Remove it.
>
> Cc: Marek Vasut
> Signed-off-by: Tom Rini
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: PGP signature
On Sat, Feb 20, 2021 at 08:05:40PM -0500, Tom Rini wrote:
> This board has not been converted to CONFIG_DM_MMC by the deadline.
> Remove it.
>
> Cc: Marek Vasut
> Signed-off-by: Tom Rini
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: PGP signature
On Tue, Feb 09, 2021 at 09:42:56PM -0500, Tom Rini wrote:
> The mvsata_ide driver was due for DM conversion by v2019.07. As that
> has long passed, remove the driver and disable it in the boards which
> had enabled it.
>
> Signed-off-by: Tom Rini
Applied to u-boot/master, thanks!
--
Tom
si
On Tue, Feb 09, 2021 at 09:42:50PM -0500, Tom Rini wrote:
> This board relies on using CONFIG_LIBATA but does not enable CONFIG_AHCI. The
> deadline for this conversion was the v2019.07 release. The use of CONFIG_AHCI
> requires CONFIG_DM. The deadline for this conversion was v2020.01. Remove
On Tue, Feb 09, 2021 at 09:42:47PM -0500, Tom Rini wrote:
> This board relies on using CONFIG_LIBATA but does not enable CONFIG_AHCI. The
> deadline for this conversion was the v2019.07 release. The use of CONFIG_AHCI
> requires CONFIG_DM. The deadline for this conversion was v2020.01. Remove
On Tue, Feb 09, 2021 at 09:42:48PM -0500, Tom Rini wrote:
> This board relies on using CONFIG_LIBATA but does not enable CONFIG_AHCI. The
> deadline for this conversion was the v2019.07 release. In order to
> convert to using the DWC SATA driver under DM further migrations are
> required.
>
> C
On Tue, Feb 09, 2021 at 09:42:44PM -0500, Tom Rini wrote:
> The dwc ahsata driver is written such that CONFIG_BLK must be enabled,
> add this as a dependency in Kconfig.
>
> Signed-off-by: Tom Rini
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: PGP signature
On Tue, Feb 09, 2021 at 09:42:43PM -0500, Tom Rini wrote:
> Enable the AHCI and BLK features to complete migration of various
> drivers.
>
> Cc: Andrew F. Davis
> Cc: Lokesh Vutla
> Signed-off-by: Tom Rini
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: PGP signature
On Tue, Feb 09, 2021 at 09:42:42PM -0500, Tom Rini wrote:
> Signed-off-by: Tom Rini
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: PGP signature
To squash that nasty warning message and make better use of the newly
gained OF_CONTROL feature, let's convert the calxedagmac driver to the
"new" driver model.
The conversion is pretty straight forward, mostly just adjusting the
use of the involved data structures.
The only actual change is the re
So far U-Boot was hard coding a (surely sufficient) memory size of 512
MB, even though all machines out there have at least 4GB of DRAM.
Since U-Boot uses its memory knowledge to populate the EFI memory map,
we are missing out here, at best losing everything beyond 4GB on Midway
boxes (which typica
Rob does not have access to any Calxeda systems anymore, also has
expressed a lack of interest in those systems in the past.
I have multiple working Midway nodes under my desk in the office, so
am happy to take over maintainership.
Signed-off-by: Andre Przywara
---
board/highbank/MAINTA
So far we were defining a somewhat confusing PHYS_SDRAM_1_SIZE variable,
which originally was only used for setting the memtest boundaries. This
definition in highbank.h has been removed about a year ago (moved to
Kconfig), so we also don't need the hard-coded size definition any longer.
Get rid o
All Calxeda machines are actually a poster book example of device tree
usage: the DT is loaded from flash by the management processor into
DRAM, the memory node is populated with the detected DRAM size and this
DT is then handed over to the kernel.
So it's a shame that U-Boot didn't participate in
So far on Highbank/Midway machines U-Boot only ever uses 512MB of DRAM,
even though the machines have typically 4GB and 8GB, respectively.
That means that so far we didn't need an extra limit for placing the DTB
and initrd, as the 512MB are lower than the kernel's limit ("lowmem",
typically 768MB).
The Calxeda Highbank and Midway systems have not been updated in a
while, so were gathering more and more warning messages about not being
DM compliant over time.
To avoid the support being removed, update the board to comply with
modern U-Boot standards:
- Enable OF_CONTROL, and use the DTB provi
On Mon, Apr 12, 2021 at 12:25:32AM +0200, Heinrich Schuchardt wrote:
> Hello Andy,
>
> in the code of your patch "mpc85xx: Add support for the Varisys Cyrus
> board" merged in 2015 as 87e29878cab an out of bound access occurs. See
> below.
>
> On 11/4/15 10:48 PM, Andy Fleming wrote:
> > This bo
Hello Andy,
in the code of your patch "mpc85xx: Add support for the Varisys Cyrus
board" merged in 2015 as 87e29878cab an out of bound access occurs. See
below.
On 11/4/15 10:48 PM, Andy Fleming wrote:
This board runs a P5020 or P5040 chip, and utilizes
an EEPROM with similar formatting to the
On 4/10/21 3:42 PM, Stefan Roese wrote:
> From: Konstantin Porotchkin
>
> Add support for regulator-force-boot-off DT property.
> This property can be used by the board/device drivers for
> turning off regulators on early init stages as pre-requisite
> for the other components initialization.
>
On Fri, 05 Mar 2021 11:27:45 +0100
Arnaud Patard (Rtp) arnaud.pat...@rtp-net.org wrote:
> This patchset add support for the rk3399 eDP. It has been tested on the
> pinebook
> pro and Google Kevin chromeos devices.
>
> The changes have been written by studying the linux code, since I didn't find
On Thu, 22 Oct 2020 23:49:27 +0300
Alper Nebi Yasak alpernebiya...@gmail.com wrote:
...
> doc/device-tree-bindings/pwm/cros-ec-pwm.txt | 23 ++
> drivers/misc/cros_ec.c | 17
> drivers/pwm/Kconfig | 9 +++
> drivers/pwm/Makefile
On Thu, 22 Oct 2020 23:49:26 +0300
Alper Nebi Yasak alpernebiya...@gmail.com wrote:
...
> drivers/pwm/sandbox_pwm.c | 11 +--
> drivers/video/pwm_backlight.c | 20 ++--
> include/pwm.h | 8
> test/dm/pwm.c | 11 +++
> 4
On Wed, 3 Mar 2021 14:46:47 +1100
Asherah Connor a...@kivikakk.ee wrote:
...
> drivers/video/Kconfig | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
applied to u-boot-video/master, thanks!
--
Anatolij
On Mon, 15 Mar 2021 18:52:45 -0400
Trevor Woerner twoer...@gmail.com wrote:
...
> drivers/video/cfb_console.c | 14 --
> scripts/config_whitelist.txt | 1 -
> 2 files changed, 15 deletions(-)
applied to u-boot-video/master, thanks!
--
Anatolij
On Fri, 9 Apr 2021 18:02:06 +0200
Patrick Delaunay patrick.delau...@foss.st.com wrote:
...
> Fixes: 5630d2fbc50f3035 ("board: Show memory for frame buffers")
> Signed-off-by: Patrick Delaunay
> ---
>
> common/board_f.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
applied to u-boot-vi
On Mon, 5 Apr 2021 01:48:51 +0200
Heinrich Schuchardt xypron.g...@gmx.de wrote:
...
> ---
> drivers/video/tegra124/sor.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
applied to u-boot-video/master, thanks!
--
Anatolij
On Tue, 1 Dec 2020 12:30:50 +0100
Sylwester Nawrocki s.nawro...@samsung.com wrote:
> Each row in the pixel array in the bitmap file is padded
> if necessary so the row size is always a multiple of 4 bytes.
> In current code the complement of row size to a multiple of
> 4 bytes is further unnecess
Synchronize Gen2 MSTP teardown tables with datasheet Rev.2.00
Feb 01, 2016. This corrects the following bits:
- added H2 MSTP3[10] SCIF2
- added H2/M2/E2 MSTP7[29] TCON
- removed E2 MSTP5[22] Thermal Sensor
- removed E2 MSTP10[31,24:22] SRC0, SRC7:9
Signed-off-by: Marek Vasut
Cc: Nobuhiro
The clock driver used a heavy-handed approach where it turned off
all available clocks, while also possibly setting bits which are not
documented in the R-Car datasheet. Update the tables so that only
the bits which are documented are set or cleared when tearing down
the clock driver.
Note that th
Scrub duplicate /memory@* node entries here. Some R-Car DTs might
contain multiple /memory@* nodes, however fdt_fixup_memory_banks()
either generates single /memory node or updates the first /memory
node. Any remaining memory nodes are thus potential duplicates.
However, it is not possible to dele
Enable support for PCIe NVMe devices.
Signed-off-by: Marek Vasut
---
configs/rcar3_salvator-x_defconfig | 1 +
1 file changed, 1 insertion(+)
diff --git a/configs/rcar3_salvator-x_defconfig
b/configs/rcar3_salvator-x_defconfig
index cd250e93d3..c5215d6a5d 100644
--- a/configs/rcar3_salvator-x_
On Fri, 2 Apr 2021 at 19:30, chenguanqiao wrote:
>
> Add functions to add size of addresses in the device tree using ofnode
> references.
>
> Signed-off-by: Chen Guanqiao
> ---
> drivers/core/ofnode.c | 9 +
> include/dm/ofnode.h | 10 ++
> 2 files changed, 19 insertions(+)
>
On Fri, 2 Apr 2021 at 19:28, chenguanqiao wrote:
>
> Add test item for getting address and size functions
>
> Test the following function:
> - ofnode_get_addr()
> - ofnode_get_size()
>
> Signed-off-by: Chen Guanqiao
> ---
> test/dm/ofnode.c | 24
> 1 file changed, 24 ins
Hi Igor,
On Thu, 1 Apr 2021 at 09:16, Igor Opaniuk wrote:
>
> From: Igor Opaniuk
>
> Adds support for:
> * PSCI_FEATURES, which was introduced in PSCI 1.0. This provides API
> that allows discovering whether a specific PSCI function is implemented
> and its features.
> * SYSTEM_RESET2, which was
On Sun, 11 Apr 2021 at 06:36, Heinrich Schuchardt wrote:
>
> Two external references cannot have the same name:
>
> doc/chromium/overview.rst:5:
> WARNING: Duplicate explicit target name: "youtube"
>
> Signed-off-by: Heinrich Schuchardt
> ---
> doc/chromium/overview.rst | 6 +++---
> 1 file chan
Enable CONFIG_SYS_FLASH_PROTECTION on Salvator-X(S), ULCB, Ebisu,
which means the Spansion HF PPB protection bits can be operated
using the 'protect' U-Boot command.
Signed-off-by: Marek Vasut
Cc: Nobuhiro Iwamatsu
---
configs/r8a77990_ebisu_defconfig | 3 +++
configs/rcar3_salvator-x_defconf
According to S26KL512S datasheet [1] and S29GL01GS datasheet [2],
the procedure to read out PPB lock bits is to send the PPB Entry,
PPB Read, Reset/ASO Exit. Currently, the code does send incorrect
PPB Entry, PPB Read and Reset/ASO Exit is completely missing.
The PPB Entry sent is implemented by s
On Sat, Apr 10, 2021 at 11:21:03PM +0200, Anatolij Gustschin wrote:
> Hi Tom,
>
> please pull video patches for v2021.07-rc1.
>
> gitlab CI:
> https://source.denx.de/u-boot/custodians/u-boot-video/-/pipelines/7124
>
> Thanks,
> Anatolij
>
> The following changes since commit a1e95e3805eacca11
Due to copy-paste error, two of the setexpr arguments were missing.
Add the missing arguments.
Signed-off-by: Marek Vasut
Cc: Peng Fan
Cc: Stefano Babic
Cc: Ye Li
Cc: uboot-imx
---
doc/imx/misc/psb.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/doc/imx/misc/psb.rst b
On 4/11/21 5:06 PM, Heinrich Schuchardt wrote:
In reStructured text footnotes are referenced like [1]_.
Add missing underscores.
Signed-off-by: Heinrich Schuchardt
Acked-by: Marek Vasut
Thanks
Enable USB host support on MX8MM Verdin.
Signed-off-by: Marek Vasut
Cc: Marcel Ziswiler
Cc: Max Krummenacher
Cc: Oleksandr Suvorov
---
V2: No change
---
configs/verdin-imx8mm_defconfig | 8 +++-
include/configs/verdin-imx8mm.h | 5 +
2 files changed, 12 insertions(+), 1 deletion(-)
d
The iMX8M uses nop PHY, select PHY and NOP_PHY automatically.
Otherwise, the DM capable driver is now perfectly compatible.
Signed-off-by: Marek Vasut
Cc: Fabio Estevam
Cc: Peng Fan
Cc: Stefano Babic
Cc: Ye Li
Cc: uboot-imx
---
V2: Permit the driver on all iMX8M SoCs, not just iMX8MM
---
dr
1 - 100 of 144 matches
Mail list logo