[PATCH v2 1/1] riscv: fix building with CONFIG_SPL_SMP=n

2020-08-15 Thread Heinrich Schuchardt
Building with CONFIG_SPL_SMP=n results in: arch/riscv/lib/spl.c: In function ‘jump_to_image_no_args’: arch/riscv/lib/spl.c:33:6: error: unused variable ‘ret’ [-Werror=unused-variable] 33 | int ret; | ^~~ Define the variable ret as __maybe_unused. Fixes: 191636e44898 ("riscv: Intro

Re: [PATCH 1/1] clk: kendryte/pll.h: do not redefine nop()

2020-08-15 Thread Heinrich Schuchardt
On 8/5/20 2:19 PM, Heinrich Schuchardt wrote: > On 05.08.20 13:45, Sean Anderson wrote: >> On 8/3/20 2:20 PM, Heinrich Schuchardt wrote: >>> On 03.08.20 16:08, Sean Anderson wrote: Maybe. Because we are configuring the PLL, the CPU clock is temporarily set to the in0 oscillator, so the ti

Pull request for UEFI sub-system for efi-2020-10-rc3 (2)

2020-08-15 Thread Heinrich Schuchardt
Dear Tom, The following changes since commit cdcf591d9b20534e5f5c58aa2a2b07b3b173f5a1: Merge https://gitlab.denx.de/u-boot/custodians/u-boot-marvell (2020-08-13 08:25:25 -0400) are available in the Git repository at: https://gitlab.denx.de/u-boot/custodians/u-boot-efi.git tags/efi-2020-10-r

Re: [PATCH 1/1] clk: kendryte/pll.h: do not redefine nop()

2020-08-15 Thread Sean Anderson
On 8/15/20 3:53 AM, Heinrich Schuchardt wrote: > On 8/5/20 2:19 PM, Heinrich Schuchardt wrote: >> On 05.08.20 13:45, Sean Anderson wrote: >>> On 8/3/20 2:20 PM, Heinrich Schuchardt wrote: On 03.08.20 16:08, Sean Anderson wrote: > Maybe. Because we are configuring the PLL, the CPU clock is

HDMi Output on OrangePi Win/Win Plus Allwinner A64 (SUN50I)

2020-08-15 Thread Anton Gorlov
Hello. Does u-boot support HDMI output on OrangePi Win/Win Plus Allwinner A64 (SUN50I) platform? At current time HDMI output only work after linux kernel is loaded. Before - blank screen on a monitor (no signal). Change setting's for video-mode=sunxi.. did not give any results. Output only i

HDMi Output on OrangePi Win/Win Plus Allwinner A64 (SUN50I)

2020-08-15 Thread Anton Gorlov
Hello. Does u-boot support HDMI output on OrangePi Win/Win Plus Allwinner A64 (SUN50I) platform? At current time HDMI output only work after linux kernel is loaded. Before - blank screen on a monitor (no signal). Change setting's for video-mode=sunxi.. did not give any results. Output only i

Re: [PATCH 1/1] riscv: riscv_get_time() implementation for SMODE

2020-08-15 Thread Anup Patel
On Sat, Aug 15, 2020 at 12:57 AM Heinrich Schuchardt wrote: > > On 8/14/20 8:38 PM, Anup Patel wrote: > > On Fri, Aug 14, 2020 at 11:35 PM Heinrich Schuchardt > > wrote: > >> > >> On 14.08.20 19:52, Anup Patel wrote: > >>> On Fri, Aug 14, 2020 at 11:15 PM Heinrich Schuchardt > >>> wrote: > >>>

Re: [PATCH 1/1] riscv: riscv_get_time() implementation for SMODE

2020-08-15 Thread Heinrich Schuchardt
Am 15. August 2020 16:06:41 MESZ schrieb Anup Patel : >On Sat, Aug 15, 2020 at 12:57 AM Heinrich Schuchardt > wrote: >> >> On 8/14/20 8:38 PM, Anup Patel wrote: >> > On Fri, Aug 14, 2020 at 11:35 PM Heinrich Schuchardt > wrote: >> >> >> >> On 14.08.20 19:52, Anup Patel wrote: >> >>> On Fri, Aug 14,

[PATCH v5 02/11] pinctrl: Reformat documentation in dm/pinctrl.h

2020-08-15 Thread Sean Anderson
This normalizes the documentatation to conform to kernel-doc style [1]. It also moves the documentation for pinctrl_ops inline, and adds argument and return-value documentation. I have kept the usual function style for these comments. I could not find any existing examples of function documentation

[PATCH v5 01/11] pinctrl: Add pinmux property support to pinctrl-generic

2020-08-15 Thread Sean Anderson
The pinmux property allows for smaller and more compact device trees, especially when there are many pins which need to be assigned individually. Instead of specifying an array of strings to be parsed as pins and a function property, the pinmux property contains an array of integers representing pi

[PATCH v5 00/11] riscv: Add FPIOA and GPIO support for Kendryte K210

2020-08-15 Thread Sean Anderson
This patch series adds support for pinmuxing, gpios, and leds on the Kendyte K210. This patch series was previously part of https://patchwork.ozlabs.org/project/uboot/list/?series=161576 This patch series depends on https://patchwork.ozlabs.org/project/uboot/list/?series=178480 Changes in v5: -

[PATCH v5 07/11] gpio: dw: Return output value when direction is out

2020-08-15 Thread Sean Anderson
dm_gpio_ops.get_value can be called when the gpio is either input or output. The current dw code always returns the input value, which is invalid if the direction is set to out. Signed-off-by: Sean Anderson Reviewed-by: Ley Foon Tan --- This patch was previously submitted as part of https://patc

[PATCH v5 06/11] gpio: dw: Add a trailing underscore to generated name

2020-08-15 Thread Sean Anderson
Previously, if there was no bank-name property, it was easy to have confusing gpio names like "gpio1@08", instead of "gpio1@0_8". This patch follows the example of the sifive gpio driver. Signed-off-by: Sean Anderson Reviewed-by: Simon Glass --- This patch was previously submitted as part of htt

[PATCH v5 04/11] pinctrl: Add support for Kendryte K210 FPIOA

2020-08-15 Thread Sean Anderson
The Fully-Programmable Input/Output Array (FPIOA) device controls pin multiplexing on the K210. The FPIOA can remap any supported function to any multifunctional IO pin. It can also perform basic GPIO functions, such as reading the current value of a pin. However, GPIO functionality remains largely

[PATCH v5 03/11] test: pinmux: Add test for pin muxing

2020-08-15 Thread Sean Anderson
This extends the pinctrl-sandbox driver to support pin muxing, and adds a test for that behaviour. The test is done in C and not python (like the existing tests for the pinctrl uclass) because it needs to call pinctrl_select_state. Another option could be to add a command that invokes pinctrl_sele

[PATCH v5 05/11] gpio: dw: Fix warnings about casting int to pointer

2020-08-15 Thread Sean Anderson
Change the type of gpio_dwabp_platdata.base from fdt_addr_t to a void pointer, since we pass it to readl. Signed-off-by: Sean Anderson Reviewed-by: Ley Foon Tan Reviewed-by: Bin Meng Reviewed-by: Simon Glass --- This patch was previously submitted as part of https://patchwork.ozlabs.org/projec

[PATCH v5 08/11] led: gpio: Default to using node name if label is absent

2020-08-15 Thread Sean Anderson
This more closely mirrors Linux's behaviour, and will make it easier to transition to using function+color in the future. Signed-off-by: Sean Anderson Reviewed-by: Simon Glass --- This patch was previously submitted as part of https://patchwork.ozlabs.org/project/uboot/list/?series=161576 (no c

[PATCH v5 09/11] test: dm: Test for default led naming

2020-08-15 Thread Sean Anderson
This modifies the existing led test to check for default led naming as added in the previous patch. Signed-off-by: Sean Anderson Reviewed-by: Simon Glass --- (no changes since v4) Changes in v4: - New arch/sandbox/dts/test.dts | 2 +- test/dm/led.c | 3 ++- 2 files changed, 3 ins

[PATCH v5 10/11] riscv: Add pinmux and gpio bindings for Kendryte K210

2020-08-15 Thread Sean Anderson
This patch adds the necessary device tree bindings. Signed-off-by: Sean Anderson Reviewed-by: Simon Glass --- (no changes since v2) Changes in v2: - Convert to use pinmux property - Don't hog ISP on boot - Re-order GPIOs to match the defaults more closely arch/riscv/dts/k210-maix-bit.dts | 1

[PATCH v5 11/11] riscv: Add FPIOA and GPIO support for Kendryte K210

2020-08-15 Thread Sean Anderson
This patch adds the necessary configs and docs for FPIOA and GPIO support on the K210. The board does not boot unless CONSOLE_LOGLEVEL is set to a non-default value . It also boots when the tree is dirty (and CONSOLE_LOGLEVEL is not changed). It also boots when changes are made to the device tree

Re: [PATCH 1/1] riscv: riscv_get_time() implementation for SMODE

2020-08-15 Thread Anup Patel
On Sat, Aug 15, 2020 at 8:37 PM Heinrich Schuchardt wrote: > > Am 15. August 2020 16:06:41 MESZ schrieb Anup Patel : > >On Sat, Aug 15, 2020 at 12:57 AM Heinrich Schuchardt > > wrote: > >> > >> On 8/14/20 8:38 PM, Anup Patel wrote: > >> > On Fri, Aug 14, 2020 at 11:35 PM Heinrich Schuchardt > > wr

[PATCH 1/1] efi_loader: document parameters of do_bootefi_exec()

2020-08-15 Thread Heinrich Schuchardt
Add the missing description of the load_options parameter. Signed-off-by: Heinrich Schuchardt --- cmd/bootefi.c | 4 1 file changed, 4 insertions(+) diff --git a/cmd/bootefi.c b/cmd/bootefi.c index fbfed54e85..06563d28ca 100644 --- a/cmd/bootefi.c +++ b/cmd/bootefi.c @@ -304,7 +304,11 @@ e

[PATCH 1/1] efi_loader: remove empty comment line

2020-08-15 Thread Heinrich Schuchardt
Remove a line leading to a warning in make htmldocs. Signed-off-by: Heinrich Schuchardt --- include/efi_variable.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/efi_variable.h b/include/efi_variable.h index 60491cb640..4704a3c16e 100644 --- a/include/efi_variable.h +++ b/include/efi

[PATCH 1/1] configs: defconfig for Sipeed Maix in S-mode

2020-08-15 Thread Heinrich Schuchardt
Provide a defconfig that can be used to build U-Boot for the Maix boards running upon OpenSBI. Update the documentation. Signed-off-by: Heinrich Schuchardt --- configs/sipeed_maix_smode_defconfig | 10 ++ doc/board/sipeed/maix.rst | 49 + 2 files change

Re: [RFC PATCH v2 0/3] RFC: tiny-dm: Proposal for using driver model in SPL

2020-08-15 Thread Simon Glass
Hi Walter, On Sun, 26 Jul 2020 at 20:45, Walter Lozano wrote: > > Hi Simon, > > > On 10/7/20 01:12, Walter Lozano wrote: > > Hi Simon, > > > > On 2/7/20 18:10, Simon Glass wrote: > >> This series provides a proposed enhancement to driver model to reduce > >> overhead in SPL. > >> > >> These patch

Re: [RFC PATCH v2 0/3] RFC: tiny-dm: Proposal for using driver model in SPL

2020-08-15 Thread Walter Lozano
Hi Simon, On 16/8/20 00:06, Simon Glass wrote: Hi Walter, On Sun, 26 Jul 2020 at 20:45, Walter Lozano wrote: Hi Simon, On 10/7/20 01:12, Walter Lozano wrote: Hi Simon, On 2/7/20 18:10, Simon Glass wrote: This series provides a proposed enhancement to driver model to reduce overhead in SP

Re: [PATCH 1/3] gpio: at91: use dev_read_addr() to get base address

2020-08-15 Thread Simon Glass
On Mon, 3 Aug 2020 at 23:15, Masahiro Yamada wrote: > > It is strange to use devfdt_get_addr_ptr(), then cast the pointer > back to uint32 because you could use devfdt_get_addr() without casting. > > Convert it to dev_read_addr(), which is capable to CONFIG_OF_LIVE. > > Signed-off-by: Masahiro Yam

Re: [PATCH 3/3] treewide: convert devfdt_get_addr_ptr() to dev_read_addr_ptr()

2020-08-15 Thread Simon Glass
On Mon, 3 Aug 2020 at 23:15, Masahiro Yamada wrote: > > When you enable CONFIG_OF_LIVE, you will end up with a lot of > conversions. > > To help this tedious work, this commit converts devfdt_get_addr_ptr() > to dev_read_addr_ptr() by coccinelle. I also removed redundant casts > because dev_read_a

Re: [PATCH v1 04/15] x86: coreboot: Remove dead code

2020-08-15 Thread Simon Glass
On Thu, 6 Aug 2020 at 08:54, Andy Shevchenko wrote: > > start.S does nothing and can be safely removed. Makefile is still being used > by the build system, so simply drop the rule from it. > > Signed-off-by: Andy Shevchenko > --- > board/coreboot/coreboot/Makefile | 2 +- > board/coreboot/coreb

Re: [PATCH v2 03/21] clk: bind clk to new parent device

2020-08-15 Thread Simon Glass
Hi Claudiu, On Thu, 6 Aug 2020 at 02:24, wrote: > > Hi Simon, > > On 05.08.2020 18:11, Claudiu Beznea wrote: > > Clock re-parenting is not binding the clock's device to its new > > parent device, it only calls the clock's ops->set_parent() API. The > > changes in this commit re-parent the clock d

Re: [PATCH v2 04/21] clk: do not disable clock if it is critical

2020-08-15 Thread Simon Glass
On Wed, 5 Aug 2020 at 09:12, Claudiu Beznea wrote: > > Do not disable clock if it is a critical one. > > Signed-off-by: Claudiu Beznea > Reviewed-by: Simon Glass > --- > drivers/clk/clk-uclass.c | 3 +++ > test/dm/clk_ccf.c| 32 +++- > 2 files changed, 34 in

Re: [PATCH 1/2] cmd: clk: cosmetic: correct code alignment in show_clks

2020-08-15 Thread Simon Glass
On Thu, 30 Jul 2020 at 06:04, Patrick Delaunay wrote: > > Correct code alignment in show_clks() function. > > Signed-off-by: Patrick Delaunay > --- > > cmd/clk.c | 32 > 1 file changed, 16 insertions(+), 16 deletions(-) Reviewed-by: Simon Glass

Re: [PATCH v1 10/15] x86: intel: crownbay: Remove dead code

2020-08-15 Thread Simon Glass
On Thu, 6 Aug 2020 at 08:54, Andy Shevchenko wrote: > > start.S does nothing and can be safely removed. Makefile is still being used > by the build system, so simply drop the rule from it. > > Signed-off-by: Andy Shevchenko > --- > board/intel/crownbay/Makefile | 2 +- > board/intel/crownbay/sta

Re: [PATCH v1 12/15] x86: intel: galileo: Remove dead code

2020-08-15 Thread Simon Glass
On Thu, 6 Aug 2020 at 08:54, Andy Shevchenko wrote: > > start.S does nothing and can be safely removed. Makefile is still being used > by the build system, so simply drop the rule from it. > > Signed-off-by: Andy Shevchenko > --- > board/intel/galileo/Makefile | 2 +- > board/intel/galileo/start

Re: [PATCH v1 15/15] x86: qemu: Remove dead code

2020-08-15 Thread Simon Glass
On Thu, 6 Aug 2020 at 08:54, Andy Shevchenko wrote: > > start.S does nothing and can be safely removed. Makefile is still being used > by the build system, so simply drop the rule from it. > > Signed-off-by: Andy Shevchenko > --- > board/emulation/qemu-x86/Makefile | 2 -- > board/emulation/qemu

Re: [PATCH v4 20/27] Makefile: Warn against using CONFIG_SPL_FIT_GENERATOR

2020-08-15 Thread Simon Glass
Hi Michal, On Fri, 14 Aug 2020 at 07:28, Michal Simek wrote: > > Hi Simon, > > ne 19. 7. 2020 v 22:06 odesílatel Simon Glass napsal: > > > > This option is used to run arch-specific shell scripts which produce .its > > files which are used to produce FIT images. We already have binman which > >

Re: [PATCH v1 14/15] x86: intel: slimbootloader: Remove dead code

2020-08-15 Thread Simon Glass
On Thu, 6 Aug 2020 at 08:54, Andy Shevchenko wrote: > > start.S does nothing and can be safely removed. Makefile is still being used > by the build system, so simply drop the rule from it. > > Cc: Aiden Park > Signed-off-by: Andy Shevchenko > --- > board/intel/slimbootloader/Makefile | 2 +- >

Re: x86: apl: Acessing SPI flash when booting with Coreboot/U-Boot

2020-08-15 Thread Simon Glass
Hi Wolfgang, On Fri, 14 Aug 2020 at 08:04, Wolfgang Wallner wrote: > > Hi Simon, > > Since commit 609b90a6a9c0 ("x86: spi: Rewrite logic for obtaining the SPI > memory map") I have trouble accessing the SPI flash on my Apollo Lake board > when booting with Coreboot and having U-Boot as the payloa

Re: [PATCH] x86: mtrr: Fix parsing of "mtrr list" command

2020-08-15 Thread Simon Glass
On Fri, 14 Aug 2020 at 01:55, Wolfgang Wallner wrote: > > The command 'mtrr' does not recognize the 'list' subcommand any more > since the code restructuring in commit b2a76b3fe75a ("x86: mtrr: > Restructure so command execution is in one place"). > > The if-else parsing the command arguments does

Re: [PATCH 3/7] wdt: dw: Fix clock rate being off by 1000

2020-08-15 Thread Simon Glass
On Wed, 5 Aug 2020 at 13:14, Sean Anderson wrote: > > The clock subsystem returns clock rates in Hz. We need to divide by 1000 so > the rate is in kHz. > > Fixes: cf89ef8d10f240554541c20b2e1bdcdd58d1d7e6 > Signed-off-by: Sean Anderson > --- > > drivers/watchdog/designware_wdt.c | 2 +- > 1 file

Re: [PATCH 5/7] wdt: dw: Free the clock on error

2020-08-15 Thread Simon Glass
On Wed, 5 Aug 2020 at 13:14, Sean Anderson wrote: > > The clock subsystem requires that clk_free be called on clocks obtained via > clk_get_*. > > Signed-off-by: Sean Anderson > --- > > drivers/watchdog/designware_wdt.c | 17 - > 1 file changed, 12 insertions(+), 5 deletions(-) >

Re: pytest to test reset

2020-08-15 Thread Simon Glass
Hi Peng, On Wed, 12 Aug 2020 at 02:13, Peng Fan wrote: > > Hi All, > > Any ideas how to test uboot reset cmd many times with pytest? Can you use sysreset_allowed[] perhaps? Regards, Simon

Re: [PATCH 2/2] cmd: clk: correctly handle depth for clk dump

2020-08-15 Thread Simon Glass
On Thu, 30 Jul 2020 at 06:04, Patrick Delaunay wrote: > > Update depth only when clock uclass is found to have correct display > of command "clk dump". > > Without this patch, the displayed depth is the binding depth for > all the uclass and that can be strange as only clock uclass nodes > are dis

Re: [PATCH v2 0/8] regmap: Add managed API, regmap fields, regmap config

2020-08-15 Thread Simon Glass
Hi Pratyush, On Wed, 5 Aug 2020 at 02:07, Pratyush Yadav wrote: > > Hi Simon, > > On 06/06/20 02:00AM, Pratyush Yadav wrote: > > Hi, > > > > This series is a re-spin of Jean-Jacques' earlier effort [0], the goal > > of which was to facilitate porting drivers from the Linux kernel. It > > adds the

Re: [PATCH v2 01/21] clk: check hw and hw->dev before dereference it

2020-08-15 Thread Simon Glass
On Wed, 5 Aug 2020 at 09:12, Claudiu Beznea wrote: > > Check hw and hw->dev before dereference it. > > Signed-off-by: Claudiu Beznea > --- > drivers/clk/clk.c | 3 +++ > 1 file changed, 3 insertions(+) Reviewed-by: Simon Glass

Re: [PATCH v2 02/21] dm: core: add support for device re-parenting

2020-08-15 Thread Simon Glass
On Wed, 5 Aug 2020 at 09:12, Claudiu Beznea wrote: > > In common clock framework the relation b/w parent and child clocks is > determined based on the udevice parent/child information. A clock > parent could be changed based on devices needs. In case this is happen > the functionalities for clock

Re: [PATCH v2 0/2] reset: Add a managed API

2020-08-15 Thread Simon Glass
Hi Pratyush, On Wed, 5 Aug 2020 at 02:13, Pratyush Yadav wrote: > > Hi Simon, > > On 12/06/20 05:38PM, Pratyush Yadav wrote: > > Hi, > > > > This is the 4th of a few series that are re-rolls of Jean-Jacques' > > earlier efforts. The goal is to facilitate porting drivers from the > > Linux kernel.

Re: [PATCH v1 02/15] x86: advantech: som-db5800-som-6867: Remove dead code

2020-08-15 Thread Simon Glass
On Thu, 6 Aug 2020 at 08:54, Andy Shevchenko wrote: > > start.S does nothing and can be safely removed. Makefile is still being used > by the build system, so simply drop the rule from it. > > Cc: George McCollister > Signed-off-by: Andy Shevchenko > --- > board/advantech/som-db5800-som-6867/Ma

Re: [PATCH v1 09/15] x86: intel: cougarcanyon2: Remove dead code

2020-08-15 Thread Simon Glass
On Thu, 6 Aug 2020 at 08:54, Andy Shevchenko wrote: > > start.S does nothing and can be safely removed. Makefile is still being used > by the build system, so simply drop the rule from it. > > Signed-off-by: Andy Shevchenko > --- > board/intel/cougarcanyon2/Makefile | 2 +- > board/intel/cougarc

Re: [PATCH v1 11/15] x86: intel: edison: Remove dead code

2020-08-15 Thread Simon Glass
On Thu, 6 Aug 2020 at 08:54, Andy Shevchenko wrote: > > start.S does nothing and can be safely removed. Makefile is still being used > by the build system, so simply drop the rule from it. > > Signed-off-by: Andy Shevchenko > --- > board/intel/edison/Makefile | 2 +- > board/intel/edison/start.

Re: [PATCH 4/7] wdt: dw: Enable the clock before using it

2020-08-15 Thread Simon Glass
On Wed, 5 Aug 2020 at 13:14, Sean Anderson wrote: > > The watchdog won't work if the clock isn't enabled. > > Fixes: cf89ef8d10f240554541c20b2e1bdcdd58d1d7e6 > Signed-off-by: Sean Anderson > --- > > drivers/watchdog/designware_wdt.c | 4 > 1 file changed, 4 insertions(+) > Reviewed-by: Sim

Re: [PATCH v1 06/15] x86: efi: efi-x86_payload: Remove dead code

2020-08-15 Thread Simon Glass
On Thu, 6 Aug 2020 at 08:54, Andy Shevchenko wrote: > > start.S does nothing and can be safely removed. Makefile is still being used > by the build system, so simply drop the rule from it. > > Signed-off-by: Andy Shevchenko > --- > board/efi/efi-x86_payload/Makefile | 2 +- > board/efi/efi-x86_p

Re: [PATCH v1 08/15] x86: intel: cherryhill: Remove dead code

2020-08-15 Thread Simon Glass
On Thu, 6 Aug 2020 at 08:54, Andy Shevchenko wrote: > > start.S does nothing and can be safely removed. Makefile is still being used > by the build system, so simply drop the rule from it. > > Signed-off-by: Andy Shevchenko > --- > board/intel/cherryhill/Makefile | 2 +- > board/intel/cherryhill

Re: [PATCH v1 07/15] x86: intel: bayleybay: Remove dead code

2020-08-15 Thread Simon Glass
On Thu, 6 Aug 2020 at 08:54, Andy Shevchenko wrote: > > start.S does nothing and can be safely removed. Makefile is still being used > by the build system, so simply drop the rule from it. > > Signed-off-by: Andy Shevchenko > --- > board/intel/bayleybay/Makefile | 2 +- > board/intel/bayleybay/s

Re: [PATCH 1/4] firmware: add new driver for SCMI firmwares

2020-08-15 Thread Simon Glass
Hi Etienne, On Tue, 4 Aug 2020 at 03:33, Etienne Carriere wrote: > > Hello Simon, > > Thanks for the feedback, I'll fix the changes in my v2. > and sorry for these delayed answers. > > On Sun, 26 Jul 2020 at 16:55, Simon Glass wrote: > > > > Hi Etienne, > > > > On Fri, 17 Jul 2020 at 09:38, Etie

Re: [PATCH v2 05/21] clk: get clock pointer before proceeding

2020-08-15 Thread Simon Glass
On Wed, 5 Aug 2020 at 09:12, Claudiu Beznea wrote: > > clk_get_by_indexed_prop() retrieves a clock with dev member being set > with the pointer to the udevice for the clock controller driver. But > in case of CCF each clock driver has set in dev member the reference > to its parent (the root of th

Re: [PATCH v1 13/15] x86: intel: minnowmax: Remove dead code

2020-08-15 Thread Simon Glass
On Thu, 6 Aug 2020 at 08:54, Andy Shevchenko wrote: > > start.S does nothing and can be safely removed. Makefile is still being used > by the build system, so simply drop the rule from it. > > Signed-off-by: Andy Shevchenko > --- > board/intel/minnowmax/Makefile | 2 +- > board/intel/minnowmax/s