[PATCH 2/6] ACPICA: acpiexec: Add option to specify an object initialization file.

2014-11-26 Thread Lv Zheng
From: Bob Moore robert.mo...@intel.com This option (-fi) allows the specification of a file that is used to specify initialization values for individual namespace objects. Each line in the file is in the format: ACPI pathname Integer Value This patch only affects acpiexec which is not in the

[PATCH 6/6] ACPICA: Update version to 20141107.

2014-11-26 Thread Lv Zheng
From: Bob Moore robert.mo...@intel.com Version 20141107. Signed-off-by: Bob Moore robert.mo...@intel.com Signed-off-by: Lv Zheng lv.zh...@intel.com --- include/acpi/acpixf.h |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/acpi/acpixf.h b/include/acpi/acpixf.h

[PATCH 25/25] phy: add support for USB cluster on the Armada 375 SoC

2014-11-26 Thread Kishon Vijay Abraham I
From: Gregory CLEMENT gregory.clem...@free-electrons.com The Armada 375 SoC comes with an USB2 host and device controller and an USB3 controller. The USB cluster control register allows to manage common features of both USB controllers. This commit adds a driver integrated in the generic PHY

[PATCH 19/25] phy: exynos5-usbdrd: Add pipe-clk, utmi-clk and itp-clk support

2014-11-26 Thread Kishon Vijay Abraham I
From: Vivek Gautam gautam.vi...@samsung.com Exynos7 SoC has now separate gate control for 125MHz pipe3 phy clock, as well as 60MHz utmi phy clock. Additionally, separate gate control is available for the clock used for ITP (Isochronous Transfer Packet) generation. So get the same and control in

[PATCH 21/25] phy: exynos7-usbdrd: Update dependency for ARCH_EXYNOS

2014-11-26 Thread Kishon Vijay Abraham I
From: Vivek Gautam gautam.vi...@samsung.com This PHY controller is also present on Exynos7 platform in arch-exynos family. So PHY_EXYNOS5_USBDRD should now depend on ARCH_EXYNOS. Signed-off-by: Vivek Gautam gautam.vi...@samsung.com Signed-off-by: Kishon Vijay Abraham I kis...@ti.com ---

[PATCH 5/6] ACPICA: Disassembler: Emit correct string for 0 stop bits.

2014-11-26 Thread Lv Zheng
From: Bob Moore robert.mo...@intel.com Was stop_bits_none, corrected to stop_bits_zero. David E. Box. Signed-off-by: David E. Box david.e@linux.intel.com Signed-off-by: Bob Moore robert.mo...@intel.com Signed-off-by: Lv Zheng lv.zh...@intel.com --- drivers/acpi/acpica/utresrc.c |2 +- 1

[PATCH 24/25] Phy: DT binding documentation for the Armada 375 USB cluster binding

2014-11-26 Thread Kishon Vijay Abraham I
From: Gregory CLEMENT gregory.clem...@free-electrons.com Armada 375 comes with an USB2 host and device controller and an USB3 controller. The USB cluster control register allows to manage common features of both USB controllers. This commit adds the Device Tree binding documentation for this

[PATCH 22/25] phy: Use PTR_ERR_OR_ZERO to fix warning raised by coccinelle

2014-11-26 Thread Kishon Vijay Abraham I
From: Gregory CLEMENT gregory.clem...@free-electrons.com Use PTR_ERR_OR_ZERO rather than if(IS_ERR(...)) + PTR_ERR Generated by: coccinelle/api/ptr_ret.cocci Signed-off-by: Gregory CLEMENT gregory.clem...@free-electrons.com Acked-by: Jason Cooper ja...@lakedaemon.net Signed-off-by: Kishon Vijay

[PATCH 23/25] Phy: DT binding documentation for Marvell MVEBU SATA phy.

2014-11-26 Thread Kishon Vijay Abraham I
From: Andrew Lunn and...@lunn.ch Describe the binding for the Marvell MVEBU SATA phy. This driver can be used at least with Kirkwood, Dove and maybe others. Additionally, update the SATA binding with the properties to link to the phy nodes. Signed-off-by: Andrew Lunn and...@lunn.ch Acked-by:

linux-next: build warning after merge of the irqchip tree

2014-11-26 Thread Stephen Rothwell
Hi Jason, After merging the irqchip tree, today's linux-next build (arm multi_v7_defconfig) produced this warning: include/linux/irqchip/arm-gic.h:109:53: warning: its scope is only this definition or declaration, which is probably not what you want In file included from

[PATCH 20/25] phy: exynos5-usbdrd: Add facility for VBUS-BOOST-5V supply

2014-11-26 Thread Kishon Vijay Abraham I
From: Vivek Gautam gautam.vi...@samsung.com Some Exynos boards have a separate regulator controlling a Boost 5V supply which goes as input for VBUS regulator. So adding a control for the same in driver, to enable vbus supply on the port. Signed-off-by: Vivek Gautam gautam.vi...@samsung.com

[PATCH 16/25] phy: twl4030: use the new lookup method

2014-11-26 Thread Kishon Vijay Abraham I
From: Heikki Krogerus heikki.kroge...@linux.intel.com Creates the lookup separately. Hard coding the consumer as it can't be anything else except musb. Signed-off-by: Heikki Krogerus heikki.kroge...@linux.intel.com Signed-off-by: Kishon Vijay Abraham I kis...@ti.com ---

[PATCH 18/25] usb: dwc3: host: convey the PHYs to xhci

2014-11-26 Thread Kishon Vijay Abraham I
From: Heikki Krogerus heikki.kroge...@linux.intel.com On some platforms a PHY may need to be handled also in the host controller driver. Exynos5420 SoC requires some PHY tuning based on the USB speed. This patch delivers dwc3's PHYs to the xhci platform device when it's created. Signed-off-by:

[PATCH 14/25] phy: safer to_phy() macro

2014-11-26 Thread Kishon Vijay Abraham I
From: Heikki Krogerus heikki.kroge...@linux.intel.com This makes to_phy() macro work with other variable names besides dev. Signed-off-by: Heikki Krogerus heikki.kroge...@linux.intel.com Tested-by: Vivek Gautam gautam.vi...@samsung.com Acked-by: Felipe Balbi ba...@ti.com Signed-off-by: Kishon

[PATCH 17/25] phy: remove the old lookup method

2014-11-26 Thread Kishon Vijay Abraham I
From: Heikki Krogerus heikki.kroge...@linux.intel.com The users of the old method are now converted to the new one. Signed-off-by: Heikki Krogerus heikki.kroge...@linux.intel.com [ kis...@ti.com : made phy-berlin-usb.c and phy-miphy28lp.c to use the updated devm_phy_create

[PATCH 15/25] phy: improved lookup method

2014-11-26 Thread Kishon Vijay Abraham I
From: Heikki Krogerus heikki.kroge...@linux.intel.com Separates registration of the phy and the lookup. The method is copied from clkdev.c, Signed-off-by: Heikki Krogerus heikki.kroge...@linux.intel.com Signed-off-by: Kishon Vijay Abraham I kis...@ti.com --- Documentation/phy.txt | 60

[PATCH 12/25] phy: add the Berlin USB PHY driver

2014-11-26 Thread Kishon Vijay Abraham I
From: Antoine Tenart antoine.ten...@free-electrons.com Add the driver driving the Marvell Berlin USB PHY. This allows to initialize the PHY and to use it from the USB driver later. Signed-off-by: Antoine Tenart antoine.ten...@free-electrons.com Signed-off-by: Kishon Vijay Abraham I kis...@ti.com

[PATCH 11/25] phy: berlin-sata: Document BG2 compatible

2014-11-26 Thread Kishon Vijay Abraham I
From: Sebastian Hesselbarth sebastian.hesselba...@gmail.com Berlin BG2 SATA PHY is slightly different from currently supported BG2Q SATA PHY. Document the new compatible for BG2's PHY. Acked-by: Antoine Ténart antoine.ten...@free-electrons.com Signed-off-by: Sebastian Hesselbarth

[PATCH 13/25] Documentation: bindings: add doc for the Berlin USB PHY

2014-11-26 Thread Kishon Vijay Abraham I
From: Antoine Tenart antoine.ten...@free-electrons.com Document the bindings of the Marvell Berlin USB PHY driver. Signed-off-by: Antoine Tenart antoine.ten...@free-electrons.com Signed-off-by: Kishon Vijay Abraham I kis...@ti.com --- .../devicetree/bindings/phy/berlin-usb-phy.txt | 16

[PATCH 07/25] phy: phy-core: use the np present in of_phandle_args to get the PHY

2014-11-26 Thread Kishon Vijay Abraham I
Instead of using the node pointer of the PHY provider and then scanning its child nodes to get a reference to the PHY, directly use the node pointer present in of_phandle_args to get a reference to the PHY. Signed-off-by: Kishon Vijay Abraham I kis...@ti.com --- drivers/phy/phy-core.c | 10

[PATCH 09/25] phy: berlin-sata: Move PHY_BASE into private data struct

2014-11-26 Thread Kishon Vijay Abraham I
From: Sebastian Hesselbarth sebastian.hesselba...@gmail.com Currently, Berlin SATA PHY driver assumes PHY_BASE address being constant. While this PHY_BASE is correct for BG2Q, older BG2 PHY_BASE is different. Prepare the driver for BG2 support by moving the phy_base into private driver data.

[PATCH 4/6] ACPICA: Disassembler: Update for C-style expressions.

2014-11-26 Thread Lv Zheng
From: Bob Moore robert.mo...@intel.com Add extra set of parens for assignments within an expression. This patch only affects compiler support which is not in the Linux kernel. Signed-off-by: Bob Moore robert.mo...@intel.com Signed-off-by: Lv Zheng lv.zh...@intel.com ---

[PATCH 08/25] phy: sun4i: add support for USB phy0

2014-11-26 Thread Kishon Vijay Abraham I
From: Roman Byshko rbys...@gmail.com The driver for sun4i USB phys currently supports only phy1 and phy2 which are used for USB host controllers. This patch adds support for USB phy0, which is used by the musb hdrc USB controller. Signed-off-by: Roman Byshko rbys...@gmail.com Acked-by: Maxime

[PATCH 06/25] phy: miphy28lp: Tune tx impedance across Soc cuts

2014-11-26 Thread Kishon Vijay Abraham I
From: Gabriel FERNANDEZ gabriel.fernan...@st.com This patch to compensate tx impedance (Sata, PCIe) depending on Soc cuts the kernel is built for. Signed-off-by: Giuseppe Condorelli giuseppe.condore...@st.com Signed-off-by: Gabriel Fernandez gabriel.fernan...@linaro.org Signed-off-by: Kishon

[PATCH 05/25] phy: miphy28lp: Add SSC support for PCIE

2014-11-26 Thread Kishon Vijay Abraham I
From: Gabriel FERNANDEZ gabriel.fernan...@st.com SSC is the technique of modulating the operating frequency of a signal slightly to spread its radiated emissions over a range of frequencies. This reduction in the maximum emission for a given frequency helps meet radiated emission requirements.

[PATCH 3/6] ACPICA: Disassembler: Add support for C-style operators and expressions.

2014-11-26 Thread Lv Zheng
From: Bob Moore robert.mo...@intel.com Now emit ASL+ code which includes C-style operators. Optionally, legacy text ASL operators can still be emitted. This patch only affects compiler/disassembler support which is not in the Linux kernel. Signed-off-by: Bob Moore robert.mo...@intel.com

[PATCH 04/25] phy: miphy28lp: Add SSC support for SATA

2014-11-26 Thread Kishon Vijay Abraham I
From: Gabriel FERNANDEZ gabriel.fernan...@st.com This patch to tune on/off the ssc on miphy sata setup. User can now enable ssc via dt blob, it is useful to reduce effects of EMI. Signed-off-by: Giuseppe Condorelli giuseppe.condore...@st.com Signed-off-by: Gabriel Fernandez

[PATCH 03/25] phy: miphy28lp: Provide support for the MiPHY28lp Generic PHY

2014-11-26 Thread Kishon Vijay Abraham I
From: Gabriel FERNANDEZ gabriel.fernan...@st.com The MiPHY28lp is a Generic PHY which can serve various SATA or PCIe or USB3 devices. Signed-off-by: alexandre torgue alexandre.tor...@st.com Signed-off-by: Giuseppe Cavallaro peppe.cavall...@st.com Signed-off-by: Gabriel Fernandez

Re: [RFC PATCH] mm/thp: Always allocate transparent hugepages on local node

2014-11-26 Thread Aneesh Kumar K.V
David Rientjes rient...@google.com writes: On Mon, 24 Nov 2014, Kirill A. Shutemov wrote: This make sure that we try to allocate hugepages from local node. If we can't we fallback to small page allocation based on mempolicy. This is based on the observation that allocating pages on

[PATCH 1/6] ACPICA: iASL: Add support for to_PLD macro.

2014-11-26 Thread Lv Zheng
From: Bob Moore robert.mo...@intel.com This macro is intended to simplify the constuction of _PLD buffers. NOTE: Prototype only, subject to change before this macro is added to the ACPI specification. David E. Box. Signed-off-by: David E. Box david.e@linux.intel.com Signed-off-by: Bob Moore

[PATCH 02/25] phy: miphy28lp: Add Device Tree bindings for the MiPHY28lp

2014-11-26 Thread Kishon Vijay Abraham I
From: Gabriel FERNANDEZ gabriel.fernan...@st.com The MiPHY28lp is a Generic PHY which can serve various SATA or PCIe or USB3 devices. Signed-off-by: alexandre torgue alexandre.tor...@st.com Signed-off-by: Giuseppe Cavallaro peppe.cavall...@st.com Signed-off-by: Gabriel Fernandez

[GIT PULL 00/25] phy: for 3.19

2014-11-26 Thread Kishon Vijay Abraham I
Hi Greg, Please find the pull request for 3.19 merge window. This contains improvements in phy core dealing with non-dt boot. It also adds 3 new phy drivers armada375-usb2, berlin-usb and miphy28lp. There is a patch that touches drivers/pinctrl since one of the PHY drivers is present there and

[PATCH net-next V3] tun/macvtap: use consume_skb() instead of kfree_skb() when needed

2014-11-26 Thread Jason Wang
To be more friendly with drop monitor, we should only call kfree_skb() when the packets were dropped and use consume_skb() in other cases. Cc: Eric Dumazet eric.duma...@gmail.com Signed-off-by: Jason Wang jasow...@redhat.com --- Changes from V2: - use unlikely() when necessary Changes from V1: -

Re: [PATCH] xen: privcmd: schedule() after private hypercall when non CONFIG_PREEMPT

2014-11-26 Thread Juergen Gross
On 11/26/2014 11:26 PM, Luis R. Rodriguez wrote: From: Luis R. Rodriguez mcg...@suse.com Some folks had reported that some xen hypercalls take a long time to complete when issued from the userspace private ioctl mechanism, this can happen for instance with some hypercalls that have many

[PATCH net-next] vhost: remove unnecessary forward declarations in vhost.h

2014-11-26 Thread Jason Wang
Signed-off-by: Jason Wang jasow...@redhat.com --- drivers/vhost/vhost.h | 4 1 file changed, 4 deletions(-) diff --git a/drivers/vhost/vhost.h b/drivers/vhost/vhost.h index 3eda654..7d039ef 100644 --- a/drivers/vhost/vhost.h +++ b/drivers/vhost/vhost.h @@ -12,8 +12,6 @@ #include

Re: [PATCH v9 2/6] arm64: ptrace: allow tracer to skip a system call

2014-11-26 Thread AKASHI Takahiro
On 11/26/2014 10:02 PM, Will Deacon wrote: On Wed, Nov 26, 2014 at 04:49:47AM +, AKASHI Takahiro wrote: If tracer modifies a syscall number to -1, this traced system call should be skipped with a return value specified in x0. This patch implements this semantics. Please note: * syscall

Re: [PATCH] Documentation: memory-barriers: Fix typo in the first example

2014-11-26 Thread Srikanth Thokala
Hi, Kindly review the patch. Thanks Srikanth On Tue, Nov 18, 2014 at 10:09 AM, Srikanth Thokala sriku.li...@gmail.com wrote: In the first example, the loads into 'x' and 'y' on CPU 2 doesn't match the sequence of events described below it. To match the sequence of events, the values of 'A'

[PATCH] Fix -Wmaybe-uninitialized warning seen with make menuconfig

2014-11-26 Thread Anish Bhatt
Fixes the following : scripts/kconfig/menu.c: In function 'get_symbol_str': scripts/kconfig/menu.c:590:18: warning: 'jump' may be used uninitialized in this function [-Wmaybe-uninitialized] jump-offset = strlen(r-s); ^ scripts/kconfig/menu.c:551:19: note: 'jump' was

Re: [PATCH v4 2/5] x86, traps: Track entry into and exit from IST context

2014-11-26 Thread Lai Jiangshan
Signed-off-by: Paul E. McKenney paul...@linux.vnet.ibm.com Reviewed-by: Lai Jiangshan la...@cn.fujitsu.com diff --git a/kernel/rcu/tree.c b/kernel/rcu/tree.c index 8749f43f3f05..fc0236992655 100644 --- a/kernel/rcu/tree.c +++ b/kernel/rcu/tree.c @@ -759,39 +759,71 @@ void

Re: [PATCH 03/25] phy: miphy28lp: Provide support for the MiPHY28lp Generic PHY

2014-11-26 Thread sanjeev sharma
On Thu, Nov 27, 2014 at 11:55 AM, Kishon Vijay Abraham I kis...@ti.com wrote: From: Gabriel FERNANDEZ gabriel.fernan...@st.com The MiPHY28lp is a Generic PHY which can serve various SATA or PCIe or USB3 devices. Signed-off-by: alexandre torgue alexandre.tor...@st.com Signed-off-by: Giuseppe

Re: [PATCH] fat: Fix oops on corrupted vfat fs

2014-11-26 Thread OGAWA Hirofumi
Andrew Morton a...@linux-foundation.org writes: On Thu, 27 Nov 2014 00:31:28 +0900 OGAWA Hirofumi hirof...@mail.parknet.co.jp wrote: a) don't bother with -d_time for positives - we only check it for negatives anyway. b) make sure to set it at unlink and rmdir time - at *that* point

