Re: [PATCH 0/3] powerpc: Emulation support for load/store instructions on LE

2016-11-03 Thread Naveen N. Rao
On 2016/11/02 02:23PM, Ravi Bangoria wrote: > emulate_step is the basic infrastructure which is used by number of other > kernel infrastructures like kprobe, hw-breakpoint(data breakpoint) etc. > In case of kprobe, enabling emulation of load/store instructions will > speedup the execution of probed

[tip:sched/urgent] sched/core: Fix oops in sched_show_task()

2016-11-03 Thread tip-bot for Tetsuo Handa
Commit-ID: 382005027fedc50b28d40ae64ef1461cca38953e Gitweb: http://git.kernel.org/tip/382005027fedc50b28d40ae64ef1461cca38953e Author: Tetsuo Handa AuthorDate: Wed, 2 Nov 2016 19:50:29 +0900 Committer: Ingo Molnar CommitDate: Thu, 3 Nov 2016 07:27:34 +0100 sched/core: Fix oops in sched

Re: [PATCH 1/2] rtl8xxxu: Fix for authentication failure

2016-11-03 Thread John Heenan
On 3 November 2016 at 11:00, Larry Finger wrote: > On 10/30/2016 05:20 AM, John Heenan wrote: >> >> This fix enables the same sequence of init behaviour as the alternative >> working driver for the wireless rtl8723bu IC at >> https://github.com/lwfinger/rtl8723bu >> >> For exampe rtl8xxxu_init_dev

[tip:sched/urgent] sched/core: Remove pointless printout in sched_show_task()

2016-11-03 Thread tip-bot for Linus Torvalds
Commit-ID: 8243d5597793b5e85143c9a935e1b971c59740a9 Gitweb: http://git.kernel.org/tip/8243d5597793b5e85143c9a935e1b971c59740a9 Author: Linus Torvalds AuthorDate: Tue, 1 Nov 2016 17:47:18 -0600 Committer: Ingo Molnar CommitDate: Thu, 3 Nov 2016 07:31:34 +0100 sched/core: Remove pointles

[PATCH 0/6] IMA Instrumentation support

2016-11-03 Thread Hemant Kumar
Powerpc has In-Memory-Accumulation (IMA) infrastructure which contains various Performance Monitoring Units (PMUs) at Nest level (these are on-chip but off-core). These Nest PMU counters are handled by a Nest IMA microcode. This microcode runs in the OCC (On-Chip Controller) complex and its purpose

[PATCH 1/6] powerpc/powernv: Data structure and macros definitions

2016-11-03 Thread Hemant Kumar
Create new header file "ima-pmu.h" to add the data structures and macros needed for IMA pmu support. Cc: Madhavan Srinivasan Cc: Michael Ellerman Cc: Benjamin Herrenschmidt Cc: Paul Mackerras Cc: Anton Blanchard Cc: Sukadev Bhattiprolu Cc: Michael Neuling Cc: Stewart Smith Cc: Stephane Era

[PATCH 5/6] powerpc/perf: Generic ima pmu event functions

2016-11-03 Thread Hemant Kumar
Since, the IMA counters' data are periodically fed to a memory location, the functions to read/update, start/stop, add/del can be generic and can be used by all IMA PMU units. This patch adds a set of generic ima pmu related event functions to be used by each ima pmu unit. Add code to setup format

[PATCH 3/6] powerpc/powernv: Detect supported IMA units and its events

2016-11-03 Thread Hemant Kumar
Parse device tree to detect IMA units. Traverse through each IMA unit node to find supported events and corresponding unit/scale files (if any). Right now, only nest IMA units are supported. The nest IMA unit event node from device tree will contain the offset in the reserved memory region to get

[PATCH 2/6] powerpc/powernv: Autoload IMA device driver module

2016-11-03 Thread Hemant Kumar
This patch does three things : - Enables "opal.c" to create a platform device for the IMA interface according to the appropriate compatibility string. - Find the reserved-memory region details from the system device tree and get the base address of HOMER region address for each chip. - We

[PATCH 6/6] powerpc/perf: IMA pmu cpumask and cpu hotplug support

2016-11-03 Thread Hemant Kumar
Adds cpumask attribute to be used by each IMA pmu. Only one cpu (any online CPU) from each chip for nest PMUs is designated to read counters. On CPU hotplug, dying CPU is checked to see whether it is one of the designated cpus, if yes, next online cpu from the same chip (for nest units) is designa

[PATCH 4/6] powerpc/perf: Add event attribute and group to IMA pmus

2016-11-03 Thread Hemant Kumar
Device tree IMA driver code parses the IMA units and their events. It passes the information to IMA pmu code which is placed in powerpc/perf as "ima-pmu.c". This patch creates only event attributes and attribute groups for the IMA pmus. Cc: Madhavan Srinivasan Cc: Michael Ellerman Cc: Benjamin

Re: [PATCH] poly1305: generic C can be faster on chips with slow unaligned access

2016-11-03 Thread Jason A. Donenfeld
Hi Herbert, On Thu, Nov 3, 2016 at 1:49 AM, Herbert Xu wrote: > FWIW I'd rather live with a 6% slowdown than having two different > code paths in the generic code. Anyone who cares about 6% would > be much better off writing an assembly version of the code. Please think twice before deciding th

[PATCH v2 14/14] ARM: dts: sun6i: sina31s: Enable internal audio codec

2016-11-03 Thread Chen-Yu Tsai
The SinA31s routes the SoC's LINEOUT pins to a line out jack, and MIC1 to a microphone jack, with MBIAS providing phantom power. Signed-off-by: Chen-Yu Tsai --- arch/arm/boot/dts/sun6i-a31s-sina31s.dts | 8 1 file changed, 8 insertions(+) diff --git a/arch/arm/boot/dts/sun6i-a31s-sina3

