blob: 75e9b76dab1e0d2bd0806d75ca0079e0c36cd54f [file] [log] [blame]
Thomas Gleixnercb849fc2019-06-04 10:10:52 +02001// SPDX-License-Identifier: GPL-2.0-only
Kamal Dasu44f95d82016-08-24 18:04:24 -04002/*
3 * Copyright 2016 Broadcom
Kamal Dasu44f95d82016-08-24 18:04:24 -04004 */
5
6#include <linux/device.h>
7#include <linux/module.h>
8#include <linux/platform_device.h>
9#include <linux/of.h>
10#include "spi-bcm-qspi.h"
11
12static const struct of_device_id brcmstb_qspi_of_match[] = {
13 { .compatible = "brcm,spi-brcmstb-qspi" },
14 { .compatible = "brcm,spi-brcmstb-mspi" },
15 {},
16};
17MODULE_DEVICE_TABLE(of, brcmstb_qspi_of_match);
18
19static int brcmstb_qspi_probe(struct platform_device *pdev)
20{
21 return bcm_qspi_probe(pdev, NULL);
22}
23
24static int brcmstb_qspi_remove(struct platform_device *pdev)
25{
26 return bcm_qspi_remove(pdev);
27}
28
29static struct platform_driver brcmstb_qspi_driver = {
30 .probe = brcmstb_qspi_probe,
31 .remove = brcmstb_qspi_remove,
32 .driver = {
33 .name = "brcmstb_qspi",
34 .pm = &bcm_qspi_pm_ops,
35 .of_match_table = brcmstb_qspi_of_match,
36 }
37};
38module_platform_driver(brcmstb_qspi_driver);
39
40MODULE_LICENSE("GPL v2");
41MODULE_AUTHOR("Kamal Dasu");
42MODULE_DESCRIPTION("Broadcom SPI driver for settop SoC");