Re: [PATCH] Remove myself as qcom maintainer

2019-06-12 Thread David Brown
I no longer regularly work on this platform, and only have a few increasingly outdated boards. Andy has primarily been doing the maintenance. Signed-off-by: David Brown --- Resending this, hopefully with text=flowed not set in the email headers. MAINTAINERS | 1 - 1 file changed, 1 deletion

[PATCH] Remove myself as qcom maintainer

2019-06-12 Thread David Brown
I no longer regularly work on this platform, and only have a few increasingly outdated boards. Andy has primarily been doing the maintenance. Signed-off-by: David Brown --- MAINTAINERS | 1 - 1 file changed, 1 deletion(-) diff --git a/MAINTAINERS b/MAINTAINERS index 57f496cff999..27df8f46a283

[PATCH] usb: storage: Remove outdated URL from MAINTAINERS

2019-01-07 Thread David Brown
This website hasn't worked for quite some time. Signed-off-by: David Brown Cc: Matt Dharm --- MAINTAINERS | 1 - 1 file changed, 1 deletion(-) diff --git a/MAINTAINERS b/MAINTAINERS index 82ad0eabce4f..0dbba14128e4 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -14142,7 +14142,6 @@ M:

Re: [PATCH] x86/xen: Remove use of VLAs

2018-04-13 Thread David Brown
On Fri, Apr 13, 2018 at 03:11:46PM -0700, Laura Abbott wrote: There's an ongoing effort to remove VLAs[1] from the kernel to eventually turn on -Wvla. The few VLAs in use have an upper bound based on a size of 64K. This doesn't produce an excessively large stack so just switch the upper bound.

Re: [PATCH 6/6] MAINTAINERS: Update ARM/QUALCOMM SUPPORT patterns

2018-01-29 Thread David Brown
On Sun, Jan 28, 2018 at 05:56:29AM -0800, Joe Perches wrote: commit 321737416c72d ("tty: serial: msm: Move header file into driver") removed the .h file, update the patterns. Signed-off-by: Joe Perches cc: Stephen Boyd cc: Andy Gross cc: David Brown --- MAINTAINERS | 1 - 1 file

Re: [kernel-hardening] Re: [PATCH v2 1/3] Add the latent_entropy gcc plugin

2016-06-06 Thread David Brown
On Fri, Jun 03, 2016 at 07:42:52PM +0200, Emese Revfy wrote: On Wed, 1 Jun 2016 12:42:27 -0700 Andrew Morton wrote: On Tue, 31 May 2016 01:31:45 +0200 Emese Revfy wrote: > This plugin mitigates the problem of the kernel having too little entropy during > and after boot for generating crypto

Re: [PATCH v6 0/6] Introduce GCC plugin infrastructure

2016-04-12 Thread David Brown
On Tue, Apr 12, 2016 at 11:27:52AM -0700, Kees Cook wrote: Awesome! Thanks for testing this. I still need to finish getting my arm64 environment built... I've been using: http://releases.linaro.org/components/toolchain/binaries/ for most stuff. Do you happen to know if there's already a gc

Re: [PATCH v6 0/6] Introduce GCC plugin infrastructure

2016-04-12 Thread David Brown
use of the failure. Tested-by: David Brown

Re: [kernel-hardening] [PATCH v5 2/5] GCC plugin infrastructure

2016-03-09 Thread David Brown
your patch, or, if you prefer, I can send out separate patches for them. Signed-off-by: David Brown diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 4f799e5..67ee8e3 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -54,6 +54,7 @@ config ARM select HAVE_FUNCTION_GRAPH_TRAC

Re: [kernel-hardening] Re: [PATCH] lkdtm: add test for executing .rodata

2016-02-23 Thread David Brown
On Mon, Feb 22, 2016 at 12:46:28PM -0800, Kees Cook wrote: On Thu, Feb 18, 2016 at 1:27 PM, PaX Team wrote: On 18 Feb 2016 at 12:34, Ard Biesheuvel wrote: However, that does not fix the issue Kees is trying to solve, where a .rodata section is emitted with the "x" bit set, which causes the li

[tip:mm/readonly] ARM/vdso: Mark the vDSO code read-only after init

2016-02-23 Thread tip-bot for David Brown
Commit-ID: 11bf9b865898961cee60a41c483c9f27ec76e12e Gitweb: http://git.kernel.org/tip/11bf9b865898961cee60a41c483c9f27ec76e12e Author: David Brown AuthorDate: Wed, 17 Feb 2016 14:41:18 -0800 Committer: Ingo Molnar CommitDate: Mon, 22 Feb 2016 08:51:39 +0100 ARM/vdso: Mark the vDSO

Re: [PATCH] ARM: vdso: Mark vDSO code as read-only

2016-02-17 Thread David Brown
On Wed, Feb 17, 2016 at 03:00:52PM -0800, Kees Cook wrote: On Tue, Feb 16, 2016 at 9:20 PM, David Brown wrote: On Tue, Feb 16, 2016 at 01:52:33PM -0800, Kees Cook wrote: On Tue, Feb 16, 2016 at 1:36 PM, David Brown wrote: Although the arm vDSO is cleanly separated by code/data with the

Re: [PATCH] ARM: vdso: Mark vDSO code as read-only

2016-02-16 Thread David Brown
On Tue, Feb 16, 2016 at 01:52:33PM -0800, Kees Cook wrote: On Tue, Feb 16, 2016 at 1:36 PM, David Brown wrote: Although the arm vDSO is cleanly separated by code/data with the code being read-only in userspace mappings, the code page is still writable from the kernel. There have been exploits

[PATCH] ARM: vdso: Mark vDSO code as read-only

2016-02-16 Thread David Brown
. Signed-off-by: David Brown --- This patch depends on Kees Cook's series https://lkml.org/lkml/2016/1/19/497 which adds the ro_after_init section. arch/arm/vdso/vdso.S | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/arch/arm/vdso/vdso.S b/arch/arm/vdso/vdso.S index b2

Re: [kernel-hardening] [PATCH] arm64: vdso: Mark vDSO code as read-only

2016-02-12 Thread David Brown
On Thu, Feb 11, 2016 at 03:19:20PM +0100, Ard Biesheuvel wrote: diff --git a/arch/arm64/kernel/vdso/vdso.S b/arch/arm64/kernel/vdso/vdso.S index 60c1db5..db7c0f2 100644 --- a/arch/arm64/kernel/vdso/vdso.S +++ b/arch/arm64/kernel/vdso/vdso.S @@ -24,6 +24,7 @@ __PAGE_ALIGNED_DATA ^^ You

[PATCH] arm64: vdso: Mark vDSO code as read-only

2016-02-10 Thread David Brown
0xffc87fff-0xffc88000 64K RW NX SHD AF UXN MEM/NORMAL Inspired by https://lkml.org/lkml/2016/1/19/494 based on work by the PaX Team, Brad Spengler, and Kees Cook. Signed-off-by: David Brown --- arch/arm64/kernel/vdso/vdso.S | 1 + 1 file changed, 1 insertion

[PATCH] arm64: make CONFIG_DEBUG_RODATA non-optional

2016-01-27 Thread David Brown
From 2efef8aa0f8f7f6277ffebe4ea6744fc93d54644 Mon Sep 17 00:00:00 2001 From: David Brown Date: Wed, 27 Jan 2016 13:58:44 -0800 This removes the CONFIG_DEBUG_RODATA option and makes it always enabled. Signed-off-by: David Brown --- v1: This is in the same spirit as the x86 patch, removing

Re: [kernel-hardening] [PATCH v4 3/8] param: convert some "on"/"off" users to strtobool

