Re: [PATCH V3 2/4] cpufreq: dt: Add generic platform-device creation support

2016-04-13 Thread Matthew McClintock
ms that we support is empty, and will be > filled in as and when we move platforms to use it. > > It always compiles as part of the kernel and so doesn't need a > module-exit operation. > > Signed-off-by: Viresh Kumar > Reviewed-by: Krzysztof Kozlowski Test on ipq4019. Tested-by: Matthew McClintock -M

Re: Regression in 4.6.0-git - bisected to commit dd254f5a382c

2016-05-24 Thread Matthew McClintock
I’m seeing this too, same commit if you want another person to test/reproduce. -M > On May 24, 2016, at 11:10 AM, Larry Finger wrote: > > On 05/23/2016 07:18 PM, Al Viro wrote: >> On Mon, May 23, 2016 at 04:30:43PM -0500, Larry Finger wrote: >>> The mainline kernels past 4.6.0 fail hang when lo

Re: Regression in 4.6.0-git - bisected to commit dd254f5a382c

2016-05-24 Thread Matthew McClintock
On May 24, 2016, at 2:16 PM, Larry Finger wrote: > > On 05/24/2016 02:13 PM, Matthew McClintock wrote: >> I’m seeing this too, same commit if you want another person to >> test/reproduce. > > If you do a pull today, does that fix your problem? Hmm, no. Which commit

Re: Regression in 4.6.0-git - bisected to commit dd254f5a382c

2016-05-24 Thread Matthew McClintock
> On May 24, 2016, at 2:36 PM, Larry Finger wrote: > > On 05/24/2016 02:25 PM, Matthew McClintock wrote: >> On May 24, 2016, at 2:16 PM, Larry Finger wrote: >>> >>> On 05/24/2016 02:13 PM, Matthew McClintock wrote: >>>> I’m seeing this too, same co

Re: Regression in 4.6.0-git - bisected to commit dd254f5a382c

2016-05-24 Thread Matthew McClintock
> On May 24, 2016, at 6:41 PM, Al Viro wrote: > > Again, I understand what's going on kernel-side; the only tricky part is how > to fix it without bringing the nasal daemons back. I think I have a solution > and I'm going to post it tonight if it survives the local beating. In any > case, the

Re: Regression in 4.6.0-git - bisected to commit dd254f5a382c

2016-05-24 Thread Matthew McClintock
> On May 24, 2016, at 8:10 PM, Al Viro wrote: > > Slap the WARN_ON(!size); in the very beginning of iov_iter_advance(), see > where it's triggered... diff --git a/lib/iov_iter.c b/lib/iov_iter.c index 28cb431..d89e154 100644 --- a/lib/iov_iter.c +++ b/lib/iov_iter.c @@ -488,6 +488,7 @@ EXPORT_S

Re: Regression in 4.6.0-git - bisected to commit dd254f5a382c

2016-05-24 Thread Matthew McClintock
> On May 24, 2016, at 8:28 PM, Al Viro wrote: > > The next obvious question is which binary it is and what's the return > address to userland; make that > if (!size) > printk(KERN_ERR "crap in %s[%x]", > current->comm, > current_pt_

Re: Regression in 4.6.0-git - bisected to commit dd254f5a382c

2016-05-25 Thread Matthew McClintock
On May 25, 2016, at 1:24 AM, Al Viro wrote: > > diff --git a/lib/iov_iter.c b/lib/iov_iter.c > index 28cb431..0cd5227 100644 > --- a/lib/iov_iter.c > +++ b/lib/iov_iter.c > @@ -101,7 +101,7 @@ > #define iterate_and_advance(i, n, v, I, B, K) { \ > if (unlikely(i->count

[PATCH v3 0/6] arm: qcom: Add support for IPQ8014 family of SoCs

2015-11-19 Thread Matthew McClintock
- combine reset dts include files into one overall dts include SoC dts file: v2 - add sleep_clk Board dts file: - add xo clock Matthew McClintock (4): ARM: qcom: add IPQ4019 compatible match qcom: ipq4019: Add basic board/dts support for IPQ4019 SoC dts: ipq4019: Add support for IPQ4019 DK01 board

