diff mbox series

[1/6] dts: sunxi: add licheepi-zero-dock

Message ID 20210519194208.515548-2-rehn.andreas86@gmail.com
State Deferred
Delegated to: Tom Rini
Headers show
Series arm: sunxi: v3s: add ethernet support | expand

Commit Message

Andreas Rehn May 19, 2021, 7:42 p.m. UTC
licheepi-zero dock is the second gen licheepi-zero board
and brings addtional periperals like
mic, speaker, ethernet, MIPI Camera Interface, 4 push buttons,
second TF Card slot for Wifi or SD.

As the device tree is synchronized in a previous commit, just add it to
Makefile, create a new MAINTAINER item and provide a defconfig.

Signed-off-by: Andreas Rehn <rehn.andreas86@gmail.com>
---
 arch/arm/dts/Makefile                | 3 ++-
 board/sunxi/MAINTAINERS              | 5 +++++
 configs/LicheePi_Zero_dock_defconfig | 7 +++++++
 3 files changed, 14 insertions(+), 1 deletion(-)
 create mode 100644 configs/LicheePi_Zero_dock_defconfig

Comments

Andre Przywara May 19, 2021, 9:42 p.m. UTC | #1
On Wed, 19 May 2021 21:42:03 +0200
Andreas Rehn <rehn.andreas86@gmail.com> wrote:

Hi Andreas,

> licheepi-zero dock is the second gen licheepi-zero board
> and brings addtional periperals like
> mic, speaker, ethernet, MIPI Camera Interface, 4 push buttons,
> second TF Card slot for Wifi or SD.
> 
> As the device tree is synchronized in a previous commit, just add it to
> Makefile, create a new MAINTAINER item and provide a defconfig.

Thanks for upstreaming this!

> 
> Signed-off-by: Andreas Rehn <rehn.andreas86@gmail.com>
> ---
>  arch/arm/dts/Makefile                | 3 ++-
>  board/sunxi/MAINTAINERS              | 5 +++++
>  configs/LicheePi_Zero_dock_defconfig | 7 +++++++
>  3 files changed, 14 insertions(+), 1 deletion(-)
>  create mode 100644 configs/LicheePi_Zero_dock_defconfig
> 
> diff --git a/arch/arm/dts/Makefile b/arch/arm/dts/Makefile
> index 9c601a5c98..a5253ac112 100644
> --- a/arch/arm/dts/Makefile
> +++ b/arch/arm/dts/Makefile
> @@ -609,7 +609,8 @@ dtb-$(CONFIG_MACH_SUN8I_R40) += \
>  	sun8i-v40-bananapi-m2-berry.dtb
>  dtb-$(CONFIG_MACH_SUN8I_V3S) += \
>  	sun8i-s3-pinecube.dtb \
> -	sun8i-v3s-licheepi-zero.dtb
> +	sun8i-v3s-licheepi-zero.dtb \
> +	sun8i-v3s-licheepi-zero-dock.dtb
>  dtb-$(CONFIG_MACH_SUN50I_H5) += \
>  	sun50i-h5-bananapi-m2-plus.dtb \
>  	sun50i-h5-emlid-neutis-n5-devboard.dtb \
> diff --git a/board/sunxi/MAINTAINERS b/board/sunxi/MAINTAINERS
> index 76eba2ad20..e956087b76 100644
> --- a/board/sunxi/MAINTAINERS
> +++ b/board/sunxi/MAINTAINERS
> @@ -266,6 +266,11 @@ M:	Icenowy Zheng <icenowy@aosc.xyz>
>  S:	Maintained
>  F:	configs/LicheePi_Zero_defconfig
>  
> +LICHEEPI-ZERO-DOCK BOARD
> +M:	Icenowy Zheng <icenowy@aosc.xyz>

Does she know about this? How it normally works is that the submitter
of the defconfig takes "maintainership". Which mostly means that he
or she owns the board and can be reached for questions or testing
requests.

Cheers,
Andre

