RE: [PATCH V2] powerpc/85xx: Merge 85xx/p1023_defconfig into mpc85xx_smp_defconfig and mpc85xx_defconfig

2013-11-12 Thread Roy Zang
> -Original Message- > From: Linuxppc-dev [mailto:linuxppc-dev-bounces+tie- > fei.zang=freescale@lists.ozlabs.org] On Behalf Of Scott Wood > Sent: Tuesday, November 12, 2013 4:05 PM > To: Pan Lijun-B44306 > Cc: linuxppc-...@ozlabs.org > Subject: Re: [PATCH V2] powerpc/85xx: Merge 85xx

RE: [PATCH V2] powerpc/85xx: Merge 85xx/p1023_defconfig into mpc85xx_smp_defconfig and mpc85xx_defconfig

2013-11-12 Thread Roy Zang
> -Original Message- > From: Wood Scott-B07421 > Sent: Tuesday, November 12, 2013 4:52 PM > To: Zang Roy-R61911 > Cc: Pan Lijun-B44306; linuxppc-...@ozlabs.org > Subject: Re: [PATCH V2] powerpc/85xx: Merge 85xx/p1023_defconfig into > mpc85xx_smp_defconfig and mpc85xx_defconfig > > On Tue

Re: [PATCH 5/8] powerpc/fsl-booke: Add initial silicon device tree for

2013-03-05 Thread Roy Zang
On 03/06/2013 07:15 AM, Kumar Gala wrote: * Thread support on e6500 * Proper PAMU topology information * DPAA related nodes (Qman, Bman, Fman, Rman, DCE) * Prefetch Manager * Thermal monitor unit * Interlaken Signed-off-by: Roy Zang Signed-off-by: Minghuan Lian Signed-off-by: Haiying Wang

[PATCH] powerpc/85xx: enable E1000 NIC to mpc85xx_defconfig

2013-03-14 Thread Roy Zang
E1000 NIC is a common used Ethernet card. Enable it as default for mpc85xx platform. other change is due to make savedefconfig Reported-by: Fu Jiwei Signed-off-by: Roy Zang --- tested on P1010rdb board arch/powerpc/configs/mpc85xx_defconfig |8 1 file changed, 4 insertions(+), 4

[upstream] mtd/ifc: fix ifc driver memory release issue

2013-03-26 Thread Roy Zang
memory is allocated by devm_kzalloc, so release it using devm_kfree() instead kfree(); Signed-off-by: Li Hao Signed-off-by: Cao Yonghua Signed-off-by: Roy Zang --- drivers/mtd/nand/fsl_ifc_nand.c |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/mtd/nand

[PATCH] powerpc/pci: fix 64 bit pci size issue

2013-03-28 Thread Roy Zang
The size might be 64 bit, so use ilog2() instead of __ilog2() or __ilog2_u64(). ilog2() can select 32bit or 64bit funciton automatically. Signed-off-by: Roy Zang --- arch/powerpc/sysdev/fsl_pci.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/arch/powerpc

[PATCH] powerpc/fsl-pci: fix setup_pci_atmu() parameter issue

2013-04-19 Thread Roy Zang
setup_pci_atmu() only has one parameter and remove the extra one, or build will fail due to un-match. Signed-off-by: Roy Zang --- arch/powerpc/sysdev/fsl_pci.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/powerpc/sysdev/fsl_pci.c b/arch/powerpc/sysdev/fsl_pci.c

Re: [PATCH] powerpc/fsl-pci: fix setup_pci_atmu() parameter issue

2013-04-19 Thread Roy Zang
On 04/20/2013 02:55 AM, Roy Zang wrote: setup_pci_atmu() only has one parameter and remove the extra one, or build will fail due to un-match. Signed-off-by: Roy Zang --- based on Kumar's next branch. Roy ___ Linuxppc-dev mailing list Linuxpp

[PATCH] powerpc/fsl-pci:fix incorrect iounmap pci hose->private_data

