|
@@ -22,6 +22,7 @@
|
|
|
#include <linux/scatterlist.h>
|
|
|
#include <linux/dma-mapping.h>
|
|
|
#include <linux/io.h>
|
|
|
+#include <linux/of.h>
|
|
|
#include <linux/crypto.h>
|
|
|
#include <linux/interrupt.h>
|
|
|
|
|
@@ -177,6 +178,12 @@ struct s5p_aes_dev {
|
|
|
|
|
|
static struct s5p_aes_dev *s5p_dev;
|
|
|
|
|
|
+static const struct of_device_id s5p_sss_dt_match[] = {
|
|
|
+ { .compatible = "samsung,s5pv210-secss" },
|
|
|
+ { },
|
|
|
+};
|
|
|
+MODULE_DEVICE_TABLE(of, s5p_sss_dt_match);
|
|
|
+
|
|
|
static void s5p_set_dma_indata(struct s5p_aes_dev *dev, struct scatterlist *sg)
|
|
|
{
|
|
|
SSS_WRITE(dev, FCBRDMAS, sg_dma_address(sg));
|
|
@@ -672,6 +679,7 @@ static struct platform_driver s5p_aes_crypto = {
|
|
|
.driver = {
|
|
|
.owner = THIS_MODULE,
|
|
|
.name = "s5p-secss",
|
|
|
+ .of_match_table = s5p_sss_dt_match,
|
|
|
},
|
|
|
};
|
|
|
|