Re: [PATCH v4 1/7] powerpc/pseries/iommu: Create defines for operations in ibm, ddw-applicable

2020-08-04 Thread David Dai
ruct pci_dev *dev, > struct device_node *pdn) > int page_shift; > u64 dma_addr, max_addr; > struct device_node *dn; > - u32 ddw_avail[3]; > + u32 ddw_avail[DDW_APPLICABLE_SIZE]; > struct direct_window *window; > struct property *win64; > struct dynamic_dma_window_prop *ddwprop; > @@ -1029,7 +1038,7 @@ static u64 enable_ddw(struct pci_dev *dev, > struct device_node *pdn) >* the property is actually in the parent, not the PE >*/ > ret = of_property_read_u32_array(pdn, "ibm,ddw-applicable", > - _avail[0], 3); > + _avail[0], > DDW_APPLICABLE_SIZE); > if (ret) > goto out_failed; > Tested-by: David Dai

Re: [PATCH v4 2/7] powerpc/pseries/iommu: Update call to ibm, query-pe-dma-windows

2020-08-04 Thread David Dai
> @@ -1049,7 +1120,7 @@ static u64 enable_ddw(struct pci_dev *dev, > struct device_node *pdn) >* of page sizes: supported and supported for migrate-dma. >*/ > dn = pci_device_to_OF_node(dev); > - ret = query_ddw(dev, ddw_avail, ); > + ret = query_ddw(dev, ddw_avail, , pdn); > if (ret != 0) > goto out_failed; > > @@ -1077,7 +1148,7 @@ static u64 enable_ddw(struct pci_dev *dev, > struct device_node *pdn) > /* check largest block * page size > max memory hotplug addr */ > max_addr = ddw_memory_hotplug_max(); > if (query.largest_available_block < (max_addr >> page_shift)) { > - dev_dbg(>dev, "can't map partition max 0x%llx with > %u " > + dev_dbg(>dev, "can't map partition max 0x%llx with > %llu " > "%llu-sized pages\n", > max_addr, query.largest_available_block, > 1ULL << page_shift); > goto out_failed; Tested-by: David Dai

Re: [PATCH v4 4/7] powerpc/pseries/iommu: Remove default DMA window before creating DDW

2020-08-04 Thread David Dai
ble */ > + ret = query_ddw(dev, ddw_avail, , pdn); > + if (ret != 0) > + goto out_failed; > + > + if (query.windows_available == 0) { > + /* no windows are available for this device. */ > + dev_dbg(>dev, "no free dynamic windows"); > + goto out_failed; > + } > } > if (query.page_size & 4) { > page_shift = 24; /* 16MB */ > @@ -1231,6 +1288,8 @@ static u64 enable_ddw(struct pci_dev *dev, > struct device_node *pdn) > kfree(win64); > > out_failed: > + if (default_win_removed) > + reset_dma_window(dev, pdn); > > fpdn = kzalloc(sizeof(*fpdn), GFP_KERNEL); > if (!fpdn) Tested-by: David Dai

Re: [PATCH v4 3/7] powerpc/pseries/iommu: Move window-removing part of remove_ddw into remove_dma_window

2020-08-04 Thread David Dai
ma_window(np, ddw_avail, win); > + > + if (!remove_prop) > + return; > > -delprop: > - if (remove_prop) > - ret = of_remove_property(np, win64); > + ret = of_remove_property(np, win); > if (ret) > pr_warn("%pOF: failed to remove direct window property: > %d\n", > np, ret); Tested-by: David Dai

Re: [PATCH v4 1/7] powerpc/pseries/iommu: Create defines for operations in ibm, ddw-applicable

2020-08-04 Thread David Dai
ruct pci_dev *dev, > struct device_node *pdn) > int page_shift; > u64 dma_addr, max_addr; > struct device_node *dn; > - u32 ddw_avail[3]; > + u32 ddw_avail[DDW_APPLICABLE_SIZE]; > struct direct_window *window; > struct property *win64; > struct dynamic_dma_window_prop *ddwprop; > @@ -1029,7 +1038,7 @@ static u64 enable_ddw(struct pci_dev *dev, > struct device_node *pdn) >* the property is actually in the parent, not the PE >*/ > ret = of_property_read_u32_array(pdn, "ibm,ddw-applicable", > - _avail[0], 3); > + _avail[0], > DDW_APPLICABLE_SIZE); > if (ret) > goto out_failed; > Tested-by: David Dai

