[PATCH v6 01/10] net: eth: altera: tse_start_xmit ignores tx_buffer call response

2020-08-18 Thread Ooi, Joyce
on success. -> Don't ignore the return from tse_buffer calls -> Fix sgdma tse_buffer call to return 0 on success and NETDEV_TX_BUSY on failure. Signed-off-by: Dalon Westergreen Signed-off-by: Joyce Ooi Reviewed-by: Thor Thayer --- v2: no change v3: queue is stopped before ret

[PATCH v6 08/10] net: eth: altera: add support for ptp and timestamping

2020-08-18 Thread Ooi, Joyce
Westergreen Signed-off-by: Joyce Ooi --- v2: this patch is added in patch version 2 v3: no change v4: no change v5: rename 'ptp_enable' variable to 'has_ptp', initialize hardware clock to 0, and minor suggested edits v6: fix build warning and remove return error to allow PHY with timestamping

[PATCH v6 04/10] net: eth: altera: add optional function to start tx dma

2020-08-18 Thread Ooi, Joyce
From: Dalon Westergreen Allow for optional start up of tx dma if the start_txdma function is defined in altera_dmaops. Signed-off-by: Dalon Westergreen Signed-off-by: Joyce Ooi Reviewed-by: Thor Thayer --- v2: no change v3: no change v4: no change v5: no change v6: no change --- drivers/net

[PATCH v6 06/10] net: eth: altera: Add missing identifier names to function declarations

2020-08-18 Thread Ooi, Joyce
From: Dalon Westergreen The sgdma and msgdma header files included function declarations without identifier names for pointers. Add appropriate identifier names. Signed-off-by: Dalon Westergreen Signed-off-by: Joyce Ooi Reviewed-by: Thor Thayer --- v2: this patch is added in patch version 2

[PATCH v6 05/10] net: eth: altera: Move common functions to altera_utils

2020-08-18 Thread Ooi, Joyce
From: Dalon Westergreen Move request_and_map and other shared functions to altera_utils. This is the first step to moving common code out of tse specific code so that it can be shared with future altera ethernet ip. Signed-off-by: Dalon Westergreen Signed-off-by: Joyce Ooi Reviewed-by: Thor

[PATCH v6 09/10] net: eth: altera: add msgdma prefetcher

2020-08-18 Thread Ooi, Joyce
-by: Dalon Westergreen Signed-off-by: Joyce Ooi --- v2: minor fixes and suggested edits v3: queue is stopped before returning NETDEV_TX_BUSY v4: fix build warnings v5: hardcode poll_freq instead of reading from device tree and some minor edits v6: no change --- drivers/net/ethernet/altera/Makefile

[PATCH v6 02/10] net: eth: altera: set rx and tx ring size before init_dma call

2020-08-18 Thread Ooi, Joyce
From: Dalon Westergreen It is more appropriate to set the rx and tx ring size before calling the init function for the dma. Signed-off-by: Dalon Westergreen Signed-off-by: Joyce Ooi Reviewed-by: Thor Thayer --- v2: no change v3: no change v4: no change v5: no change v6: no change

[PATCH v6 10/10] net: eth: altera: update devicetree bindings documentation

2020-08-18 Thread Ooi, Joyce
From: Dalon Westergreen Update devicetree bindings documentation to include msgdma prefetcher and ptp bindings. Cc: Rob Herring Cc: devicet...@vger.kernel.org Signed-off-by: Dalon Westergreen Signed-off-by: Joyce Ooi Reviewed-by: Rob Herring --- v2: no change v3: no change v4: no change v5

[PATCH v6 07/10] net: eth: altera: change tx functions to type netdev_tx_t

2020-08-18 Thread Ooi, Joyce
From: Dalon Westergreen Modify all msgdma and sgdma tx_buffer functions to be of type netdev_tx_t, and also modify main tx function to be of netdev_tx_t type. Signed-off-by: Dalon Westergreen Signed-off-by: Joyce Ooi Reviewed-by: Thor Thayer --- v2: this patch is added in patch version 2 v3

[PATCH v6 03/10] net: eth: altera: fix altera_dmaops declaration

2020-08-18 Thread Ooi, Joyce
From: Dalon Westergreen The declaration of struct altera_dmaops does not have identifier names. Add identifier names to confrom with required coding styles. Signed-off-by: Dalon Westergreen Signed-off-by: Joyce Ooi Reviewed-by: Thor Thayer --- v2: no change v3: no change v4: no change v5

[PATCH v6 00/10] net: eth: altera: tse: Add PTP and mSGDMA prefetcher

2020-08-18 Thread Ooi, Joyce
From: Joyce Ooi This patch series cleans up the Altera TSE driver and adds support for the newer msgdma prefetcher as well as ptp support when using the msgdma prefetcher. v2: Rename altera_ptp to intel_fpga_tod, modify msgdma and sgdma tx_buffer functions to be of type netdev_tx_t

RE: [PATCH v5 08/10] net: eth: altera: add support for ptp and timestamping

2020-08-07 Thread Ooi, Joyce
> -Original Message- > From: Richard Cochran > Sent: Monday, July 27, 2020 10:29 PM > To: Ooi, Joyce > Cc: Thor Thayer ; David S . Miller > ; Jakub Kicinski ; > net...@vger.kernel.org; linux-kernel@vger.kernel.org; Dalon Westergreen > ; Tan, Ley Foon > ; See,

[PATCH] MAINTAINERS: Replace Thor Thayer as Altera Triple Speed Ethernet maintainer