> +S:	Maintained
> +F:	configs/LicheePi_Zero_dock_defconfig
> +
>  LINKSPRITE-PCDUINO BOARD
>  M:	Zoltan Herpai <wigyori@uid0.hu>
>  S:	Maintained
> diff --git a/configs/LicheePi_Zero_dock_defconfig b/configs/LicheePi_Zero_dock_defconfig
> new file mode 100644
> index 0000000000..d890151f80
> --- /dev/null
> +++ b/configs/LicheePi_Zero_dock_defconfig
> @@ -0,0 +1,7 @@
> +CONFIG_ARM=y
> +CONFIG_ARCH_SUNXI=y
> +CONFIG_SPL=y
> +CONFIG_MACH_SUN8I_V3S=y
> +CONFIG_DRAM_CLK=360
> +CONFIG_DEFAULT_DEVICE_TREE="sun8i-v3s-licheepi-zero-dock"
> +CONFIG_SUN8I_EMAC=y
Andreas Rehn May 19, 2021, 9:55 p.m. UTC | #2
hey andre,

thx for the fast response!

I thought this would be the right choice since she did the initial work a
long time ago. also, she maintains the lichee-zero (without dock) already.

sorry, this is my first patchset to u-boot and I'm not aware of the process.

greetings
Andreas

Am Mi., 19. Mai 2021 um 23:42 Uhr schrieb Andre Przywara <
andre.przywara@arm.com>:

> On Wed, 19 May 2021 21:42:03 +0200
> Andreas Rehn <rehn.andreas86@gmail.com> wrote:
>
> Hi Andreas,
>
> > licheepi-zero dock is the second gen licheepi-zero board
> > and brings addtional periperals like
> > mic, speaker, ethernet, MIPI Camera Interface, 4 push buttons,
> > second TF Card slot for Wifi or SD.
> >
> > As the device tree is synchronized in a previous commit, just add it to
> > Makefile, create a new MAINTAINER item and provide a defconfig.
>
> Thanks for upstreaming this!
>
> >
> > Signed-off-by: Andreas Rehn <rehn.andreas86@gmail.com>
> > ---
> >  arch/arm/dts/Makefile                | 3 ++-
> >  board/sunxi/MAINTAINERS              | 5 +++++
> >  configs/LicheePi_Zero_dock_defconfig | 7 +++++++
> >  3 files changed, 14 insertions(+), 1 deletion(-)
> >  create mode 100644 configs/LicheePi_Zero_dock_defconfig
> >
> > diff --git a/arch/arm/dts/Makefile b/arch/arm/dts/Makefile
> > index 9c601a5c98..a5253ac112 100644
> > --- a/arch/arm/dts/Makefile
> > +++ b/arch/arm/dts/Makefile
> > @@ -609,7 +609,8 @@ dtb-$(CONFIG_MACH_SUN8I_R40) += \
> >       sun8i-v40-bananapi-m2-berry.dtb
> >  dtb-$(CONFIG_MACH_SUN8I_V3S) += \
> >       sun8i-s3-pinecube.dtb \
> > -     sun8i-v3s-licheepi-zero.dtb
> > +     sun8i-v3s-licheepi-zero.dtb \
> > +     sun8i-v3s-licheepi-zero-dock.dtb
> >  dtb-$(CONFIG_MACH_SUN50I_H5) += \
> >       sun50i-h5-bananapi-m2-plus.dtb \
> >       sun50i-h5-emlid-neutis-n5-devboard.dtb \
> > diff --git a/board/sunxi/MAINTAINERS b/board/sunxi/MAINTAINERS
> > index 76eba2ad20..e956087b76 100644
> > --- a/board/sunxi/MAINTAINERS
> > +++ b/board/sunxi/MAINTAINERS
> > @@ -266,6 +266,11 @@ M:       Icenowy Zheng <icenowy@aosc.xyz>
> >  S:   Maintained
> >  F:   configs/LicheePi_Zero_defconfig
> >
> > +LICHEEPI-ZERO-DOCK BOARD
> > +M:   Icenowy Zheng <icenowy@aosc.xyz>
>
> Does she know about this? How it normally works is that the submitter
> of the defconfig takes "maintainership". Which mostly means that he
> or she owns the board and can be reached for questions or testing
> requests.
>
> Cheers,
> Andre
>
> > +S:   Maintained
> > +F:   configs/LicheePi_Zero_dock_defconfig
> > +
> >  LINKSPRITE-PCDUINO BOARD
> >  M:   Zoltan Herpai <wigyori@uid0.hu>
> >  S:   Maintained
> > diff --git a/configs/LicheePi_Zero_dock_defconfig
> b/configs/LicheePi_Zero_dock_defconfig
> > new file mode 100644
> > index 0000000000..d890151f80
> > --- /dev/null
> > +++ b/configs/LicheePi_Zero_dock_defconfig
> > @@ -0,0 +1,7 @@
> > +CONFIG_ARM=y
> > +CONFIG_ARCH_SUNXI=y
> > +CONFIG_SPL=y
> > +CONFIG_MACH_SUN8I_V3S=y
> > +CONFIG_DRAM_CLK=360
> > +CONFIG_DEFAULT_DEVICE_TREE="sun8i-v3s-licheepi-zero-dock"
> > +CONFIG_SUN8I_EMAC=y
>
>
Icenowy Zheng May 21, 2021, 9:37 a.m. UTC | #3
于 2021年5月20日 GMT+08:00 上午5:42:38, Andre Przywara <andre.przywara@arm.com> 写到:
>On Wed, 19 May 2021 21:42:03 +0200
>Andreas Rehn <rehn.andreas86@gmail.com> wrote:
>
>Hi Andreas,
>
>> licheepi-zero dock is the second gen licheepi-zero board
>> and brings addtional periperals like
>> mic, speaker, ethernet, MIPI Camera Interface, 4 push buttons,
>> second TF Card slot for Wifi or SD.
>> 
>> As the device tree is synchronized in a previous commit, just add it
>to
>> Makefile, create a new MAINTAINER item and provide a defconfig.
>
>Thanks for upstreaming this!
>
>> 
>> Signed-off-by: Andreas Rehn <rehn.andreas86@gmail.com>
>> ---
>>  arch/arm/dts/Makefile                | 3 ++-
>>  board/sunxi/MAINTAINERS              | 5 +++++
>>  configs/LicheePi_Zero_dock_defconfig | 7 +++++++
>>  3 files changed, 14 insertions(+), 1 deletion(-)
>>  create mode 100644 configs/LicheePi_Zero_dock_defconfig
>> 
>> diff --git a/arch/arm/dts/Makefile b/arch/arm/dts/Makefile
>> index 9c601a5c98..a5253ac112 100644
>> --- a/arch/arm/dts/Makefile
>> +++ b/arch/arm/dts/Makefile
>> @@ -609,7 +609,8 @@ dtb-$(CONFIG_MACH_SUN8I_R40) += \
>>  	sun8i-v40-bananapi-m2-berry.dtb
>>  dtb-$(CONFIG_MACH_SUN8I_V3S) += \
>>  	sun8i-s3-pinecube.dtb \
>> -	sun8i-v3s-licheepi-zero.dtb
>> +	sun8i-v3s-licheepi-zero.dtb \
>> +	sun8i-v3s-licheepi-zero-dock.dtb
>>  dtb-$(CONFIG_MACH_SUN50I_H5) += \
>>  	sun50i-h5-bananapi-m2-plus.dtb \
>>  	sun50i-h5-emlid-neutis-n5-devboard.dtb \
>> diff --git a/board/sunxi/MAINTAINERS b/board/sunxi/MAINTAINERS
>> index 76eba2ad20..e956087b76 100644
>> --- a/board/sunxi/MAINTAINERS
>> +++ b/board/sunxi/MAINTAINERS
>> @@ -266,6 +266,11 @@ M:	Icenowy Zheng <icenowy@aosc.xyz>
>>  S:	Maintained
>>  F:	configs/LicheePi_Zero_defconfig
>>  
>> +LICHEEPI-ZERO-DOCK BOARD
>> +M:	Icenowy Zheng <icenowy@aosc.xyz>
>
>Does she know about this? How it normally works is that the submitter
>of the defconfig takes "maintainership". Which mostly means that he
>or she owns the board and can be reached for questions or testing
>requests.

