Commit a0637834 authored by Abhishek Sahu's avatar Abhishek Sahu Committed by Boris Brezillon

mtd: nand: qcom: support for IPQ4019 QPIC NAND controller

Add the compatible string for IPQ4019 QPIC NAND controller
version 1.4.0 which uses BAM DMA.
Reviewed-by: default avatarArchit Taneja <architt@codeaurora.org>
Signed-off-by: default avatarAbhishek Sahu <absahu@codeaurora.org>
Signed-off-by: default avatarBoris Brezillon <boris.brezillon@free-electrons.com>
parent d440c4d3
...@@ -2773,6 +2773,12 @@ static const struct qcom_nandc_props ipq806x_nandc_props = { ...@@ -2773,6 +2773,12 @@ static const struct qcom_nandc_props ipq806x_nandc_props = {
.dev_cmd_reg_start = 0x0, .dev_cmd_reg_start = 0x0,
}; };
static const struct qcom_nandc_props ipq4019_nandc_props = {
.ecc_modes = (ECC_BCH_4BIT | ECC_BCH_8BIT),
.is_bam = true,
.dev_cmd_reg_start = 0x0,
};
/* /*
* data will hold a struct pointer containing more differences once we support * data will hold a struct pointer containing more differences once we support
* more controller variants * more controller variants
...@@ -2782,6 +2788,10 @@ static const struct of_device_id qcom_nandc_of_match[] = { ...@@ -2782,6 +2788,10 @@ static const struct of_device_id qcom_nandc_of_match[] = {
.compatible = "qcom,ipq806x-nand", .compatible = "qcom,ipq806x-nand",
.data = &ipq806x_nandc_props, .data = &ipq806x_nandc_props,
}, },
{
.compatible = "qcom,ipq4019-nand",
.data = &ipq4019_nandc_props,
},
{} {}
}; };
MODULE_DEVICE_TABLE(of, qcom_nandc_of_match); MODULE_DEVICE_TABLE(of, qcom_nandc_of_match);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment