All of lore.kernel.org
 help / color / mirror / Atom feed
From: Neil Armstrong <neil.armstrong@linaro.org>
To: Caleb Connolly <caleb.connolly@linaro.org>,
	Sumit Garg <sumit.garg@linaro.org>, Tom Rini <trini@konsulko.com>,
	Marek Vasut <marex@denx.de>,
	Rayagonda Kokatanur <rayagonda.kokatanur@broadcom.com>,
	Ramon Fried <rfried.dev@gmail.com>,
	Jorge Ramirez-Ortiz <jorge.ramirez.ortiz@gmail.com>
Cc: u-boot-qcom@groups.io, u-boot@lists.denx.de
Subject: Re: [PATCH 1/3] mach-snapdragon: use OF_UPSTREAM
Date: Fri, 19 Apr 2024 17:19:49 +0200	[thread overview]
Message-ID: <099bcc97-d22b-4f5f-9968-4c9558539c4f@linaro.org> (raw)
In-Reply-To: <20240418-b4-qcom-rbx-fixes-v1-1-e524eb29ae86@linaro.org>

On 18/04/2024 19:24, Caleb Connolly wrote:
> Switch to using upstream DT from dts/upstream.
> 
> Signed-off-by: Caleb Connolly <caleb.connolly@linaro.org>
> ---
>   MAINTAINERS                       | 4 ----
>   arch/arm/Kconfig                  | 1 +
>   configs/dragonboard410c_defconfig | 2 +-
>   configs/dragonboard820c_defconfig | 2 +-
>   configs/qcom_defconfig            | 2 +-
>   5 files changed, 4 insertions(+), 7 deletions(-)
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index c0d2b5138fca..d0a4a28b401d 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -605,12 +605,8 @@ M:	Neil Armstrong <neil.armstrong@linaro.org>
>   R:	Sumit Garg <sumit.garg@linaro.org>
>   L:	u-boot-qcom@groups.io
>   S:	Maintained
>   T:	git https://source.denx.de/u-boot/custodians/u-boot-snapdragon.git
> -F:	arch/arm/dts/msm8*.dtsi
> -F:	arch/arm/dts/pm8???.dtsi
> -F:	arch/arm/dts/pms405.dtsi
> -F:	arch/arm/dts/sdm845.dtsi
>   F:	drivers/*/*/pm8???-*
>   F:	drivers/gpio/msm_gpio.c
>   F:	drivers/mmc/msm_sdhci.c
>   F:	drivers/phy/msm8916-usbh-phy.c
> diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
> index 23ee25269a24..2931c82eb11f 100644
> --- a/arch/arm/Kconfig
> +++ b/arch/arm/Kconfig
> @@ -1088,8 +1088,9 @@ config ARCH_SNAPDRAGON
>   	select BOARD_LATE_INIT
>   	select OF_BOARD
>   	select SAVE_PREV_BL_FDT_ADDR
>   	select LINUX_KERNEL_IMAGE_HEADER
> +	imply OF_UPSTREAM
>   	imply CMD_DM
>   
>   config ARCH_SOCFPGA
>   	bool "Altera SOCFPGA family"
> diff --git a/configs/dragonboard410c_defconfig b/configs/dragonboard410c_defconfig
> index 260a8349d3b2..9ef04fd45546 100644
> --- a/configs/dragonboard410c_defconfig
> +++ b/configs/dragonboard410c_defconfig
> @@ -8,9 +8,9 @@ CONFIG_SYS_MALLOC_LEN=0x802000
>   CONFIG_HAS_CUSTOM_SYS_INIT_SP_ADDR=y
>   CONFIG_CUSTOM_SYS_INIT_SP_ADDR=0x8007fff0
>   CONFIG_ENV_SIZE=0x2000
>   CONFIG_ENV_OFFSET=0x0
> -CONFIG_DEFAULT_DEVICE_TREE="apq8016-sbc"
> +CONFIG_DEFAULT_DEVICE_TREE="qcom/apq8016-sbc"
>   CONFIG_OF_LIBFDT_OVERLAY=y
>   CONFIG_IDENT_STRING="\nQualcomm-DragonBoard 410C"
>   CONFIG_SYS_LOAD_ADDR=0x80080000
>   CONFIG_REMAKE_ELF=y
> diff --git a/configs/dragonboard820c_defconfig b/configs/dragonboard820c_defconfig
> index ebc80eb2a464..f6b2cb09ba31 100644
> --- a/configs/dragonboard820c_defconfig
> +++ b/configs/dragonboard820c_defconfig
> @@ -6,9 +6,9 @@ CONFIG_TEXT_BASE=0x80080000
>   CONFIG_SYS_MALLOC_LEN=0x804000
>   CONFIG_HAS_CUSTOM_SYS_INIT_SP_ADDR=y
>   CONFIG_CUSTOM_SYS_INIT_SP_ADDR=0x8007fff0
>   CONFIG_ENV_SIZE=0x4000
> -CONFIG_DEFAULT_DEVICE_TREE="apq8096-db820c"
> +CONFIG_DEFAULT_DEVICE_TREE="qcom/apq8096-db820c"
>   CONFIG_IDENT_STRING="\nQualcomm-DragonBoard 820C"
>   CONFIG_SYS_LOAD_ADDR=0x80080000
>   CONFIG_DISTRO_DEFAULTS=y
>   CONFIG_USE_BOOTARGS=y
> diff --git a/configs/qcom_defconfig b/configs/qcom_defconfig
> index ee3ed89cbc8a..218a9a769682 100644
> --- a/configs/qcom_defconfig
> +++ b/configs/qcom_defconfig
> @@ -1,9 +1,9 @@
>   CONFIG_ARM=y
>   CONFIG_SKIP_LOWLEVEL_INIT=y
>   CONFIG_POSITION_INDEPENDENT=y
>   CONFIG_ARCH_SNAPDRAGON=y
> -CONFIG_DEFAULT_DEVICE_TREE="sdm845-db845c"
> +CONFIG_DEFAULT_DEVICE_TREE="qcom/sdm845-db845c"
>   CONFIG_SYS_LOAD_ADDR=0x0
>   CONFIG_BUTTON_CMD=y
>   CONFIG_FIT=y
>   CONFIG_FIT_VERBOSE=y
> 

Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>

  reply	other threads:[~2024-04-19 15:20 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-04-18 17:24 [PATCH 0/3] qcom: switch to OF_UPSTREAM Caleb Connolly
2024-04-18 17:24 ` [PATCH 1/3] mach-snapdragon: use OF_UPSTREAM Caleb Connolly
2024-04-19 15:19   ` Neil Armstrong [this message]
2024-04-18 17:24 ` [PATCH 2/3] arm: dts: drop qcom dts files Caleb Connolly
2024-04-19 15:20   ` Neil Armstrong
2024-04-18 17:24 ` [PATCH 3/3] qcom_defconfig: set SYS_INIT_SP_BSS_OFFSET Caleb Connolly
2024-04-19 15:21   ` Neil Armstrong
2024-04-22  9:50 ` [PATCH 0/3] qcom: switch to OF_UPSTREAM Sumit Garg
2024-04-23 11:43 ` Caleb Connolly

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=099bcc97-d22b-4f5f-9968-4c9558539c4f@linaro.org \
    --to=neil.armstrong@linaro.org \
    --cc=caleb.connolly@linaro.org \
    --cc=jorge.ramirez.ortiz@gmail.com \
    --cc=marex@denx.de \
    --cc=rayagonda.kokatanur@broadcom.com \
    --cc=rfried.dev@gmail.com \
    --cc=sumit.garg@linaro.org \
    --cc=trini@konsulko.com \
    --cc=u-boot-qcom@groups.io \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.