2020-07-27 Thread Ooi, Joyce
From: Joyce Ooi This patch is to replace Thor Thayer as Altera Triple Speed Ethernet maintainer as he is moving to a different role. Signed-off-by: Joyce Ooi --- MAINTAINERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MAINTAINERS b/MAINTAINERS index e64cdde81851

[PATCH v5 08/10] net: eth: altera: add support for ptp and timestamping

2020-07-27 Thread Ooi, Joyce
Westergreen Signed-off-by: Joyce Ooi --- v2: this patch is added in patch version 2 v3: no change v4: no change v5: rename 'ptp_enable' variable to 'has_ptp', initialize hardware clock to 0, and minor suggested edits --- drivers/net/ethernet/altera/Kconfig | 1 + drivers/net/ethernet

[PATCH v5 09/10] net: eth: altera: add msgdma prefetcher

2020-07-27 Thread Ooi, Joyce
-by: Dalon Westergreen Signed-off-by: Joyce Ooi --- v2: minor fixes and suggested edits v3: queue is stopped before returning NETDEV_TX_BUSY v4: fix build warnings v5: hardcode poll_freq instead of reading from device tree and some minor edits --- drivers/net/ethernet/altera/Makefile

[PATCH v5 10/10] net: eth: altera: update devicetree bindings documentation

2020-07-27 Thread Ooi, Joyce
From: Dalon Westergreen Update devicetree bindings documentation to include msgdma prefetcher and ptp bindings. Cc: Rob Herring Cc: devicet...@vger.kernel.org Signed-off-by: Dalon Westergreen Signed-off-by: Joyce Ooi Reviewed-by: Rob Herring --- v2: no change v3: no change v4: no change v5

[PATCH v5 05/10] net: eth: altera: Move common functions to altera_utils

2020-07-27 Thread Ooi, Joyce
From: Dalon Westergreen Move request_and_map and other shared functions to altera_utils. This is the first step to moving common code out of tse specific code so that it can be shared with future altera ethernet ip. Signed-off-by: Dalon Westergreen Signed-off-by: Joyce Ooi Reviewed-by: Thor

[PATCH v5 07/10] net: eth: altera: change tx functions to type netdev_tx_t

2020-07-27 Thread Ooi, Joyce
From: Dalon Westergreen Modify all msgdma and sgdma tx_buffer functions to be of type netdev_tx_t, and also modify main tx function to be of netdev_tx_t type. Signed-off-by: Dalon Westergreen Signed-off-by: Joyce Ooi Reviewed-by: Thor Thayer --- v2: this patch is added in patch version 2 v3

[PATCH v5 06/10] net: eth: altera: Add missing identifier names to function declarations

2020-07-27 Thread Ooi, Joyce
From: Dalon Westergreen The sgdma and msgdma header files included function declarations without identifier names for pointers. Add appropriate identifier names. Signed-off-by: Dalon Westergreen Signed-off-by: Joyce Ooi Reviewed-by: Thor Thayer --- v2: this patch is added in patch version 2

[PATCH v5 04/10] net: eth: altera: add optional function to start tx dma

2020-07-27 Thread Ooi, Joyce
From: Dalon Westergreen Allow for optional start up of tx dma if the start_txdma function is defined in altera_dmaops. Signed-off-by: Dalon Westergreen Signed-off-by: Joyce Ooi Reviewed-by: Thor Thayer --- v2: no change v3: no change v4: no change v5: no change --- drivers/net/ethernet

[PATCH v5 00/10] net: eth: altera: tse: Add PTP and mSGDMA prefetcher

2020-07-27 Thread Ooi, Joyce
From: Joyce Ooi This patch series cleans up the Altera TSE driver and adds support for the newer msgdma prefetcher as well as ptp support when using the msgdma prefetcher. v2: Rename altera_ptp to intel_fpga_tod, modify msgdma and sgdma tx_buffer functions to be of type netdev_tx_t

[PATCH v5 02/10] net: eth: altera: set rx and tx ring size before init_dma call

2020-07-27 Thread Ooi, Joyce
From: Dalon Westergreen It is more appropriate to set the rx and tx ring size before calling the init function for the dma. Signed-off-by: Dalon Westergreen Signed-off-by: Joyce Ooi Reviewed-by: Thor Thayer --- v2: no change v3: no change v4: no change v5: no change --- drivers/net/ethernet

[PATCH v5 03/10] net: eth: altera: fix altera_dmaops declaration

2020-07-27 Thread Ooi, Joyce
From: Dalon Westergreen The declaration of struct altera_dmaops does not have identifier names. Add identifier names to confrom with required coding styles. Signed-off-by: Dalon Westergreen Signed-off-by: Joyce Ooi Reviewed-by: Thor Thayer --- v2: no change v3: no change v4: no change v5

[PATCH v5 01/10] net: eth: altera: tse_start_xmit ignores tx_buffer call response

2020-07-27 Thread Ooi, Joyce
on success. -> Don't ignore the return from tse_buffer calls -> Fix sgdma tse_buffer call to return 0 on success and NETDEV_TX_BUSY on failure. Signed-off-by: Dalon Westergreen Signed-off-by: Joyce Ooi Reviewed-by: Thor Thayer --- v2: no change v3: queue is stopped before ret

RE: [PATCH v4 08/10] net: eth: altera: add support for ptp and timestamping

