Re: [PATCH] crypto: brcm: fix spelling mistake: "fallbck" -> "fallback"

2017-06-05 Thread Steve Lin
On Sun, Jun 4, 2017 at 2:29 PM, Colin King <colin.k...@canonical.com> wrote: > From: Colin Ian King <colin.k...@canonical.com> > > Trivial fix to spelling mistake in flow_log message > > Signed-off-by: Colin Ian King <colin.k...@canonical.com> Good catch, thanks!

Re: [PATCH] crypto: brcm: fix spelling mistake: "fallbck" -> "fallback"

2017-06-05 Thread Steve Lin
On Sun, Jun 4, 2017 at 2:29 PM, Colin King wrote: > From: Colin Ian King > > Trivial fix to spelling mistake in flow_log message > > Signed-off-by: Colin Ian King Good catch, thanks! Reviewed-by: Steve Lin > --- > drivers/crypto/bcm/cipher.c | 2 +- > 1 file ch

[PATCH] net: ethernet: bgmac: Allow MAC address to be specified in DTB

2017-03-16 Thread Steve Lin
Allows the BCMA version of the bgmac driver to obtain MAC address from the device tree. If no MAC address is specified there, then the previous behavior (obtaining MAC address from SPROM) is used. Signed-off-by: Steve Lin <steven.l...@broadcom.com> --- drivers/net/ethernet/broadcom/bgmac-

[PATCH] net: ethernet: bgmac: Allow MAC address to be specified in DTB

2017-03-16 Thread Steve Lin
Allows the BCMA version of the bgmac driver to obtain MAC address from the device tree. If no MAC address is specified there, then the previous behavior (obtaining MAC address from SPROM) is used. Signed-off-by: Steve Lin --- drivers/net/ethernet/broadcom/bgmac-bcma.c | 39

[PATCH] ARM: dts: BCM953012HR: Add ethernet aliases

2017-03-15 Thread Steve Lin
Adding ethernet aliases. These are used, for example, by bootloaders, to modify the MAC addresses in the device tree. Signed-off-by: Steve Lin <steven.l...@broadcom.com> --- arch/arm/boot/dts/bcm953012hr.dts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/arch/arm/bo

[PATCH] ARM: dts: BCM953012HR: Add ethernet aliases

2017-03-15 Thread Steve Lin
Adding ethernet aliases. These are used, for example, by bootloaders, to modify the MAC addresses in the device tree. Signed-off-by: Steve Lin --- arch/arm/boot/dts/bcm953012hr.dts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/arch/arm/boot/dts/bcm953012hr.dts b/arch/arm/boot/dts

Re: [PATCH] crypto: brcm: fix spelling mistake: "genereate" -> "generate"

2017-02-24 Thread Steve Lin
Looks good, thanks! Acked-by: Steve Lin <steven.l...@broadcom.com> On Wed, Feb 22, 2017 at 6:51 PM, Colin King <colin.k...@canonical.com> wrote: > From: Colin Ian King <colin.k...@canonical.com> > > trivial fix to spelling mistake in pr_err message > > Signe

Re: [PATCH] crypto: brcm: fix spelling mistake: "genereate" -> "generate"

2017-02-24 Thread Steve Lin
Looks good, thanks! Acked-by: Steve Lin On Wed, Feb 22, 2017 at 6:51 PM, Colin King wrote: > From: Colin Ian King > > trivial fix to spelling mistake in pr_err message > > Signed-off-by: Colin Ian King > --- > drivers/crypto/bcm/util.c | 2 +- > 1 file changed, 1

[PATCH v2] ARM: dts: BCM953012HR: Initial Checkin

2017-02-23 Thread Steve Lin
Initial version of DTS to support Broadcom BCM953012HR Northstar HR platform, similar to, but not the same as existing 953012K. Signed-off-by: Steve Lin <steven.l...@broadcom.com> Acked-by: Jon Mason <jon.ma...@broadcom.com> --- V2 uses suggested changes from Rafal Milecki and Rob He

[PATCH v2] ARM: dts: BCM953012HR: Initial Checkin

2017-02-23 Thread Steve Lin
Initial version of DTS to support Broadcom BCM953012HR Northstar HR platform, similar to, but not the same as existing 953012K. Signed-off-by: Steve Lin Acked-by: Jon Mason --- V2 uses suggested changes from Rafal Milecki and Rob Herring. Note that for now I just added the SPDX-License

[PATCH v2 1/3] mailbox: bcm-pdc: Add Northstar Plus support to PDC driver

