From mboxrd@z Thu Jan 1 00:00:00 1970 From: Vladimir Barinov Date: Mon, 09 Feb 2015 03:18:41 +0300 Subject: [U-Boot] [PATCH] arm: rmobile: Add SILK board support In-Reply-To: References: <1421079427-8418-1-git-send-email-vladimir.barinov@cogentembedded.com> Message-ID: <54D7FCE1.4010103@cogentembedded.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hi Nobuhiro, I apologize for missed qos.h header file in this commit. Please do find it in upcoming patch. Regards, Vladimir On 06.02.2015 08:10, Nobuhiro Iwamatsu wrote: > Hi, Vladimir. > > Applied, thanks. > > Best regards, > Nobuhiro > > 2015-01-13 1:17 GMT+09:00 Vladimir Barinov > : >> SILK is an entry level development board based on R-Car E2 SoC (R8A7794) >> >> This commit supports the following peripherals: >> - SCIF, I2C, Ethernet, QSPI, MMC, USB Host >> >> Signed-off-by: Vladimir Barinov >> --- >> arch/arm/cpu/armv7/rmobile/Kconfig | 6 +- >> board/renesas/silk/Kconfig | 12 + >> board/renesas/silk/MAINTAINERS | 6 + >> board/renesas/silk/Makefile | 10 + >> board/renesas/silk/qos.c | 951 +++++++++++++++++++++++++++++++++++++ >> board/renesas/silk/silk.c | 175 +++++++ >> configs/silk_defconfig | 3 + >> include/configs/silk.h | 117 +++++ >> 8 files changed, 1279 insertions(+), 1 deletion(-) >> create mode 100644 board/renesas/silk/Kconfig >> create mode 100644 board/renesas/silk/MAINTAINERS >> create mode 100644 board/renesas/silk/Makefile >> create mode 100644 board/renesas/silk/qos.c >> create mode 100644 board/renesas/silk/silk.c >> create mode 100644 configs/silk_defconfig >> create mode 100644 include/configs/silk.h >>