|
@@ -21,6 +21,7 @@
|
|
#include <linux/kernel.h>
|
|
#include <linux/kernel.h>
|
|
#include <linux/module.h>
|
|
#include <linux/module.h>
|
|
#include <linux/of.h>
|
|
#include <linux/of.h>
|
|
|
|
+#include <linux/of_device.h>
|
|
#include <linux/platform_device.h>
|
|
#include <linux/platform_device.h>
|
|
#include <linux/pm_runtime.h>
|
|
#include <linux/pm_runtime.h>
|
|
|
|
|
|
@@ -30,11 +31,18 @@
|
|
|
|
|
|
#include <asm/unaligned.h>
|
|
#include <asm/unaligned.h>
|
|
|
|
|
|
|
|
+
|
|
|
|
+struct sh_msiof_chipdata {
|
|
|
|
+ u16 tx_fifo_size;
|
|
|
|
+ u16 rx_fifo_size;
|
|
|
|
+};
|
|
|
|
+
|
|
struct sh_msiof_spi_priv {
|
|
struct sh_msiof_spi_priv {
|
|
struct spi_bitbang bitbang; /* must be first for spi_bitbang.c */
|
|
struct spi_bitbang bitbang; /* must be first for spi_bitbang.c */
|
|
void __iomem *mapbase;
|
|
void __iomem *mapbase;
|
|
struct clk *clk;
|
|
struct clk *clk;
|
|
struct platform_device *pdev;
|
|
struct platform_device *pdev;
|
|
|
|
+ const struct sh_msiof_chipdata *chipdata;
|
|
struct sh_msiof_spi_info *info;
|
|
struct sh_msiof_spi_info *info;
|
|
struct completion done;
|
|
struct completion done;
|
|
unsigned long flags;
|
|
unsigned long flags;
|
|
@@ -113,10 +121,6 @@ struct sh_msiof_spi_priv {
|
|
#define STR_REOF 0x00000080 /* Frame Reception End */
|
|
#define STR_REOF 0x00000080 /* Frame Reception End */
|
|
|
|
|
|
|
|
|
|
-#define DEFAULT_TX_FIFO_SIZE 64
|
|
|
|
-#define DEFAULT_RX_FIFO_SIZE 64
|
|
|
|
-
|
|
|
|
-
|
|
|
|
static u32 sh_msiof_read(struct sh_msiof_spi_priv *p, int reg_offs)
|
|
static u32 sh_msiof_read(struct sh_msiof_spi_priv *p, int reg_offs)
|
|
{
|
|
{
|
|
switch (reg_offs) {
|
|
switch (reg_offs) {
|
|
@@ -659,6 +663,18 @@ static u32 sh_msiof_spi_txrx_word(struct spi_device *spi, unsigned nsecs,
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+static const struct sh_msiof_chipdata sh_data = {
|
|
|
|
+ .tx_fifo_size = 64,
|
|
|
|
+ .rx_fifo_size = 64,
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+static const struct of_device_id sh_msiof_match[] = {
|
|
|
|
+ { .compatible = "renesas,sh-msiof", .data = &sh_data },
|
|
|
|
+ { .compatible = "renesas,sh-mobile-msiof", .data = &sh_data },
|
|
|
|
+ {},
|
|
|
|
+};
|
|
|
|
+MODULE_DEVICE_TABLE(of, sh_msiof_match);
|
|
|
|
+
|
|
#ifdef CONFIG_OF
|
|
#ifdef CONFIG_OF
|
|
static struct sh_msiof_spi_info *sh_msiof_spi_parse_dt(struct device *dev)
|
|
static struct sh_msiof_spi_info *sh_msiof_spi_parse_dt(struct device *dev)
|
|
{
|
|
{
|
|
@@ -694,6 +710,7 @@ static int sh_msiof_spi_probe(struct platform_device *pdev)
|
|
{
|
|
{
|
|
struct resource *r;
|
|
struct resource *r;
|
|
struct spi_master *master;
|
|
struct spi_master *master;
|
|
|
|
+ const struct of_device_id *of_id;
|
|
struct sh_msiof_spi_priv *p;
|
|
struct sh_msiof_spi_priv *p;
|
|
int i;
|
|
int i;
|
|
int ret;
|
|
int ret;
|
|
@@ -707,10 +724,15 @@ static int sh_msiof_spi_probe(struct platform_device *pdev)
|
|
p = spi_master_get_devdata(master);
|
|
p = spi_master_get_devdata(master);
|
|
|
|
|
|
platform_set_drvdata(pdev, p);
|
|
platform_set_drvdata(pdev, p);
|
|
- if (pdev->dev.of_node)
|
|
|
|
|
|
+
|
|
|
|
+ of_id = of_match_device(sh_msiof_match, &pdev->dev);
|
|
|
|
+ if (of_id) {
|
|
|
|
+ p->chipdata = of_id->data;
|
|
p->info = sh_msiof_spi_parse_dt(&pdev->dev);
|
|
p->info = sh_msiof_spi_parse_dt(&pdev->dev);
|
|
- else
|
|
|
|
|
|
+ } else {
|
|
|
|
+ p->chipdata = (const void *)pdev->id_entry->driver_data;
|
|
p->info = dev_get_platdata(&pdev->dev);
|
|
p->info = dev_get_platdata(&pdev->dev);
|
|
|
|
+ }
|
|
|
|
|
|
if (!p->info) {
|
|
if (!p->info) {
|
|
dev_err(&pdev->dev, "failed to obtain device info\n");
|
|
dev_err(&pdev->dev, "failed to obtain device info\n");
|
|
@@ -757,11 +779,9 @@ static int sh_msiof_spi_probe(struct platform_device *pdev)
|
|
p->pdev = pdev;
|
|
p->pdev = pdev;
|
|
pm_runtime_enable(&pdev->dev);
|
|
pm_runtime_enable(&pdev->dev);
|
|
|
|
|
|
- /* The standard version of MSIOF use 64 word FIFOs */
|
|
|
|
- p->tx_fifo_size = DEFAULT_TX_FIFO_SIZE;
|
|
|
|
- p->rx_fifo_size = DEFAULT_RX_FIFO_SIZE;
|
|
|
|
-
|
|
|
|
/* Platform data may override FIFO sizes */
|
|
/* Platform data may override FIFO sizes */
|
|
|
|
+ p->tx_fifo_size = p->chipdata->tx_fifo_size;
|
|
|
|
+ p->rx_fifo_size = p->chipdata->rx_fifo_size;
|
|
if (p->info->tx_fifo_override)
|
|
if (p->info->tx_fifo_override)
|
|
p->tx_fifo_size = p->info->tx_fifo_override;
|
|
p->tx_fifo_size = p->info->tx_fifo_override;
|
|
if (p->info->rx_fifo_override)
|
|
if (p->info->rx_fifo_override)
|
|
@@ -811,18 +831,16 @@ static int sh_msiof_spi_remove(struct platform_device *pdev)
|
|
return ret;
|
|
return ret;
|
|
}
|
|
}
|
|
|
|
|
|
-#ifdef CONFIG_OF
|
|
|
|
-static const struct of_device_id sh_msiof_match[] = {
|
|
|
|
- { .compatible = "renesas,sh-msiof", },
|
|
|
|
- { .compatible = "renesas,sh-mobile-msiof", },
|
|
|
|
|
|
+static struct platform_device_id spi_driver_ids[] = {
|
|
|
|
+ { "spi_sh_msiof", (kernel_ulong_t)&sh_data },
|
|
{},
|
|
{},
|
|
};
|
|
};
|
|
-MODULE_DEVICE_TABLE(of, sh_msiof_match);
|
|
|
|
-#endif
|
|
|
|
|
|
+MODULE_DEVICE_TABLE(platform, spi_driver_ids);
|
|
|
|
|
|
static struct platform_driver sh_msiof_spi_drv = {
|
|
static struct platform_driver sh_msiof_spi_drv = {
|
|
.probe = sh_msiof_spi_probe,
|
|
.probe = sh_msiof_spi_probe,
|
|
.remove = sh_msiof_spi_remove,
|
|
.remove = sh_msiof_spi_remove,
|
|
|
|
+ .id_table = spi_driver_ids,
|
|
.driver = {
|
|
.driver = {
|
|
.name = "spi_sh_msiof",
|
|
.name = "spi_sh_msiof",
|
|
.owner = THIS_MODULE,
|
|
.owner = THIS_MODULE,
|