2020-07-14 Thread Ooi, Joyce
> -Original Message- > From: Richard Cochran > Sent: Thursday, July 9, 2020 7:31 PM > To: Ooi, Joyce > Cc: Thor Thayer ; David S . Miller > ; Jakub Kicinski ; > net...@vger.kernel.org; linux-kernel@vger.kernel.org; Dalon Westergreen > ; Tan, Ley Foon > ; See,

RE: [PATCH v4 09/10] net: eth: altera: add msgdma prefetcher

2020-07-14 Thread Ooi, Joyce
> -Original Message- > From: David Miller > Sent: Thursday, July 9, 2020 1:34 AM > To: Ooi, Joyce > Cc: thor.tha...@linux.intel.com; k...@kernel.org; net...@vger.kernel.org; > linux-kernel@vger.kernel.org; dalon.westergr...@linux.intel.com; Tan, Ley > Foon ; See,

RE: [PATCH v4 09/10] net: eth: altera: add msgdma prefetcher

2020-07-14 Thread Ooi, Joyce
> -Original Message- > From: Jakub Kicinski > Sent: Thursday, July 9, 2020 5:49 AM > To: Ooi, Joyce > Cc: Thor Thayer ; David S . Miller > ; net...@vger.kernel.org; linux- > ker...@vger.kernel.org; Dalon Westergreen > ; Tan, Ley Foon > ; See, Chin Liang ; &

[PATCH v4 09/10] net: eth: altera: add msgdma prefetcher

2020-07-08 Thread Ooi, Joyce
-by: Dalon Westergreen Signed-off-by: Joyce Ooi --- v2: minor fixes and suggested edits v3: queue is stopped before returning NETDEV_TX_BUSY v4: fix build warnings --- drivers/net/ethernet/altera/Makefile | 2 +- .../net/ethernet/altera/altera_msgdma_prefetcher.c | 431

[PATCH v4 10/10] net: eth: altera: update devicetree bindings documentation

2020-07-08 Thread Ooi, Joyce
From: Dalon Westergreen Update devicetree bindings documentation to include msgdma prefetcher and ptp bindings. Cc: Rob Herring Cc: devicet...@vger.kernel.org Signed-off-by: Dalon Westergreen Signed-off-by: Joyce Ooi Reviewed-by: Rob Herring --- v2: no change v3: no change v4: no change

[PATCH v4 05/10] net: eth: altera: Move common functions to altera_utils

2020-07-08 Thread Ooi, Joyce
From: Dalon Westergreen Move request_and_map and other shared functions to altera_utils. This is the first step to moving common code out of tse specific code so that it can be shared with future altera ethernet ip. Signed-off-by: Dalon Westergreen Signed-off-by: Joyce Ooi --- v2: no change

[PATCH v4 08/10] net: eth: altera: add support for ptp and timestamping

2020-07-08 Thread Ooi, Joyce
Westergreen Signed-off-by: Joyce Ooi Acked-by: Richard Cochran --- v2: this patch is added in patch version 2 v3: no change v4: no change --- drivers/net/ethernet/altera/Kconfig | 1 + drivers/net/ethernet/altera/Makefile | 3 +- drivers/net/ethernet/altera/altera_tse.h

[PATCH v4 06/10] net: eth: altera: Add missing identifier names to function declarations

2020-07-08 Thread Ooi, Joyce
From: Dalon Westergreen The sgdma and msgdma header files included function declarations without identifier names for pointers. Add appropriate identifier names. Signed-off-by: Dalon Westergreen Signed-off-by: Joyce Ooi --- v2: this patch is added in patch version 2 v3: no change v4

[PATCH v4 07/10] net: eth: altera: change tx functions to type netdev_tx_t

2020-07-08 Thread Ooi, Joyce
From: Dalon Westergreen Modify all msgdma and sgdma tx_buffer functions to be of type netdev_tx_t, and also modify main tx function to be of netdev_tx_t type. Signed-off-by: Dalon Westergreen Signed-off-by: Joyce Ooi --- v2: this patch is added in patch version 2 v3: no change v4: no change

[PATCH v4 02/10] net: eth: altera: set rx and tx ring size before init_dma call

2020-07-08 Thread Ooi, Joyce
From: Dalon Westergreen It is more appropriate to set the rx and tx ring size before calling the init function for the dma. Signed-off-by: Dalon Westergreen Signed-off-by: Joyce Ooi --- v2: no change v3: no change v4: no change --- drivers/net/ethernet/altera/altera_tse_main.c | 6 -- 1

[PATCH v4 01/10] net: eth: altera: tse_start_xmit ignores tx_buffer call response

2020-07-08 Thread Ooi, Joyce
on success. -> Don't ignore the return from tse_buffer calls -> Fix sgdma tse_buffer call to return 0 on success and NETDEV_TX_BUSY on failure. Signed-off-by: Dalon Westergreen Signed-off-by: Joyce Ooi --- v2: no change v3: queue is stopped before returning NETDEV_TX_BUSY v4: no

[PATCH v4 03/10] net: eth: altera: fix altera_dmaops declaration

2020-07-08 Thread Ooi, Joyce
From: Dalon Westergreen The declaration of struct altera_dmaops does not have identifier names. Add identifier names to confrom with required coding styles. Signed-off-by: Dalon Westergreen Signed-off-by: Joyce Ooi --- v2: no change v3: no change v4: no change --- drivers/net/ethernet

[PATCH v4 04/10] net: eth: altera: add optional function to start tx dma

