From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mauro Condarelli Date: Thu, 13 Feb 2020 10:18:46 +0100 Subject: [PATCH v5] Add support for SoM "VoCore2". In-Reply-To: <8e0791a1-eacd-1936-63ab-614353615260@denx.de> References: <20200212153016.25420-1-mc5686@mclink.it> <8e0791a1-eacd-1936-63ab-614353615260@denx.de> Message-ID: <79782238-9c6e-9fde-8050-716e34266387@mclink.it> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Thanks Stefan. On 2/13/20 7:50 AM, Stefan wrote: > On 12.02.20 16:30, Mauro Condarelli wrote: >> Small patch series to add support for VoCore/VoCore2 board. >> >> VoCore is open hardware and runs OpenWrt/LEDE. >> It has WIFI, USB, UART, 20+ GPIOs but is only one inch square. >> It will help you to make a smart house, study embedded system >> or even make the tiniest router in the world. >> >> Details about this SoM can be found at "https://vocore.io/v2.html". >> >> Signed-off-by: Mauro Condarelli >> --- >> >> Changes in v5: >> - Removed unneeded (and wrong) UART2 initialization in board.c >> - Added network setup. >> - Removed project-specific code. >> - Move back environment to SPI NOR. >> - Changes to environment default settings. >> - Rebase on current u-boot-mips/testing >> >> Changes in v4: >> - Reverted some overzealous DTS cleaning. >> - Added support for bootcount >> >> Changes in v3: >> - based on top of Weijie Gao patchset: >> ???? "[v3,xx/20]Refactor the architecture parts of mt7628" >> >> Changes in v2: >> - Removed some dead code >> - Changed Author to my full name (no nick) >> - Removed unwanted fixup to .dts generation (not my call). >> - Fixed commit message >> - Fixed various variables/filenames to include Vendor name >> - Changed Vendor name (Vonger -> Vocore) >> >> ? arch/mips/dts/Makefile?????????????? |?? 1 + >> ? arch/mips/dts/mt7628a.dtsi?????????? |?? 5 ++ >> ? arch/mips/dts/vocore_vocore2.dts???? |? 78 ++++++++++++++++++++ >> ? arch/mips/mach-mtmips/Kconfig??????? |?? 8 +++ >> ? board/vocore/vocore2/Kconfig???????? |? 12 ++++ >> ? board/vocore/vocore2/Makefile??????? |?? 3 + >> ? board/vocore/vocore2/board.c???????? |?? 6 ++ >> ? configs/vocore2_defconfig??????????? | 103 ++++++++++++++++++++++++++ >> ? configs/vocore2_defconfig_ENV_IN_FAT | 104 +++++++++++++++++++++++++++ >> ? include/configs/vocore2.h??????????? |? 61 ++++++++++++++++ >> ? 10 files changed, 381 insertions(+) >> ? create mode 100644 arch/mips/dts/vocore_vocore2.dts >> ? create mode 100644 board/vocore/vocore2/Kconfig >> ? create mode 100644 board/vocore/vocore2/Makefile >> ? create mode 100644 board/vocore/vocore2/board.c >> ? create mode 100644 configs/vocore2_defconfig >> ? create mode 100644 configs/vocore2_defconfig_ENV_IN_FAT >> ? create mode 100644 include/configs/vocore2.h > > Apart from the other comments, the MAINTAINERS file is missing. Please > add it in the next patch version. Yes, I know. Also patman was complaining. I perused MAINTAINERS and it didn't look like specific board maintainers are in. I have no problems adding me to the list, but I'm unsure I have the privilege and it's unclear where I should add myself. Please advise. > > Thanks, > Stefan Thanks in Advance Mauro