diff options
author | Abhishek Sahu <absahu@codeaurora.org> | 2017-08-17 17:37:53 +0530 |
---|---|---|
committer | Boris Brezillon <boris.brezillon@free-electrons.com> | 2017-08-23 16:49:31 +0200 |
commit | a06378341eeb809f9df4e80ddb507418b3e36d97 (patch) | |
tree | 05e81f7806ba5cfdd6d7dbb78c73265b8f72b54e /drivers/mtd/nand/qcom_nandc.c | |
parent | d440c4d3601d964dc742730a05f2534535a17f0b (diff) |
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: Archit Taneja <architt@codeaurora.org>
Signed-off-by: Abhishek Sahu <absahu@codeaurora.org>
Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com>
Diffstat (limited to 'drivers/mtd/nand/qcom_nandc.c')
-rw-r--r-- | drivers/mtd/nand/qcom_nandc.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/drivers/mtd/nand/qcom_nandc.c b/drivers/mtd/nand/qcom_nandc.c index 7977a70a0499..158076c6ea3e 100644 --- a/drivers/mtd/nand/qcom_nandc.c +++ b/drivers/mtd/nand/qcom_nandc.c @@ -2773,6 +2773,12 @@ static const struct qcom_nandc_props ipq806x_nandc_props = { .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 * more controller variants @@ -2782,6 +2788,10 @@ static const struct of_device_id qcom_nandc_of_match[] = { .compatible = "qcom,ipq806x-nand", .data = &ipq806x_nandc_props, }, + { + .compatible = "qcom,ipq4019-nand", + .data = &ipq4019_nandc_props, + }, {} }; MODULE_DEVICE_TABLE(of, qcom_nandc_of_match); |