2020-07-08 Thread Ooi, Joyce
From: Dalon Westergreen Allow for optional start up of tx dma if the start_txdma function is defined in altera_dmaops. Signed-off-by: Dalon Westergreen Signed-off-by: Joyce Ooi --- v2: no change v3: no change v4: no change --- drivers/net/ethernet/altera/altera_tse.h | 1 + drivers/net

[PATCH v4 00/10] net: eth: altera: tse: Add PTP and mSGDMA prefetcher

2020-07-08 Thread Ooi, Joyce
From: Joyce Ooi This patch series cleans up the Altera TSE driver and adds support for the newer msgdma prefetcher as well as ptp support when using the msgdma prefetcher. v2: Rename altera_ptp to intel_fpga_tod, modify msgdma and sgdma tx_buffer functions to be of type netdev_tx_t

RE: [PATCH v3 10/10] net: eth: altera: update devicetree bindings documentation

2020-06-05 Thread Ooi, Joyce
> -Original Message- > From: Rob Herring > Sent: Friday, June 5, 2020 6:23 AM > To: Ooi, Joyce > Cc: David S . Miller ; Jakub Kicinski > ; Thor Thayer ; > net...@vger.kernel.org; Rob Herring ; See, Chin > Liang ; linux-kernel@vger.kernel.org; Nguyen, >

[PATCH v3 10/10] net: eth: altera: update devicetree bindings documentation

2020-06-04 Thread Ooi, Joyce
From: Dalon Westergreen Update devicetree bindings documentation to include msgdma prefetcher and ptp bindings. Cc: Rob Herring Cc: devicet...@vger.kernel.org Signed-off-by: Dalon Westergreen Signed-off-by: Joyce Ooi --- v2: no change v3: no change --- .../devicetree/bindings/net

[PATCH v3 09/10] net: eth: altera: add msgdma prefetcher

2020-06-04 Thread Ooi, Joyce
-by: Dalon Westergreen Signed-off-by: Joyce Ooi --- v2: minor fixes and suggested edits v3: queue is stopped before returning NETDEV_TX_BUSY --- drivers/net/ethernet/altera/Makefile | 2 +- .../net/ethernet/altera/altera_msgdma_prefetcher.c | 431 + .../net

[PATCH v3 03/10] net: eth: altera: fix altera_dmaops declaration

2020-06-04 Thread Ooi, Joyce
From: Dalon Westergreen The declaration of struct altera_dmaops does not have identifier names. Add identifier names to confrom with required coding styles. Signed-off-by: Dalon Westergreen Signed-off-by: Joyce Ooi --- v2: no change v3: no change --- drivers/net/ethernet/altera/altera_tse.h

[PATCH v3 08/10] net: eth: altera: add support for ptp and timestamping

2020-06-04 Thread Ooi, Joyce
Westergreen Signed-off-by: Joyce Ooi --- v2: this patch is added in patch version 2 v3: no change --- drivers/net/ethernet/altera/Kconfig | 1 + drivers/net/ethernet/altera/Makefile | 3 +- drivers/net/ethernet/altera/altera_tse.h | 8 + drivers/net/ethernet/altera

[PATCH v3 05/10] net: eth: altera: Move common functions to altera_utils

2020-06-04 Thread Ooi, Joyce
From: Dalon Westergreen Move request_and_map and other shared functions to altera_utils. This is the first step to moving common code out of tse specific code so that it can be shared with future altera ethernet ip. Signed-off-by: Dalon Westergreen Signed-off-by: Joyce Ooi --- v2: no change

[PATCH v3 06/10] net: eth: altera: Add missing identifier names to function declarations

2020-06-04 Thread Ooi, Joyce
From: Dalon Westergreen The sgdma and msgdma header files included function declarations without identifier names for pointers. Add appropriate identifier names. Signed-off-by: Dalon Westergreen Signed-off-by: Joyce Ooi --- v2: this patch is added in patch version 2 v3: no change

[PATCH v3 07/10] net: eth: altera: change tx functions to type netdev_tx_t

2020-06-04 Thread Ooi, Joyce
From: Dalon Westergreen Modify all msgdma and sgdma tx_buffer functions to be of type netdev_tx_t, and also modify main tx function to be of netdev_tx_t type. Signed-off-by: Dalon Westergreen Signed-off-by: Joyce Ooi --- v2: this patch is added in patch version 2 v3: no change --- drivers

[PATCH v3 04/10] net: eth: altera: add optional function to start tx dma

2020-06-04 Thread Ooi, Joyce
From: Dalon Westergreen Allow for optional start up of tx dma if the start_txdma function is defined in altera_dmaops. Signed-off-by: Dalon Westergreen Signed-off-by: Joyce Ooi --- v2: no change v3: no change --- drivers/net/ethernet/altera/altera_tse.h | 1 + drivers/net/ethernet

[PATCH v3 02/10] net: eth: altera: set rx and tx ring size before init_dma call

2020-06-04 Thread Ooi, Joyce
From: Dalon Westergreen It is more appropriate to set the rx and tx ring size before calling the init function for the dma. Signed-off-by: Dalon Westergreen Signed-off-by: Joyce Ooi --- v2: no change v3: no change --- drivers/net/ethernet/altera/altera_tse_main.c | 6 -- 1 file changed

[PATCH v3 01/10] net: eth: altera: tse_start_xmit ignores tx_buffer call response

2020-06-04 Thread Ooi, Joyce
on success. -> Don't ignore the return from tse_buffer calls -> Fix sgdma tse_buffer call to return 0 on success and NETDEV_TX_BUSY on failure. Signed-off-by: Dalon Westergreen Signed-off-by: Joyce Ooi --- v2: no change v3: queue is stopped before returning NETDEV_TX_BUSY --- d

