linux-amlogic.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: Neil Armstrong <neil.armstrong@linaro.org>
To: u-boot-amlogic@groups.io, christianshewitt@gmail.com,
	u-boot@lists.denx.de, linux-amlogic@lists.infradead.org
Subject: Re: [PATCH 06/13] boards: add BananaPi M2S defconfig
Date: Thu, 23 Mar 2023 09:51:13 +0100	[thread overview]
Message-ID: <88e79b01-8f2d-e1f5-12aa-cf628e622b76@linaro.org> (raw)
In-Reply-To: <20230323065458.776029-7-christianshewitt@gmail.com>

On 23/03/2023 07:54, Christian Hewitt wrote:
> Add configuration for the Bananapi BPI-M2S.
> 
> Signed-off-by: Christian Hewitt <christianshewitt@gmail.com>
> ---
>   configs/bananapi-m2s_defconfig | 82 ++++++++++++++++++++++++++++++++++
>   1 file changed, 82 insertions(+)
>   create mode 100644 configs/bananapi-m2s_defconfig
> 
> diff --git a/configs/bananapi-m2s_defconfig b/configs/bananapi-m2s_defconfig
> new file mode 100644
> index 0000000000..3109e0ce48
> --- /dev/null
> +++ b/configs/bananapi-m2s_defconfig
> @@ -0,0 +1,82 @@
> +CONFIG_ARM=y
> +CONFIG_ARCH_MESON=y
> +CONFIG_TEXT_BASE=0x01000000
> +CONFIG_NR_DRAM_BANKS=1
> +CONFIG_ENV_SIZE=0x2000
> +CONFIG_DM_GPIO=y
> +CONFIG_DEFAULT_DEVICE_TREE="meson-g12b-a311d-bananapi-m2s"
> +CONFIG_MESON_G12A=y
> +CONFIG_DEBUG_UART_BASE=0xff803000
> +CONFIG_DEBUG_UART_CLOCK=24000000
> +CONFIG_IDENT_STRING=" bpi-m2s"
> +CONFIG_SYS_LOAD_ADDR=0x1000000
> +CONFIG_DEBUG_UART=y
> +CONFIG_AHCI=y
> +CONFIG_HAS_CUSTOM_SYS_INIT_SP_ADDR=y
> +CONFIG_CUSTOM_SYS_INIT_SP_ADDR=0x20000000
> +CONFIG_REMAKE_ELF=y
> +CONFIG_OF_BOARD_SETUP=y
> +# CONFIG_DISPLAY_CPUINFO is not set
> +CONFIG_MISC_INIT_R=y
> +CONFIG_SYS_MAXARGS=32
> +# CONFIG_CMD_BDI is not set
> +# CONFIG_CMD_IMI is not set
> +CONFIG_CMD_GPIO=y
> +# CONFIG_CMD_LOADS is not set
> +CONFIG_CMD_MMC=y
> +CONFIG_CMD_PCI=y
> +CONFIG_CMD_USB=y
> +CONFIG_CMD_USB_MASS_STORAGE=y
> +# CONFIG_CMD_SETEXPR is not set
> +CONFIG_CMD_REGULATOR=y
> +CONFIG_OF_CONTROL=y
> +CONFIG_SYS_RELOC_GD_ENV_ADDR=y
> +CONFIG_ADC=y
> +CONFIG_SARADC_MESON=y
> +CONFIG_AHCI_PCI=y
> +CONFIG_MMC_MESON_GX=y
> +CONFIG_PHY_REALTEK=y
> +CONFIG_DM_MDIO=y
> +CONFIG_DM_MDIO_MUX=y
> +CONFIG_ETH_DESIGNWARE_MESON8B=y
> +CONFIG_MDIO_MUX_MESON_G12A=y
> +CONFIG_PCI=y
> +CONFIG_PCIE_DW_MESON=y
> +CONFIG_MESON_G12A_USB_PHY=y
> +CONFIG_PINCTRL=y
> +CONFIG_PINCTRL_MESON_G12A=y
> +CONFIG_POWER_DOMAIN=y
> +CONFIG_MESON_EE_POWER_DOMAIN=y
> +CONFIG_DM_REGULATOR=y
> +CONFIG_DM_REGULATOR_FIXED=y
> +CONFIG_DM_REGULATOR_GPIO=y
> +CONFIG_DM_RESET=y
> +CONFIG_DEBUG_UART_ANNOUNCE=y
> +CONFIG_DEBUG_UART_SKIP_INIT=y
> +CONFIG_MESON_SERIAL=y
> +CONFIG_USB=y
> +CONFIG_USB_XHCI_HCD=y
> +CONFIG_USB_XHCI_DWC3=y
> +CONFIG_USB_DWC3=y
> +# CONFIG_USB_DWC3_GADGET is not set
> +CONFIG_USB_DWC3_MESON_G12A=y
> +CONFIG_USB_KEYBOARD=y
> +CONFIG_USB_GADGET=y
> +CONFIG_USB_GADGET_VENDOR_NUM=0x1b8e
> +CONFIG_USB_GADGET_PRODUCT_NUM=0xfada
> +CONFIG_USB_GADGET_DWC2_OTG=y
> +CONFIG_USB_GADGET_DWC2_OTG_PHY_BUS_WIDTH_8=y
> +CONFIG_USB_GADGET_DOWNLOAD=y
> +CONFIG_VIDEO=y
> +# CONFIG_VIDEO_BPP8 is not set
> +# CONFIG_VIDEO_BPP16 is not set
> +CONFIG_SYS_WHITE_ON_BLACK=y
> +CONFIG_VIDEO_MESON=y
> +CONFIG_VIDEO_DT_SIMPLEFB=y
> +CONFIG_SPLASH_SCREEN=y
> +CONFIG_SPLASH_SCREEN_ALIGN=y
> +CONFIG_VIDEO_BMP_RLE8=y
> +CONFIG_BMP_16BPP=y
> +CONFIG_BMP_24BPP=y
> +CONFIG_BMP_32BPP=y
> +CONFIG_OF_LIBFDT_OVERLAY=y

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