[GIT PULL] core drm support for Rockchip SoCs v14

2014-11-26 Thread Mark yao
Hi Dave this pull request is for rockchip drm v14, based on Joerg's iommu arm/rockchip branch. The following changes since commit 656d7077d8ffd1c2492d4a0a354367ab2e545059: dt-bindings: iommu: Add documentation for rockchip iommu (2014-11-03 17:29:09 +0100) are available in the git

Re: [PATCH v14 0/3] Add drm driver for Rockchip Socs

2014-11-26 Thread Mark yao
On 2014年11月27日 10:12, Dave Airlie wrote: Hi Dave Do you mean that I need send you a branch, based on drm-next, merge with iommu tree and rockchip drm? Yes, grab drm-next, git pull the arm/rockchip branch from Joerg's tree, put rockchip drm patches on top, send me pull request. I'll

Re: [RFC 0/2] Reenable might_sleep() checks for might_fault() when atomic

2014-11-26 Thread Heiko Carstens
On Wed, Nov 26, 2014 at 07:04:47PM +0200, Michael S. Tsirkin wrote: On Wed, Nov 26, 2014 at 05:51:08PM +0100, Christian Borntraeger wrote: But this one was giving users in field false positives. So lets try to fix those, ok? If we cant, then tough luck. Sure. I think the simplest way

Re: [PATCH v2] hv: hv_fcopy: drop the obsolete message on transfer failure

2014-11-26 Thread Jason Wang
- Original Message - In the case the user-space daemon crashes, hangs or is killed, we need to down the semaphore, otherwise, after the daemon starts next time, the obsolete data in fcopy_transaction.message or fcopy_transaction.fcopy_msg will be used immediately. Reviewed-by:

RE: [PATCH v5] arm64: dts: exynos7: add support for cpuidle core power down

2014-11-26 Thread Kukjin Kim
Chander Kashyap wrote: Exynos7 supports multiple idle states. Core power down is one such idle state, where cores can be powered off independently. This patch adds support for core power down idle state. Entry latency for core power down idle state is calculated as follows: 1. Time

Re: [PATCH v2] mailbox: add tx_prepare client callback

2014-11-26 Thread Jassi Brar
On 12 November 2014 at 00:03, Sudeep Holla sudeep.ho...@arm.com wrote: If the mailbox controller expects the payload is in place before initiating the transmit, then it's impossible to reuse the list maintained by core mailbox code currently. Maintaining another list for sending the message in

Re: [PATCH v4] mailbox/omap: adapt to the new mailbox framework

2014-11-26 Thread Jassi Brar
On 4 November 2014 at 04:35, Suman Anna s-a...@ti.com wrote: The OMAP mailbox driver and its existing clients (remoteproc for OMAP4+) are adapted to use the generic mailbox framework. The main changes for the adaptation are: - The tasklet used for Tx is replaced with the state machine from

[PATCH 07/19] clk: samsung: exynos5433: Add clocks for CMU_G2D domain

2014-11-26 Thread Chanwoo Choi
This patch adds ths mux/divider/gate clocksof CMU_G2D domain which includes G2D/MDMA IPs. The CMU_G2D must need the clocks related to G2D by providing CMU_TOP domain. So, this patch add several clocks for G2D from CMU_TOP domain. Cc: Sylwester Nawrocki s.nawro...@samsung.com Cc: Tomasz Figa

[PATCH 10/19] clk: samsung: exynos5433: Add clocks for CMU_AUD domain

2014-11-26 Thread Chanwoo Choi
This patch adds the mux/divider/gate clocks for CMU_AUD domain which includes the clocks of Cortex-A6/Bus/Audio clocks. Cc: Sylwester Nawrocki s.nawro...@samsung.com Cc: Tomasz Figa tomasz.f...@gmail.com Signed-off-by: Chanwoo Choi cw00.c...@samsung.com Acked-by: Inki Dae inki@samsung.com

[PATCH 15/19] arm64: exynos5433: Enable ARMv8-based Exynos5433 SoC support

2014-11-26 Thread Chanwoo Choi
This patch adds the necessary Kconfig entries to enable support for the ARMv8 based Exynos5433 SoC. Cc: Catalin Marinas catalin.mari...@arm.com Cc: Will Deacon will.dea...@arm.com Signed-off-by: Chanwoo Choi cw00.c...@samsung.com Acked-by: Geunsik Lim geunsik@samsung.com Acked-by: Inki Dae

[PATCH 13/19] clk: samsung: exynos5433: Add clocks for CMU_G3D domain