2013-04-22 Thread Roy Zang
a77d 6000 7c0004ac <801e0f14> 0c00 4c00012c 3c62ffe0 ---[ end trace f841fbc03c9d2e1b ]--- Kernel panic - not syncing: Attempted to kill init! exitcode=0x000b Rebooting in 180 seconds.. Signed-off-by: Yuanquan Chen Signed-off-by: Roy Zang --- based on Kumar's next bra

[PATCH v2] powerpc/fsl-pci:fix incorrect iounmap pci hose->private_data

2013-04-23 Thread Roy Zang
a77d 6000 7c0004ac <801e0f14> 0c00 4c00012c 3c62ffe0 ---[ end trace f841fbc03c9d2e1b ]--- Kernel panic - not syncing: Attempted to kill init! exitcode=0x000b Rebooting in 180 seconds.. Signed-off-by: Yuanquan Chen Signed-off-by: Roy Zang --- based on Kumar's next branch v

Re: [PATCH v2] powerpc/fsl-pci:fix incorrect iounmap pci hose->private_data

2013-04-23 Thread Roy Zang
On 04/23/2013 05:13 PM, Kevin Hao wrote: On Tue, Apr 23, 2013 at 11:18:03PM +0800, Roy Zang wrote: pci hose->private_data will be used by other function, for example, fsl_pcie_check_link(), so do not iounmap it. I already sent out a same patch ten days ago. :-) http://patchwork.ozlabs.

Re: [PATCH] powerpc/fsl-pci: don't unmap the PCI SoC controller registers in setup_pci_atmu

2013-04-23 Thread Roy Zang
On 04/13/2013 03:14 PM, Kevin Hao wrote: In patch 34642bbb (powerpc/fsl-pci: Keep PCI SoC controller registers in pci_controller) we choose to keep the map of the PCI SoC controller registers. But we missed to delete the unmap in setup_pci_atmu function. This will cause the following call trace o

RE: [PATCH][v2] powerpc/pci: Fix IMMRBAR address

2014-01-20 Thread Roy Zang
> -Original Message- > From: Minghuan Lian [mailto:minghuan.l...@freescale.com] > Sent: Monday, January 20, 2014 4:54 AM > To: linuxppc-dev@lists.ozlabs.org > Cc: Zang Roy-R61911; Wood Scott-B07421; Kumar Gala; Lian Minghuan-B31939 > Subject: [PATCH][v2] powerpc/pci: Fix IMMRBAR address >

RE: [02/12,v3] pci: fsl: add structure fsl_pci

2014-01-22 Thread Roy Zang
> -Original Message- > From: Wood Scott-B07421 > Sent: Friday, January 03, 2014 4:19 PM > To: Lian Minghuan-B31939 > Cc: linuxppc-dev@lists.ozlabs.org; linux-...@vger.kernel.org; Zang Roy- > R61911; Bjorn Helgaas > Subject: Re: [02/12,v3] pci: fsl: add structure fsl_pci > > On Wed, Oct 2

[PATCH] eSDHC: Access Freescale eSDHC registers by 32-bit

2011-09-09 Thread Roy Zang
From: Xu lei Freescale eSDHC registers only support 32-bit accesses, this patch ensures that all Freescale eSDHC register accesses are 32-bit. Signed-off-by: Xu lei Signed-off-by: Roy Zang Signed-off-by: Kumar Gala --- This is a patch resend http://patchwork.ozlabs.org/patch/106245/ based

[PATCH] powerpc/p1023: set IRQ[4:6, 11] to high level sensitive for PCIe

2011-11-06 Thread Roy Zang
P1023 external IRQ[4:6, 11] do not pin out, but the interrupts are shared with PCIe controller. The silicon internally ties the interrupts to L, so change the IRQ[4:6,11] to high level sensitive for PCIe. Signed-off-by: Roy Zang --- arch/powerpc/boot/dts/p1023rds.dts |8 1 files

[PATCH 1/2] powerpc/pci: Add IP revision register define for Freescale PCIe controller

2012-09-03 Thread Roy Zang
Signed-off-by: Roy Zang --- arch/powerpc/sysdev/fsl_pci.h |5 - 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/arch/powerpc/sysdev/fsl_pci.h b/arch/powerpc/sysdev/fsl_pci.h index baa0fd1..7192932 100644 --- a/arch/powerpc/sysdev/fsl_pci.h +++ b/arch/powerpc/sysdev

