rtc: rtc-pm8xxx: Add support for pm8018 rtc
In order to support RTC on Qualcomm MDM9615 SoC, add support for the pm8018 rtc in rtc-pm8xxx driver. Reviewed-by: Bjorn Andersson <bjorn.andersson@linaro.org> Acked-by: Alexandre Belloni <alexandre.belloni@free-electrons.com> Signed-off-by: Neil Armstrong <narmstrong@baylibre.com> Signed-off-by: Andy Gross <andy.gross@linaro.org>
This commit is contained in:
parent
4e21a95d7f
commit
23c282d62f
|
@ -62,6 +62,7 @@ The below bindings specify the set of valid subnodes.
|
||||||
"qcom,pm8058-rtc"
|
"qcom,pm8058-rtc"
|
||||||
"qcom,pm8921-rtc"
|
"qcom,pm8921-rtc"
|
||||||
"qcom,pm8941-rtc"
|
"qcom,pm8941-rtc"
|
||||||
|
"qcom,pm8018-rtc"
|
||||||
|
|
||||||
- reg:
|
- reg:
|
||||||
Usage: required
|
Usage: required
|
||||||
|
|
|
@ -428,6 +428,7 @@ static const struct pm8xxx_rtc_regs pm8941_regs = {
|
||||||
*/
|
*/
|
||||||
static const struct of_device_id pm8xxx_id_table[] = {
|
static const struct of_device_id pm8xxx_id_table[] = {
|
||||||
{ .compatible = "qcom,pm8921-rtc", .data = &pm8921_regs },
|
{ .compatible = "qcom,pm8921-rtc", .data = &pm8921_regs },
|
||||||
|
{ .compatible = "qcom,pm8018-rtc", .data = &pm8921_regs },
|
||||||
{ .compatible = "qcom,pm8058-rtc", .data = &pm8058_regs },
|
{ .compatible = "qcom,pm8058-rtc", .data = &pm8058_regs },
|
||||||
{ .compatible = "qcom,pm8941-rtc", .data = &pm8941_regs },
|
{ .compatible = "qcom,pm8941-rtc", .data = &pm8941_regs },
|
||||||
{ },
|
{ },
|
||||||
|
|
Loading…
Reference in New Issue