[RFC PATCH 4/4] interconnect: qcom: sdm845: Split qnodes into their respective NoCs

2019-10-16 Thread David Dai
-off-by: David Dai --- drivers/interconnect/qcom/sdm845.c | 727 +++-- 1 file changed, 206 insertions(+), 521 deletions(-) diff --git a/drivers/interconnect/qcom/sdm845.c b/drivers/interconnect/qcom/sdm845.c index 502a6c2..a731f4d 100644 --- a/drivers/interconnect

[RFC PATCH 3/4] interconnect: qcom: Refactor icc rpmh support

2019-10-16 Thread David Dai
Add bcm voter driver and add support for RPMh specific interconnect providers so that they may be re-used for icc-next RPMh based provider drivers. Signed-off-by: David Dai --- drivers/interconnect/qcom/Kconfig | 8 + drivers/interconnect/qcom/Makefile| 4 + drivers/interconnect

[RFC PATCH 2/4] arm64: dts: sdm845: Redefine interconnect provider DT nodes

2019-10-16 Thread David Dai
Add the DT nodes for each of the Network-On-Chip interconnect buses found on SDM845 based platform and redefine the rsc_hlos child node as a bcm-voter device to better represent the hardware. Signed-off-by: David Dai --- arch/arm64/boot/dts/qcom/sdm845.dtsi | 60

[RFC PATCH 1/4] dt-bindings: interconnect: Update Qualcomm SDM845 DT bindings

2019-10-16 Thread David Dai
bindings, convert the existing sdm845 bindings to DT schema format using json-schema. Signed-off-by: David Dai --- .../bindings/interconnect/qcom,bcm-voter.yaml | 45 + .../bindings/interconnect/qcom,sdm845.txt | 24 - .../bindings/interconnect/qcom,sdm845.yaml

[RFC PATCH 0/4] Redefine interconnect provider DT nodes for SDM845

2019-10-16 Thread David Dai
format using json-schema. [1]: https://lkml.org/lkml/2019/6/13/143 [2]: https://lkml.org/lkml/2019/7/19/1063 David Dai (4): dt-bindings: interconnect: Update Qualcomm SDM845 DT bindings arm64: dts: sdm845: Redefine interconnect provider DT nodes interconnect: qcom: Refactor icc rpmh support

[v1] e1000e: EEH on e1000e adapter detects io perm failure can trigger crash

2019-10-03 Thread David Dai
ed-off-by: David Dai --- drivers/net/ethernet/intel/e1000e/netdev.c |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/drivers/net/ethernet/intel/e1000e/netdev.c b/drivers/net/ethernet/intel/e1000e/netdev.c index d7d56e4..cf618e1 100644 --- a/drivers/net/ethernet/intel/e1000e/ne

Re: [RFC PATCH] interconnect: Replace of_icc_get() with icc_get() and reduce DT binding

2019-09-27 Thread David Dai
I'm basically thinking about master vs. slave ports in AXI land. Cc: Maxime Ripard Cc: Cc: Rob Herring Cc: Cc: Bjorn Andersson Cc: Evan Green Cc: David Dai Signed-off-by: Stephen Boyd --- .../bindings/interconnect/interconnect.txt| 19 --- include/linux/interconnect.h

[v3] iproute2-next: police: support 64bit rate and peakrate in tc utility

2019-09-04 Thread David Dai
TCA_POLICE_RATE64 and TCA_POLICE_PEAKRATE64 from kernel, tc can use them to break the 32bit limit, and still keep the backward binary compatibility. Tested-by: David Dai Signed-off-by: David Dai --- Changelog: v1->v2: - Change patch submit component from iproute2 to iproute2-next - Mov

[v3] net_sched: act_police: add 2 new attributes to support police 64bit rate and peakrate

2019-09-04 Thread David Dai
and TCA_POLICE_RATE64 in kernel for 64bit support so that tc utility can use them for 64bit rate and peakrate value to break the 32bit limit, and still keep the backward binary compatibility. Tested-by: David Dai Signed-off-by: David Dai --- Changelog: v1->v2: - Move 2 attributes TCA_POLICE_RAT

[v2] iproute2-next: police: support 64bit rate and peakrate in tc utility

2019-08-30 Thread David Dai
TCA_POLICE_RATE64 and TCA_POLICE_PEAKRATE64 from kernel, tc can use them to break the 32bit limit, and still keep the backward binary compatibility. Tested-by: David Dai Signed-off-by: David Dai --- Changelog: v1->v2: - Change patch submit component from iproute2 to iproute2-next - Mov

[v2] net_sched: act_police: add 2 new attributes to support police 64bit rate and peakrate

2019-08-30 Thread David Dai
and TCA_POLICE_RATE64 in kernel for 64bit support so that tc utility can use them for 64bit rate and peakrate value to break the 32bit limit, and still keep the backward binary compatibility. Tested-by: David Dai Signed-off-by: David Dai --- Changelog: v1->v2: - Move 2 attributes TCA_POLICE_RAT

[v1] iproute2: police: support 64bit rate and peakrate in tc utility

2019-08-28 Thread David Dai
TCA_POLICE_RATE64 and TCA_POLICE_PEAKRATE64 from kernel, tc can use them to break the 32bit limit, and still keep the backward binary compatibility. Tested-by: David Dai Signed-off-by: David Dai --- include/uapi/linux/pkt_cls.h |2 + tc/m_police.c| 64

[v1] net_sched: act_police: add 2 new attributes to support police 64bit rate and peakrate

2019-08-28 Thread David Dai
and TCA_POLICE_RATE64 in kernel for 64bit support so that tc utility can use them for 64bit rate and peakrate value to break the 32bit limit, and still keep the backward binary compatibility. Tested-by: David Dai Signed-off-by: David Dai --- include/uapi/linux/pkt_cls.h |2 ++ net/sched

Re: [PATCH v2 2/2] interconnect: qcom: Add tagging and wake/sleep support for sdm845

2019-07-30 Thread David Dai
On 7/30/2019 3:54 PM, Evan Green wrote: On Thu, Jul 18, 2019 at 10:59 AM David Dai wrote: On 7/16/2019 1:15 PM, Evan Green wrote: On Mon, Jul 15, 2019 at 4:34 PM David Dai wrote: Hi Evan, Thanks for the continued help in reviewing these patches! No problem. I want to do more

Re: [PATCH 1/2] dt-bindings: interconnect: Update Qualcomm SDM845 DT bindings

2019-07-24 Thread David Dai
On 7/24/2019 11:27 AM, Stephen Boyd wrote: Quoting David Dai (2019-07-24 10:22:57) The way that I view this is that the consumers consume both bandwidth and QoS from these physical NoC devices by getting some path between two endpoints on these different NoCs and applying some constraints

Re: [PATCH 1/2] dt-bindings: interconnect: Update Qualcomm SDM845 DT bindings

2019-07-24 Thread David Dai
On 7/24/2019 7:18 AM, Stephen Boyd wrote: Quoting David Dai (2019-07-23 14:48:42) On 7/23/2019 7:42 AM, Stephen Boyd wrote: Quoting David Dai (2019-07-19 13:32:23) +- compatible : shall contain only one of the following: + "qcom,sdm845-bcm-voter", +

Re: [PATCH 1/2] dt-bindings: interconnect: Update Qualcomm SDM845 DT bindings