[PATCH v3 3/6] ARM: qcom: add IPQ4019 compatible match

2015-11-19 Thread Matthew McClintock
From: Matthew McClintock This will select qcom board type when the machine compatible is qcom,ipq4019. Signed-off-by: Matthew McClintock --- arch/arm/mach-qcom/board.c | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/mach-qcom/board.c b/arch/arm/mach-qcom/board.c index 6d8bbf7

[PATCH v3 5/6] dts: ipq4019: Add support for IPQ4019 DK01 board

2015-11-19 Thread Matthew McClintock
From: Matthew McClintock Initial board support dts files for DK01 board. Signed-off-by: Senthilkumar N L Signed-off-by: Varadarajan Narayanan --- v2 - add xo clock arch/arm/boot/dts/Makefile | 1 + arch/arm/boot/dts/qcom-ipq4019-ap.dk01.1-c1.dts | 22 + arch

[PATCH v3 4/6] qcom: ipq4019: Add basic board/dts support for IPQ4019 SoC

2015-11-19 Thread Matthew McClintock
From: Matthew McClintock Add initial dts files and SoC support for IPQ4019 Signed-off-by: Varadarajan Narayanan --- v2 - add sleep_clk arch/arm/boot/dts/qcom-ipq4019.dtsi | 115 1 file changed, 115 insertions(+) create mode 100644 arch/arm/boot/dts/qcom

[PATCH v3 1/6] pinctrl: qcom: ipq4019: Add IPQ4019 pinctrl support

2015-11-19 Thread Matthew McClintock
From: Varadarajan Narayanan Add pinctrl driver support for IPQ4019 platform Signed-off-by: Sricharan R Signed-off-by: Mathieu Olivari Signed-off-by: Varadarajan Narayanan Signed-off-by: Matthew McClintock --- v3 - update example with actual values from dts - add missing pins 71-99 - drop

[PATCH v3 2/6] clk: qcom: Add IPQ4019 Global Clock Controller support

2015-11-19 Thread Matthew McClintock
From: Varadarajan Narayanan This patch adds support for the global clock controller found on the IPQ4019 based devices. This includes UART, I2C, SPI etc. Signed-off-by: Pradeep Banavathi Signed-off-by: Senthilkumar N L Signed-off-by: Varadarajan Narayanan Signed-off-by: Matthew McClintock

[PATCH v3 6/6] qcom: ipq4019: add acc and saw nodes to bring up secondary cores

2015-11-19 Thread Matthew McClintock
This adds the required device tree nodes to bring up the secondary cores on the ipq4019 SoC. Signed-off-by: Matthew McClintock --- arch/arm/boot/dts/qcom-ipq4019.dtsi | 60 + 1 file changed, 60 insertions(+) diff --git a/arch/arm/boot/dts/qcom-ipq4019.dtsi

[PATCH v3 6/6] qcom: ipq4019: add acc and saw nodes to bring up secondary cores

2015-11-19 Thread Matthew McClintock
This adds the required device tree nodes to bring up the secondary cores on the ipq4019 SoC. Signed-off-by: Matthew McClintock --- arch/arm/boot/dts/qcom-ipq4019.dtsi | 60 + 1 file changed, 60 insertions(+) diff --git a/arch/arm/boot/dts/qcom-ipq4019.dtsi

Re: [PATCH v3 5/6] dts: ipq4019: Add support for IPQ4019 DK01 board

2016-02-16 Thread Matthew McClintock
On Feb 8, 2016, at 4:43 PM, Stephen Boyd wrote: > > On 11/19, Matthew McClintock wrote: >> + >> +/ { >> +model = "Qualcomm Technologies, Inc. IPQ4019/AP-DK01.1"; >> +compatible = "qcom,ipq4019"; >> + >> +clocks { >&

Re: [PATCH v3 1/6] pinctrl: qcom: ipq4019: Add IPQ4019 pinctrl support

2016-02-16 Thread Matthew McClintock
> On Feb 16, 2016, at 8:54 AM, Linus Walleij wrote: > > On Fri, Nov 20, 2015 at 12:19 AM, Matthew McClintock > wrote: > >> From: Varadarajan Narayanan >> >> Add pinctrl driver support for IPQ4019 platform >> >> Signed-off-by: Sricharan R >&g

Re: [PATCH 2/2] qcom: ipq4019: Add LDO regulator driver for SDHC controller

2016-04-12 Thread Matthew McClintock
On Apr 6, 2016, at 12:02 AM, Sreedhar Sambangi wrote: > >>> +config REGULATOR_IPQ4019 >> How bout REGULATOR_QCOM_IPQ4019. > > Sounds good, Will update in V2 Also prefix the name with “Qualcomm” and insert it in the list in order. -M

[PATCH 0/5] arm: qcom: Add support for IPQ8014 family of SoCs

2015-11-05 Thread Matthew McClintock
IPQ8019 has a Quad-Core ARM Cortex A7 with integrated Wifi, GMAC, Swtich, USB, PCIe, and more.. Matthew McClintock (3): ARM: qcom: add IPQ4019 compatible match qcom: ipq4019: Add basic board/dts support for IPQ4019 SoC dts: ipq4019: Add support for IPQ4019 DK01 board Varadarajan Narayanan (2

[PATCH 3/5] ARM: qcom: add IPQ4019 compatible match

2015-11-05 Thread Matthew McClintock
This will select qcom board type when the machine compatible is qcom,ipq4019. Signed-off-by: Matthew McClintock --- arch/arm/mach-qcom/board.c | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/mach-qcom/board.c b/arch/arm/mach-qcom/board.c index 6d8bbf7..b52a6bc 100644 --- a/arch/arm

[PATCH 1/5] pinctrl: qcom: ipq4019: Add IPQ4019 pinctrl support

2015-11-05 Thread Matthew McClintock
From: Varadarajan Narayanan Add pinctrl driver support for IPQ4019 platform Signed-off-by: Sricharan R Signed-off-by: Mathieu Olivari Signed-off-by: Varadarajan Narayanan Signed-off-by: Matthew McClintock --- .../bindings/pinctrl/qcom,ipq4019-pinctrl.txt | 116 ++ drivers/pinctrl

[PATCH 5/5] dts: ipq4019: Add support for IPQ4019 DK01 board

2015-11-05 Thread Matthew McClintock
Initial board support dts files for DK01 board. Signed-off-by: Senthilkumar N L Signed-off-by: Varadarajan Narayanan --- arch/arm/boot/dts/Makefile | 1 + arch/arm/boot/dts/qcom-ipq4019-ap.dk01.1-c1.dts | 22 +++ arch/arm/boot/dts/qcom-ipq4019-ap.dk01.1.dtsi | 49

[PATCH 4/5] qcom: ipq4019: Add basic board/dts support for IPQ4019 SoC

2015-11-05 Thread Matthew McClintock
Add initial dts files and SoC support for IPQ4019 Signed-off-by: Varadarajan Narayanan --- arch/arm/boot/dts/qcom-ipq4019.dtsi | 108 1 file changed, 108 insertions(+) create mode 100644 arch/arm/boot/dts/qcom-ipq4019.dtsi diff --git a/arch/arm/boot/dts/qco

[PATCH 2/5] clk: qcom: Add IPQ4019 Global Clock Controller support

2015-11-05 Thread Matthew McClintock
From: Varadarajan Narayanan This patch adds support for the global clock controller found on the IPQ4019 based devices. This includes UART, I2C, SPI etc. Signed-off-by: Pradeep Banavathi Signed-off-by: Senthilkumar N L Signed-off-by: Varadarajan Narayanan Signed-off-by: Matthew McClintock

Re: [PATCH 1/5] pinctrl: qcom: ipq4019: Add IPQ4019 pinctrl support

2015-11-05 Thread Matthew McClintock
> On Nov 5, 2015, at 8:34 PM, Rob Herring wrote: > > On Thu, Nov 05, 2015 at 04:07:52PM -0600, Matthew McClintock wrote: >> From: Varadarajan Narayanan >> >> Add pinctrl driver support for IPQ4019 platform >> >> Signed-off-by: Sricharan R >> Sig

[PATCH v2 3/5] ARM: qcom: add IPQ4019 compatible match

2015-11-16 Thread Matthew McClintock
From: Matthew McClintock This will select qcom board type when the machine compatible is qcom,ipq4019. Signed-off-by: Matthew McClintock --- arch/arm/mach-qcom/board.c | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/mach-qcom/board.c b/arch/arm/mach-qcom/board.c index 6d8bbf7

[PATCH v2 4/5] qcom: ipq4019: Add basic board/dts support for IPQ4019 SoC

2015-11-16 Thread Matthew McClintock
From: Matthew McClintock Add initial dts files and SoC support for IPQ4019 Signed-off-by: Varadarajan Narayanan --- v2 - add sleep_clk arch/arm/boot/dts/qcom-ipq4019.dtsi | 115 1 file changed, 115 insertions(+) create mode 100644 arch/arm/boot/dts/qcom

[PATCH v2 5/5] dts: ipq4019: Add support for IPQ4019 DK01 board

2015-11-16 Thread Matthew McClintock
From: Matthew McClintock Initial board support dts files for DK01 board. Signed-off-by: Senthilkumar N L Signed-off-by: Varadarajan Narayanan --- v2 - add xo clock arch/arm/boot/dts/Makefile | 1 + arch/arm/boot/dts/qcom-ipq4019-ap.dk01.1-c1.dts | 22 + arch

[PATCH v2 2/5] clk: qcom: Add IPQ4019 Global Clock Controller support

2015-11-16 Thread Matthew McClintock
From: Varadarajan Narayanan This patch adds support for the global clock controller found on the IPQ4019 based devices. This includes UART, I2C, SPI etc. Signed-off-by: Pradeep Banavathi Signed-off-by: Senthilkumar N L Signed-off-by: Varadarajan Narayanan Signed-off-by: Matthew McClintock

[PATCH v2 1/5] pinctrl: qcom: ipq4019: Add IPQ4019 pinctrl support

2015-11-16 Thread Matthew McClintock
From: Varadarajan Narayanan Add pinctrl driver support for IPQ4019 platform Signed-off-by: Sricharan R Signed-off-by: Mathieu Olivari Signed-off-by: Varadarajan Narayanan Signed-off-by: Matthew McClintock --- v2 - add a note in the device tree binding about the TLMM block .../bindings

[PATCH v3 2/5] clk: qcom: Add IPQ4019 Global Clock Controller support

2015-11-16 Thread Matthew McClintock
From: Varadarajan Narayanan This patch adds support for the global clock controller found on the IPQ4019 based devices. This includes UART, I2C, SPI etc. Signed-off-by: Pradeep Banavathi Signed-off-by: Senthilkumar N L Signed-off-by: Varadarajan Narayanan Signed-off-by: Matthew McClintock

Re: [PATCH 07/17] watchdog: qcom: add option for standalone watchdog not in timer block

2016-03-28 Thread Matthew McClintock
> On Mar 25, 2016, at 11:23 AM, Guenter Roeck wrote: > >> -#define WDT_RST 0x38 >> -#define WDT_EN 0x40 >> -#define WDT_BITE_TIME 0x5C >> +enum wdt_reg { >> +WDT_RST, >> +WDT_EN, >> +WDT_BITE_TIME, >> +}; >> + >> +static const u32 reg_offset_data_apcs_t

Re: [PATCH 09/17] watchdog: qcom: add kpss-standalone to device tree binding

2016-03-28 Thread Matthew McClintock
On Mar 25, 2016, at 9:15 AM, Rob Herring wrote: > > On Wed, Mar 23, 2016 at 05:05:04PM -0500, Matthew McClintock wrote: >> Update the compatible string to add new device tree binding >> >> CC: linux-watch...@vger.kernel.org >> Signed-off-by: Matthew McCli

Re: [PATCH 07/17] watchdog: qcom: add option for standalone watchdog not in timer block

2016-03-28 Thread Matthew McClintock
On Mar 28, 2016, at 1:13 PM, Guenter Roeck wrote: > >>> bit 0 is the enable bit, and bit 1 enables interrupts. At address 0x08 (eg >>> LPASS_QDSP6SS_WDOG_UNMASKED_INT_EN), bit 0 enables interrupts and bit 1 is >>> undefined. >> >> I honestly don’t see anything at 0x8 for either blocks that looks

Re: [PATCH 07/17] watchdog: qcom: add option for standalone watchdog not in timer block

2016-03-28 Thread Matthew McClintock
On Mar 28, 2016, at 4:56 PM, Guenter Roeck wrote: > >> So taken from the timer offset 0x0208A000 I just have a generic counter >> register CPU0_APCS_GPT0_CNT at 0x8 >> >> What doc are you looking at? >> > "Qualcomm Snapdragon 600 Processor APQ8064 Hardware Register Description" > > It is avai

Re: [PATCH 09/17] watchdog: qcom: add kpss-standalone to device tree binding

2016-03-28 Thread Matthew McClintock
On Mar 28, 2016, at 1:15 PM, Guenter Roeck wrote: > >>> What SoC(s) is this in. Use SoC specific compatible strings please. >> >> So ipq4019 wins the race because we are the first to try to enable watchdog >> for this block? >> >> qcom,kpss-ipq4019 ? >> > It is a dedicated watchdog block, isn

[PATCH 01/17] pinctrl: qcom: ipq4019: set ngpios to correct value

2016-03-23 Thread Matthew McClintock
This should have been bumped to 100 when the extra pins were added in the original pinctrl patch CC: linus.wall...@linaro.org CC: bjorn.anders...@linaro.org Signed-off-by: Matthew McClintock --- drivers/pinctrl/qcom/pinctrl-ipq4019.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff

[PATCH 03/17] pinctrl: qcom: ipq4019: fix register offsets

2016-03-23 Thread Matthew McClintock
For this SoC the register offsets changed from previous versions to be separated by a larger amount. CC: linus.wall...@linaro.org CC: bjorn.anders...@linaro.org Signed-off-by: Matthew McClintock --- drivers/pinctrl/qcom/pinctrl-ipq4019.c | 10 +- 1 file changed, 5 insertions(+), 5

[PATCH 02/17] pinctrl: qcom: ipq4019: fix the function enum for gpio mode

2016-03-23 Thread Matthew McClintock
Without this, we would fail to set the mode to gpio if trying to configure for that mode CC: linus.wall...@linaro.org CC: bjorn.anders...@linaro.org Signed-off-by: Matthew McClintock --- drivers/pinctrl/qcom/pinctrl-ipq4019.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a

[PATCH 05/17] clk: qcom: ipq4019: add some fixed clocks for ddrppl and fepll

2016-03-23 Thread Matthew McClintock
Drivers for these don't exist yet so we will add them as fixed clocks so we don't BUG() if we change clocks that reference these clocks. Signed-off-by: Matthew McClintock --- drivers/clk/qcom/gcc-ipq4019.c | 10 ++ 1 file changed, 10 insertions(+) diff --git a/drivers/cl

[PATCH 17/17] qcom: ipq4019: add DMA nodes to ipq4019 SoC and DK01 device tree

2016-03-23 Thread Matthew McClintock
This adds the blsp_dma node to the device tree and the required properties for using DMA with serial Signed-off-by: Matthew McClintock --- arch/arm/boot/dts/qcom-ipq4019-ap.dk01.1.dtsi | 4 arch/arm/boot/dts/qcom-ipq4019.dtsi | 15 +++ 2 files changed, 19 insertions

[PATCH 14/17] cpufreq: ipq4019: add cpufreq driver

2016-03-23 Thread Matthew McClintock
Add cpufreq driver for ipq4019 SoC. This driver simply instantiates cpufreq-dt. Signed-off-by: Matthew McClintock --- drivers/cpufreq/Kconfig.arm | 9 + drivers/cpufreq/Makefile | 1 + drivers/cpufreq/ipq4019-cpufreq.c | 35 +++ 3 files

[PATCH 08/17] watchdog: qcom: configure BARK time in addition to BITE time

2016-03-23 Thread Matthew McClintock
For certain parts and some versions of TZ, TZ will reset the chip when a BARK is triggered even though it was not configured here. So by default let's configure this BARK time as well. Signed-off-by: Matthew McClintock --- drivers/watchdog/qcom-wdt.c | 5 + 1 file changed, 5 inser

[PATCH 15/17] qcom: ipq4019: add cpu operating points for cpufreq support

2016-03-23 Thread Matthew McClintock
This adds some operating points for cpu frequeny scaling Signed-off-by: Matthew McClintock --- arch/arm/boot/dts/qcom-ipq4019.dtsi | 8 1 file changed, 8 insertions(+) diff --git a/arch/arm/boot/dts/qcom-ipq4019.dtsi b/arch/arm/boot/dts/qcom-ipq4019.dtsi index 1937edf..db48fd3 100644

[PATCH 16/17] qcom: ipq4019: add crypto nodes to ipq4019 SoC and DK01 device tree

2016-03-23 Thread Matthew McClintock
: Stanimir Varbanov Signed-off-by: Matthew McClintock --- arch/arm/boot/dts/qcom-ipq4019-ap.dk01.1.dtsi | 8 arch/arm/boot/dts/qcom-ipq4019.dtsi | 25 + 2 files changed, 33 insertions(+) diff --git a/arch/arm/boot/dts/qcom-ipq4019-ap.dk01.1.dtsi b/arch

[PATCH 10/17] qcom: ipq4019: add watchdog node to ipq4019 SoC and DK01 device tree

2016-03-23 Thread Matthew McClintock
This will allow boards to enable watchdog support Signed-off-by: Matthew McClintock --- arch/arm/boot/dts/qcom-ipq4019-ap.dk01.1.dtsi | 4 arch/arm/boot/dts/qcom-ipq4019.dtsi | 8 2 files changed, 12 insertions(+) diff --git a/arch/arm/boot/dts/qcom-ipq4019-ap.dk01.1

[PATCH 12/17] qcom: ipq4019: add spi node to ipq4019 SoC and DK01 device tree

2016-03-23 Thread Matthew McClintock
This will allow boards to enable the SPI bus Signed-off-by: Matthew McClintock --- arch/arm/boot/dts/qcom-ipq4019-ap.dk01.1.dtsi | 37 +++ arch/arm/boot/dts/qcom-ipq4019.dtsi | 18 + 2 files changed, 55 insertions(+) diff --git a/arch/arm/boot/dts

[PATCH 07/17] watchdog: qcom: add option for standalone watchdog not in timer block

2016-03-23 Thread Matthew McClintock
Commit 0dfd582e026a ("watchdog: qcom: use timer devicetree binding") moved to use the watchdog as a subset timer register block. Some devices have the watchdog completely standalone with slightly different register offsets as well so let's account for the differences here. Signed-

[PATCH 13/17] qcom: ipq4019: add i2c node to ipq4019 SoC and DK01 device tree

2016-03-23 Thread Matthew McClintock
This will allow boards to enable the I2C bus CC: Sricharan R Signed-off-by: Matthew McClintock --- arch/arm/boot/dts/qcom-ipq4019.dtsi | 13 + 1 file changed, 13 insertions(+) diff --git a/arch/arm/boot/dts/qcom-ipq4019.dtsi b/arch/arm/boot/dts/qcom-ipq4019.dtsi index 99e64f4

[PATCH 09/17] watchdog: qcom: add kpss-standalone to device tree binding

2016-03-23 Thread Matthew McClintock
Update the compatible string to add new device tree binding CC: linux-watch...@vger.kernel.org Signed-off-by: Matthew McClintock --- Documentation/devicetree/bindings/watchdog/qcom-wdt.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/Documentation/devicetree/bindings/watchdog/qcom

[PATCH 06/17] watchdog: qcom: update device tree bindings

2016-03-23 Thread Matthew McClintock
Update the compatible string to align with driver CC: linux-watch...@vger.kernel.org Signed-off-by: Matthew McClintock --- Documentation/devicetree/bindings/watchdog/qcom-wdt.txt | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Documentation/devicetree/bindings/watchdog

[PATCH 11/17] qcom: ipq4019: add support for reset via qcom,ps-hold

2016-03-23 Thread Matthew McClintock
This will allow these types of boards to be rebooted. Signed-off-by: Matthew McClintock --- arch/arm/boot/dts/qcom-ipq4019.dtsi | 5 + 1 file changed, 5 insertions(+) diff --git a/arch/arm/boot/dts/qcom-ipq4019.dtsi b/arch/arm/boot/dts/qcom-ipq4019.dtsi index 00a5e9e..acb851d 100644 --- a

[PATCH 04/17] clk: qcom: ipq4019: switch remaining defines to enums

2016-03-23 Thread Matthew McClintock
When this was added not all the remaining defines were switched over to use enums, so let's complete that process here Reported-by: Stephen Boyd Signed-off-by: Matthew McClintock --- drivers/clk/qcom/gcc-ipq4019.c | 60 ++ 1 file changed, 25 inser

Re: [PATCH 14/17] cpufreq: ipq4019: add cpufreq driver

2016-03-24 Thread Matthew McClintock
On Mar 24, 2016, at 1:44 AM, Viresh Kumar wrote: > > On 23-03-16, 17:05, Matthew McClintock wrote: >> Add cpufreq driver for ipq4019 SoC. This driver simply instantiates >> cpufreq-dt. >> >> Signed-off-by: Matthew McClintock >> --- >> drivers/cpufreq/K

Re: [PATCH 08/17] watchdog: qcom: configure BARK time in addition to BITE time

2016-03-24 Thread Matthew McClintock
On Mar 23, 2016, at 5:42 PM, Stephen Boyd wrote: > > On 03/23, Matthew McClintock wrote: >> For certain parts and some versions of TZ, TZ will reset the chip >> when a BARK is triggered even though it was not configured here. So >> by default let's configure this BA

Re: [PATCH 06/17] watchdog: qcom: update device tree bindings

2016-03-24 Thread Matthew McClintock
> On Mar 23, 2016, at 5:26 PM, Stephen Boyd wrote: > > On 03/23/2016 03:05 PM, Matthew McClintock wrote: >> Update the compatible string to align with driver >> >> CC: linux-watch...@vger.kernel.org >> Signed-off-by: Matthew McClintock > > I ha

Re: [PATCH 08/17] watchdog: qcom: configure BARK time in addition to BITE time

2016-03-24 Thread Matthew McClintock
On Mar 24, 2016, at 11:17 AM, Guenter Roeck wrote: > >>> Why isn't TZ configuring the bark time to what it wants? I'm lost >>> why we have to do this for them. >> >> So it was done like this to ensure we had a valid upgrade. The bootloader is >> using the watchdog to ensure the system is bootab

Re: [PATCH 11/18] spi: qup: properly detect extra interrupts

2017-06-14 Thread Matthew McClintock
gt;> > properly detect these bad interrupts and print warning messages. >> > >> > Signed-off-by: Matthew McClintock >> > Signed-off-by: Varadarajan Narayanan >> > --- >> > drivers/spi/spi-qup.c | 20 +++- >> > 1 fi