2016-01-27 Thread David Brown
On Tue, Jan 19, 2016 at 10:08:37AM -0800, Kees Cook wrote: diff --git a/kernel/time/tick-sched.c b/kernel/time/tick-sched.c index 9cc20af58c76..f5ea98490ffa 100644 --- a/kernel/time/tick-sched.c +++ b/kernel/time/tick-sched.c @@ -387,20 +388,14 @@ void __init tick_nohz_init(void) /* * NO HZ ena

Re: [kernel-hardening] [PATCH v4 0/8] introduce post-init read-only memory

2016-01-22 Thread David Brown
On Tue, Jan 19, 2016 at 10:08:34AM -0800, Kees Cook wrote: This introduces __ro_after_init as a way to mark such memory, and uses it on the x86 vDSO to kill an extant kernel exploitation method. Also adds a new kernel parameter to help debug future use and adds an lkdtm test to check the results

Re: [PATCH] MAINTAINERS: Change QCOM entries

2015-12-12 Thread David Brown
On Fri, Dec 11, 2015 at 03:46:18PM -0600, Andy Gross wrote: From: Andy Gross This patch changes the email address for Andy Gross and David Brown and drops Kumar Gala. In addition, it changes the location of the repository. Signed-off-by: Andy Gross Signed-off-by: Andy Gross Acked-by

Re: [PATCH 3/3] ARM: config: Update msm_defconfig

2014-02-27 Thread David Brown
+++-- 1 file changed, 3 insertions(+), 22 deletions(-) Acked-by: David Brown Kumar, can you just pull this in with the other qcom changes from Sephen? Thanks, David -- sent by an employee of the Qualcomm Innovation Center, Inc. The Qualcomm Innovation Center, Inc. is a member

Re: [PATCH v4 00/15] usb: phy: msm: Fixes, cleanups and DT support

2013-12-20 Thread David Brown
On Thu, Dec 19, 2013 at 05:26:13PM -0600, Felipe Balbi wrote: it's getting quite late for me. I still want to leave my stuff soaking in linux-next for a while. I'll try my best, though, if you ack it ASAP Thanks. Patch 1 already has my Ack in it, and I've sent an ack for number 6. David --

[PATCH 0/7] MSM patches for 3.14

2013-12-20 Thread David Brown
The following series contains a warning fix, a bit of cleanup, adds a few more boards. There are still numerous patches floating with issues, but things seem to be moving in the right direction. These have all been sent previously to the lists, and received reviews and necessary acks. Josh Cartw

[PATCH 2/7] ARM: msm: Add support for APQ8074 Dragonboard

2013-12-20 Thread David Brown
From: Rohit Vaswani This patch adds basic board support for APQ8074 Dragonboard which belongs to the Snapdragon 800 family. For now, just support a basic machine with device tree. Signed-off-by: Rohit Vaswani Acked-by: Kumar Gala Signed-off-by: David Brown --- arch/arm/boot/dts/Makefile

[PATCH 3/7] defconfig: msm_defconfig: Enable CONFIG_ARCH_MSM8974

2013-12-20 Thread David Brown
From: Rohit Vaswani This patch enables MSM8974 build support. Signed-off-by: Rohit Vaswani Signed-off-by: David Brown --- arch/arm/configs/msm_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/configs/msm_defconfig b/arch/arm/configs/msm_defconfig index 690b5f9..0ed32e5

[PATCH 4/7] ARM: msm: Simplify ARCH_MSM_DT config

2013-12-20 Thread David Brown
From: Stephen Boyd This doesn't need to be a def_bool y. Instead we can have every DT supported platform select ARCH_MSM_DT and we achieve the same thing with less chance of conflicts. Signed-off-by: Stephen Boyd Signed-off-by: David Brown --- arch/arm/mach-msm/Kconfig | 6 -- 1

[PATCH 5/7] ARM: dts: MSM8974: Add restart node

2013-12-20 Thread David Brown
From: Stephen Boyd Add the restart node so we can reboot the device. Signed-off-by: Stephen Boyd Signed-off-by: David Brown --- arch/arm/boot/dts/qcom-msm8974.dtsi | 5 + 1 file changed, 5 insertions(+) diff --git a/arch/arm/boot/dts/qcom-msm8974.dtsi b/arch/arm/boot/dts/qcom-msm8974

[PATCH 6/7] ARM: dts: MSM8974: Add MMIO architected timer node

2013-12-20 Thread David Brown
From: Stephen Boyd Add the mmio architected timer node. Signed-off-by: Stephen Boyd Signed-off-by: David Brown --- arch/arm/boot/dts/qcom-msm8974.dtsi | 59 + 1 file changed, 59 insertions(+) diff --git a/arch/arm/boot/dts/qcom-msm8974.dtsi b/arch/arm

[PATCH 7/7] ARM: msm_defconfig: Enable restart driver

2013-12-20 Thread David Brown
From: Stephen Boyd Signed-off-by: Stephen Boyd Signed-off-by: David Brown --- arch/arm/configs/msm_defconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/arm/configs/msm_defconfig b/arch/arm/configs/msm_defconfig index 0ed32e5..c5698b7 100644 --- a/arch/arm/configs/msm_defconfig

[PATCH 1/7] ARM: msm: trout: fix uninit var warning

2013-12-20 Thread David Brown
it printk(KERN_CRIT..) to use pr_crit. Signed-off-by: Josh Cartwright Signed-off-by: David Brown --- arch/arm/mach-msm/board-trout.c | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/arch/arm/mach-msm/board-trout.c b/arch/arm/mach-msm/board-trout.c index ccf6621..

Re: [PATCH v4 06/15] usb: phy: msm: Replace custom enum usb_mode_type with enum usb_dr_mode

2013-12-19 Thread David Brown
fault to OTG...", so remove redundand field. Signed-off-by: Ivan T. Ivanov --- arch/arm/mach-msm/board-msm7x30.c |2 +- arch/arm/mach-msm/board-qsd8x50.c | 2 +- Acked-by: David Brown -- sent by an employee of the Qualcomm Innovation Center, Inc. The Qualcomm Innovation Center, Inc. is a

Re: [PATCH v4 00/15] usb: phy: msm: Fixes, cleanups and DT support

2013-12-19 Thread David Brown
On Tue, Nov 26, 2013 at 10:38:46AM -0600, Felipe Balbi wrote: Hi, On Tue, Nov 12, 2013 at 04:51:35PM +0200, Ivan T. Ivanov wrote: From: "Ivan T. Ivanov" Hi, Patches have been tested on top of Stephen's clock controller patches[1] and recent fixes for chipidea msm glue layer driver posted her

Re: [PATCH] gpio: Add support for SX151x SPI GPIO Expanders

2013-11-12 Thread David Brown
On Tue, Nov 12, 2013 at 08:32:20PM +0100, Linus Walleij wrote: Gregory, this is your driver, can you take a look at this patch? I don't think Gregory has this email address any more, and I don't know another address for him. David Yours, Linus Walleij On Thu, Oct 24, 2013 at 11:51 AM, Vik

Re: [PATCH v2 6/6] ARM: dts: msm: Add Krait CPU/L2 nodes

2013-10-30 Thread David Brown
On Wed, Oct 30, 2013 at 01:25:36PM -0700, Stephen Boyd wrote: This allows us to probe the krait-edac driver. Cc: David Brown Signed-off-by: Stephen Boyd --- arch/arm/boot/dts/qcom-msm8974.dtsi | 37 + 1 file changed, 37 insertions(+) Acked-by: David Brown

[PATCH 4/4] ARM: msm: Remove 8x50 support

2013-10-28 Thread David Brown
multi-platform kernel on ARM. If someone wishes to continue support for this target, patches that provide devicetree and multi-platform support can start by re-adding these files. Signed-off-by: David Brown --- Note that this patch was made with -D. I can send the full patch on request, and have also

[PATCH 1/4] ARM: msm: Remove unused board files

2013-10-28 Thread David Brown
These board files were added in 2010, and have never been compiled in the tree. If these targets were to be included, at this point, they would need to be done using device tree, so there is no reason to keep these files around. Signed-off-by: David Brown --- Note that this patch was made with

[PATCH 3/4] ARM: msm: Remove 7x30 support

2013-10-28 Thread David Brown
tiple-platform on ARM. If someone wishes to continue support for this target, patches that provide devicetree and multi-platform support can start by re-adding these files. Signed-off-by: David Brown --- Note that this patch was made with -D. I can send the full patch on request, and have also made the

[PATCH 0/4] Remove older ARM msm SoC support

2013-10-28 Thread David Brown
I can send full patches on request, and I've also made the patches available at: git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git for-3.14/big-cleanup David Brown (4): ARM: msm: Remove unused board files ARM: msm: Remove 7x00 support ARM: msm: Remove 7x30 suppor

[PATCH 2/4] ARM: msm: Remove 7x00 support

2013-10-28 Thread David Brown
multi-platform on ARM. If someone wishes to continue support for this target, patches that provide devicetree and multi-platform support can start by re-adding these files. Signed-off-by: David Brown --- Note that this patch was made with -D. I can send the full patch on request, and have also mad

Re: [PATCHv6 2/4] ARM: msm: Add support for APQ8074 Dragonboard

2013-10-17 Thread David Brown
On Thu, Oct 17, 2013 at 11:25:10AM -0700, Rohit Vaswani wrote: This patch adds basic board support for APQ8074 Dragonboard which belongs to the Snapdragon 800 family. For now, just support a basic machine with device tree. Signed-off-by: Rohit Vaswani --- Do you mind putting some history in t

Re: [PATCH 1/4] ARM: debug: Create CONFIG_DEBUG_MSM_UART and re-organize the selects for MSM

2013-10-16 Thread David Brown
On Thu, Oct 03, 2013 at 04:05:54PM -0700, Rohit Vaswani wrote: Create the hidden config DEBUG_MSM_UART and clean-up the default selection for CONFIG_DEBUG_LL_INCLUDE. Signed-off-by: Rohit Vaswani Acked-by: David Brown -- sent by an employee of the Qualcomm Innovation Center, Inc. The

[GIT PULL] msm cleanups for v3.13

2013-10-16 Thread David Brown
The following changes since commit 4a10c2ac2f368583138b774ca41fac4207911983: Linux 3.12-rc2 (2013-09-23 15:41:09 -0700) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git tags/msm-cleanup-for-3.13 for you to fetch changes up to 81cf1e

Re: [PATCH 3/4] ARM: debug: msm: Add DEBUG_LL support for ARCH_MSM8974

2013-10-16 Thread David Brown
changed, 14 insertions(+) Acked-by: David Brown -- sent by an employee of the Qualcomm Innovation Center, Inc. The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum, hosted by The Linux Foundation -- To unsubscribe from this list: send the line "unsubscribe linux-kerne

Re: [PATCH 2/2] USB: ehci-msm: Add device tree support and binding information

2013-10-11 Thread David Brown
ehci-msm.c| 15 +-- Acked-by: David Brown -- sent by an employee of the Qualcomm Innovation Center, Inc. The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum, hosted by The Linux Foundation -- To unsubscribe from this list: send the line "un

Re: [PATCH 1/2] ehci-msm: Remove global struct usb_phy variable

2013-10-11 Thread David Brown
On Fri, Oct 11, 2013 at 02:46:09PM +0300, Ivan T. Ivanov wrote: From: "Ivan T. Ivanov" Use struct usb_hcd::phy to hold USB PHY instance. Signed-off-by: Ivan T. Ivanov --- drivers/usb/host/ehci-msm.c |5 +++-- Acked-by: David Brown -- sent by an employee of the Qualcomm

Re: [PATCH 08/27] mmc: msm_sdcc: Move away from using deprecated APIs

2013-09-26 Thread David Brown
. Additionally, remove dead code which also used the deprecated APIs. Cc: David Brown Cc: Daniel Walker Cc: Bryan Huntsman Cc: linux-arm-...@vger.kernel.org Signed-off-by: Ulf Hansson --- drivers/mmc/host/msm_sdcc.c | 27 ++- 1 file changed, 2 insertions(+), 25

Re: [PATCHv4 2/3] ARM: msm: Add support for APQ8074 Dragonboard

2013-09-26 Thread David Brown
On Thu, Sep 26, 2013 at 02:33:53PM -0500, Kumar Gala wrote: "ePAPR 1.1 section 2.2.1.1 "Node Name Requirements" specifies that any node that has a reg property must include a unit address in its name with value matching the first entry in its reg property. Conversely, if a node does not have a r

Re: [PATCH] iommu: remove unnecessary platform_set_drvdata()

2013-09-24 Thread David Brown
-- With the splitting: Acked-by: David Brown -- sent by an employee of the Qualcomm Innovation Center, Inc. The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum, hosted by The Linux Foundation -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" i

Re: [PATCH] ARM: msm: Move msm devicetrees under a Qualcomm dir

2013-09-12 Thread David Brown
On Thu, Sep 12, 2013 at 12:55:36PM -0500, Kumar Gala wrote: On Sep 12, 2013, at 12:06 PM, Olof Johansson wrote: My original request to please use a common prefix for your product families stands. Please prefix with msm-*, or if you have to, qcom-* instead, since you guys can't seem to make yo

Re: [PATCH 1/2] ARM: msm: Add support for MSM8974 Dragonboard

2013-09-11 Thread David Brown
On Tue, Aug 06, 2013 at 12:14:46PM +0300, Ivan T. Ivanov wrote: Attached patch enables earlyprink for this board. [920] booting linux @ 0x8000, ramdisk @ 0x200 (1067699), tags/device tree @ 0x1e0 Uncompressing Linux... done, booting the kernel. [0.00] Booting Linux on physical

Re: [PATCH 1/3] mfd: pm8921: include missing linux/module.h

2013-08-20 Thread David Brown
an --- drivers/mfd/pm8921-core.c |1 + 1 file changed, 1 insertion(+) Acked-by: David Brown -- sent by an employee of the Qualcomm Innovation Center, Inc. The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum, hosted by The Linux Foundation -- To unsubscribe from thi

Re: [PATCH v2] backlight: Convert from Legacy pm ops to dev_pm_ops

2013-08-09 Thread David Brown
On Wed, Nov 14, 2040 at 04:27:17AM -0700, Shuah Khan wrote: ... The clock on your computer might be running just a wee bit ahead. Either that, or we're getting patches from the future. David -- sent by an employee of the Qualcomm Innovation Center, Inc. The Qualcomm Innovation Center, Inc. i

Re: [PATCH] [TRIVIAL] ARM: msm: fix compilation error in gpiomux

2013-08-09 Thread David Brown
On Thu, Aug 08, 2013 at 03:17:25PM -0700, Rohit Vaswani wrote: On 8/7/2013 11:32 PM, Krzysztof Kozlowski wrote: On śro, 2013-08-07 at 14:08 -0700, Stephen Boyd wrote: On 08/07, David Brown wrote: On Wed, Aug 07, 2013 at 08:34:39AM +0200, Krzysztof Kozlowski wrote: Fix compilation error in

[GIT PULL v2] msm cleanups for v3.12

2013-08-07 Thread David Brown
The following changes since commit 3b2f64d00c46e1e4e9bd0bb9bb12619adac27a4b: Linux 3.11-rc2 (2013-07-21 12:05:29 -0700) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git tags/msm-cleanup3-for-3.12 for you to fetch changes up to 3294a

Re: [GIT PULL] msm cleanups for v3.12

2013-08-07 Thread David Brown
On Wed, Aug 07, 2013 at 02:52:59PM -0700, David Brown wrote: On Wed, Aug 07, 2013 at 01:58:16PM -0700, David Brown wrote: The following changes since commit 3b2f64d00c46e1e4e9bd0bb9bb12619adac27a4b: Linux 3.11-rc2 (2013-07-21 12:05:29 -0700) are available in the git repository at: git

Re: [GIT PULL] msm cleanups for v3.12

2013-08-07 Thread David Brown
On Wed, Aug 07, 2013 at 01:58:16PM -0700, David Brown wrote: The following changes since commit 3b2f64d00c46e1e4e9bd0bb9bb12619adac27a4b: Linux 3.11-rc2 (2013-07-21 12:05:29 -0700) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git

[GIT PULL] msm cleanups for v3.12

2013-08-07 Thread David Brown
The following changes since commit 3b2f64d00c46e1e4e9bd0bb9bb12619adac27a4b: Linux 3.11-rc2 (2013-07-21 12:05:29 -0700) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git for-3.12/msm-cleanup2 for you to fetch changes up to b80a0dc53d

Re: [PATCH] [TRIVIAL] ARM: msm: fix compilation error in gpiomux

2013-08-07 Thread David Brown
On Wed, Aug 07, 2013 at 08:34:39AM +0200, Krzysztof Kozlowski wrote: Fix compilation error in gpiomux (CONFIG_MSM_GPIOMUX=y): arch/arm/mach-msm/gpiomux.c:24:13: error: static declaration of ‘__msm_gpiomux_write’ follows non-static declaration arch/arm/mach-msm/gpiomux.h:85:6: note: previo

Re: [RESEND PATCH 1/2] ARM: msm: Add support for MSM8974

2013-08-01 Thread David Brown
On Thu, Aug 01, 2013 at 08:36:38PM -0700, Rohit Vaswani wrote: On 8/1/2013 7:29 PM, Stephen Warren wrote: On 08/01/2013 07:23 PM, Rohit Vaswani wrote: This patch adds basic board support for MSM8974 which belongs to the Snapdragon 800 family. For now, just support a basic machine with device tr

Re: [PATCH 08/18] ARM: msm: Switch to sched_clock_register()

2013-08-01 Thread David Brown
On Wed, Jul 31, 2013 at 03:31:07PM -0700, Stephen Boyd wrote: The 32 bit sched_clock interface now supports 64 bits. Upgrade to the 64 bit function to allow us to remove the 32 bit registration interface. Cc: David Brown Signed-off-by: Stephen Boyd --- arch/arm/mach-msm/timer.c | 4 ++-- 1

[ARM ATTEND] DT binding and support and general SOC

2013-07-31 Thread David Brown
code. David Brown -- sent by an employee of the Qualcomm Innovation Center, Inc. The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum, hosted by The Linux Foundation -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a me

Re: [PATCH v2 3/9] ARM: msm: Move debug-macro.S to include/debug

2013-07-30 Thread David Brown
On Wed, Jul 24, 2013 at 01:54:28PM -0700, Stephen Boyd wrote: One more step to allowing MSM to participate in the multi-platform defconfig. Full patch: https://patchwork.kernel.org/patch/2833034/ Signed-off-by: Stephen Boyd --- arch/arm/Kconfig.debug | 9 +++- ...

Re: [PATCH] mmc: sdhci-msm: Add support for MSM chipsets

2013-07-30 Thread David Brown
On Tue, Jul 30, 2013 at 05:40:16PM +0100, Chris Ball wrote: On Tue, Jul 30 2013, Georgi Djakov wrote: This platform driver adds the support of Secure Digital Host Controller Interface compliant controller in MSM chipsets. CC: Asutosh Das CC: Venkat Gopalakrishnan CC: Sahitya Tummala CC: Sub

Re: [PATCH v2 6/9] ARM: msm: Move mach/board.h contents to common.h

2013-07-29 Thread David Brown
On Wed, Jul 24, 2013 at 01:54:31PM -0700, Stephen Boyd wrote: The contents of mach/board.h are only used by files within mach-msm so there is no need to export this file outside of the mach-msm directory. Move the contents of the file to common.h to allow us to compile MSM in the multi-platform k

Re: [PATCH v2 1/6] usb: phy: msm: Move mach depndend code to platform data

2013-07-29 Thread David Brown
On Mon, Jul 29, 2013 at 10:04:19AM +0300, Ivan T. Ivanov wrote: From: "Ivan T. Ivanov" This patch fix compilation error and is an intermediate step before the addition of DeviceTree support for newer targets. Fix suggested here: https://lkml.org/lkml/2013/6/19/381 Cc: David Brown

[GIT PULL] msm gpio fixes for 3.11

2013-07-26 Thread David Brown
The following changes since commit ad81f0545ef01ea651886dddac4bef6cec930092: Linux 3.11-rc1 (2013-07-14 15:18:27 -0700) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git tags/msm-3.11-fix1 for you to fetch changes up to 8fd62389a778c

Re: [PATCH v2] tty: serial: Add initial MSM UART High Speed Lite driver

2013-07-26 Thread David Brown
On Mon, Jul 22, 2013 at 10:05:48AM +0300, Ivan T. Ivanov wrote: From: "Ivan T. Ivanov" This is a tty driver with console support for Qualcomm's UART controllers found in the MSM8974 chipsets. Driver is completely based on implementation found in codeaurora.org msm_serial_hs_lite with Android de

Re: [PATCH 0/3] MSM gpio fixes

2013-07-24 Thread David Brown
On Sat, Jul 20, 2013 at 10:54:42PM +0200, Linus Walleij wrote: On Thu, Jul 18, 2013 at 10:07 PM, David Brown wrote: Rohit sent these three fixes out on June 18. I still need a devicetree ack for the first patch, and would like these to get pulled in for v3.11 Rohit Vaswani (3): ARM: msm

Re: [PATCH 0/4] msm_serial fixes and improvements

2013-07-24 Thread David Brown
On Wed, Jul 24, 2013 at 11:37:27AM -0700, Stephen Boyd wrote: Here are a couple fixes and improvements to the msm_serial driver. The first two patches fix a bug on UARTDM devices and silence sparse warnings. The last two patches improve the baud code detection and increase the throughput on UARTD

Re: [PATCH 4/4] msm_serial: Send more than 1 character at a time on UARTDM

2013-07-24 Thread David Brown
devices. Signed-off-by: Stephen Boyd --- drivers/tty/serial/msm_serial.c | 51 ++--- 1 file changed, 32 insertions(+), 19 deletions(-) Acked-by: David Brown -- sent by an employee of the Qualcomm Innovation Center, Inc. The Qualcomm Innovation Center, Inc. is a

Re: [PATCH 2/4] msm_serial: Fix sparse warnings

2013-07-24 Thread David Brown
+++-- 1 file changed, 7 insertions(+), 10 deletions(-) Acked-by: David Brown -- sent by an employee of the Qualcomm Innovation Center, Inc. The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum, hosted by The Linux Foundation -- To unsubscribe from this list: send t

Re: [PATCH 3/4] msm_serial: Make baud_code detection more dynamic

2013-07-24 Thread David Brown
changed, 48 insertions(+), 68 deletions(-) Acked-by: David Brown -- sent by an employee of the Qualcomm Innovation Center, Inc. The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum, hosted by The Linux Foundation -- To unsubscribe from this list: send the line "unsubs

Re: [PATCH 1/4] msm_serial: Fix NUL byte output on UARTDM

2013-07-24 Thread David Brown
to do so leads to random NUL bytes interspersed in the output. Signed-off-by: Stephen Boyd --- drivers/tty/serial/msm_serial.c | 14 +- drivers/tty/serial/msm_serial.h | 1 + 2 files changed, 10 insertions(+), 5 deletions(-) Acked-by: David Brown -- sent by an employee of the Qua

Re: [PATCH 1/7] usb: phy: msm: Move mach dependent code to platform data

2013-07-24 Thread David Brown
On Mon, Jun 24, 2013 at 06:27:38PM +0300, Ivan T. Ivanov wrote: From: "Ivan T. Ivanov" This patch fix compilation error and is an intermediate step before the addition of DeviceTree support for newer targets. Fix suggested here: https://lkml.org/lkml/2013/6/19/381 Cc: David Brown

[PATCH 1/3] ARM: msm: dts: Fix the gpio register address for msm8960

2013-07-18 Thread David Brown
From: Rohit Vaswani Fix the the gpio reg address for the device tree entry. Signed-off-by: Rohit Vaswani Signed-off-by: David Brown --- arch/arm/boot/dts/msm8960-cdp.dts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm/boot/dts/msm8960-cdp.dts b/arch/arm/boot

[PATCH 2/3] drivers: gpio: msm: Fix the error condition for reading ngpio

2013-07-18 Thread David Brown
From: Rohit Vaswani of_property_read_u32 return 0 on success. The check was using a ! to return error. Fix the if condition. Signed-off-by: Rohit Vaswani Acked-by: Linus Walleij Reviewed-by: Pankaj Jangra Cc: "Bird, Tim" Signed-off-by: David Brown --- drivers/gpio/gpio-msm-v2.c

[PATCH 0/3] MSM gpio fixes

2013-07-18 Thread David Brown
Rohit sent these three fixes out on June 18. I still need a devicetree ack for the first patch, and would like these to get pulled in for v3.11 Rohit Vaswani (3): ARM: msm: dts: Fix the gpio register address for msm8960 drivers: gpio: msm: Fix the error condition for reading ngpio ARM: msm:

[PATCH 3/3] ARM: msm: Consolidate gpiomux for older architectures

2013-07-18 Thread David Brown
From: Rohit Vaswani Msm gpiomux can be used only for 7x30 and 8x50. Prevent compilation and fix build issues on 7X00, 8X60 and 8960. Signed-off-by: Rohit Vaswani Signed-off-by: David Brown --- arch/arm/mach-msm/Kconfig | 3 +-- arch/arm/mach-msm/gpiomux-v1.c | 33

[GIT PULL v2] msm clock for 3.11

2013-06-24 Thread David Brown
This pull request differs from the previous one for the clock code by: - Gathered additional Acked-by lines. - A small #include fixup found by Stephen Boyd The only Ack not received was from Chris Ball, who is CC'd on this request. The following changes since commit f722406faae2d073cc1d01063

Re: [PATCH] ARM: Fix dtb dependency to use order-only prerequisites

2013-06-24 Thread David Brown
mark "dtbs" as PHONY for correctness. This was broken in (70b0476 ARM: 7513/1: Make sure dtc is built before running it). Reported-by: Mike Frysinger Signed-off-by: Doug Anderson --- arch/arm/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) Reviewed-by: David Brown

Re: [PATCH/RESEND 00/12] Convert MSM to common clock framework

2013-06-24 Thread David Brown
On Thu, Jun 20, 2013 at 06:29:52PM -0700, Stephen Boyd wrote: On 06/17, Stephen Boyd wrote: Resending to collect higher level maintainer acks per Olof's request. The plan is to push this patchset through MSM to the arm-soc tree. This patchset moves the existing MSM clock code and affected drive

[PATCH] ARM: dts: msm: Fix merge resolution

2013-06-17 Thread David Brown
Commit e45600107b (Merge tag 'msm-cleanup-for-3.11' of git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm into next/cleanup) incorrectly resolved a merge conflict, resulting in a node address that doesn't match the register address. Fix this node address. Signed-off-

Re: [GIT PULL 2/3] msm fixes for 3.11

2013-06-17 Thread David Brown
On Fri, Jun 14, 2013 at 06:26:17PM -0700, Olof Johansson wrote: Stephen Boyd (3): ARM: dts: msm: Fix bad register addresses Hmm. I see that the msm-hsuart device nodes completely lack reg entries. That's considerably more important to fix than the cosmetic unit address that's not even ne

Re: [PATCH/RESEND 01/12] msm_serial: Convert to clk_prepare/unprepare

2013-06-17 Thread David Brown
On Mon, Jun 17, 2013 at 10:55:10AM -0700, Greg Kroah-Hartman wrote: On Mon, Jun 17, 2013 at 10:43:08AM -0700, Stephen Boyd wrote: Add calls to clk_prepare and unprepare so that MSM can migrate to the common clock framework. Cc: Greg Kroah-Hartman Signed-off-by: Stephen Boyd Acked-by: Greg K

[GIT PULL 3/3] msm clock for 3.11

2013-06-14 Thread David Brown
The following changes since commit f722406faae2d073cc1d01063d1123c35425939e: Linux 3.10-rc1 (2013-05-11 17:14:08 -0700) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git tags/msm-clock-for-3.11 for you to fetch changes up to f54c1c110

[GIT PULL 2/3] msm fixes for 3.11

2013-06-14 Thread David Brown
The following changes since commit f722406faae2d073cc1d01063d1123c35425939e: Linux 3.10-rc1 (2013-05-11 17:14:08 -0700) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git tags/msm-fix-for-3.11 for you to fetch changes up to 7ba655fc96

[GIT PULL 0/3] msm changes for 3.11

2013-06-14 Thread David Brown
The following three pull requests are for the MSM tree for 3.11. In addition to cleanups and fixes, there is starting to be some work toward getting full clock support in the MSM tree. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@

[GIT PULL 2/3] msm fixes for 3.11

2013-06-14 Thread David Brown
The following changes since commit f722406faae2d073cc1d01063d1123c35425939e: Linux 3.10-rc1 (2013-05-11 17:14:08 -0700) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git tags/msm-fix-for-3.11 for you to fetch changes up to 7ba655fc96

[GIT PULL 1/3] msm cleanups for 3.11

2013-06-14 Thread David Brown
The following changes since commit f722406faae2d073cc1d01063d1123c35425939e: Linux 3.10-rc1 (2013-05-11 17:14:08 -0700) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git tags/msm-cleanup-for-3.11 for you to fetch changes up to 1aa3d1

Re: [PATCHv3 0/3] Cleanup MSM_GPIOMUX and add DT support for gpio-msm

2013-05-31 Thread David Brown
On Fri, May 24, 2013 at 11:32:19AM -0700, Rohit Vaswani wrote: Could this series go through David's tree or is there a better way to do this? It would be great if I can have you ack for the gpio patch. Due to pending feedback, and compilation failures on ppc, I'll drop this series from my tree

Changes pulled into MSM tree

2013-05-30 Thread David Brown
The following changes have been pulled into the msm tree for my next pull request. I expect to send the pull request after these sit in next for a few days. The changes can be seen at: git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git for-next Chen Gang (1): arch: arm: m

Re: [PATCH] msm: iommu: fix leak and invalid access

2013-05-22 Thread David Brown
iles changed, 5 insertions(+), 6 deletions(-) Acked-by: David Brown -- sent by an employee of the Qualcomm Innovation Center, Inc. The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum, hosted by The Linux Foundation -- To unsubscribe from this list: send the line "unsubs

Re: [PATCH] msm: iommu: fix leak and invalid access

2013-05-22 Thread David Brown
On Wed, May 22, 2013 at 01:58:39PM +0800, Libo Chen wrote: > ping... This is the first I've seen this patch. The original appears to have been sent to Andrew Morton and lkml. I'll reply with an Ack there. David -- sent by an employee of the Qualcomm Innovation Center, Inc. The Qualcomm Innov

Re: [PATCH 14/20] ARM: msm: Remove init_irq declaration in machine description

2013-05-15 Thread David Brown
On Tue, May 14, 2013 at 05:38:47PM +0200, Maxime Ripard wrote: > Commit ebafed7a ("ARM: irq: Call irqchip_init if no init_irq function is > specified") removed the need to explictly setup the init_irq field in > the machine description when using only irqchip_init. Remove that > declaration for msm

Re: [PATCH 08/14] ARM: msm: Remove init_irq declaration in machine description

2013-05-13 Thread David Brown
On Mon, May 13, 2013 at 11:44:07AM +0200, Maxime Ripard wrote: > Commit ebafed7a ("ARM: irq: Call irqchip_init if no init_irq function is > specified") removed the need to explictly setup the init_irq field in > the machine description when using only irqchip_init. Remove that > declaration for msm

Re: [GIT PATCH] char/misc patches for 3.10-rc1

2013-05-02 Thread David Brown
Mark Brown writes: > On Mon, Apr 29, 2013 at 11:16:28PM +0200, Arnd Bergmann wrote: > >> Well, the only reason I see against putting it into drivers/mfd is that >> this place is becoming a dumping ground for stuff that doesn't have a >> real home anywhere else. On the other hand, this one would f

Re: MFD: move ssbi driver into drivers/mfd

2013-04-29 Thread David Brown
t fixing the trivial build > breakage in pm8921 links in the new ssbi code just fine, but that > can be a separate patch. > > Signed-off-by: Arnd Bergmann > Cc: Samuel Ortiz Acked-by: David Brown Coming soon, I hope, are going to be the DT conversion of the 8921 driver, and possib

Re: [GIT PATCH] char/misc patches for 3.10-rc1

2013-04-29 Thread David Brown
Linus Torvalds writes: > There are other things wrong with that whole SSBI driver crap that you > seem to be ignoring: > > - it's not a bus, it's just a driver. Just because some people call > it "serial bus" doesn't make it magically about a "bus". I can call an > ethernet driver an "ethernet b

[GIT PULL] msm fixes for 3.10

2013-04-12 Thread David Brown
The following changes since commit f6161aa153581da4a3867a2d1a7caf4be19b6ec9: Linux 3.9-rc2 (2013-03-10 16:54:19 -0700) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git tags/msm-fix-3.10 for you to fetch changes up to 73a8c28f167c9e7

[GIT PULL] msm defconfig for 3.10

2013-04-12 Thread David Brown
more easily build and run tested. David Brown (1): ARM: msm: enable SSBI driver in defconfig Stephen Boyd (1): ARM: msm: Concentrate defconfig on DT supported devices arch/arm/configs/msm_defconfig | 154

  1   2   3   >