2014-11-26 Thread Chanwoo Choi
This patch adds the mux/divider/gate clocks for CMU_G3D domain which contains the clocks for GPU(3D Graphics Engine). Cc: Sylwester Nawrocki s.nawro...@samsung.com Cc: Tomasz Figa tomasz.f...@gmail.com Signed-off-by: Chanwoo Choi cw00.c...@samsung.com Acked-by: Inki Dae inki@samsung.com

[PATCH 19/19] serial: samsung: Add the support for Exynos5433 SoC

2014-11-26 Thread Chanwoo Choi
This patch adds new s3c24xx_serial_drv_data structure for Exynos5433 SoC because Exynos5433 has different fifo size from existing Exynos4 SoC. Cc: Greg Kroah-Hartman gre...@linuxfoundation.org Cc: Jiri Slaby jsl...@suse.cz Cc: linux-ser...@vger.kernel.org Signed-off-by: Chanwoo Choi

[PATCH 17/19] arm64: dts: exynos: Add MSHC dt node for Exynos5433

2014-11-26 Thread Chanwoo Choi
From: Jaehoon Chung jh80.ch...@samsung.com This patch adds MSHC (Mobile Storage Host Controller) dt node for Exynos5433 SoC. MSHC is an interface between the system the SD/MMC card. Cc: Kukjin Kim kgene@samsung.com Cc: Mark Rutland mark.rutl...@arm.com Cc: Arnd Bergmann a...@arndb.de Cc:

[PATCH 12/19] clk: samsung: exynos5433: Add missing clocks for CMU_FSYS domain

2014-11-26 Thread Chanwoo Choi
This patch adds the mux/divider/gate clocks for CMU_FSYS domain which contains the clocks of USB/UFS/SDMMC/TSI/PDMA IPs. Cc: Sylwester Nawrocki s.nawro...@samsung.com Cc: Tomasz Figa tomasz.f...@gmail.com Signed-off-by: Chanwoo Choi cw00.c...@samsung.com Acked-by: Inki Dae inki@samsung.com

[PATCH 02/19] clk: samsung: Add binding documentation for Exynos5433 clock controller

2014-11-26 Thread Chanwoo Choi
This patch add binding documentation for Exynos5433 clock controller. Exynos5433 has various clock domains So, this documentation explains the detailed clock domains ans usage guide. Cc: Sylwester Nawrocki s.nawro...@samsung.com Cc: Tomasz Figa tomasz.f...@gmail.com Signed-off-by: Chanwoo Choi

[PATCH 00/19] arm64: Add the support for new 64-bit Exynos5433 SoC

2014-11-26 Thread Chanwoo Choi
This patchset adds new 64-bit Exynos5433 Samsung SoC which contains quad Cortex-A57 and quad Cortex-A53. It is desigend with the 20nm low power process. This patchset include some patches such as: - Support booting of Exynos5433 - Support UART/MCT/GIC/HSI2C/SPI/PDMA/MSHC - Support the clock

[PATCH 18/19] arm64: dts: exynos: Add SPI/PDMA dt node for Exynos5433

2014-11-26 Thread Chanwoo Choi
This patch adds SPI (Serial Peripheral Interface) dt node for Exynos5433 SoC. SPI transfers serial data by using various peripherals. SPI includes 8-bit/16-bit/32-bit shift registers to transmit and receive data. PDMA is used for SPI communication. Cc: Kukjin Kim kgene@samsung.com Cc: Mark

[PATCH 14/19] clk: samsung: exynos5433: Add clocks for CMU_GSCL domain

2014-11-26 Thread Chanwoo Choi
This patch adds the divider/gate of CMU_GSCL domain which contains gscaler clocks. Cc: Sylwester Nawrocki s.nawro...@samsung.com Cc: Tomasz Figa tomasz.f...@gmail.com Signed-off-by: Chanwoo Choi cw00.c...@samsung.com Acked-by: Inki Dae inki@samsung.com Acked-by: Geunsik Lim

[PATCH 09/19] clk: samsung: exynos5433: Add clocks for CMU_DISP domain

2014-11-26 Thread Chanwoo Choi
This patch adds the the mux/divider/gate clocks for CMU_DISP domain which includes the clocks of Display IPs (DECON/HDMI/DSIM/MIXER). The CMU_DISP clocks is used to need the source clock of CMU_MIF domain so, the CMU_MIF's clocks related to CMU_DISP should be always on state. Also, CMU_DISP must

Re: linux-next: manual merge of the block tree with the ext4 tree

2014-11-26 Thread Christoph Hellwig
On Thu, Nov 27, 2014 at 02:53:47PM +1100, Stephen Rothwell wrote: Hi Jens, Today's linux-next merge of the block tree got a conflict in fs/fs-writeback.c between commit ef7fdf5e8c87 (vfs: add support for a lazytime mount option) Mergign that into a branch for linux-next must surely have

[PATCH 06/19] clk: samsung: exynos5433: Add clocks for CMU_PERIS domain

2014-11-26 Thread Chanwoo Choi
This patch adds missing gate clocks of CMU_PERIS domain which includes TMU/TZPC/SECKEY/CHIPID/TOPRTC/EFUSE IPs. The special clocks of CMU_PERIS use fin_pll source clock directly. Cc: Sylwester Nawrocki s.nawro...@samsung.com Cc: Tomasz Figa tomasz.f...@gmail.com Signed-off-by: Chanwoo Choi

[PATCH 08/19] clk: samsung: exynos5433: Add clocks for CMU_MIF domain

2014-11-26 Thread Chanwoo Choi
This patch adds the mux/divider/gate clock fo CMU_MIF domain which includes the clocks for DMC(DRAM memory controller) and CCI(Cache Coherent Interconnect). The CMU_MIF domain provides the source clocks for CMU_DISP/CMU_BUS2. Cc: Sylwester Nawrocki s.nawro...@samsung.com Cc: Tomasz Figa

