[PATCH v2 12/13] PCI, pcmcia: Use new pci_is_bridge() to simplify code

2014-05-03 Thread Yijing Wang
Now we can use new pci_is_bridge() helper function to simplify code. Signed-off-by: Yijing Wang --- drivers/pcmcia/cardbus.c |3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/drivers/pcmcia/cardbus.c b/drivers/pcmcia/cardbus.c index 8bde619..4fe4cc4 100644 --- a/drivers/

[PATCH v2 02/13] PCI: Introduce new pci_is_bridge() helper function

2014-05-03 Thread Yijing Wang
PCIe Spec define the PCI bridge is the PCI device which header type(bit 0 through 6) is 0x1(PCI bridge) or 0x2(CardBus bridge). Signed-off-by: Yijing Wang --- include/linux/pci.h | 13 + 1 files changed, 13 insertions(+), 0 deletions(-) diff --git a/include/linux/pci.h b/include/l

[PATCH v2 13/13] PCI, pciehp: Use new pci_is_bridge() to simplify code

2014-05-03 Thread Yijing Wang
Now we can use new pci_is_bridge() helper function to simplify code. Signed-off-by: Yijing Wang --- drivers/pci/hotplug/pciehp_pci.c |3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/drivers/pci/hotplug/pciehp_pci.c b/drivers/pci/hotplug/pciehp_pci.c index 1b53306..b6cb1

[PATCH v2 07/13] sparc/PCI: Use new pci_is_bridge() to simplify code

2014-05-03 Thread Yijing Wang
Now we can use new pci_is_bridge() helper function to simplify code. Acked-by: David S. Miller Signed-off-by: Yijing Wang --- arch/sparc/kernel/pci.c |3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/arch/sparc/kernel/pci.c b/arch/sparc/kernel/pci.c index 1555bbc..857ad

[PATCH v2 03/13] PCI: Use new pci_is_bridge() to simplify code

2014-05-03 Thread Yijing Wang
Now we can use new pci_is_bridge() helper function to simplify code. Signed-off-by: Yijing Wang --- drivers/pci/pci-acpi.c |8 +--- drivers/pci/probe.c |3 +-- drivers/pci/setup-bus.c |4 +--- 3 files changed, 3 insertions(+), 12 deletions(-) diff --git a/drivers/pci/pci-ac

[PATCH v2 10/13] PCI, cpcihp: Use new pci_is_bridge() to simplify code

2014-05-03 Thread Yijing Wang
Now we can use new pci_is_bridge() helper function to simplify code. Signed-off-by: Yijing Wang --- drivers/pci/hotplug/cpci_hotplug_pci.c |3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/drivers/pci/hotplug/cpci_hotplug_pci.c b/drivers/pci/hotplug/cpci_hotplug_pci.c i

[PATCH v2 04/13] x86/PCI: Use new pci_is_bridge() to simplify code

2014-05-03 Thread Yijing Wang
Now we can use new pci_is_bridge() helper function to simplify code. Signed-off-by: Yijing Wang --- arch/x86/pci/fixup.c |4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) diff --git a/arch/x86/pci/fixup.c b/arch/x86/pci/fixup.c index 94ae9ae..e5f000c 100644 --- a/arch/x86/pci/fixup.

[PATCH v2 06/13] powerpc/PCI: Use new pci_is_bridge() to simplify code

2014-05-03 Thread Yijing Wang
Now we can use new pci_is_bridge() helper function to simplify code. Signed-off-by: Yijing Wang --- arch/powerpc/kernel/pci-hotplug.c |3 +-- arch/powerpc/kernel/pci_of_scan.c |3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/arch/powerpc/kernel/pci-hotplug.c b/arch

[PATCH v2 11/13] PCI, acpiphp: Use new pci_is_bridge() to simplify code

2014-05-03 Thread Yijing Wang
Now we can use new pci_is_bridge() helper function to simplify code. Signed-off-by: Yijing Wang --- drivers/pci/hotplug/acpiphp_glue.c |3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/drivers/pci/hotplug/acpiphp_glue.c b/drivers/pci/hotplug/acpiphp_glue.c index bccc27e

[PATCH v2 09/13] PCI, shpchp: Use new pci_is_bridge() to simplify code