2019-07-23 Thread David Dai
Thanks for the feedback Stephen, much appreciated! On 7/23/2019 7:42 AM, Stephen Boyd wrote: Quoting David Dai (2019-07-19 13:32:23) Redefine the Network-on-Chip devices to more accurately describe the interconnect topology on Qualcomm's SDM845 platform. Each interconnect device can

Re: [PATCH 2/2] arm64: dts: sdm845: Redefine interconnect provider DT nodes

2019-07-23 Thread David Dai
Thanks for looking over this, Bjorn. On 7/21/2019 12:13 PM, Bjorn Andersson wrote: On Fri 19 Jul 13:32 PDT 2019, David Dai wrote: Add the DT nodes for each of the Network-On-Chip interconnect buses found on SDM845 based platform and redefine the rsc_hlos child node as a bcm-voter device

[PATCH 2/2] arm64: dts: sdm845: Redefine interconnect provider DT nodes

2019-07-19 Thread David Dai
Add the DT nodes for each of the Network-On-Chip interconnect buses found on SDM845 based platform and redefine the rsc_hlos child node as a bcm-voter device to better represent the hardware. Signed-off-by: David Dai --- arch/arm64/boot/dts/qcom/sdm845.dtsi | 61

[PATCH 0/2] Redefine interconnect provider DT nodes for SDM845

2019-07-19 Thread David Dai
of Resource State Coordinators (RSC). There are display use cases where consumers may need to target a different bcm-voter (Some display specific RSC) than the default, and there needs to be a way to represent this connection in devicetree. [1]: https://lkml.org/lkml/2019/6/13/143 David Dai (2

[PATCH 1/2] dt-bindings: interconnect: Update Qualcomm SDM845 DT bindings

2019-07-19 Thread David Dai
Redefine the Network-on-Chip devices to more accurately describe the interconnect topology on Qualcomm's SDM845 platform. Each interconnect device can communicate with different instances of the RPMh hardware which are described as RSCs(Resource State Coordinators). Signed-off-by: David Dai

Re: [PATCH v2 2/2] interconnect: qcom: Add tagging and wake/sleep support for sdm845

2019-07-18 Thread David Dai
On 7/16/2019 1:15 PM, Evan Green wrote: On Mon, Jul 15, 2019 at 4:34 PM David Dai wrote: Hi Evan, Thanks for the continued help in reviewing these patches! No problem. I want to do more, but haven't found time to do the prerequisite research before jumping into some of the other discussions

Re: [PATCH v2 2/2] interconnect: qcom: Add tagging and wake/sleep support for sdm845

2019-07-15 Thread David Dai
Hi Evan, Thanks for the continued help in reviewing these patches! On 7/11/2019 10:06 AM, Evan Green wrote: Hi Georgi and David, On Tue, Jun 18, 2019 at 2:17 AM Georgi Djakov wrote: From: David Dai Add support for wake and sleep commands by using a tag to indicate whether

Re: [PATCH v1 2/2] interconnect: qcom: Add tagging and wake/sleep support for sdm845

2019-03-13 Thread David Dai
On 3/8/2019 10:35 AM, Evan Green wrote: On Fri, Feb 8, 2019 at 9:22 AM Georgi Djakov wrote: From: David Dai Add support for wake and sleep commands by using a tag to indicate whether or not the aggregate and set requests are active only or dual context for a particular path. Signed-off

[PATCH v2] clk: qcom: clk-rpmh: Add IPA clock support

2019-01-24 Thread David Dai
of frequency points. The Qualcomm IP Accelerator (IPA) clock is an example of a resource that is managed by the BCM and this a requirement from the IPA driver in order to scale its core clock. Signed-off-by: David Dai --- drivers/clk/qcom/clk-rpmh.c | 146

Re: [PATCH v1] clk: qcom: clk-rpmh: Add IPA clock support