[PATCH 2/2] powerpc/pci: Use PCIe IP block revision register instead of compatible

2012-09-03 Thread Roy Zang
Freescale PCIe IP block revision bigger than rev2.2 will also need redefine the sequence of inbound windows. So change to use IP block revision instead of compatible for the judgment. Signed-off-by: Roy Zang --- arch/powerpc/sysdev/fsl_pci.c | 14 -- 1 files changed, 8 insertions

[PATCH 1/2] P4080/eLBC: Make Freescale elbc interrupt common to elbc devices

2010-10-18 Thread Roy Zang
. Signed-off-by: Lan Chunhe-B25806 Signed-off-by: Roy Zang Reviewed-by: Anton Vorontsov Cc: Wood Scott-B07421 --- These two patches are based on the following commits: 1. http://lists.infradead.org/pipermail/linux-mtd/2010-September/032112.html 2. http://lists.infradead.org/pipermail

[PATCH 2/2] P4080/mtd: Fix the freescale lbc issue with 36bit mode

2010-10-18 Thread Roy Zang
. Signed-off-by: Lan Chunhe-B25806 Signed-off-by: Roy Zang Reviewed-by: Anton Vorontsov --- arch/powerpc/include/asm/fsl_lbc.h |1 + arch/powerpc/sysdev/fsl_lbc.c | 23 ++- drivers/mtd/nand/fsl_elbc_nand.c |2 +- 3 files changed, 24 insertions(+), 2 deletions

[PATCH] Add Freescale CodeWarrior debug support for kernel

2010-10-28 Thread Roy Zang
CodeWarrior is popular embedded tools to support debugging Powerpc. This patch adds Freescale CodeWarrior debug support for Linux kernel on 85xx/QorIQ platform. Signed-off-by: Bogdan Adrin Signed-off-by: Roy Zang --- arch/powerpc/Kconfig.debug|8 arch/powerpc

[PATCH 1/3] eSDHC: Access Freescale eSDHC registers by 32-bit

2011-07-04 Thread Roy Zang
From: Xu lei For Freescale eSDHC registers only support 32-bit accesses, this patch ensure that all Freescale eSDHC register accesses are 32-bit. Signed-off-by: Xu lei Signed-off-by: Roy Zang Signed-off-by: Kumar Gala --- drivers/mmc/host/sdhci-of-esdhc.c | 18 ++ 1 files

[PATCH 3/3] eSDHC: fix incorrect default value of the capabilities register on P4080

2011-07-04 Thread Roy Zang
logic. This patch adds the workaround for these errata. Signed-off-by: Roy Zang --- drivers/mmc/host/sdhci-of-core.c |3 +++ drivers/mmc/host/sdhci.c |6 ++ include/linux/mmc/sdhci.h|4 3 files changed, 13 insertions(+), 0 deletions(-) diff --git a/drivers/mmc

[PATCH 2/3] eSDHC: Fix errors when booting kernel with fsl esdhc

2011-07-04 Thread Roy Zang
-by: Lei Xu Signed-off-by: Roy Zang Signed-off-by: Kumar Gala --- drivers/mmc/host/sdhci-of-core.c |3 ++ drivers/mmc/host/sdhci.c | 62 ++--- include/linux/mmc/sdhci.h|6 ++- 3 files changed, 57 insertions(+), 14 deletions(-) diff --git

[PATCH 1/2 v2] eSDHC: Access Freescale eSDHC registers by 32-bit

2011-07-22 Thread Roy Zang
From: Xu lei For Freescale eSDHC registers only support 32-bit accesses, this patch ensure that all Freescale eSDHC register accesses are 32-bit. Signed-off-by: Xu lei Signed-off-by: Roy Zang Signed-off-by: Kumar Gala --- this patch set replaces previous patches: https://patchwork.kernel.org

[PATCH 2/2 v2] eSDHC: Fix errors when booting kernel with fsl esdhc

2011-07-22 Thread Roy Zang
-by: Lei Xu Signed-off-by: Roy Zang Signed-off-by: Kumar Gala --- v2:v1 some minor code style fix according to Venkatraman's comment. drivers/mmc/host/sdhci-of-core.c |3 ++ drivers/mmc/host/sdhci.c | 64 ++--- include/linux/mmc/sd

[PATCH] rtc: add support for DS3232 RTC

2010-07-05 Thread Roy Zang
This patch adds the driver for RTC chip DS3232 via I2C bus Signed-off-by: Mingkai Hu Signed-off-by: Jingchang Lu Signed-off-by: Srikanth Srinivasan Signed-off-by: Roy Zang --- Tested on MPC8536DS and P4080DS board drivers/rtc/Kconfig | 11 + drivers/rtc/Makefile |1 + drivers

[PATCH] rtc: add support for DS3232 RTC

2010-07-05 Thread Roy Zang
This patch adds the driver for RTC chip DS3232 via I2C bus Signed-off-by: Mingkai Hu Signed-off-by: Jingchang Lu Signed-off-by: Srikanth Srinivasan Signed-off-by: Roy Zang --- Tested on MPC8536DS and P4080DS board drivers/rtc/Kconfig | 11 + drivers/rtc/Makefile |1 + drivers

[PATCH v2] rtc: add support for DS3232 RTC

2010-07-11 Thread Roy Zang
This patch adds the driver for RTC chip DS3232 via I2C bus. Signed-off-by: Mingkai Hu Signed-off-by: Jingchang Lu Signed-off-by: Srikanth Srinivasan Signed-off-by: Roy Zang --- Tested on MPC8536DS and P4080DS board drivers/rtc/Kconfig | 11 ++ drivers/rtc/Makefile |1

[PATCH 0/3] mmc: Add mmc support for P4080 chip

2010-07-27 Thread Roy Zang
This serial patch adds some workarounds to enable mmc card support for P4080 chip. ___ Linuxppc-dev mailing list Linuxppc-dev@lists.ozlabs.org https://lists.ozlabs.org/listinfo/linuxppc-dev

[PATCH 3/3] mmc: Add ESDHC weird register workaround

2010-07-27 Thread Roy Zang
P4080 ESDHC controller induces weird register setting. This patch adds the workaround to correct the weird register setting. Signed-off-by: Roy Zang --- drivers/mmc/host/sdhci-of-core.c |5 + drivers/mmc/host/sdhci.c | 13 + drivers/mmc/host/sdhci.h |2

[PATCH 1/3] mmc: Auto CMD12 support for eSDHC driver

2010-07-27 Thread Roy Zang
From: Jerry Huang Add auto CMD12 command support for eSDHC driver. This is needed by P4080 and P1022 for block read/write. Manual asynchronous CMD12 abort operation causes protocol violations on these silicons. Signed-off-by: Jerry Huang Signed-off-by: Roy Zang --- drivers/mmc/host/sdhci-of

[PATCH 2/3] dts: Add sdhci-auto-cmd12 field for p4080 device tree

2010-07-27 Thread Roy Zang
Signed-off-by: Roy Zang --- arch/powerpc/boot/dts/p4080ds.dts |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/arch/powerpc/boot/dts/p4080ds.dts b/arch/powerpc/boot/dts/p4080ds.dts index 6b29eab..11c8884 100644 --- a/arch/powerpc/boot/dts/p4080ds.dts +++ b/arch/powerpc

[PATCH 3/3 v2] mmc: Add ESDHC weird voltage bits workaround

2010-07-29 Thread Roy Zang
P4080 ESDHC controller does not support 1.8V and 3.0V voltage. but the host controller capabilities register wrongly set the bits. This patch adds the workaround to correct the weird voltage setting bits. Signed-off-by: Roy Zang --- This is the second version of patch http

[PATCH 2/3 v2] dts: Add sdhci,auto-cmd12 field for p4080 device tree

