From patchwork Fri Jul 1 14:12:07 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Christopher Covington X-Patchwork-Id: 9209945 X-Patchwork-Delegate: agross@codeaurora.org Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 6D84A6089F for ; Fri, 1 Jul 2016 14:12:41 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 5FE0D25EA6 for ; Fri, 1 Jul 2016 14:12:41 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 54E8F286AA; Fri, 1 Jul 2016 14:12:41 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id EC7642867A for ; Fri, 1 Jul 2016 14:12:40 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752151AbcGAOMW (ORCPT ); Fri, 1 Jul 2016 10:12:22 -0400 Received: from smtp.codeaurora.org ([198.145.29.96]:45381 "EHLO smtp.codeaurora.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752064AbcGAOMV (ORCPT ); Fri, 1 Jul 2016 10:12:21 -0400 Received: by smtp.codeaurora.org (Postfix, from userid 1000) id A343F6134D; Fri, 1 Jul 2016 14:12:20 +0000 (UTC) Received: from illium.qualcomm.com (global_nat1_iad_fw.qualcomm.com [129.46.232.65]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: cov@smtp.codeaurora.org) by smtp.codeaurora.org (Postfix) with ESMTPSA id E0016612C1; Fri, 1 Jul 2016 14:12:18 +0000 (UTC) From: Christopher Covington To: Andy Gross , Arnd Bergmann , linux-arm-msm@vger.kernel.org, Catalin Marinas , Will Deacon , linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Cc: pelcan@codeaurora.org, timur@codeaurora.org, okaya@codeaurora.org, Christopher Covington Subject: [PATCH] arm64: defconfig: Enable QDF2432 config options Date: Fri, 1 Jul 2016 10:12:07 -0400 Message-Id: <1467382327-9726-1-git-send-email-cov@codeaurora.org> X-Mailer: git-send-email 2.8.1 Sender: linux-arm-msm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-arm-msm@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Now that ACPI is on in the defconfig, the time seems right to enable drivers for the SD/MMC, DMA, and pin control hardware described in the ACPI tables of the QDF2432 server platform. Signed-off-by: Christopher Covington --- arch/arm64/configs/defconfig | 4 ++++ scripts/patch-details.sh | 21 ++++++++++++++++++--- 2 files changed, 22 insertions(+), 3 deletions(-) diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig index fd2d74d..c138425 100644 --- a/arch/arm64/configs/defconfig +++ b/arch/arm64/configs/defconfig @@ -186,6 +186,7 @@ CONFIG_SPI_SPIDEV=m CONFIG_SPMI=y CONFIG_PINCTRL_SINGLE=y CONFIG_PINCTRL_MSM8916=y +CONFIG_PINCTRL_QDF2XXX=m CONFIG_PINCTRL_QCOM_SPMI_PMIC=y CONFIG_GPIO_SYSFS=y CONFIG_GPIO_DWAPB=y @@ -245,6 +246,7 @@ CONFIG_MMC=y CONFIG_MMC_BLOCK_MINORS=32 CONFIG_MMC_ARMMMCI=y CONFIG_MMC_SDHCI=y +CONFIG_MMC_SDHCI_ACPI=m CONFIG_MMC_SDHCI_PLTFM=y CONFIG_MMC_SDHCI_OF_ESDHC=y CONFIG_MMC_SDHCI_TEGRA=y @@ -272,6 +274,8 @@ CONFIG_DMADEVICES=y CONFIG_PL330_DMA=y CONFIG_TEGRA20_APB_DMA=y CONFIG_QCOM_BAM_DMA=y +CONFIG_QCOM_HIDMA_MGMT=m +CONFIG_QCOM_HIDMA=m CONFIG_RCAR_DMAC=y CONFIG_VFIO=y CONFIG_VFIO_PCI=y diff --git a/scripts/patch-details.sh b/scripts/patch-details.sh index ec7d163..4069855 100755 --- a/scripts/patch-details.sh +++ b/scripts/patch-details.sh @@ -35,7 +35,7 @@ submaint() { N; s/THE REST,//; s/,THE REST//; s/\n/ /' } -echo "URL RPK Style Tag Version Checkpatch Errors Checkpatch Warnings Rebases Builds Last Updated Author Subject File Updates Lines Added Lines Removed Maintainer(s) Subsystem(s)" +echo "URL RPK Style Tag Version Checkpatch Errors Checkpatch Warnings Rebases Builds Boots Last Updated Author Subject File Updates Lines Added Lines Removed Maintainer(s) Subsystem(s)" while read u; do echo -n "$u " p= @@ -121,12 +121,27 @@ while read u; do if $build; then if (make defconfig && make) &> buildlog; then echo -n 'yes ' + if [ "$QEMU" ]; then + timeout 10 \ + $QEMU \ + -nodefaults \ + -nographic \ + -M virt \ + -cpu cortex-a57 \ + -m 512 \ + -serial stdio \ + -kernel arch/arm64/boot/Image \ + -append "debug earlycon=pl011,0x9000000 rdinit=/bin/busybox poweroff -f" \ + -initrd ../fs/busybox64.cpio.gz + else + echo -n ' ' + fi else git reset --hard HEAD~1 &> /dev/null - echo -n 'no ' + echo -n 'no ' fi else - echo -n ' ' + echo -n ' ' fi awk -f scripts/parsepatch.awk /tmp/patch.mbox || diffstat -s /tmp/patch.mbox | awk -f scripts/parsepatch.awk submaint /tmp/patch.mbox