diff options
author | Luca Weiss <luca.weiss@fairphone.com> | 2022-08-12 11:27:20 +0300 |
---|---|---|
committer | Vinod Koul <vkoul@kernel.org> | 2022-09-04 19:22:36 +0300 |
commit | 5abef9d713629d7201b1a3dd1fe6a8baa869da68 (patch) | |
tree | 2791b89a201b0a20388099e9d05dc813c718e408 /drivers/dma/qcom | |
parent | abd7bb690bcf662afc8abe74fd3c10f7ad1c5b19 (diff) | |
download | linux-5abef9d713629d7201b1a3dd1fe6a8baa869da68.tar.xz |
dmaengine: qcom: gpi: Add SM6350 support
The Qualcomm SM6350 platform does, like the SM8450, provide a set of GPI
controllers with an ee-offset of 0x10000. Add this to the driver.
Signed-off-by: Luca Weiss <luca.weiss@fairphone.com>
Reviewed-by: Bjorn Andersson <andersson@kernel.org>
Link: https://lore.kernel.org/r/20220812082721.1125759-3-luca.weiss@fairphone.com
Signed-off-by: Vinod Koul <vkoul@kernel.org>
Diffstat (limited to 'drivers/dma/qcom')
-rw-r--r-- | drivers/dma/qcom/gpi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/dma/qcom/gpi.c b/drivers/dma/qcom/gpi.c index 8f0c9c4e2efd..89839864b4ec 100644 --- a/drivers/dma/qcom/gpi.c +++ b/drivers/dma/qcom/gpi.c @@ -2288,6 +2288,7 @@ static int gpi_probe(struct platform_device *pdev) static const struct of_device_id gpi_of_match[] = { { .compatible = "qcom,sc7280-gpi-dma", .data = (void *)0x10000 }, { .compatible = "qcom,sdm845-gpi-dma", .data = (void *)0x0 }, + { .compatible = "qcom,sm6350-gpi-dma", .data = (void *)0x10000 }, { .compatible = "qcom,sm8150-gpi-dma", .data = (void *)0x0 }, { .compatible = "qcom,sm8250-gpi-dma", .data = (void *)0x0 }, { .compatible = "qcom,sm8350-gpi-dma", .data = (void *)0x10000 }, |