2019-01-16 Thread David Dai
On 1/14/2019 8:47 AM, Stephen Boyd wrote: Quoting David Dai (2019-01-11 16:56:14) On 1/9/2019 11:28 AM, Stephen Boyd wrote: Quoting David Dai (2018-12-13 18:35:04) + +#define BCM_TCS_CMD(valid, vote) \ + (BCM_TCS_CMD_COMMIT_MASK

Re: [PATCH v1] clk: qcom: clk-rpmh: Add IPA clock support

2019-01-11 Thread David Dai
On 1/9/2019 11:28 AM, Stephen Boyd wrote: Quoting David Dai (2018-12-13 18:35:04) The current clk-rpmh driver only supports on and off RPMh clock resources, let's extend the current driver by add support for clocks that are managed by a different type of RPMh resource known as Bus Clock

[PATCH v1] clk: qcom: clk-rpmh: Add IPA clock support

2018-12-13 Thread David Dai
based on a preset of frequency points. The Qualcomm IP Accelerator (IPA) clock is an example of a resource that is managed by the BCM and this a requirement from the IPA driver in order to scale its core clock. Signed-off-by: David Dai --- drivers/clk/qcom/clk-rpmh.c | 141

Re: [PATCH v10 5/7] interconnect: qcom: Add sdm845 interconnect provider driver

2018-12-06 Thread David Dai
On 12/5/2018 8:00 AM, Georgi Djakov wrote: Hi Evan, On 12/1/18 02:39, Evan Green wrote: On Tue, Nov 27, 2018 at 10:04 AM Georgi Djakov wrote: From: David Dai Introduce Qualcomm SDM845 specific provider driver using the interconnect framework. Signed-off-by: David Dai Signed-off

Re: [PATCH v10 5/7] interconnect: qcom: Add sdm845 interconnect provider driver

2018-12-06 Thread David Dai
On 12/5/2018 8:00 AM, Georgi Djakov wrote: Hi Evan, On 12/1/18 02:39, Evan Green wrote: On Tue, Nov 27, 2018 at 10:04 AM Georgi Djakov wrote: From: David Dai Introduce Qualcomm SDM845 specific provider driver using the interconnect framework. Signed-off-by: David Dai Signed-off

Re: [RFC PATCH] clk: qcom: clk-rpmh: Add IPA clock support

2018-12-05 Thread David Dai
On 12/4/2018 11:15 PM, Stephen Boyd wrote: Quoting David Dai (2018-12-04 17:14:10) On 12/4/2018 2:34 PM, Stephen Boyd wrote: Quoting Alex Elder (2018-12-04 13:41:47) On 12/4/18 1:24 PM, Stephen Boyd wrote: Quoting David Dai (2018-12-03 19:50:13) Add IPA clock support by extending

Re: [RFC PATCH] clk: qcom: clk-rpmh: Add IPA clock support

2018-12-05 Thread David Dai
On 12/4/2018 11:15 PM, Stephen Boyd wrote: Quoting David Dai (2018-12-04 17:14:10) On 12/4/2018 2:34 PM, Stephen Boyd wrote: Quoting Alex Elder (2018-12-04 13:41:47) On 12/4/18 1:24 PM, Stephen Boyd wrote: Quoting David Dai (2018-12-03 19:50:13) Add IPA clock support by extending

Re: [RFC PATCH] clk: qcom: clk-rpmh: Add IPA clock support

2018-12-04 Thread David Dai
Thanks for the quick feedback! On 12/4/2018 11:24 AM, Stephen Boyd wrote: Quoting David Dai (2018-12-03 19:50:13) Add IPA clock support by extending the current clk rpmh driver to support clocks that are managed by a different type of RPMh resource known as Bus Clock Manager(BCM). Yes

Re: [RFC PATCH] clk: qcom: clk-rpmh: Add IPA clock support

2018-12-04 Thread David Dai
Thanks for the quick feedback! On 12/4/2018 11:24 AM, Stephen Boyd wrote: Quoting David Dai (2018-12-03 19:50:13) Add IPA clock support by extending the current clk rpmh driver to support clocks that are managed by a different type of RPMh resource known as Bus Clock Manager(BCM). Yes