[PATCH v2 01/14] ASoC: sun4i-codec: Move data structures to add create_card call to quirks

2016-11-03 Thread Chen-Yu Tsai
The audio codec on later Allwinner SoCs have a different layout and audio path compared to the A10/A20. However the PCM parts are still the same. The different layout and audio paths mean we need a different create_card function for different families, so they can create DAPM endpoint widgets and

[PATCH v2 13/14] ARM: dts: sun6i: hummingbird: Enable internal audio codec

2016-11-03 Thread Chen-Yu Tsai
The Hummingbird A31 has headset and line in audio jacks and an onboard mic routed to the pins for the SoC's internal codec. The line out pins are routed to an onboard speaker amp, whose output is available on a pin header. Signed-off-by: Chen-Yu Tsai --- arch/arm/boot/dts/sun6i-a31-hummingbird.d

[PATCH v2 11/14] ASoC: sun4i-codec: Add support for A31 board level audio routing

2016-11-03 Thread Chen-Yu Tsai
The A31 SoC's codec has various inputs, outputs and microphone bias supplies. These can be routed on the board in different ways, such as: - HPCOM may be connected to have the headphone DC coupled. - Microphones all use the MBIAS main microphone supply or one mic may use the HBIAS supply,

[PATCH v2 02/14] ASoC: sun4i-codec: Expand quirks to handle register offsets and card creation

2016-11-03 Thread Chen-Yu Tsai
The A31 has a similar codec to the A10/A20. The PCM parts are very similar, with just different register offsets. The analog paths are very different. There are more inputs and outputs. The A31s, A23, and H3 have a similar PCM interface, again with register offsets slightly rearranged. The analog

[PATCH v2 00/14] ASoC: sun4i-codec: Add support for A31 Codec

2016-11-03 Thread Chen-Yu Tsai
Hi everyone, This is v2 of my Allwinner A31 audio codec support series. The ASoC DAPM stereo control patches in v1 were split out and merged already. These remaining patches depend on them. The A31's internal codec is similar (in terms of DMA, interface and control layouts) to the one found in th

[PATCH v2 12/14] ARM: dts: sun6i: Add audio codec device node

2016-11-03 Thread Chen-Yu Tsai
The A31 SoC includes the Allwinner audio codec, capable of 24-bit playback up to 192 kHz and 24-bit capture up to 48 kHz. Signed-off-by: Chen-Yu Tsai --- arch/arm/boot/dts/sun6i-a31.dtsi | 13 + 1 file changed, 13 insertions(+) diff --git a/arch/arm/boot/dts/sun6i-a31.dtsi b/arch/ar

[PATCH v2 09/14] ASoC: sun4i-codec: Add support for A31 analog microphone inputs

2016-11-03 Thread Chen-Yu Tsai
The A31 internal codec has 3 microphone outputs, of which MIC2 and MIC3 are muxed internally. The resulting two microphone inputs have separate gain controls and mixer inputs. The codec also has 2 microphone bias pins. HBIAS is specifically for the headphone jack, which also supports headphone det

[PATCH v2 07/14] ASoC: sun4i-codec: Add support for A31 Line In playback

2016-11-03 Thread Chen-Yu Tsai
The A31 integrated codec has a stereo "Line In" input. Add support for it to the playback paths. Signed-off-by: Chen-Yu Tsai --- sound/soc/sunxi/sun4i-codec.c | 15 +++ 1 file changed, 15 insertions(+) diff --git a/sound/soc/sunxi/sun4i-codec.c b/sound/soc/sunxi/sun4i-codec.c index

[PATCH v2 08/14] ASoC: sun4i-codec: Add support for A31 Line Out playback

2016-11-03 Thread Chen-Yu Tsai
The A31 integrated codec has a second "Line Out" output which does not include an integrated amplifier in its path. This path does have a separate volume control. This patch adds support for the playback path from the DAC to the Line Out pins. Signed-off-by: Chen-Yu Tsai --- sound/soc/sunxi/sun

[PATCH v2 05/14] ASoC: sun4i-codec: Add support for optional reset control to quirks

2016-11-03 Thread Chen-Yu Tsai
The later Allwinner SoCs have a dedicated reset controller, and peripherals have dedicated reset controls which need to be deasserted before the associated peripheral can be used. Add support for this to the quirks structure and probe/remove functions. Signed-off-by: Chen-Yu Tsai --- sound/soc/

[PATCH v2 10/14] ASoC: sun4i-codec: Add support for A31 ADC capture path

2016-11-03 Thread Chen-Yu Tsai
The A31's internal codec capture path has a mixer in front of the ADC for each channel, capable of selecting various inputs, including microphones, line in, phone in, and the main output mixer. This patch adds the various controls, widgets and routes needed for audio capture from the already suppo

Re: [PATCH 4/6] g_NCR5380: Add IRQ auto-configuration for HP C2502

2016-11-03 Thread Ondrej Zary
On Thursday 03 November 2016, Finn Thain wrote: > On Wed, 2 Nov 2016, Ondrej Zary wrote: > > > Also, you've ignored the irq module parameters. From the user's point > > > of view, surely the least surprising thing is to attempt to configure > > > the card for whatever irq the user asked for. > > >

[PATCH v2 03/14] ASoC: sun4i-codec: Revise comments for register definition macros

2016-11-03 Thread Chen-Yu Tsai
This revises existing comments in the register definition macros section, and adds a few more, so that readers can clearly identify the types of control registers. Signed-off-by: Chen-Yu Tsai --- sound/soc/sunxi/sun4i-codec.c | 14 +++--- 1 file changed, 11 insertions(+), 3 deletions(-)

[PATCH v2 04/14] ASoC: sun4i-codec: Increase DMA max burst to 8

2016-11-03 Thread Chen-Yu Tsai
According to the DMA engine API documentation, maxburst denotes the largest possible size of a single transfer, so as not to overflow destination FIFOs as explained in this excerpt from dmaengine.h * @src_maxburst: the maximum number of words (note: words, as in * units of the src_addr_width mem

[PATCH v2 06/14] ASoC: sun4i-codec: Add support for A31 playback through headphone output

2016-11-03 Thread Chen-Yu Tsai
The A31 has a similar codec to the A10/A20. The PCM parts are very similar, with different register offsets. The analog paths are very different. There are more inputs and outputs. The ADC mux has been replaced with a proper mixer. This patch adds support for the basic playback path of the A31 cod

SINCERE PROPOSITION FROM (Mr. Charles Jahja Surja)

2016-11-03 Thread Charles Jahja Surja
Business proposal for you and your urgent response is needed.

Re: [RFC] v4l2 support for thermopile devices

2016-11-03 Thread Antonio Ospite
On Wed, 2 Nov 2016 23:10:41 -0700 Matt Ranostay wrote: > On Fri, Oct 28, 2016 at 7:59 PM, Matt Ranostay > wrote: > > On Fri, Oct 28, 2016 at 2:53 PM, Hans Verkuil wrote: > >> Hi Matt, > >> > >> On 28/10/16 22:14, Matt Ranostay wrote: > >>> > >>> So want to toss a few thoughts on adding support

RE: [Intel-wired-lan] [PATCH] e1000e: free IRQ when the link is up or down

2016-11-03 Thread Ruinskiy, Dima
>-Original Message- >From: Intel-wired-lan [mailto:intel-wired-lan-boun...@lists.osuosl.org] On >Behalf Of Tyler Baicar >Sent: Wednesday, 02 November, 2016 23:08 >To: Kirsher, Jeffrey T; intel-wired-...@lists.osuosl.org; >net...@vger.kernel.org; linux-kernel@vger.kernel.org; >ok...@codeauro

Re: UBIFS LEB properties tree with odd addresses

2016-11-03 Thread Richard Weinberger
Naga Sureshkumar Relli, On 03.11.2016 06:11, Naga Sureshkumar Relli wrote: > Hi Richard, > >>> Hmm, the calculations in lpt.c use basic properties of the MTD (number of >>> blocks, etc...). >>> Can you please double check which property causes the failure and also >>> verify whether the MTD dri

Re: [PATCH v4] media: Driver for Toshiba et8ek8 5MP sensor

2016-11-03 Thread Pavel Machek
Hi! > > > > I'll have to go through the patches, et8ek8 driver is probably not > > > > enough to get useful video. platform/video-bus-switch.c is needed for > > > > camera switching, then some omap3isp patches to bind flash and > > > > autofocus into the subdevice. > > > > > > > > Then, device tr

Re: [PATCH v6 4/4] arm64: dts: add Pine64 support

2016-11-03 Thread Maxime Ripard
On Wed, Nov 02, 2016 at 10:05:09PM +, André Przywara wrote: > On 02/11/16 21:50, Maxime Ripard wrote: > > From: Andre Przywara > > > > The Pine64 is a cost-efficient development board based on the > > Allwinner A64 SoC. > > There are three models: the basic version with Fast Ethernet and > >

Re: [PATCH v6 1/4] clk: sunxi-ng: Add A64 clocks

2016-11-03 Thread Maxime Ripard
On Thu, Nov 03, 2016 at 09:52:26AM +0800, Chen-Yu Tsai wrote: > On Thu, Nov 3, 2016 at 5:50 AM, Maxime Ripard > wrote: > > Add the A64 CCU clocks set. > > > > Acked-by: Rob Herring > > Signed-off-by: Maxime Ripard > > I thought I acked this one... > > Skimming through it again, I think you wou

Re: [PATCH 09/13] mmc: dw_mmc: remove the "clock-freq-min-max" property

2016-11-03 Thread Heiko Stübner
Hi Jaehoon, Am Donnerstag, 3. November 2016, 15:21:31 schrieb Jaehoon Chung: > Remove the "clock-freq-min-max" property. > There is "max-frequency" property in drivers/mmc/core/host.c > It can be used for getting maximum frequency. > > And minimum clock value is assigned to 100K by default. > Bec

Re: [REVISED DOC on v3] Crossrelease Lockdep

2016-11-03 Thread Byungchul Park
Hello Peterz, I tried to explain about what you asked me for. I wonder if I did it exactly. But I hope so. Please let me know if there's something more I need to add. Thank you, Byungchul

Re: [PATCH] tpm: transition tpm_vtpm_proxy documentation to the Sphinx

2016-11-03 Thread Jani Nikula
On Wed, 02 Nov 2016, Jarkko Sakkinen wrote: > Transitioned the tpm_vtpm_proxy documentation to the Sphinx > infrastructure and removed parts from the documentation that are easier > to pull from the sources. Restructured vtpm_proxy.h and tpm_vtpm_proxy.c > to be compatible with this approach and w

Re: [PATCH v2 01/14] ASoC: sun4i-codec: Move data structures to add create_card call to quirks

2016-11-03 Thread Maxime Ripard
On Thu, Nov 03, 2016 at 03:55:43PM +0800, Chen-Yu Tsai wrote: > The audio codec on later Allwinner SoCs have a different layout and > audio path compared to the A10/A20. However the PCM parts are still > the same. > > The different layout and audio paths mean we need a different > create_card func

Re: [PATCH 02/10] iio: adc: Add stm32 support

2016-11-03 Thread Fabrice Gasnier
On 10/30/2016 04:27 PM, Jonathan Cameron wrote: On 25/10/16 17:25, Fabrice Gasnier wrote: This patch adds support for STMicroelectronics STM32 MCU's analog to digital converter. Signed-off-by: Fabrice Gasnier Hi Fabrice, Sometimes I hate SoC ADCs. For some reason the hardware designers seem

Re: [PATCH v2 03/14] ASoC: sun4i-codec: Revise comments for register definition macros

2016-11-03 Thread Maxime Ripard
On Thu, Nov 03, 2016 at 03:55:45PM +0800, Chen-Yu Tsai wrote: > This revises existing comments in the register definition macros > section, and adds a few more, so that readers can clearly identify > the types of control registers. > > Signed-off-by: Chen-Yu Tsai Acked-by: Maxime Ripard Thanks

Re: [PATCH 0/3] fix ohci phy name

2016-11-03 Thread Axel Haslam
Hi Sekhar, David, It might make sense to have this patch series, squashed into a single patch, would you agree, or do you prefer it as is: one-per-subsystem? Regards Axel. On Wed, Nov 2, 2016 at 1:44 PM, Axel Haslam wrote: > The usb ohci clock match is not working because the usb clock > is reg

Re: [PATCH v2 04/14] ASoC: sun4i-codec: Increase DMA max burst to 8

2016-11-03 Thread Maxime Ripard
On Thu, Nov 03, 2016 at 03:55:46PM +0800, Chen-Yu Tsai wrote: > According to the DMA engine API documentation, maxburst denotes the > largest possible size of a single transfer, so as not to overflow > destination FIFOs as explained in this excerpt from dmaengine.h > > * @src_maxburst: the maximu

Re: [PATCH 1/7] clk: qcom: Mark a few branch clocks with BRANCH_HALT_DELAY

2016-11-03 Thread Rajendra Nayak
On 11/03/2016 02:09 AM, Stephen Boyd wrote: > On 10/19, Rajendra Nayak wrote: >> We seem to have a few branch clocks within gcc for msm8996 which do >> have a valid halt bit but can't be used to check branch enable/disable >> status as they rely on external clocks in some cases and in some >> oth

Re: [PATCH v2 05/14] ASoC: sun4i-codec: Add support for optional reset control to quirks

2016-11-03 Thread Maxime Ripard
On Thu, Nov 03, 2016 at 03:55:47PM +0800, Chen-Yu Tsai wrote: > The later Allwinner SoCs have a dedicated reset controller, and > peripherals have dedicated reset controls which need to be deasserted > before the associated peripheral can be used. > > Add support for this to the quirks structure a

Re: [PATCH v3 06/11] clk: qcom: Fix .set_rate to handle alpha PLLs w/wo dynamic update

2016-11-03 Thread Rajendra Nayak
On 11/03/2016 03:24 AM, Stephen Boyd wrote: > On 09/29, Rajendra Nayak wrote: >> Alpha PLLs which do not support dynamic update feature >> need to be explicitly disabled before a rate change. >> The ones which do support dynamic update do so within a >> single vco range, so add a min/max freq che

Re: [PATCH v2 07/14] ASoC: sun4i-codec: Add support for A31 Line In playback

2016-11-03 Thread Maxime Ripard
On Thu, Nov 03, 2016 at 03:55:49PM +0800, Chen-Yu Tsai wrote: > The A31 integrated codec has a stereo "Line In" input. Add support for > it to the playback paths. > > Signed-off-by: Chen-Yu Tsai Acked-by: Maxime Ripard Thanks, Maxime -- Maxime Ripard, Free Electrons Embedded Linux and Kernel

Re: [PATCH v2 10/14] ASoC: sun4i-codec: Add support for A31 ADC capture path

2016-11-03 Thread Maxime Ripard
On Thu, Nov 03, 2016 at 03:55:52PM +0800, Chen-Yu Tsai wrote: > The A31's internal codec capture path has a mixer in front of the ADC > for each channel, capable of selecting various inputs, including > microphones, line in, phone in, and the main output mixer. > > This patch adds the various cont

Re: [PATCH v2 11/14] ASoC: sun4i-codec: Add support for A31 board level audio routing

2016-11-03 Thread Maxime Ripard
On Thu, Nov 03, 2016 at 03:55:53PM +0800, Chen-Yu Tsai wrote: > The A31 SoC's codec has various inputs, outputs and microphone bias > supplies. These can be routed on the board in different ways, such as: > > - HPCOM may be connected to have the headphone DC coupled. > > - Microphones all use

Re: [PATCH v3 5/6] Documentation: bindings: add documentation for ir-spi device driver

2016-11-03 Thread Jacek Anaszewski
Hi Andi, Only DT bindings of LED class drivers should be placed in Documentation/devicetree/bindings/leds. Please move it to the media bindings. Thanks, Jacek Anaszewski On 11/02/2016 11:40 AM, Andi Shyti wrote: Document the ir-spi driver's binding which is a IR led driven through the SPI line

Re: [RFC v3 11/11] clk: qcom: Add basic CPU clock driver for msm8996

2016-11-03 Thread Rajendra Nayak
On 11/03/2016 03:47 AM, Stephen Boyd wrote: > On 09/29, Rajendra Nayak wrote: >> This is a skeletal CPU clock driver, which adds support for the >> CPU SS primary as well as secondary/alternate PLLs, and the >> primary/secondary muxes. >> >> This still has support missing for >> 1. CBF PLL and mu

Re: [PATCH v3 10/11] clk: Add clk_hw_get_clk() helper API to be used by clk providers

2016-11-03 Thread Rajendra Nayak
On 11/03/2016 03:52 AM, Stephen Boyd wrote: > On 09/29, Rajendra Nayak wrote: >> Add a helper API that will allow clk providers to turn their clk_hw >> structures into struct clk pointer. >> > > Did I suggest this? I did this back when you suggested we store clk_hw's for all clocks associated w

Re: [PATCH v4 1/6] Add Advantech iManager MFD core driver

2016-11-03 Thread Lee Jones
On Wed, 02 Nov 2016, Richard Vidal-Dorsch wrote: > This patch adds Advantech iManager Embedded Controller MFD core driver. > This mfd core dirver provides an interface for GPIO, I2C, HWmon, > Watchdog, and Backlight/Brightness control. > > Signed-off-by: Richard Vidal-Dorsch > --- > drivers/mfd

Re: [RFC] v4l2 support for thermopile devices

2016-11-03 Thread Hans Verkuil
On 03/11/16 08:35, Antonio Ospite wrote: On Wed, 2 Nov 2016 23:10:41 -0700 Matt Ranostay wrote: On Fri, Oct 28, 2016 at 7:59 PM, Matt Ranostay wrote: On Fri, Oct 28, 2016 at 2:53 PM, Hans Verkuil wrote: Hi Matt, On 28/10/16 22:14, Matt Ranostay wrote: So want to toss a few thoughts on a

Re: [PATCH 2/2] rtl8xxxu: Fix for bogus data used to determine macpower

2016-11-03 Thread Joe Perches
On Sun, 2016-10-30 at 19:02 -0400, Jes Sorensen wrote: > Code is 80 characters wide, and comments are /* */ never the ugly C++ > crap. You might look at the recent Linus Torvalds authored commit 5e467652ffef (?printk: re-organize log_output() to be more legible") which does both of those: c99 // c

RE: Kernel regression introduced by "e1000e: Do not write lsc to ics in msi-x mode" and/or "e1000e: Do not read ICR in Other interrupt"

2016-11-03 Thread Neftin, Sasha
-Original Message- From: Intel-wired-lan [mailto:intel-wired-lan-boun...@lists.osuosl.org] On Behalf Of Brown, Aaron F Sent: Wednesday, November 02, 2016 11:20 PM To: Jack Suter ; Kirsher, Jeffrey T Cc: bpoir...@suse.com; jhod...@ucdavis.edu; intel-wired-...@lists.osuosl.org; linux-kerne

Re: [PATCH 09/13] mmc: dw_mmc: remove the "clock-freq-min-max" property

2016-11-03 Thread Jaehoon Chung
Hi Heiko. On 11/03/2016 05:20 PM, Heiko Stübner wrote: > Hi Jaehoon, > > Am Donnerstag, 3. November 2016, 15:21:31 schrieb Jaehoon Chung: >> Remove the "clock-freq-min-max" property. >> There is "max-frequency" property in drivers/mmc/core/host.c >> It can be used for getting maximum frequency. >

Re: [PATCH v2 13/14] ARM: dts: sun6i: hummingbird: Enable internal audio codec

2016-11-03 Thread Maxime Ripard
On Thu, Nov 03, 2016 at 03:55:55PM +0800, Chen-Yu Tsai wrote: > The Hummingbird A31 has headset and line in audio jacks and an onboard > mic routed to the pins for the SoC's internal codec. The line out pins > are routed to an onboard speaker amp, whose output is available on a > pin header. > > S

Re: [PATCH v4 6/8] dt-bindings: Add support for Amlogic GXBB SCPI Interface

2016-11-03 Thread Neil Armstrong
On 11/02/2016 11:20 PM, Sudeep Holla wrote: > On Sat, Oct 29, 2016 at 11:39:05AM -0700, Olof Johansson wrote: > > I will rework the patches to address the concerns as I too did share same > concern. > > > Hi Neil, > > You may need to rework the DTS files based on that, please be aware of > that

Re: [PATCH v5 5/7] net: ethernet: bgmac: device tree phy enablement

2016-11-03 Thread Rafal Milecki
On 11/02/2016 06:08 PM, Jon Mason wrote: Change the bgmac driver to allow for phy's defined by the device tree This is a late review, I know, sorry... :( +static int bcma_phy_direct_connect(struct bgmac *bgmac) +{ + struct fixed_phy_status fphy_status = { + .link = 1, +

Re: [linux-sunxi] [PATCH v2 04/14] ASoC: sun4i-codec: Increase DMA max burst to 8

2016-11-03 Thread Priit Laes
On Thu, 2016-11-03 at 15:55 +0800, Chen-Yu Tsai wrote: > According to the DMA engine API documentation, maxburst denotes the > largest possible size of a single transfer, so as not to overflow > destination FIFOs as explained in this excerpt from dmaengine.h > >  * @src_maxburst: the maximum numbe

Re: [PATCH] clk: rockchip: fix some clocks' name to be more standard style

2016-11-03 Thread Shawn Lin
On 2016/11/2 15:04, Jianqun Xu wrote: Fix aclk_emmcgrf to aclk_emmc_grf, and fix aclk_emmccore to be aclk_emmc_core. What is the standard style should be? TRM uses aclk_emmccore but not aclk_emmc_core, so should it be more standrad to keep it as-is? Signed-off-by: Jianqun Xu --- drivers/c

Re: [PATCH v2 0/6] STM32F4 Add RTC & QSPI clocks

2016-11-03 Thread Alexandre Torgue
Hi Gabriel, On 10/14/2016 11:18 AM, gabriel.fernan...@st.com wrote: From: Gabriel Fernandez v2: - rename compatible property "st,stm32f46xx-rcc" into "st,stm32f469-rcc" - cosmetic: remove bad copy/paste This patch-set introduce RTC and QSPI clocks for STM32F4 socs RTC clock has 3 parents cl

Re: [PATCH] usb: gadget: mv_u3d: add check for dma mapping error

2016-11-03 Thread Felipe Balbi
Hi, Alexey Khoroshilov writes: > mv_u3d_req_to_trb() does not check for dma mapping errors. > > By the way, the patch improves readability of mv_u3d_start_queue() > by rearranging its code with two semantic modifications: > - assignment zero to ep->processing if usb_gadget_map_request() fails; >

[PATCH] [TRIVIAL] Treewide: Remove references to make variable LINUX_INCLUDE

2016-11-03 Thread Paul Bolle
Commit 4fd06960f120 ("Use the new x86 setup code for i386") introduced a reference to the make variable LINUX_INCLUDE. That reference got moved around a bit and copied twice and now there are three references to it. There has never been a definition of that variable. (Presumably that is because it

RE: [PATCH net] r8152: Fix broken RX checksums.

2016-11-03 Thread Hayes Wang
Mark Lord [mailto:ml...@pobox.com] > Sent: Thursday, November 03, 2016 2:30 AM > To: Hayes Wang; David Miller [...] > I have poked at it some more, and thus far it appears that it is > only necessary to disable TCP rx checksums. The system doesn't crash > when only IP/UDP checksums are enabled, bu

Re: [PATCH v2 0/6] STM32F4 Add RTC & QSPI clocks

2016-11-03 Thread Gabriel Fernandez
Hi Alexandre, On 11/03/2016 09:52 AM, Alexandre Torgue wrote: Hi Gabriel, On 10/14/2016 11:18 AM, gabriel.fernan...@st.com wrote: From: Gabriel Fernandez v2: - rename compatible property "st,stm32f46xx-rcc" into "st,stm32f469-rcc" - cosmetic: remove bad copy/paste This patch-set introd

Re: [PATCH 0/5] drm/sun4i: Handle TV overscan

2016-11-03 Thread Maxime Ripard
Hi Russell, On Mon, Oct 31, 2016 at 08:42:34AM +, Russell King - ARM Linux wrote: > On Tue, Oct 18, 2016 at 12:03:49PM +0200, Maxime Ripard wrote: > > The first one is that this overscanning should be reported by the > > connector I guess? but this is really TV specific, so we need one way > >

Re: [RFC PATCH] get_maintainer: Look for arbitrary letter prefixes in sections

2016-11-03 Thread Paul Bolle
On Mon, 2016-10-24 at 11:05 -0700, Joe Perches wrote: > Jani Nikula proposes patches to add a few new letter prefixes > for "B:" bug reporting and "C:" maintainer chatting to the > various sections of MAINTAINERS. > > Add a generic mechanism to get_maintainer.pl to find sections that > have any co

[PATCH 0/2] ARM64: meson-gxbb: SCPI Fixup

2016-11-03 Thread Neil Armstrong
This patchset updates the GXBB dtsi and the ARM64 defconfig in order to make SCPI work following the Legacy SCPI rework from Sudeep Hola at [1]. The rework introduced a generic "arm,legacy-scpi" compatible string. The second patch enables the necessary Platform MHU in defconfig. [1] http://lkml.

[PATCH 2/2] ARM64: configs: Add Platform MHU in defconfig

2016-11-03 Thread Neil Armstrong
Signed-off-by: Neil Armstrong --- arch/arm64/configs/defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig index dab2cb0..6631bda 100644 --- a/arch/arm64/configs/defconfig +++ b/arch/arm64/configs/defconfig @@ -394,6 +394,7 @@ CO

Re: [PATCH 0/8] firmware: arm_scpi: add support for legacy SCPI protocol

2016-11-03 Thread Neil Armstrong
On 11/03/2016 05:52 AM, Sudeep Holla wrote: > Hi, > > This is minor rework of the series[1] from Neil Armstrong's to support > legacy SCPI protocol to make DT bindings more generic and move out all > the platform specific bindings out of the generic binding document. > > -- > Regards, > Sudeep >

Re: [PATCH RFC 0/4] Fix PDF build errors

2016-11-03 Thread Jani Nikula
On Wed, 02 Nov 2016, Markus Heiser wrote: > Am 02.11.2016 um 17:47 schrieb Mauro Carvalho Chehab : >> I'm staring to think that we should just redefine the default for :: >> to be "none", and use the "C" handling **only** when explicitly >> requested. >> >> I remember that Jon did such suggestion

[PATCH 1/2] ARM64: dts: meson-gxbb: Add generic legacy scpi compatible

2016-11-03 Thread Neil Armstrong
Signed-off-by: Neil Armstrong --- arch/arm64/boot/dts/amlogic/meson-gxbb.dtsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm64/boot/dts/amlogic/meson-gxbb.dtsi b/arch/arm64/boot/dts/amlogic/meson-gxbb.dtsi index 2d69a3b..5394657 100644 --- a/arch/arm64/boot/dts/amlo

Re: [RFC PATCH] get_maintainer: Look for arbitrary letter prefixes in sections

2016-11-03 Thread Joe Perches
On Thu, 2016-11-03 at 10:07 +0100, Paul Bolle wrote: > On Mon, 2016-10-24 at 11:05 -0700, Joe Perches wrote: > > Jani Nikula proposes patches to add a few new letter prefixes > > for "B:" bug reporting and "C:" maintainer chatting to the > > various sections of MAINTAINERS. > > > > Add a generic m

Re: [RFC PATCH] get_maintainer: Look for arbitrary letter prefixes in sections

2016-11-03 Thread Paul Bolle
On Thu, 2016-11-03 at 02:16 -0700, Joe Perches wrote: > Yes, it's been reported and should be fixed in -mm. > The fix should show up in -next in a little bit. Great. > For now, try: > $ sed -i -e 's/\xA0/ /g' scripts/get_maintainer.pl Thanks, Paul Bolle

Re: [PATCH RESEND] media: omap3isp: Use dma_request_chan() to requesting DMA channel

2016-11-03 Thread Peter Ujfalusi
On 11/02/2016 11:19 PM, Laurent Pinchart wrote: > Hi Peter, > > Thank you for the patch. > > On Wednesday 02 Nov 2016 14:39:59 Peter Ujfalusi wrote: >> With the new dma_request_chan() the client driver does not need to look for >> the DMA resource and it does not need to pass filter_fn anymore.

Talent Scout

2016-11-03 Thread Camilia Brunnet
Dear Concern, I am Talent Scout For BLUE SKY FILM STUDIO, Present Blue sky Studio a Film Corporation Located in the United State, is Soliciting for the Right to use Your Photo/Face and Personality as One of the Semi -Major Role/ Character in our Upcoming ANIMATED Stereoscope 3D Movie-The Story of

[PATCH] mm: cma: improve utilization of cma pages

2016-11-03 Thread Chen Feng
Currently, cma pages can only be use by fallback of movable. When there is no movable pages, the pcp pages will also be refilled. So use the cma type before movable pages, and let cma-type fallback to movable type. I also have seen Joonsoo Kim on cma-zone. Makes cma pages a zone. It's a good idea

Re: [PATCH v2 04/10] pwm: imx: Move PWMv2 software reset code to a separate function

2016-11-03 Thread Philipp Zabel
Hi Lukasz, Am Donnerstag, den 27.10.2016, 08:29 +0200 schrieb Lukasz Majewski: > The software reset code has been extracted from imx_pwm_config_v2 function > and moved to new one - imx_pwm_sw_reset(). > > This change reduces the overall size of imx_pwm_config_v2() and prepares > it for atomic PWM

[PATCH] [media] dvb-usb: remove another redundant #include

2016-11-03 Thread Paul Bolle
Kernel source files need not include explicitly because the top Makefile forces to include it with: -include $(srctree)/include/linux/kconfig.h Remove another reduntdant include, that managed to sneak by commit 97139d4a6f26 ("treewide: remove redundant #include "). Signed-off-by: Paul Bolle

[PATCH] block: drop q argument from bsg_validate_sgv4_hdr

2016-11-03 Thread Johannes Thumshirn
bsg_validate_sgv4_hdr() doesn't care about the request_queue, so drop it from it's arguments. Signed-off-by: Johannes Thumshirn --- block/bsg.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/block/bsg.c b/block/bsg.c index d214e92..8a05a40 100644 --- a/block/bsg.c +++ b/

[PATCH] iio: common: hid-sensors: change the precision of scale values

2016-11-03 Thread Ooi, Joyce
Extension of the scale precision is needed as there are some scale values that exceed 6 decimal points precision. For example, the scale for gyroscope from degrees/second to radians/second is 0.017453. If the unit exponent for gyroscope is -5, it will be 0.017453 -> exp: -5 -> 0.0017453 Howeve

[PATCH] x86/boot: Remove always empty $(USERINCLUDE)

2016-11-03 Thread Paul Bolle
Commmit b6eea87fc685 ("x86, boot: Explicitly include autoconf.h for hostprogs") correctly noted [...] that because $(USERINCLUDE) isn't exported by the top-level Makefile it's actually empty in arch/x86/boot/Makefile. So let's do the sane thing and remove the reference to that make variabl

Re: [PATCH 1/3] powerpc: Emulation support for load/store instructions on LE

2016-11-03 Thread Michael Ellerman
Ravi Bangoria writes: > On Thursday 03 November 2016 02:34 AM, Anton Blanchard wrote: >> Hi Ravi, >> >>> emulate_step() uses a number of underlying kernel functions that were >>> initially not enabled for LE. This has been rectified since. So, fix >>> emulate_step() for LE for the corresponding i

Re: [f2fs-dev] [PATCH 2/3] f2fs: use __set_page_dirty_nobuffers directly

2016-11-03 Thread Chao Yu
On 2016/11/3 1:23, Jaegeuk Kim wrote: > On Wed, Nov 02, 2016 at 03:34:32PM +0800, Chao Yu wrote: >> Hi Jaegeuk, >> >> On 2016/10/21 10:28, Jaegeuk Kim wrote: >>> This patch replaces the copied code with original generic function. >> >> Will we plan to do further enhance inside f2fs_set_page_dirty_n

Re: [PATCH] x86/boot: Remove always empty $(USERINCLUDE)

2016-11-03 Thread Paul Bolle
Apparently Matt left Intel. Let's forward this to a recently used address. On Thu, 2016-11-03 at 10:47 +0100, Paul Bolle wrote: > Commmit b6eea87fc685 ("x86, boot: Explicitly include autoconf.h for > hostprogs") correctly noted > [...] that because $(USERINCLUDE) isn't exported by > the to

Re: [PATCH 0/5] drm/sun4i: Handle TV overscan

2016-11-03 Thread Russell King - ARM Linux
On Thu, Nov 03, 2016 at 10:01:06AM +0100, Maxime Ripard wrote: > Hi Russell, > > On Mon, Oct 31, 2016 at 08:42:34AM +, Russell King - ARM Linux wrote: > > On Tue, Oct 18, 2016 at 12:03:49PM +0200, Maxime Ripard wrote: > > > The first one is that this overscanning should be reported by the > >

Re: [PATCH] cxl: Fix error handling

2016-11-03 Thread Michael Ellerman
Jim Davis writes: > On Wed, Nov 2, 2016 at 4:12 AM, Michael Ellerman wrote: >> Jim Davis writes: >> >>> On Sun, Oct 30, 2016 at 10:37 PM, Michael Ellerman >>> wrote: More here: https://github.com/linuxppc/linux/wiki/Building-powerpc-kernels >>> >>> Cool; the little-endian build

Re: [PATCH] mm: cma: improve utilization of cma pages

2016-11-03 Thread kbuild test robot
-pages/20161103-173624 base: git://git.cmpxchg.org/linux-mmotm.git master config: x86_64-randconfig-x011-201644 (attached as .config) compiler: gcc-6 (Debian 6.2.0-3) 6.2.0 20160901 reproduce: # save the attached .config to linux build tree make ARCH=x86_64 All errors (new ones

Re: [PATCH] ktest.pl: fix english

2016-11-03 Thread Pavel Machek
On Tue 2016-10-11 05:59:58, Steven Rostedt wrote: > On Tue, 11 Oct 2016 09:30:03 +0200 > Pavel Machek wrote: > > > Ajdust spelling to more common "mandatory". Variant "mandidory" is > > certainly wrong. > > It was to see who could find Dory. > > This should go through the trivial tree. Thanks!

[PATCH] iio: magnetometer: separate the values of attributes based on their usage type for HID compass sensor

2016-11-03 Thread Ooi, Joyce
There are 2 usage types (Magnetic Flux and Heading data field) for HID compass sensor, thus the values of offset, scale, and sensitivity should be separated according to their respective usage type. The changes made are as below: 1. Hysteresis: A struct hid_sensor_common rot_attributes is created i

[PATCH] drm/amd/powerplay: return false instead of -EINVAL

2016-11-03 Thread Andrew Shadura
Returning -EINVAL from a bool-returning function phm_check_smc_update_required_for_display_configuration has an unexpected effect of returning true, which is probably not what was intended. Replace -EINVAL by false. The only place this function is called from is psm_adjust_power_state_dynamic in d

Re: [PATCH V3 1/6] clk: tegra: add TEGRA20_CLK_NOR to init table

2016-11-03 Thread Jon Hunter
Hi Mirza, On 27/10/16 15:01, Mirza Krak wrote: From: Mirza Krak Add TEGRA20_CLK_NOR to init table and set default rate to 92 MHz which is max rate. The maximum rate value of 92 MHz is pulled from the downstream L4T kernel. Thanks for adding this. I assume that this is from an L4T r16 releas

Re: [PATCH v3 5/6] Documentation: bindings: add documentation for ir-spi device driver

2016-11-03 Thread Andi Shyti
Hi Jacek, > Only DT bindings of LED class drivers should be placed in > Documentation/devicetree/bindings/leds. Please move it to the > media bindings. that's where I placed it first, but Rob asked me to put it in the LED directory and Cc the LED mailining list. That's the discussion of the vers

Re: [PATCH v4 4/4] MIPS: Deprecate VPE Loader

2016-11-03 Thread Sergei Shtylyov
Hello. On 11/2/2016 7:11 PM, Matt Redfearn wrote: The MIPS remote processor driver (CONFIG_MIPS_REMOTEPROC) provides a more standard mechanism for using one or more VPs as coprocessors running separate firmware. Here we deprecate this mechanism before it is removed. Signed-off-by: Matt Redfea

Re: [PATCH V3 4/6] ARM: tegra: Add Tegra30 GMI support

2016-11-03 Thread Jon Hunter
On 27/10/16 15:01, Mirza Krak wrote: From: Mirza Krak Add a device node for the GMI controller found on Tegra30. Signed-off-by: Mirza Krak Tested-by: Marcel Ziswiler Tested-on: Colibri T20/T30 on EvalBoard V3.x and GMI-Memory Board --- Changes in v2: - added address-cells, size-cells and r

[PATCH v7 2/3] ARM: sunxi_defconfig: Add CONFIG_THERMAL_OF

2016-11-03 Thread Quentin Schulz
This enables CONFIG_THERMAL_OF by default for sunxi_defconfig. Signed-off-by: Quentin Schulz --- added in v7 arch/arm/configs/sunxi_defconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/configs/sunxi_defconfig b/arch/arm/configs/sunxi_defconfig index 714da33..8aaeae3 100644 --

[PATCH v7 3/3] iio: adc: add support for Allwinner SoCs ADC

2016-11-03 Thread Quentin Schulz
The Allwinner SoCs all have an ADC that can also act as a touchscreen controller and a thermal sensor. This patch adds the ADC driver which is based on the MFD for the same SoCs ADC. This also registers the thermal adc channel in the iio map array so iio_hwmon could use it without modifying the De

[PATCH v7 1/3] input: touchscreen: TOUCHSCREEN_SUN4I depends on !SUN4I_GPADC

2016-11-03 Thread Quentin Schulz
SUN4I_GPADC and TOUCHSCREEN_SUN4I are incompatible (both are drivers for Allwinner SoCs' ADC). This makes sure TOUCHSCREEN_SUN4I isn't enabled while SUN4I_GPADC is enabled. Signed-off-by: Quentin Schulz --- added in v7 drivers/input/touchscreen/Kconfig | 1 + 1 file changed, 1 insertion(+) di

  1   2   3   4   5   6   7   8   >