[PATCH v3 00/10] net: eth: altera: tse: Add PTP and mSGDMA prefetcher

2020-06-04 Thread Ooi, Joyce
From: Joyce Ooi This patch series cleans up the Altera TSE driver and adds support for the newer msgdma prefetcher as well as ptp support when using the msgdma prefetcher. v2: Rename altera_ptp to intel_fpga_tod, modify msgdma and sgdma tx_buffer functions to be of type netdev_tx_t

RE: [PATCHv2 10/10] net: eth: altera: update devicetree bindings documentation

2020-05-13 Thread Ooi, Joyce
> -Original Message- > From: Ooi, Joyce > Sent: Wednesday, May 13, 2020 8:01 PM > To: Rob Herring > Cc: Thor Thayer ; David S . Miller > ; net...@vger.kernel.org; linux- > ker...@vger.kernel.org; Westergreen, Dalon ; > Tan, Ley Foon ; See, Chin Liang >

RE: [PATCHv2 10/10] net: eth: altera: update devicetree bindings documentation

2020-05-13 Thread Ooi, Joyce
> -Original Message- > From: Rob Herring > Sent: Wednesday, May 13, 2020 6:53 AM > To: Ooi, Joyce > Cc: Thor Thayer ; David S . Miller > ; net...@vger.kernel.org; linux- > ker...@vger.kernel.org; Westergreen, Dalon > ; Tan, Ley Foon ; > See, Chin Liang

RE: [PATCHv2 01/10] net: eth: altera: tse_start_xmit ignores tx_buffer call response

2020-05-05 Thread Ooi, Joyce
> -Original Message- > From: David Miller > Sent: Tuesday, May 5, 2020 1:40 AM > To: Ooi, Joyce > Cc: thor.tha...@linux.intel.com; net...@vger.kernel.org; linux- > ker...@vger.kernel.org; Westergreen, Dalon ; > Tan, Ley Foon ; See, Chin Liang > ; Nguyen, Dinh &g

[PATCHv2 10/10] net: eth: altera: update devicetree bindings documentation

2020-05-04 Thread Joyce Ooi
From: Dalon Westergreen Update devicetree bindings documentation to include msgdma prefetcher and ptp bindings. Cc: Rob Herring Cc: devicet...@vger.kernel.org Signed-off-by: Dalon Westergreen Signed-off-by: Joyce Ooi --- v2: no change --- .../devicetree/bindings/net/altera_tse.txt

[PATCHv2 06/10] net: eth: altera: Add missing identifier names to function declarations

2020-05-04 Thread Joyce Ooi
From: Dalon Westergreen The sgdma and msgdma header files included function declarations without identifier names for pointers. Add appropriate identifier names. Signed-off-by: Dalon Westergreen Signed-off-by: Joyce Ooi --- v2: this patch is added in patch version 2 --- drivers/net/ethernet

[PATCHv2 07/10] net: eth: altera: change tx functions to type netdev_tx_t

2020-05-04 Thread Joyce Ooi
From: Dalon Westergreen Modify all msgdma and sgdma tx_buffer functions to be of type netdev_tx_t, and also modify main tx function to be of netdev_tx_t type. Signed-off-by: Dalon Westergreen Signed-off-by: Joyce Ooi --- v2: this patch is added in patch set version 2 --- drivers/net/ethernet

[PATCHv2 04/10] net: eth: altera: add optional function to start tx dma

2020-05-04 Thread Joyce Ooi
From: Dalon Westergreen Allow for optional start up of tx dma if the start_txdma function is defined in altera_dmaops. Signed-off-by: Dalon Westergreen Signed-off-by: Joyce Ooi --- v2: no change --- drivers/net/ethernet/altera/altera_tse.h | 1 + drivers/net/ethernet/altera

[PATCHv2 08/10] net: eth: altera: add support for ptp and timestamping

2020-05-04 Thread Joyce Ooi
Westergreen Signed-off-by: Joyce Ooi --- v2: rename altera_ptp to intel_fpga_tod --- drivers/net/ethernet/altera/Kconfig | 1 + drivers/net/ethernet/altera/Makefile | 3 +- drivers/net/ethernet/altera/altera_tse.h | 8 + drivers/net/ethernet/altera

[PATCHv2 09/10] net: eth: altera: add msgdma prefetcher

2020-05-04 Thread Joyce Ooi
-by: Dalon Westergreen Signed-off-by: Joyce Ooi --- v2: minor fixes and suggested edits --- drivers/net/ethernet/altera/Makefile | 2 +- .../net/ethernet/altera/altera_msgdma_prefetcher.c | 428 + .../net/ethernet/altera/altera_msgdma_prefetcher.h | 30

[PATCHv2 05/10] net: eth: altera: Move common functions to altera_utils

2020-05-04 Thread Joyce Ooi
From: Dalon Westergreen Move request_and_map and other shared functions to altera_utils. This is the first step to moving common code out of tse specific code so that it can be shared with future altera ethernet ip. Signed-off-by: Dalon Westergreen Signed-off-by: Joyce Ooi --- v2: no change

[PATCHv2 03/10] net: eth: altera: fix altera_dmaops declaration

2020-05-04 Thread Joyce Ooi
From: Dalon Westergreen The declaration of struct altera_dmaops does not have identifier names. Add identifier names to confrom with required coding styles. Signed-off-by: Dalon Westergreen Signed-off-by: Joyce Ooi --- v2: no change --- drivers/net/ethernet/altera/altera_tse.h | 30