_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic

  reply	other threads:[~2023-03-23  8:51 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-03-23  6:54 [PATCH 00/13] boards: amlogic: add BananaPi/Radxa/WeTek boards Christian Hewitt
2023-03-23  6:54 ` [PATCH 01/13] docs: boards: amlogic: add bananapi-m5 to u200 maintainer file Christian Hewitt
2023-03-23  8:48   ` Neil Armstrong
2023-03-23  6:54 ` [PATCH 02/13] ARM: dts: add support for BananaPi M2-Pro Christian Hewitt
2023-03-23  8:50   ` Neil Armstrong
2023-03-23  6:54 ` [PATCH 03/13] boards: add BananaPi M2-Pro defconfig Christian Hewitt
2023-03-23  8:50   ` Neil Armstrong
2023-03-23  6:54 ` [PATCH 04/13] docs: boards: amlogic: add documentation for BananaPi M2-Pro Christian Hewitt
2023-03-23  8:50   ` Neil Armstrong
2023-03-23  6:54 ` [PATCH 05/13] ARM: dts: add support for BananaPi M2S Christian Hewitt
2023-03-23  8:50   ` Neil Armstrong
2023-03-23  6:54 ` [PATCH 06/13] boards: add BananaPi M2S defconfig Christian Hewitt
2023-03-23  8:51   ` Neil Armstrong [this message]
2023-03-23  6:54 ` [PATCH 07/13] docs: boards: amlogic: add documentation for BananaPi M2S Christian Hewitt
2023-03-23  6:54 ` [PATCH 08/13] ARM: dts: add support for Radxa Zero2 Christian Hewitt
2023-03-23  8:51   ` Neil Armstrong
2023-03-23  6:54 ` [PATCH 09/13] boards: amlogic: add Radxa Zero2 defconfig Christian Hewitt
2023-03-23  8:51   ` Neil Armstrong
2023-03-23  6:54 ` [PATCH 10/13] doc: boards: amlogic: add documentation for Radxa Zero2 Christian Hewitt
2023-03-23  6:54 ` [PATCH 11/13] ARM: dts: add support for WeTek Hub and WeTek Play2 Christian Hewitt
2023-03-23  8:51   ` Neil Armstrong
2023-03-23  6:54 ` [PATCH 12/13] boards: amlogic: add WeTek Hub and WeTek Play2 defconfig Christian Hewitt
2023-03-23  6:54 ` [PATCH 13/13] doc: boards: amlogic: add documentation for WeTek Hub and WeTek Play2 Christian Hewitt
     [not found] ` <174EF9F0421CB2CD.22739@groups.io>
2023-03-23  7:04   ` [PATCH 12/13] boards: amlogic: add WeTek Hub and WeTek Play2 defconfig Christian Hewitt
2023-03-23  8:52     ` Neil Armstrong

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=88e79b01-8f2d-e1f5-12aa-cf628e622b76@linaro.org \
    --to=neil.armstrong@linaro.org \
    --cc=christianshewitt@gmail.com \
    --cc=linux-amlogic@lists.infradead.org \
    --cc=u-boot-amlogic@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).