Well I do have it, and I can be responsible for it.

>
>Cheers,
>Andre
>
>> +S:	Maintained
>> +F:	configs/LicheePi_Zero_dock_defconfig
>> +
>>  LINKSPRITE-PCDUINO BOARD
>>  M:	Zoltan Herpai <wigyori@uid0.hu>
>>  S:	Maintained
>> diff --git a/configs/LicheePi_Zero_dock_defconfig
>b/configs/LicheePi_Zero_dock_defconfig
>> new file mode 100644
>> index 0000000000..d890151f80
>> --- /dev/null
>> +++ b/configs/LicheePi_Zero_dock_defconfig
>> @@ -0,0 +1,7 @@
>> +CONFIG_ARM=y
>> +CONFIG_ARCH_SUNXI=y
>> +CONFIG_SPL=y
>> +CONFIG_MACH_SUN8I_V3S=y
>> +CONFIG_DRAM_CLK=360
>> +CONFIG_DEFAULT_DEVICE_TREE="sun8i-v3s-licheepi-zero-dock"
>> +CONFIG_SUN8I_EMAC=y
diff mbox series

Patch

diff --git a/arch/arm/dts/Makefile b/arch/arm/dts/Makefile
index 9c601a5c98..a5253ac112 100644
--- a/arch/arm/dts/Makefile
+++ b/arch/arm/dts/Makefile
@@ -609,7 +609,8 @@  dtb-$(CONFIG_MACH_SUN8I_R40) += \
 	sun8i-v40-bananapi-m2-berry.dtb
 dtb-$(CONFIG_MACH_SUN8I_V3S) += \
 	sun8i-s3-pinecube.dtb \
-	sun8i-v3s-licheepi-zero.dtb
+	sun8i-v3s-licheepi-zero.dtb \
+	sun8i-v3s-licheepi-zero-dock.dtb
 dtb-$(CONFIG_MACH_SUN50I_H5) += \
 	sun50i-h5-bananapi-m2-plus.dtb \
 	sun50i-h5-emlid-neutis-n5-devboard.dtb \
diff --git a/board/sunxi/MAINTAINERS b/board/sunxi/MAINTAINERS
index 76eba2ad20..e956087b76 100644
--- a/board/sunxi/MAINTAINERS
+++ b/board/sunxi/MAINTAINERS
@@ -266,6 +266,11 @@  M:	Icenowy Zheng <icenowy@aosc.xyz>
 S:	Maintained
 F:	configs/LicheePi_Zero_defconfig
 
+LICHEEPI-ZERO-DOCK BOARD
+M:	Icenowy Zheng <icenowy@aosc.xyz>
+S:	Maintained
+F:	configs/LicheePi_Zero_dock_defconfig
+
 LINKSPRITE-PCDUINO BOARD
 M:	Zoltan Herpai <wigyori@uid0.hu>
 S:	Maintained
diff --git a/configs/LicheePi_Zero_dock_defconfig b/configs/LicheePi_Zero_dock_defconfig
new file mode 100644
index 0000000000..d890151f80
--- /dev/null
+++ b/configs/LicheePi_Zero_dock_defconfig
@@ -0,0 +1,7 @@ 
+CONFIG_ARM=y
+CONFIG_ARCH_SUNXI=y
+CONFIG_SPL=y
+CONFIG_MACH_SUN8I_V3S=y
+CONFIG_DRAM_CLK=360
+CONFIG_DEFAULT_DEVICE_TREE="sun8i-v3s-licheepi-zero-dock"
+CONFIG_SUN8I_EMAC=y