[PATCHv2 01/10] net: eth: altera: tse_start_xmit ignores tx_buffer call response

2020-05-04 Thread Joyce Ooi
on success. -> Don't ignore the return from tse_buffer calls -> Fix sgdma tse_buffer call to return 0 on success and NETDEV_TX_BUSY on failure. Signed-off-by: Dalon Westergreen Signed-off-by: Joyce Ooi --- v2: no change --- drivers/net/ethernet/altera/altera_sgdma.c

[PATCHv2 02/10] net: eth: altera: set rx and tx ring size before init_dma call

2020-05-04 Thread Joyce Ooi
From: Dalon Westergreen It is more appropriate to set the rx and tx ring size before calling the init function for the dma. Signed-off-by: Dalon Westergreen Signed-off-by: Joyce Ooi --- v2: no change --- drivers/net/ethernet/altera/altera_tse_main.c | 6 -- 1 file changed, 4 insertions

[PATCHv2 00/10] net: eth: altera: tse: Add PTP and mSGDMA prefetcher

2020-05-04 Thread Joyce Ooi
This patch series cleans up the Altera TSE driver and adds support for the newer msgdma prefetcher as well as ptp support when using the msgdma prefetcher. v2: Rename altera_ptp to intel_fpga_tod, modify msgdma and sgdma tx_buffer functions to be of type netdev_tx_t, and minor suggested edits

RE: [PATCHv2] arm64: defconfig: add JFFS FS support in defconfig

2019-10-23 Thread Ooi, Joyce
> -Original Message- > From: Dinh Nguyen > Sent: Monday, October 21, 2019 11:57 PM > To: Ooi, Joyce ; Vladimir Murzin > ; Catalin Marinas ; Will > Deacon > Cc: Shawn Guo ; Olof Johansson ; > Maxime Ripard ; Bjorn Andersson > ; Arnd Bergmann ; Jagan Teki

[PATCHv2] arm64: defconfig: add JFFS FS support in defconfig

2019-10-17 Thread Ooi, Joyce
This patch adds JFFS2 FS support and remove QSPI Sector 4K size force in the default defconfig Signed-off-by: Ooi, Joyce --- v2: disable CONFIG_MTD_SPI_NOR_USE_4K_SECTORS using the correct syntax --- arch/arm64/configs/defconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/arm64

RE: [PATCH] arm64: defconfig: add JFFS FS support in defconfig

2019-10-17 Thread Ooi, Joyce
> -Original Message- > From: Vladimir Murzin [mailto:vladimir.mur...@arm.com] > Sent: Wednesday, October 16, 2019 7:46 PM > To: Ooi, Joyce ; Catalin Marinas > ; Will Deacon ; Dinh Nguyen > > Cc: Tan, Ley Foon ; Anson Huang > ; Arnd Bergmann ; Ong, Hean Loong >

[PATCHv2] arm64: dts: altera: update QSPI reg addresses for Stratix10

2019-10-16 Thread Ooi, Joyce
This patch updates the reg addresses for QSPI boot and QSPI rootfs in the device tree for Stratix10 Signed-off-by: Ooi, Joyce --- v2: update the qspi_rootfs partition size --- arch/arm64/boot/dts/altera/socfpga_stratix10_socdk.dts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions

[PATCHv2] arm64: dts: agilex: add QSPI support for Intel Agilex

2019-10-16 Thread Ooi, Joyce
This patch adds QSPI flash interface in device tree for Intel Agilex Signed-off-by: Ooi, Joyce --- v2: update the qspi_rootfs partition size --- arch/arm64/boot/dts/intel/socfpga_agilex_socdk.dts | 35 ++ 1 file changed, 35 insertions(+) diff --git a/arch/arm64/boot/dts

[PATCH] arm64: defconfig: add JFFS FS support in defconfig

2019-10-16 Thread Ooi, Joyce
This patch adds JFFS2 FS support and remove QSPI Sector 4K size force in the default defconfig Signed-off-by: Ooi, Joyce --- arch/arm64/configs/defconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig index c9adae4..6080c6e

[PATCH] arm64: dts: altera: update QSPI reg addresses for Stratix10

2019-10-08 Thread Joyce Ooi
From: "Ooi, Joyce" This patch updates the reg addresses for QSPI boot and QSPI rootfs in the device tree for Stratix10 Signed-off-by: Ooi, Joyce --- arch/arm64/boot/dts/altera/socfpga_stratix10_socdk.dts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/

[PATCH] arm64: dts: agilex: add QSPI support for Intel Agilex

2019-10-08 Thread Joyce Ooi
From: "Ooi, Joyce" This patch adds QSPI flash interface in device tree for Intel Agilex Signed-off-by: Ooi, Joyce --- arch/arm64/boot/dts/intel/socfpga_agilex_socdk.dts | 35 ++ 1 file changed, 35 insertions(+) diff --git a/arch/arm64/boot

RE: [PATCH] net: stmmac: Add SMC support for EMAC System Manager register

2019-02-12 Thread Ooi, Joyce
> -Original Message- > From: Thor Thayer [mailto:thor.tha...@linux.intel.com] > Sent: Wednesday, February 13, 2019 4:53 AM > To: Ooi, Joyce ; Giuseppe Cavallaro > ; Alexandre Torgue ; > Jose Abreu ; David S. Miller ; > Maxime Coquelin > Cc: net...@vger.kerne