2010-08-02 Thread Roy Zang
Signed-off-by: Roy Zang --- Documentation/powerpc/dts-bindings/fsl/esdhc.txt |2 ++ arch/powerpc/boot/dts/p4080ds.dts|1 + 2 files changed, 3 insertions(+), 0 deletions(-) diff --git a/Documentation/powerpc/dts-bindings/fsl/esdhc.txt b/Documentation/powerpc/dts-bindings

[PATCH 3/3 v2] dts: Add ESDHC weird voltage bits workaround

2010-08-02 Thread Roy Zang
P4080 ESDHC controller does not support 1.8V and 3.0V voltage. but the host controller capabilities register wrongly set the bits. This patch adds the workaround to correct the weird voltage setting bits. Only 3.3V voltage is supported for P4080 ESDHC controller. Signed-off-by: Roy Zang

[PATCH 1/3 v2] sdhci: Add auto CMD12 support for eSDHC driver

2010-08-02 Thread Roy Zang
From: Jerry Huang Add auto CMD12 command support for eSDHC driver. This is needed by P4080 and P1022 for block read/write. Manual asynchronous CMD12 abort operation causes protocol violations on these silicons. Signed-off-by: Jerry Huang Signed-off-by: Roy Zang --- drivers/mmc/host/sdhci-of

[PATCH 1/3] P4080/eLBC: Make Freescale elbc interrupt common to elbc devices

2010-08-02 Thread Roy Zang
From: Lan Chunhe-B25806 Move Freescale elbc interrupt from nand dirver to elbc driver. Then all elbc devices can use the interrupt instead of ONLY nand. Signed-off-by: Lan Chunhe-B25806 Signed-off-by: Roy Zang --- arch/powerpc/Kconfig |7 +- arch/powerpc/include/asm

[PATCH 3/3] P4080/mtd: Fix the freescale lbc issue with 36bit mode

2010-08-02 Thread Roy Zang
. Signed-off-by: Lan Chunhe-B25806 Signed-off-by: Roy Zang --- arch/powerpc/include/asm/fsl_lbc.h |1 + arch/powerpc/sysdev/fsl_lbc.c | 33 - drivers/mtd/nand/fsl_elbc_nand.c |2 +- 3 files changed, 34 insertions(+), 2 deletions(-) diff --git a/arch

[PATCH 2/3] P4080/mtd: Only make elbc nand driver detect nand flash partitions

2010-08-02 Thread Roy Zang
From: Lan Chunhe-B25806 The former driver had the two functions: 1. detecting nand flash partitions; 2. registering elbc interrupt. Now, second function is removed to fsl_lbc.c. Signed-off-by: Lan Chunhe-B25806 Signed-off-by: Roy Zang --- drivers/mtd/nand/Kconfig |1 + drivers

[PATCH 3/3][MTD] P4080/nand: Fix the freescale lbc issue with 36bit mode

2010-08-05 Thread Roy Zang
. Signed-off-by: Lan Chunhe-B25806 Signed-off-by: Roy Zang --- arch/powerpc/include/asm/fsl_lbc.h |1 + arch/powerpc/sysdev/fsl_lbc.c | 33 - drivers/mtd/nand/fsl_elbc_nand.c |2 +- 3 files changed, 34 insertions(+), 2 deletions(-) diff --git a/arch

[PATCH 1/3][MTD] P4080/eLBC: Make Freescale elbc interrupt common to elbc devices

2010-08-05 Thread Roy Zang
From: Lan Chunhe-B25806 Move Freescale elbc interrupt from nand dirver to elbc driver. Then all elbc devices can use the interrupt instead of ONLY nand. Signed-off-by: Lan Chunhe-B25806 Signed-off-by: Roy Zang --- send the patch to linux-...@lists.infradead.org it has been posted to linuxppc

[PATCH 2/3][MTD] P4080/nand: Only make elbc nand driver detect nand flash partitions

2010-08-05 Thread Roy Zang
From: Lan Chunhe-B25806 The former driver had the two functions: 1. detecting nand flash partitions; 2. registering elbc interrupt. Now, second function is removed to fsl_lbc.c. Signed-off-by: Lan Chunhe-B25806 Signed-off-by: Roy Zang --- drivers/mtd/nand/Kconfig |1 + drivers