[PATCH 05/19] clk: samsung: exynos5433: Add clocks for CMU_PERIC domain

2014-11-26 Thread Chanwoo Choi
This patch adds missing divider/gate clocks of CMU_PERIC domain which includes I2S/PCM/SPDIF/PWM/SLIMBUS IPs. The SPI/I2S may use external input clock which has 'ioclk_*' prefix. Cc: Sylwester Nawrocki s.nawro...@samsung.com Cc: Tomasz Figa tomasz.f...@gmail.com Signed-off-by: Chanwoo Choi

Re: [RFC 0/2] Reenable might_sleep() checks for might_fault() when atomic

2014-11-26 Thread Michael S. Tsirkin
On Thu, Nov 27, 2014 at 08:09:19AM +0100, Heiko Carstens wrote: On Wed, Nov 26, 2014 at 07:04:47PM +0200, Michael S. Tsirkin wrote: On Wed, Nov 26, 2014 at 05:51:08PM +0100, Christian Borntraeger wrote: But this one was giving users in field false positives. So lets try to fix

[PATCH 11/19] clk: samsung: exynos5433: Add clocks for CMU_BUS{0|1|2} domains

2014-11-26 Thread Chanwoo Choi
This patch adds the mux/divider/gate clocks for CMU_BUS{0|1|2} domains which contain global data buses clocked at up the 400MHz. These blocks transfer data between DRAM and various sub-blocks. These clock domains also contain global peripheral buses clocked at 67/111/200/222/266/333/400 MHz and

[PATCH 04/19] clk: samsung: exynos5433: Add MUX clocks of CMU_TOP domain

2014-11-26 Thread Chanwoo Choi
This patch adds the MUX (multiplexer) clocks for CMU_TOP domain of Exynos5433. CMU_TOP domain provides source clocks to other CMU domains. Cc: Sylwester Nawrocki s.nawro...@samsung.com Cc: Tomasz Figa tomasz.f...@gmail.com Signed-off-by: Chanwoo Choi cw00.c...@samsung.com Acked-by: Inki Dae

[PATCH 01/19] pinctrl: exynos: Add support for Exynos5433

2014-11-26 Thread Chanwoo Choi
This patch adds driver data for Exynos5433 SoC. Exynos5433 includes 228 multi- functional input/output port pins and 135 memory port pins. There are 41 general port groups and 2 memory port groups. Cc: Tomasz Figa tomasz.f...@gmail.com Cc: Thomas Abraham thomas.abra...@linaro.org Cc: Linus

[PATCH 16/19] arm64: dts: exynos: Add dts files for 64-bit Exynos5433 SoC

2014-11-26 Thread Chanwoo Choi
This patch adds new Exynos5433 dtsi to support 64-bit Exynos5433 SoC based on Octal core CPUs (quad Cortex-A57 and quad Cortex-A53). Cc: Kukjin Kim kgene@samsung.com Cc: Mark Rutland mark.rutl...@arm.com Cc: Arnd Bergmann a...@arndb.de Cc: Olof Johansson o...@lixom.net Cc: Catalin Marinas

[PATCH 03/19] clk: samsung: exynos5433: Add clocks using common clock framework

2014-11-26 Thread Chanwoo Choi
This patch adds the support for CMU (Clock Management Units) of Exynos5433 which is 64bit SoC and has Octa-cores. This patch supports necessary clocks for kernel boot as following: - PLL/MMC/UART/MCT/I2C/SPI Cc: Sylwester Nawrocki s.nawro...@samsung.com Cc: Tomasz Figa tomasz.f...@gmail.com

Re: [PATCH v6] ath3k: Add support of MCI 13d3:3408 bt device

2014-11-26 Thread Dmitry Tunin
Hi all, I spent already hours on sending this fucking email. The patch works for me. And if someone else is interested in working of this device feel free and do it yourself. 26.11.2014 08:05, Marcel Holtmann wrote: Hi Dmitry, Add support for bluetooth MCI WB335 (AR9565) Wi-Fi+bt module.

Re: [PATCH v3 00/13] arm64: PCI/MSI: GICv3 ITS support (stacked domain edition)

2014-11-26 Thread Jason Cooper
Marc, On Mon, Nov 24, 2014 at 02:35:07PM +, Marc Zyngier wrote: > The GICv3 architecture provides a way to implement support for > MSI/MSI-X using a specific block called the ITS (Interrupt Translation > Service). > > The ITS can be accurately described as "page tables for > interrupts". If

Re: [PATCH v8 0/4] ARM: mediatek: Add support for interrupt polarity

2014-11-26 Thread Jason Cooper
Yingjoe, On Tue, Nov 25, 2014 at 04:04:18PM +0800, Yingjoe Chen wrote: > This series is 8th version of interrupt polarity support for MediaTek SoCs. > > I rebased previous version to latest tip/irq/irqdomain, and fix issues > raised by Marc & Mark. The interrupt & irq free work fine on mt8135

Re: [PATCH] x86: defconfig: Enable CONFIG_FHANDLE

2014-11-26 Thread Richard Weinberger
Am 26.11.2014 um 01:55 schrieb Greg KH: > On Wed, Nov 26, 2014 at 01:11:01AM +0100, Richard Weinberger wrote: >> Am 26.11.2014 um 00:51 schrieb Greg KH: >>> On Wed, Nov 26, 2014 at 12:36:52AM +0100, Richard Weinberger wrote: systemd has a hard dependency on CONFIG_FHANDLE. >>> >>> It's been

Re: linux-next: build failure after merge of the omap_dss2 tree

2014-11-26 Thread Tomi Valkeinen
On 26/11/14 00:07, Stephen Rothwell wrote: >>> So we need both CONFIG_OF and CONFIG_COMMON_CLK, the attached patch >>> should fix this. >> >> Thanks, applied. > > But not pushed out, yet? Just checking that you haven't pushed on > purpose. Not yet. I'll be pushing today. Tomi