[PATCH] net: stmmac: Add SMC support for EMAC System Manager register

2019-02-12 Thread Ooi, Joyce
As there is restriction to access to EMAC System Manager registers in the kernel for Intel Stratix10, the use of SMC calls are required and added in dwmac-socfpga driver. Signed-off-by: Ooi, Joyce --- .../net/ethernet/stmicro/stmmac/dwmac-socfpga.c| 101 1 files

Die Transaktion ist fertig

2018-09-22 Thread Mrs Joyce
-- Gute Nachrichten, mein Freund, die Transaktion läuft gerade und ich möchte wissen, ob Sie interessiert sind, damit ich der Bank ein Update geben kann, was ich mit dem Geld anfangen soll, das transferbereit ist.

Die Transaktion ist fertig

2018-09-22 Thread Mrs Joyce
-- Gute Nachrichten, mein Freund, die Transaktion läuft gerade und ich möchte wissen, ob Sie interessiert sind, damit ich der Bank ein Update geben kann, was ich mit dem Geld anfangen soll, das transferbereit ist.

Targeted B2B Companies Emails List

2018-08-14 Thread joyce . murphy
Providers (TSPs) • Application Service Providers (ASPs) • IT Managed Services Providers (ITMSP) • Storage Service Providers (SSPs) Kindly review and let me know if I can share more information on this. I look forward to hearing from you. Regards, Joyce Marketing Specialist If you don't

Targeted B2B Companies Emails List

2018-08-14 Thread joyce . murphy
Providers (TSPs) • Application Service Providers (ASPs) • IT Managed Services Providers (ITMSP) • Storage Service Providers (SSPs) Kindly review and let me know if I can share more information on this. I look forward to hearing from you. Regards, Joyce Marketing Specialist If you don't

[PATCH] arm64: dts: stratix10: Change pad skew values for EMAC0 PHY driver

2018-04-23 Thread Ooi, Joyce
The HPS EMAC0 drive strength is changed to 4mA because the initial 8mA drive strength has caused CE test to fail. This requires changes on the pad skew for EMAC0 PHY driver. Based on several measurements done, Tx clock does not require the extra 0.96ns delay. Signed-off-by: Ooi, Joyce <jo

[PATCH] arm64: dts: stratix10: Change pad skew values for EMAC0 PHY driver

2018-04-23 Thread Ooi, Joyce
The HPS EMAC0 drive strength is changed to 4mA because the initial 8mA drive strength has caused CE test to fail. This requires changes on the pad skew for EMAC0 PHY driver. Based on several measurements done, Tx clock does not require the extra 0.96ns delay. Signed-off-by: Ooi, Joyce

[PATCH] drivers/misc: Add Intel interrupt latency counter driver

2018-03-14 Thread Ooi, Joyce
interrupt. Signed-off-by: Ooi, Joyce <joyce@intel.com> --- .../misc/intel-interrupt-latency-counter.txt | 49 drivers/misc/intel_ilc.c | 299 2 files changed, 348 insertions(+), 0 deletions(-) create mode 100644 Documentation/devi

[PATCH] drivers/misc: Add Intel interrupt latency counter driver

2018-03-14 Thread Ooi, Joyce
interrupt. Signed-off-by: Ooi, Joyce --- .../misc/intel-interrupt-latency-counter.txt | 49 drivers/misc/intel_ilc.c | 299 2 files changed, 348 insertions(+), 0 deletions(-) create mode 100644 Documentation/devicetree/bindings/misc/intel

RE: [PATCH] arm64: defconfig: enable CONFIG_LEDS_TRIGGER_TIMER

2018-03-01 Thread Ooi, Joyce
Hi, It's been a while since I received any feedback about this patch. Are there any concerns about this patch? If no, could you please kindly ACK this patch? Thanks. Regards, Joyce Ooi > -Original Message- > From: Ooi, Joyce > Sent: Thursday, February 15, 2018 11:20 AM >

RE: [PATCH] arm64: defconfig: enable CONFIG_LEDS_TRIGGER_TIMER

2018-03-01 Thread Ooi, Joyce
Hi, It's been a while since I received any feedback about this patch. Are there any concerns about this patch? If no, could you please kindly ACK this patch? Thanks. Regards, Joyce Ooi > -Original Message- > From: Ooi, Joyce > Sent: Thursday, February 15, 2018 11:20 AM >

[PATCH] arm64: defconfig: enable CONFIG_LEDS_TRIGGER_TIMER

2018-02-14 Thread Ooi, Joyce
Enable LED timer trigger for ARM64 to allow LEDs to be controlled via sysfs. Signed-off-by: Ooi, Joyce <joyce@intel.com> --- arch/arm64/configs/defconfig |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/def

[PATCH] arm64: defconfig: enable CONFIG_LEDS_TRIGGER_TIMER

2018-02-14 Thread Ooi, Joyce
Enable LED timer trigger for ARM64 to allow LEDs to be controlled via sysfs. Signed-off-by: Ooi, Joyce --- arch/arm64/configs/defconfig |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig index 634b373..b728742

Re: [PATCH] brcmfmac: added LED triggers for transmit/receive

2017-07-11 Thread Russell Joyce
Thanks for your comments. > What I think Rafał is saying is that it would be better to have this > code in cfg80211 so other drivers including mac80211 could use it. While I agree that moving all wireless LED triggers to cfg80211 would be an ideal situation, it seems a bit out of scope for what

Re: [PATCH] brcmfmac: added LED triggers for transmit/receive

