linux-amlogic.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: Christian Hewitt <christianshewitt@gmail.com>
To: u-boot@lists.denx.de, u-boot-amlogic@groups.io,
	linux-amlogic@lists.infradead.org
Subject: [PATCH 09/13] boards: amlogic: add Radxa Zero2 defconfig
Date: Thu, 23 Mar 2023 06:54:54 +0000	[thread overview]
Message-ID: <20230323065458.776029-10-christianshewitt@gmail.com> (raw)
In-Reply-To: <20230323065458.776029-1-christianshewitt@gmail.com>

Add board configuration for the Radxa Zero2.

Signed-off-by: Christian Hewitt <christianshewitt@gmail.com>
---
 configs/radxa-zero2_defconfig | 77 +++++++++++++++++++++++++++++++++++
 1 file changed, 77 insertions(+)
 create mode 100644 configs/radxa-zero2_defconfig

diff --git a/configs/radxa-zero2_defconfig b/configs/radxa-zero2_defconfig
new file mode 100644
index 0000000000..2218b0db7d
--- /dev/null
+++ b/configs/radxa-zero2_defconfig
@@ -0,0 +1,77 @@
+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-radxa-zero2"
+CONFIG_MESON_G12A=y
+CONFIG_DEBUG_UART_BASE=0xff803000
+CONFIG_DEBUG_UART_CLOCK=24000000
+CONFIG_IDENT_STRING=" radxa-zero2"
+CONFIG_SYS_LOAD_ADDR=0x1000000
+CONFIG_DEBUG_UART=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_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_NET_RANDOM_ETHADDR=y
+CONFIG_MMC_MESON_GX=y
+CONFIG_MTD=y
+CONFIG_DM_MTD=y
+# CONFIG_PHY_REALTEK is not set
+CONFIG_DM_MDIO=y
+CONFIG_DM_MDIO_MUX=y
+# CONFIG_ETH_DESIGNWARE_MESON8B is not set
+CONFIG_MDIO_MUX_MESON_G12A=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_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
-- 
2.34.1


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

  parent reply	other threads:[~2023-03-23  6:55 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
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 ` Christian Hewitt [this message]
2023-03-23  8:51   ` [PATCH 09/13] boards: amlogic: add Radxa Zero2 defconfig 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=20230323065458.776029-10-christianshewitt@gmail.com \
    --to=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).