2014-05-03 Thread Yijing Wang
Now we can use new pci_is_bridge() helper function to simplify code. Signed-off-by: Yijing Wang --- drivers/pci/hotplug/shpchp_pci.c |3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/drivers/pci/hotplug/shpchp_pci.c b/drivers/pci/hotplug/shpchp_pci.c index 2bf69fe..ea8ad

[PATCH v2 05/13] IA64/PCI: Use new pci_is_bridge() to simplify code

2014-05-03 Thread Yijing Wang
Now we can use new pci_is_bridge() helper function to simplify code. Signed-off-by: Yijing Wang --- arch/ia64/pci/fixup.c |4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) diff --git a/arch/ia64/pci/fixup.c b/arch/ia64/pci/fixup.c index eee069a..1fe9aa5 100644 --- a/arch/ia64/pci/fi

[PATCH v2 00/13] Refactor pci_is_brdige() to simplify code

2014-05-03 Thread Yijing Wang
v1->v2: Add comments for new pci_is_bridge(). This patchset rename the current pci_is_bridge() to pci_has_subordinate(), and introduce a new pci_is_bridge() which determine pci bridge by check dev->hdr_type. The new one is more accurate. PCI Spec define the pci device is a bridge by the dev->hdr_

[PATCH v2 08/13] PCI, rpaphp: Use new pci_is_bridge() to simplify code

2014-05-03 Thread Yijing Wang
Now we can use new pci_is_bridge() helper function to simplify code. Acked-by: Benjamin Herrenschmidt Signed-off-by: Yijing Wang --- drivers/pci/hotplug/rpadlpar_core.c |3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/drivers/pci/hotplug/rpadlpar_core.c b/drivers/pci/

[PATCH v2 01/13] PCI: rename pci_is_bridge() to pci_has_subordinate()

2014-05-03 Thread Yijing Wang
pci_is_bridge() which seems to determine whether device is a bridge, returns true only when the subordinate bus exists. This confuses people. PCI device is a bridge means its header type(bit 0 through 6) is 0x1(PCI bridge) or 0x2(CardBus bridge). Rename the current pci_is_bridge() helper function t

Re: [PATCH 00/13] Refactor pci_is_brdige() to simplify code

2014-05-03 Thread Yijing Wang
> This needs to be posted to the linux-pci list. The fact that it > wasn't means it's not in patchwork, so it's not on my to-do list. > > Currently we have one interface: pci_is_bridge(). > > After your series, we would have two interfaces: pci_is_bridge() and > pci_has_subordinate(). Presumabl

RE: MPC8641 based custom board Kernel stuck at 1000Mhz core clock

2014-05-03 Thread curieux.khe...@gmail.com
hi thanks for your reply. the problem is still there. At 800MHZ core its working fine but for 1Ghz its still happening. Any suggestion or check point I can monitor. From: sanjeev sharma Sent: ‎02‎ ‎May‎ ‎2014 ‎09‎:‎22 To: Ashish CC: Valdis Kletnieks; scottw...@freescale.com; linuxppc-dev@li

Re: [PATCH v2 1/4] KVM: PPC: e500mc: Revert "add load inst fixup"

2014-05-03 Thread Alexander Graf
Am 03.05.2014 um 01:14 schrieb "mihai.cara...@freescale.com" : >> From: Alexander Graf >> Sent: Friday, May 2, 2014 12:24 PM >> To: Caraman Mihai Claudiu-B02008 >> Cc: kvm-...@vger.kernel.org; k...@vger.kernel.org; >> linuxppc-dev@lists.ozlabs.org >> Subject: Re: [PATCH v2 1/4] KVM: PPC: e500

Re: [PATCH 4/6] powerpc/corenet: Create the dts components for the DPAA FMan

2014-05-03 Thread Emil Medve
Hello Scott, On 04/21/2014 05:11 PM, Scott Wood wrote: > On Fri, 2014-04-18 at 07:21 -0500, Shruti Kanetkar wrote: >> +fman@40 { >> +mdio@f1000 { >> +#address-cells = <1>; >> +#size-cells = <0>; >> +compatible = "fsl,fman-xmdio"; >> +reg = <