[PATCH 1/2] mmc: change ACMD12 to AUTO_CMD12 for more clear

2010-08-10 Thread Roy Zang
Change ACMD12 to AUTO_CMD12 to reduce the confusion. ACMD12 might be confused with MMC/SD App CMD 12 (CMD55+CMD12 combo). Signed-off-by: Roy Zang --- drivers/mmc/host/sdhci-of-core.c |2 +- drivers/mmc/host/sdhci.c |8 drivers/mmc/host/sdhci.h | 10

[PATCH 2/2] mmc: some nip clean up for the sdhci driver

2010-08-10 Thread Roy Zang
remove the extra line and rewrite the if condition line. Signed-off-by: Roy Zang --- drivers/mmc/host/sdhci-of-core.c |1 - drivers/mmc/host/sdhci.c |5 ++--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/drivers/mmc/host/sdhci-of-core.c b/drivers/mmc/host/sdhci

[PATCH] powerpc/dts: add interrupt parent for lbc node for p4080

2010-09-09 Thread Roy Zang
Signed-off-by: Roy Zang --- arch/powerpc/boot/dts/p4080ds.dts |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/arch/powerpc/boot/dts/p4080ds.dts b/arch/powerpc/boot/dts/p4080ds.dts index 2f0de24..0a18138 100644 --- a/arch/powerpc/boot/dts/p4080ds.dts +++ b/arch/powerpc

[PATCH 1/3 v2][MTD] P4080/eLBC: Make Freescale elbc interrupt common to elbc devices

2010-09-09 Thread Roy Zang
From: Lan Chunhe-B25806 Move Freescale elbc interrupt from nand dirver to elbc driver. Then all elbc devices can use the interrupt instead of ONLY nand. Signed-off-by: Lan Chunhe-B25806 Signed-off-by: Roy Zang --- Comparing with v1, according to the feedback, add some decorations. arch

[PATCH 2/3 v2][MTD] P4080/mtd: Only make elbc nand driver detect nand flash partitions

2010-09-09 Thread Roy Zang
From: Jack Lan The former driver had the two functions: 1. detecting nand flash partitions; 2. registering elbc interrupt. Now, second function is removed to fsl_lbc.c. Signed-off-by: Lan Chunhe-B25806 Signed-off-by: Roy Zang --- Comparing with v1, according to the feedback, remove global

[PATCH v2 3/3][MTD] P4080/mtd: Fix the freescale lbc issue with 36bit mode

2010-09-09 Thread Roy Zang
. Signed-off-by: Lan Chunhe-B25806 Signed-off-by: Roy Zang --- Comparing with v1, according to the feedback, add some decorations. arch/powerpc/include/asm/fsl_lbc.h |1 + arch/powerpc/sysdev/fsl_lbc.c | 26 +- drivers/mtd/nand/fsl_elbc_nand.c |2 +- 3 files

[PATCH 2/3 v3] P4080/mtd: Only make elbc nand driver detect nand flash partitions

2010-09-16 Thread Roy Zang
From: Jack Lan The former driver had the two functions: 1. detecting nand flash partitions; 2. registering elbc interrupt. Now, second function is removed to fsl_lbc.c. Signed-off-by: Lan Chunhe-B25806 Signed-off-by: Roy Zang --- drivers/mtd/nand/Kconfig |1 + drivers/mtd/nand

[PATCH 1/3 v3] P4080/eLBC: Make Freescale elbc interrupt common to elbc devices

2010-09-16 Thread Roy Zang
From: Lan Chunhe-B25806 Move Freescale elbc interrupt from nand dirver to elbc driver. Then all elbc devices can use the interrupt instead of ONLY nand. Signed-off-by: Lan Chunhe-B25806 Signed-off-by: Roy Zang --- Comparing with v2: 1. according to the feedback, add some decorations. 2

[PATCH 3/3 v3] P4080/mtd: Fix the freescale lbc issue with 36bit mode

2010-09-16 Thread Roy Zang
. Signed-off-by: Lan Chunhe-B25806 Signed-off-by: Roy Zang --- arch/powerpc/include/asm/fsl_lbc.h |1 + arch/powerpc/sysdev/fsl_lbc.c | 23 ++- drivers/mtd/nand/fsl_elbc_nand.c |2 +- 3 files changed, 24 insertions(+), 2 deletions(-) diff --git a/arch/powerpc

[PATCH 2/3 v4] P4080/mtd: Only make elbc nand driver detect nand flash partitions

2010-09-17 Thread Roy Zang
From: Jack Lan The former driver had the two functions: 1. detecting nand flash partitions; 2. registering elbc interrupt. Now, second function is removed to fsl_lbc.c. Signed-off-by: Lan Chunhe-B25806 Signed-off-by: Roy Zang --- drivers/mtd/nand/Kconfig |1 + drivers/mtd/nand

[PATCH 1/3 v4] P4080/eLBC: Make Freescale elbc interrupt common to elbc devices

2010-09-17 Thread Roy Zang
From: Lan Chunhe-B25806 Move Freescale elbc interrupt from nand dirver to elbc driver. Then all elbc devices can use the interrupt instead of ONLY nand. Signed-off-by: Lan Chunhe-B25806 Signed-off-by: Roy Zang --- Comparing v3: 1. minor fix from type unsigned int to u32 2. fix

[PATCH 3/3 v4] P4080/mtd: Fix the freescale lbc issue with 36bit mode

2010-09-17 Thread Roy Zang
. Signed-off-by: Lan Chunhe-B25806 Signed-off-by: Roy Zang Reviewed-by: Anton Vorontsov --- arch/powerpc/include/asm/fsl_lbc.h |1 + arch/powerpc/sysdev/fsl_lbc.c | 23 ++- drivers/mtd/nand/fsl_elbc_nand.c |2 +- 3 files changed, 24 insertions(+), 2 deletions

RE: [PATCH v3 1/1] PCI: layerscape-ep: set 64-bit DMA mask

2023-09-27 Thread Roy Zang
i-layerscape-ep.c > +++ b/drivers/pci/controller/dwc/pci-layerscape-ep.c > @@ -249,6 +249,8 @@ static int __init ls_pcie_ep_probe(struct > platform_device *pdev) > > pcie->big_endian = of_property_read_bool(dev->of_node, "big- > endian"); > > + dma_set_mask_and_coherent(dev, DMA_BIT_MASK(64)); > + Acked-by: Roy Zang -R

RE: [PATCH] PCI: Remove unnecessary of_irq.h includes

2022-10-19 Thread Roy Zang
> drivers/pci/controller/pcie- > rockchip-host.c | 1 - > drivers/pci/controller/pcie-xilinx-cpm.c | 1 - > drivers/pci/controller/pcie-xilinx-nwl.c | 1 - > 14 files changed, 14 deletions(-) Acked-by: Roy Zang Roy

RE: [PATCH v3 5/5] PCI: Remove unnecessary includes

2022-10-31 Thread Roy Zang
c | 1 - > drivers/pci/controller/pcie-microchip-host.c | 1 - > drivers/pci/controller/pcie- > rockchip-host.c | 1 - > drivers/pci/controller/pcie-xilinx-cpm.c | 1 - > drivers/pci/controller/pcie-xilinx-nwl.c | 1 - > 14 files changed, 14 deletions(-) Acked-by: Roy Zang -R

RE: [PATCH v5 1/4] PCI: layerscape: Add function pointer for exit_from_l2()

2023-12-01 Thread Roy Zang
> specific sequence. > > Change ls_pcie_exit_from_l2() return value from void to int. Return error if > exit_from_l2() failure at exit resume flow. > > Reviewed-by: Manivannan Sadhasivam > Signed-off-by: Frank Li Acked-by: Roy Zang Roy

RE: [PATCH v5 2/4] PCI: layerscape: Add suspend/resume for ls1021a

2023-12-01 Thread Roy Zang
hen the link would enter L2/L3 state depending on > the VAUX supply. > > In the resume path, the link is brought back from L2 to L0 by doing a software > reset. > > Signed-off-by: Frank Li Acked-by: Roy Zang Roy