Re: [PATCH v11 0/2] irqchip: add support for GICv2m MSI controller

2014-11-26 Thread Jason Cooper
On Tue, Nov 25, 2014 at 06:47:21PM +, Marc Zyngier wrote: > GICv2m is a very simple addition to the standard GICv2 interrupt > controller, offering a way to convert writes from a device to a > "wire-like" interrupt. Basically what we need to support MSI on the > GIC. > > The v2m widget

Re: pseries/le: Fix endiannes issue in RTAS call from xmon

2014-11-26 Thread Laurent Dufour
On 26/11/2014 04:31, Michael Ellerman wrote: > OK. You say "LPAR", by which you mean "under phyp" I think. I haven't seen > this > under KVM, and it looks like KVM doesn't implement "set-indicator" so that > would explain that. Yes LPAR implies phyp, and KVM don't implement "set-indicator" so

Re: [PATCH v2 0/3] irqchip: dw-apb-ictl: IRQ_GC_MASK_CACHE_PER_TYPE and PM support

2014-11-26 Thread Jason Cooper
On Wed, Nov 12, 2014 at 02:22:51PM +0800, Jisheng Zhang wrote: > These patches try to improve dw-apb-ictl irqchip driver a bit. > > The first patch improves the performance a bit -- use the relaxed version > > The two dw-apb-ictl's irq_chip_type instances have separate mask registers, > so the

Re: [PATCH] .gitignore: Add Kdevelop4 project files

2014-11-26 Thread Boaz Harrosh
On 11/25/2014 10:22 PM, Michal Marek wrote: > On Tue, Nov 25, 2014 at 06:42:54PM +0200, Boaz Harrosh wrote: >> From: Boaz Harrosh >> >> I'm not sure what is the costume with such IDE project files. >> Most might be dot-files. It is kind of annoying for the Kdevelop4 user. >> >> So please consider

Re: [PATCH v9 05/10] sched: make scale_rt invariant with frequency

2014-11-26 Thread Vincent Guittot
On 26 November 2014 at 06:18, Wanpeng Li wrote: > Hi Vincent, > > On 11/25/14, 9:52 PM, Vincent Guittot wrote: >> >> On 25 November 2014 at 03:24, Wanpeng Li wrote: >>> >>> Hi Vincent, >>> On 11/4/14, 12:54 AM, Vincent Guittot wrote: The average running time of RT tasks is used to

Re: [PATCH v2 1/4] thermal: of: Extend of-thermal.c to provide number of trip points

2014-11-26 Thread Lukasz Majewski
Hi Eduardo, > > Lukasz, > > On Thu, Nov 20, 2014 at 05:21:25PM +0100, Lukasz Majewski wrote: > > This patch extends the of-thermal.c to provide information about > > number of available trip points. > > > > Signed-off-by: Lukasz Majewski > > --- > > Changes for v2: > > - Provide detailed

Re: [PATCH v2 2/4] thermal: of: Extend of-thermal.c to provide check if trip point is enabled

2014-11-26 Thread Lukasz Majewski
Hi Eduardo, > > Lukasz, > > Same stuff here. > > On Thu, Nov 20, 2014 at 05:21:26PM +0100, Lukasz Majewski wrote: > > This patch extends the of-thermal.c to provide check if trip point > > is enabled. > > > > Signed-off-by: Lukasz Majewski > > --- > > Changes for v2: > > - Replace int with

Re: [PATCH v3 0/5] ARM64: Add kernel probes(Kprobes) support

2014-11-26 Thread Masami Hiramatsu
(2014/11/21 0:02), Steve Capper wrote: > On Tue, Nov 18, 2014 at 01:32:50AM -0500, David Long wrote: >> From: "David A. Long" >> >> This patchset is heavily based on Sandeepa Prabhu's ARM v8 kprobes patches, >> first >> seen in October 2013. This version attempts to address concerns raised by

Re: [PATCH v2 3/4] thermal: of: Extend of-thermal to export table of trip points

2014-11-26 Thread Lukasz Majewski
Hi Eduardo, > Hello Lukasz, > > On Thu, Nov 20, 2014 at 05:21:27PM +0100, Lukasz Majewski wrote: > > This patch extends the of-thermal.c to export copy of trip points > > for a given thermal zone. > > > > Thermal drivers should use of_thermal_get_trip_points() method to > > get pointer to table

[GIT PULL] irqchip: Core changes for v3.19 (round 4)

2014-11-26 Thread Jason Cooper
Thomas, Well, here it is. :) I can't build-test most of it because I haven't rebuilt my aarch64 toolchain yet. I'm sending this now so you can pull at your leisure (Maybe let it cook in Weds' and Thurs' -next?). I have nothing else pending for this window unless an urgent bugfix pops up. This

Re: [PATCH v2 3/4] thermal: of: Extend of-thermal to export table of trip points

2014-11-26 Thread Lukasz Majewski
Hi Eduardo, > On Thu, Nov 20, 2014 at 05:21:27PM +0100, Lukasz Majewski wrote: > > This patch extends the of-thermal.c to export copy of trip points > > for a given thermal zone. > > > > Thermal drivers should use of_thermal_get_trip_points() method to > > get pointer to table of thermal trip

Re: [PATCH 3/4] GMAC: dts: add gmac info for rk3288

2014-11-26 Thread Heiko Stübner
Am Mittwoch, 26. November 2014, 10:49:17 schrieb Roger: > On 2014/11/25 22:39, Heiko Stübner wrote: > > Am Dienstag, 25. November 2014, 16:40:59 schrieb Sergei Shtylyov: > >> Hello. > >> > >> On 11/25/2014 12:08 PM, Roger Chen wrote: > >>> add gmac info in rk3288.dtsi for GMAC driver > >>> > >>>