Re: [RFC PATCH] clk: qcom: clk-rpmh: Add IPA clock support

2018-12-04 Thread David Dai
On 12/4/2018 2:34 PM, Stephen Boyd wrote: Quoting Alex Elder (2018-12-04 13:41:47) On 12/4/18 1:24 PM, Stephen Boyd wrote: Quoting David Dai (2018-12-03 19:50:13) Add IPA clock support by extending the current clk rpmh driver to support clocks that are managed by a different type of RPMh

Re: [RFC PATCH] clk: qcom: clk-rpmh: Add IPA clock support

2018-12-04 Thread David Dai
On 12/4/2018 2:34 PM, Stephen Boyd wrote: Quoting Alex Elder (2018-12-04 13:41:47) On 12/4/18 1:24 PM, Stephen Boyd wrote: Quoting David Dai (2018-12-03 19:50:13) Add IPA clock support by extending the current clk rpmh driver to support clocks that are managed by a different type of RPMh

[RFC PATCH] Add IPA clock support for clk-rpmh

2018-12-03 Thread David Dai
This patch extends the existing clk-rpmh driver to support a different type of RPMh resource known as Bus Clock Manager(BCM) in order to scale performance for the Qualcomm IP Accelerator(IPA) core clock. David Dai (1): clk: qcom: clk-rpmh: Add IPA clock support drivers/clk/qcom/clk-rpmh.c

[RFC PATCH] Add IPA clock support for clk-rpmh

2018-12-03 Thread David Dai
This patch extends the existing clk-rpmh driver to support a different type of RPMh resource known as Bus Clock Manager(BCM) in order to scale performance for the Qualcomm IP Accelerator(IPA) core clock. David Dai (1): clk: qcom: clk-rpmh: Add IPA clock support drivers/clk/qcom/clk-rpmh.c

[RFC PATCH] clk: qcom: clk-rpmh: Add IPA clock support

2018-12-03 Thread David Dai
Add IPA clock support by extending the current clk rpmh driver to support clocks that are managed by a different type of RPMh resource known as Bus Clock Manager(BCM). Signed-off-by: David Dai --- drivers/clk/qcom/clk-rpmh.c | 142 ++ include/dt

[RFC PATCH] clk: qcom: clk-rpmh: Add IPA clock support

2018-12-03 Thread David Dai
Add IPA clock support by extending the current clk rpmh driver to support clocks that are managed by a different type of RPMh resource known as Bus Clock Manager(BCM). Signed-off-by: David Dai --- drivers/clk/qcom/clk-rpmh.c | 142 ++ include/dt

[PATCH v3 0/2] Add sdm845 interconnect provider driver

2018-08-23 Thread David Dai
configuration specific to each NoC. David Dai (2): interconnect: qcom: Add sdm845 interconnect provider driver arm64: dts: sdm845: Add interconnect provider DT nodes .../bindings/interconnect/qcom-sdm845.txt | 22 + arch/arm64/boot/dts/qcom/sdm845.dtsi | 5 + drivers

[PATCH v3 0/2] Add sdm845 interconnect provider driver

2018-08-23 Thread David Dai
configuration specific to each NoC. David Dai (2): interconnect: qcom: Add sdm845 interconnect provider driver arm64: dts: sdm845: Add interconnect provider DT nodes .../bindings/interconnect/qcom-sdm845.txt | 22 + arch/arm64/boot/dts/qcom/sdm845.dtsi | 5 + drivers

[PATCH v3 1/2] interconnect: qcom: Add sdm845 interconnect provider driver

2018-08-23 Thread David Dai
Introduce Qualcomm SDM845 specific provider driver using the interconnect framework. Change-Id: I716b39068b4a211b8203b2a52d3037a5b84594ea Signed-off-by: David Dai --- .../bindings/interconnect/qcom-sdm845.txt | 22 + drivers/interconnect/qcom/Kconfig | 8 + drivers