2017-02-23 Thread Steve Lin
for the type of hardware in use, in order to write the appropriate interrupt configuration register. Also updated DMA width to be correct for both NS+ and NS2. Tested on NS+ and NS2. Signed-off-by: Steve Lin <steven.l...@broadcom.com> --- drivers/mailbox/Kconfig | 9 +++--- d

[PATCH v2 0/3] Add Northstar Plus support to PDC mailbox driver

2017-02-23 Thread Steve Lin
Adds support for Broadcom Northstar+ to mailbox (PDC) driver. Patch 1/3: Driver code and Kconfig changes Patch 2/3: Device tree changes Patch 3/3: DT bindings documentation changes v2 addresses Jon Mason's suggestion about making the bindings doc change a separate patch. Steve Lin (3

[PATCH v2 0/3] Add Northstar Plus support to PDC mailbox driver

2017-02-23 Thread Steve Lin
Adds support for Broadcom Northstar+ to mailbox (PDC) driver. Patch 1/3: Driver code and Kconfig changes Patch 2/3: Device tree changes Patch 3/3: DT bindings documentation changes v2 addresses Jon Mason's suggestion about making the bindings doc change a separate patch. Steve Lin (3

[PATCH v2 1/3] mailbox: bcm-pdc: Add Northstar Plus support to PDC driver

2017-02-23 Thread Steve Lin
for the type of hardware in use, in order to write the appropriate interrupt configuration register. Also updated DMA width to be correct for both NS+ and NS2. Tested on NS+ and NS2. Signed-off-by: Steve Lin --- drivers/mailbox/Kconfig | 9 +++--- drivers/mailbox/bcm-pdc-mailbox.c | 61

[PATCH v2 2/3] ARM: dts: NSP: Add mailbox (PDC) to NSP

2017-02-23 Thread Steve Lin
Adds mailbox / PDC to NSP device tree. Needs new compatibility string to differentiate from NS2 version. Signed-off-by: Steve Lin <steven.l...@broadcom.com> --- arch/arm/boot/dts/bcm-nsp.dtsi | 9 + 1 file changed, 9 insertions(+) diff --git a/arch/arm/boot/dts/bcm-nsp.dtsi b/ar

[PATCH v2 3/3] dt-bindings: mailbox: Update doc with NSP PDC/mailbox support

2017-02-23 Thread Steve Lin
Update the DT bindings documentation to reflect the new NSP version of PDC driver compatibility string. Signed-off-by: Steve Lin <steven.l...@broadcom.com> --- Documentation/devicetree/bindings/mailbox/brcm,iproc-pdc-mbox.txt | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-)

[PATCH v2 2/3] ARM: dts: NSP: Add mailbox (PDC) to NSP

2017-02-23 Thread Steve Lin
Adds mailbox / PDC to NSP device tree. Needs new compatibility string to differentiate from NS2 version. Signed-off-by: Steve Lin --- arch/arm/boot/dts/bcm-nsp.dtsi | 9 + 1 file changed, 9 insertions(+) diff --git a/arch/arm/boot/dts/bcm-nsp.dtsi b/arch/arm/boot/dts/bcm-nsp.dtsi

[PATCH v2 3/3] dt-bindings: mailbox: Update doc with NSP PDC/mailbox support

2017-02-23 Thread Steve Lin
Update the DT bindings documentation to reflect the new NSP version of PDC driver compatibility string. Signed-off-by: Steve Lin --- Documentation/devicetree/bindings/mailbox/brcm,iproc-pdc-mbox.txt | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Documentation

Re: [PATCH 1/1] ARM: dts: BCM953012HR: Initial Checkin

2017-02-23 Thread Steve Lin
b 23, 2017 at 4:37 AM, Rafał Miłecki <zaj...@gmail.com> wrote: > On 02/22/2017 10:14 PM, Steve Lin wrote: >> >> Initial version of DTS to support Broadcom BCM953012HR Northstar >> HR platform, similar to, but not the same as existing 953012K. >> >> Signed-

Re: [PATCH 1/1] ARM: dts: BCM953012HR: Initial Checkin

2017-02-23 Thread Steve Lin
b 23, 2017 at 4:37 AM, Rafał Miłecki wrote: > On 02/22/2017 10:14 PM, Steve Lin wrote: >> >> Initial version of DTS to support Broadcom BCM953012HR Northstar >> HR platform, similar to, but not the same as existing 953012K. >> >> Signed-off-by: Steve Lin

[PATCH 1/1] ARM: dts: NSP: Add crypto (SPU) to dtsi