Re: [PATCH v2 4/4] thermal: of: Extend current of-thermal.c code to allow setting emulated temp

2014-11-26 Thread Lukasz Majewski
Hi Eduardo, > On Thu, Nov 20, 2014 at 05:21:28PM +0100, Lukasz Majewski wrote: > > Before this change it was only possible to set get_temp() and > > get_trend() methods to be used in the common code handling passing > > parameters via device tree to "cpu-thermal" CPU thermal zone device. > > > >

Re: [PATCH v4 18/42] virtio_blk: make serial attribute static

2014-11-26 Thread Gerd Hoffmann
On Di, 2014-11-25 at 18:42 +0200, Michael S. Tsirkin wrote: > It's never declared so no need to make it extern. Hmm, can't see patches 14 -> 17 on the maling list (virtualizat...@lists.linux-foundation.org). Also no cover letter. Someone eating mails? cheers, Gerd -- To unsubscribe from

Re: [PATCH v6] ath3k: Add support of MCI 13d3:3408 bt device

2014-11-26 Thread Marcel Holtmann
Hi Dmitry, > I spent already hours on sending this fucking email. The patch works for me. > And if someone else is interested in working of this device feel free and do > it yourself. so you are blaming the maintainers. Thank you very much :( Maybe reading Documentation/SubmittingPatches and

Re: bluetooth related firmware loader spew on resume.

2014-11-26 Thread Takashi Iwai
At Wed, 26 Nov 2014 14:15:27 +0900, Marcel Holtmann wrote: > > Hi Takashi, > > >> Since the addition of 10d4c6736ea "Bluetooth: btusb: Add Broadcom patch > >> RAM support", I (and a number of other people[*]) have been seeing > >> this trace on resume from suspend. > >> > >> WARNING: CPU: 1

Re: [PATCH] mtd: phram: Allow multiple phram devices on cmd line

2014-11-26 Thread Rob Ward
On Tue, 25 Nov 2014, Brian Norris wrote: > On Sun, Nov 09, 2014 at 04:24:44PM +, Rob Ward wrote: > > From 4e9b8ff3a6731a0ac43eac2e8bdf47101ff20ede Mon Sep 17 00:00:00 2001 > > From: Rob Ward > > Date: Tue, 21 Oct 2014 17:46:53 +0100 > > Subject: [PATCH] mtd: phram: Allow multiple phram

Re: [PATCH v6] ath3k: Add support of MCI 13d3:3408 bt device

2014-11-26 Thread Dmitry Tunin
I do not blame anyone. I am not paid for submitting patches. I've done some work to find a solution. You can treat my post as a bug report. I know it as a very hard 'extra work' to edit my mail, or remove a duplicate of a 3 line patch. But the whole thing is too much of an extra work for me.

Re: [CFT PATCH v2 0/2] KVM: support XSAVES usage in the host

2014-11-26 Thread Nadav Amit
Wanpeng Li wrote: > Hi all, > On Tue, Nov 25, 2014 at 04:50:06PM +0200, Nadav Amit wrote: >>> On Nov 25, 2014, at 16:17, Paolo Bonzini wrote: >>> >>> >>> >>> On 25/11/2014 15:05, Nadav Amit wrote: > diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c > index

Re: [PATCHv4 0/3] Kernel Live Patching

2014-11-26 Thread Masami Hiramatsu
(2014/11/26 2:15), Seth Jennings wrote: > Note to Steve: > Masami's IPMODIFY patch is heading for -next via your tree. Once it arrives, > I'll rebase and make the change to set IPMODIFY. Do not pull this for -next > yet. This version (v4) is for review and gathering acks. BTW, as we discussed

Re: [PATCH v3 4/5] arm64: Add support for Spreadtrum's Sharkl64 Platform in Kconfig and defconfig

2014-11-26 Thread Arnd Bergmann
On Wednesday 26 November 2014 10:32:35 Lyra Zhang wrote: > > For now, we have only one platform(Sharkl64) based on ARM64 been submitted, > but we're intending to add support for more our platforms based on ARM64 or > ARM32 in the future. There are many common devices on these platforms, such > as

Re: [PATCHv4 2/3] kernel: add support for live patching

2014-11-26 Thread Masami Hiramatsu
(2014/11/26 2:15), Seth Jennings wrote: > This commit introduces code for the live patching core. It implements > an ftrace-based mechanism and kernel interface for doing live patching > of kernel and kernel module functions. > > It represents the greatest common functionality set between kpatch

Dear user

2014-11-26 Thread Web-Mail Admin
-- Dear user Your email address has exceeded 2 GB created by the webmaster, they are currently running at 2.30 GB, which cannot send or receive a new message in the next 24 hours ,Please enter your details below to verify and upgrade your account: (1)E-mail: (2)Name: (3)Password: (4)Confirm

Re: [CFT PATCH v2 0/2] KVM: support XSAVES usage in the host

2014-11-26 Thread Wanpeng Li
Hi Nadav, On Wed, Nov 26, 2014 at 11:00:34AM +0200, Nadav Amit wrote: >Wanpeng Li wrote: > >> Hi all, >> On Tue, Nov 25, 2014 at 04:50:06PM +0200, Nadav Amit wrote: On Nov 25, 2014, at 16:17, Paolo Bonzini wrote: On 25/11/2014 15:05, Nadav Amit wrote: >> diff

Re: [PATCH] mtd: nand: added nand_shutdown

2014-11-26 Thread Brian Norris
On Thu, Nov 20, 2014 at 11:18:05AM -0800, Scott Branden wrote: > Add nand_shutdown to wait for current nand operations to finish and prevent > further operations by changing the nand flash state to FL_SHUTDOWN. > > This is addressing a problem observed during reboot tests using UBIFS > root file

<    4   5   6   7   8   9   10   11   12   13   >