[PATCH v3 1/2] interconnect: qcom: Add sdm845 interconnect provider driver

2018-08-23 Thread David Dai
Introduce Qualcomm SDM845 specific provider driver using the interconnect framework. Change-Id: I716b39068b4a211b8203b2a52d3037a5b84594ea Signed-off-by: David Dai --- .../bindings/interconnect/qcom-sdm845.txt | 22 + drivers/interconnect/qcom/Kconfig | 8 + drivers

[PATCH v3 2/2] arm64: dts: sdm845: Add interconnect provider DT nodes

2018-08-23 Thread David Dai
Add RSC(Resource State Coordinator) provider dictating network-on-chip interconnect bus performance found on SDM845-based platforms. Change-Id: I58f0bfc3ed484d7b45064dceb94dcfda507e9333 Signed-off-by: David Dai --- arch/arm64/boot/dts/qcom/sdm845.dtsi | 5 + 1 file changed, 5 insertions

[PATCH v3 2/2] arm64: dts: sdm845: Add interconnect provider DT nodes

2018-08-23 Thread David Dai
Add RSC(Resource State Coordinator) provider dictating network-on-chip interconnect bus performance found on SDM845-based platforms. Change-Id: I58f0bfc3ed484d7b45064dceb94dcfda507e9333 Signed-off-by: David Dai --- arch/arm64/boot/dts/qcom/sdm845.dtsi | 5 + 1 file changed, 5 insertions

Re: [RFC PATCH v2 1/2] interconnect: qcom: Add sdm845 interconnect provider driver

2018-07-31 Thread David Dai
Hi Evan, Thanks for taking the time to review and feedback! On 7/27/2018 2:12 PM, Evan Green wrote: Hi David, On Thu, Jul 26, 2018 at 4:30 PM David Dai wrote: Introduce Qualcomm SDM845 specific provider driver using the interconnect framework. Signed-off-by: David Dai --- .../bindings

Re: [RFC PATCH v2 1/2] interconnect: qcom: Add sdm845 interconnect provider driver

2018-07-31 Thread David Dai
Hi Evan, Thanks for taking the time to review and feedback! On 7/27/2018 2:12 PM, Evan Green wrote: Hi David, On Thu, Jul 26, 2018 at 4:30 PM David Dai wrote: Introduce Qualcomm SDM845 specific provider driver using the interconnect framework. Signed-off-by: David Dai --- .../bindings

[RFC PATCH v1 0/2] Add QCOM SDM845 interconnect provider driver

2018-07-18 Thread David Dai
to each NoC. David Dai (2): interconnect: qcom: Add sdm845 interconnect provider driver arm64: dts: sdm845: Add interconnect provider DT nodes .../bindings/interconnect/qcom-sdm845.txt | 22 + arch/arm64/boot/dts/qcom/sdm845.dtsi | 5 + drivers/interconnect/qcom

[RFC PATCH v2 2/2] arm64: dts: sdm845: Add interconnect provider DT nodes

2018-07-18 Thread David Dai
Add RSC(Resource State Coordinator) provider dictating network-on-chip interconnect bus performance found on SDM845-based platforms. Signed-off-by: David Dai --- arch/arm64/boot/dts/qcom/sdm845.dtsi | 5 + 1 file changed, 5 insertions(+) diff --git a/arch/arm64/boot/dts/qcom/sdm845.dtsi b

[RFC PATCH v2 1/2] interconnect: qcom: Add sdm845 interconnect provider driver

2018-07-18 Thread David Dai
Introduce Qualcomm SDM845 specific provider driver using the interconnect framework. Signed-off-by: David Dai --- .../bindings/interconnect/qcom-sdm845.txt | 22 + drivers/interconnect/qcom/Kconfig | 8 + drivers/interconnect/qcom/Makefile | 1

[RFC PATCH v1 0/2] Add QCOM SDM845 interconnect provider driver