2017-07-11 Thread Russell Joyce
Thanks for your comments. > What I think Rafał is saying is that it would be better to have this > code in cfg80211 so other drivers including mac80211 could use it. While I agree that moving all wireless LED triggers to cfg80211 would be an ideal situation, it seems a bit out of scope for what

Re: [PATCH] brcmfmac: added LED triggers for transmit/receive

2017-07-10 Thread Russell Joyce
Miłecki <zaj...@gmail.com> wrote: > > On 7 July 2017 at 16:09, Russell Joyce <russell.jo...@york.ac.uk> wrote: >> Add three basic LED triggers to brcmfmac, based on those in mac80211: one >> for transmit, one for receive, and one for combined transmit/receive. >&g

Re: [PATCH] brcmfmac: added LED triggers for transmit/receive

2017-07-10 Thread Russell Joyce
Miłecki wrote: > > On 7 July 2017 at 16:09, Russell Joyce wrote: >> Add three basic LED triggers to brcmfmac, based on those in mac80211: one >> for transmit, one for receive, and one for combined transmit/receive. >> >> Signed-off-by: Russell Joyce > > 1) I

[PATCH] brcmfmac: added LED triggers for transmit/receive

2017-07-07 Thread Russell Joyce
Add three basic LED triggers to brcmfmac, based on those in mac80211: one for transmit, one for receive, and one for combined transmit/receive. Signed-off-by: Russell Joyce <russell.jo...@york.ac.uk> --- drivers/net/wireless/broadcom/brcm80211/Kconfig| 12 +++ .../wireless/br

[PATCH] brcmfmac: added LED triggers for transmit/receive

2017-07-07 Thread Russell Joyce
Add three basic LED triggers to brcmfmac, based on those in mac80211: one for transmit, one for receive, and one for combined transmit/receive. Signed-off-by: Russell Joyce --- drivers/net/wireless/broadcom/brcm80211/Kconfig| 12 +++ .../wireless/broadcom/brcm80211/brcmfmac/Makefile | 2

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

2016-11-16 Thread Ooi, Joyce
and HID_USAGE_SENSOR_ORIENT_MAGN_HEADING are used for sensivitity fields based on the HID Sensor Usages specifications. Hence, these changes are added on the sensitivity field. Signed-off-by: Ooi, Joyce <joyce@intel.com> --- changelog v2: * rename struct hid_sensor_common common_attributes to

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

2016-11-16 Thread Ooi, Joyce
and HID_USAGE_SENSOR_ORIENT_MAGN_HEADING are used for sensivitity fields based on the HID Sensor Usages specifications. Hence, these changes are added on the sensitivity field. Signed-off-by: Ooi, Joyce --- changelog v2: * rename struct hid_sensor_common common_attributes to struct hid_sensor_common

[PATCH] hid: sensor: fix input and feature attributes in HID sensor custom sysfs interface

2016-11-03 Thread Ooi, Joyce
-%d-%x-%s to input-%x-%x-%s and feature-%x-%x-%s in show_values() and store_values() accordingly. Signed-off-by: Ooi, Joyce <joyce@intel.com> --- drivers/hid/hid-sensor-custom.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/hid/hid-sensor-custom.c b/d

[PATCH] hid: sensor: fix input and feature attributes in HID sensor custom sysfs interface

2016-11-03 Thread Ooi, Joyce
-%d-%x-%s to input-%x-%x-%s and feature-%x-%x-%s in show_values() and store_values() accordingly. Signed-off-by: Ooi, Joyce --- drivers/hid/hid-sensor-custom.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/hid/hid-sensor-custom.c b/drivers/hid/hid-sensor-custom.c

[PATCH] iio: light and pressure: change data fields for ambient light and pressure sensor

2016-11-03 Thread Ooi, Joyce
Sensor Usages specifications. Signed-off-by: Ooi, Joyce <joyce@intel.com> --- drivers/iio/light/hid-sensor-als.c | 10 ++ drivers/iio/pressure/hid-sensor-press.c | 10 ++ include/linux/hid-sensor-ids.h | 1 + 3 files changed, 21 insertions(+) diff --git a/d

[PATCH] iio: light and pressure: change data fields for ambient light and pressure sensor

2016-11-03 Thread Ooi, Joyce
Sensor Usages specifications. Signed-off-by: Ooi, Joyce --- drivers/iio/light/hid-sensor-als.c | 10 ++ drivers/iio/pressure/hid-sensor-press.c | 10 ++ include/linux/hid-sensor-ids.h | 1 + 3 files changed, 21 insertions(+) diff --git a/drivers/iio/light/hid-sensor

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

2016-11-03 Thread Ooi, Joyce
and value_offset_rot. For sensitivity, HID_USAGE_SENSOR_ORIENT_MAGN_FLUX and HID_USAGE_SENSOR_ORIENT_MAGN_HEADING are used for sensivitity fields based on the HID Sensor Usages specifications. Hence, these changes are added on the sensitivity field. Signed-off-by: Ooi, Joyce <joyce@intel.

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

2016-11-03 Thread Ooi, Joyce
and value_offset_rot. For sensitivity, HID_USAGE_SENSOR_ORIENT_MAGN_FLUX and HID_USAGE_SENSOR_ORIENT_MAGN_HEADING are used for sensivitity fields based on the HID Sensor Usages specifications. Hence, these changes are added on the sensitivity field. Signed-off-by: Ooi, Joyce --- .../iio/common/hid

  1   2   >