RE: [PATCH v5 3/4] PCI: layerscape(ep): Rename pf_* as pf_lut_*

2023-12-01 Thread Roy Zang
d lut_* in driver. > > Signed-off-by: Frank Li Acked-by: Roy Zang Roy

RE: [PATCH v5 4/4] PCI: layerscape: Add suspend/resume for ls1043a

2023-12-01 Thread Roy Zang
hen the link would enter L2/L3 state depending on > the VAUX supply. > > In the resume path, the link is brought back from L2 to L0 by doing a software > reset. > > Signed-off-by: Frank Li Acked-by: Roy Zang Roy

RE: [PATCH 1/1] PCI: layerscape: Add EP mode support for ls1028a

2022-12-16 Thread Roy Zang
t; > All other patches were already accepte by maintainer in > https://lore.kernel.org/lkml/2022223457.10599-1-leoyang...@nxp.com/ > > But missed this one. > > Re-post. > > drivers/pci/controller/dwc/pci-layerscape-ep.c | 1 + > 1 file changed, 1 insertion(+) Acked-by: Roy Zang R

Re: [PATCH] mpc7448: add alias list to DTS, clean out old chosen node

2008-07-10 Thread Roy Zang
and insert a > second chosen node. > > Signed-off-by: Paul Gortmaker <[EMAIL PROTECTED]> > --- Acked-by: Roy Zang <[EMAIL PROTECTED]> Roy ___ Linuxppc-dev mailing list Linuxppc-dev@ozlabs.org https://ozlabs.org/mailman/listinfo/linuxppc-dev

RE: [PATCH -next] pci/controller/dwc: convert comma to semicolon

2021-03-22 Thread Roy Zang
Yes. It is maintained. I will send out a patch. Thanks. Roy -Original Message- From: Lorenzo Pieralisi On Sun, Mar 07, 2021 at 07:36:57PM +0100, Krzysztof Wilczyński wrote: > Hi, > > [...] > > I would request NXP maintainers to take this patch, rewrite it as > > Bjorn requested and r

RE: [PATCH] PCI: layerscape: Correct syntax by changing comma to semicolon

2021-03-22 Thread Roy Zang
Acked-by: Roy Zang Roy -Original Message- From: Krzysztof Wilczyński Sent: Wednesday, March 10, 2021 9:38 PM Replace command with a semicolon to correct syntax and to prevent potential unspecified behaviour and/or unintended side effects. Related: https://eur01

RE: [PATCH -next] pci/controller/dwc: convert comma to semicolon

2021-03-22 Thread Roy Zang
> From: Lorenzo Pieralisi > On Mon, Mar 22, 2021 at 01:40:16PM +0000, Roy Zang wrote: > > Yes. It is maintained. > > To be maintained you should review its code please. Sure. > > > I will send out a patch. > > Krzysztof already posted one for you, you just n

Re: [PATCH 1/7] PCI: layerscape: Name private struct pointer "ls" consistently

2016-10-07 Thread Roy Zang
On 10/07/2016 11:42 AM, Bjorn Helgaas wrote: > Use a device-specific name, "ls", for struct ls_pcie pointers > to hint that this is device-specific information. No functional change > intended. how about ls_pcie instead of ls ? Roy

Re: [PATCH v2 0/7] PCI: layerscape: Cleanups

2016-10-12 Thread Roy Zang
On 10/12/2016 11:07 AM, Bjorn Helgaas wrote: > I applied these to pci/host-layerscape for v4.9. I hope to ask Linus to > pull them tomorrow, so if you see any issues, let me know soon. > good to me. Thanks. Roy

RE: [PATCH 2/2] PCI: dwc: layerscape: Use syscon_regmap_lookup_by_phandle_args

2025-01-14 Thread Roy Zang
r code would be easier. > > Signed-off-by: Krzysztof Kozlowski > --- > drivers/pci/controller/dwc/pci-layerscape.c | 10 -- > 1 file changed, 4 insertions(+), 6 deletions(-) Acked-by: Roy Zang Roy smime.p7s Description: S/MIME cryptographic signature