2017-02-22 Thread Steve Lin
Adds crypto hardware (SPU) to Northstar Plus device tree file. Signed-off-by: Steve Lin <steven.l...@broadcom.com> --- Code changes for this addition were submitted previously by Rob Rice: https://git.kernel.org/cgit/linux/kernel/git/herbert/cryptodev-2.6.git/comm

[PATCH 1/1] ARM: dts: NSP: Add crypto (SPU) to dtsi

2017-02-22 Thread Steve Lin
Adds crypto hardware (SPU) to Northstar Plus device tree file. Signed-off-by: Steve Lin --- Code changes for this addition were submitted previously by Rob Rice: https://git.kernel.org/cgit/linux/kernel/git/herbert/cryptodev-2.6.git/commit/?id=9d12ba86f818aa9cfe9f01b750336aa441f2ffa2 --- arch

[PATCH 1/1] ARM: dts: BCM953012HR: Initial Checkin

2017-02-22 Thread Steve Lin
Initial version of DTS to support Broadcom BCM953012HR Northstar HR platform, similar to, but not the same as existing 953012K. Signed-off-by: Steve Lin <steven.l...@broadcom.com> --- arch/arm/boot/dts/Makefile| 1 + arch/arm/boot/dts/bcm953012hr.dts

[PATCH 1/1] ARM: dts: BCM953012HR: Initial Checkin

2017-02-22 Thread Steve Lin
Initial version of DTS to support Broadcom BCM953012HR Northstar HR platform, similar to, but not the same as existing 953012K. Signed-off-by: Steve Lin --- arch/arm/boot/dts/Makefile| 1 + arch/arm/boot/dts/bcm953012hr.dts | 115 ++ 2 files changed

[PATCH 2/2] ARM: dts: NSP: Add mailbox (PDC) to NSP

2017-02-22 Thread Steve Lin
Adds mailbox / PDC to NSP device tree. Needs new compatibility string to differentiate from NS2 version. Signed-off-by: Steve Lin <steven.l...@broadcom.com> --- .../devicetree/bindings/mailbox/brcm,iproc-pdc-mbox.txt | 6 -- arch/arm/boot/dts/bcm-ns

[PATCH 2/2] ARM: dts: NSP: Add mailbox (PDC) to NSP

2017-02-22 Thread Steve Lin
Adds mailbox / PDC to NSP device tree. Needs new compatibility string to differentiate from NS2 version. Signed-off-by: Steve Lin --- .../devicetree/bindings/mailbox/brcm,iproc-pdc-mbox.txt | 6 -- arch/arm/boot/dts/bcm-nsp.dtsi | 9 + 2

[PATCH 1/2] mailbox: bcm-pdc: Add Northstar Plus support to PDC driver

2017-02-22 Thread Steve Lin
for the type of hardware in use, in order to write the appropriate interrupt configuration register. Also updated DMA width to be correct for both NS+ and NS2. Tested on NS+ and NS2. Signed-off-by: Steve Lin <steven.l...@broadcom.com> --- drivers/mailbox/Kconfig | 9 +++--- d

[PATCH 1/2] mailbox: bcm-pdc: Add Northstar Plus support to PDC driver

2017-02-22 Thread Steve Lin
for the type of hardware in use, in order to write the appropriate interrupt configuration register. Also updated DMA width to be correct for both NS+ and NS2. Tested on NS+ and NS2. Signed-off-by: Steve Lin --- drivers/mailbox/Kconfig | 9 +++--- drivers/mailbox/bcm-pdc-mailbox.c | 61

[PATCH 0/2] Add Northstar plus suport to PDC mailbox driver

2017-02-22 Thread Steve Lin
Adds support for Broadcom Northstar+ to mailbox (PDC) driver. Patch 1/2: Driver code and Kconfig changes Patch 2/2: Device tree and documentation changes Steve Lin (2): mailbox: bcm-pdc: Add Northstar Plus support to PDC driver ARM: dts: NSP: Add mailbox (PDC) to NSP .../bindings/mailbox

[PATCH 0/2] Add Northstar plus suport to PDC mailbox driver

2017-02-22 Thread Steve Lin
Adds support for Broadcom Northstar+ to mailbox (PDC) driver. Patch 1/2: Driver code and Kconfig changes Patch 2/2: Device tree and documentation changes Steve Lin (2): mailbox: bcm-pdc: Add Northstar Plus support to PDC driver ARM: dts: NSP: Add mailbox (PDC) to NSP .../bindings/mailbox