2018-07-18 Thread David Dai
to each NoC. David Dai (2): interconnect: qcom: Add sdm845 interconnect provider driver arm64: dts: sdm845: Add interconnect provider DT nodes .../bindings/interconnect/qcom-sdm845.txt | 22 + arch/arm64/boot/dts/qcom/sdm845.dtsi | 5 + drivers/interconnect/qcom

[RFC PATCH v2 2/2] arm64: dts: sdm845: Add interconnect provider DT nodes

2018-07-18 Thread David Dai
Add RSC(Resource State Coordinator) provider dictating network-on-chip interconnect bus performance found on SDM845-based platforms. Signed-off-by: David Dai --- arch/arm64/boot/dts/qcom/sdm845.dtsi | 5 + 1 file changed, 5 insertions(+) diff --git a/arch/arm64/boot/dts/qcom/sdm845.dtsi b

[RFC PATCH v2 1/2] interconnect: qcom: Add sdm845 interconnect provider driver

2018-07-18 Thread David Dai
Introduce Qualcomm SDM845 specific provider driver using the interconnect framework. Signed-off-by: David Dai --- .../bindings/interconnect/qcom-sdm845.txt | 22 + drivers/interconnect/qcom/Kconfig | 8 + drivers/interconnect/qcom/Makefile | 1

[RFC PATCH v1 0/2] Add QCOM SDM845 interconnect provider driver

2018-06-29 Thread David Dai
with active only requirements. * Add Network-on-Chip (NoC) objects to encapsulate logical nodes for QoS. * Add QoS configuration specific to each NoC. David Dai (2): interconnect: qcom: Add sdm845 interconnect provider driver arm64: dts: sdm845: Add interconnect provider DT nodes

[RFC PATCH v1 0/2] Add QCOM SDM845 interconnect provider driver

2018-06-29 Thread David Dai
with active only requirements. * Add Network-on-Chip (NoC) objects to encapsulate logical nodes for QoS. * Add QoS configuration specific to each NoC. David Dai (2): interconnect: qcom: Add sdm845 interconnect provider driver arm64: dts: sdm845: Add interconnect provider DT nodes

[RFC PATCH v1 1/2] interconnect: qcom: Add sdm845 interconnect provider driver

2018-06-29 Thread David Dai
Introduce Qualcomm SDM845 specific provider driver using the interconnect framework. Change-Id: I716b39068b4a211b8203b2a52d3037a5b84594ea Signed-off-by: David Dai --- .../bindings/interconnect/qcom-sdm845.txt | 22 + drivers/interconnect/qcom/Kconfig | 8 + drivers

[RFC PATCH v1 1/2] interconnect: qcom: Add sdm845 interconnect provider driver

2018-06-29 Thread David Dai
Introduce Qualcomm SDM845 specific provider driver using the interconnect framework. Change-Id: I716b39068b4a211b8203b2a52d3037a5b84594ea Signed-off-by: David Dai --- .../bindings/interconnect/qcom-sdm845.txt | 22 + drivers/interconnect/qcom/Kconfig | 8 + drivers

[RFC PATCH v1 2/2] arm64: dts: sdm845: Add interconnect provider DT nodes

2018-06-29 Thread David Dai
Add RSC(Resource State Coordinator) provider dictating network-on-chip interconnect bus performance found on SDM845-based platforms. Change-Id: I58f0bfc3ed484d7b45064dceb94dcfda507e9333 Signed-off-by: David Dai --- arch/arm64/boot/dts/qcom/sdm845.dtsi | 5 + 1 file changed, 5 insertions

[RFC PATCH v1 2/2] arm64: dts: sdm845: Add interconnect provider DT nodes

2018-06-29 Thread David Dai
Add RSC(Resource State Coordinator) provider dictating network-on-chip interconnect bus performance found on SDM845-based platforms. Change-Id: I58f0bfc3ed484d7b45064dceb94dcfda507e9333 Signed-off-by: David Dai --- arch/arm64/boot/dts/qcom/sdm845.dtsi | 5 + 1 file changed, 5 insertions