lin
2025-08-21 57113df3a0e2be01232281fad9a5f2c060567981
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/*
 * Copyright 2011 Freescale Semiconductor, Inc.
 * Copyright 2011 Linaro Ltd.
 *
 * The code contained herein is licensed under the GNU General Public
 * License. You may obtain a copy of the GNU General Public License
 * Version 2 or later at the following locations:
 *
 * http://www.opensource.org/licenses/gpl-license.html
 * http://www.gnu.org/copyleft/gpl.html
 */
 
#include <linux/init.h>
#include <linux/io.h>
#include <linux/module.h>
#include <linux/of.h>
#include <linux/of_address.h>
#include <linux/of_device.h>
 
#include "common.h"
 
#define MMDC_MAPSR        0x404
#define BP_MMDC_MAPSR_PSD    0
#define BP_MMDC_MAPSR_PSS    4
 
#define MMDC_MDMISC        0x18
#define BM_MMDC_MDMISC_DDR_TYPE    0x18
#define BP_MMDC_MDMISC_DDR_TYPE    0x3
 
static int ddr_type;
 
static int imx_mmdc_probe(struct platform_device *pdev)
{
   struct device_node *np = pdev->dev.of_node;
   void __iomem *mmdc_base, *reg;
   u32 val;
   int timeout = 0x400;
 
   mmdc_base = of_iomap(np, 0);
   WARN_ON(!mmdc_base);
 
   reg = mmdc_base + MMDC_MDMISC;
   /* Get ddr type */
   val = readl_relaxed(reg);
   ddr_type = (val & BM_MMDC_MDMISC_DDR_TYPE) >>
        BP_MMDC_MDMISC_DDR_TYPE;
 
   reg = mmdc_base + MMDC_MAPSR;
 
   /* Enable automatic power saving */
   val = readl_relaxed(reg);
   val &= ~(1 << BP_MMDC_MAPSR_PSD);
   writel_relaxed(val, reg);
 
   /* Ensure it's successfully enabled */
   while (!(readl_relaxed(reg) & 1 << BP_MMDC_MAPSR_PSS) && --timeout)
       cpu_relax();
 
   if (unlikely(!timeout)) {
       pr_warn("%s: failed to enable automatic power saving\n",
           __func__);
       return -EBUSY;
   }
 
   return 0;
}
 
int imx_mmdc_get_ddr_type(void)
{
   return ddr_type;
}
 
static const struct of_device_id imx_mmdc_dt_ids[] = {
   { .compatible = "fsl,imx6q-mmdc", },
   { /* sentinel */ }
};
 
static struct platform_driver imx_mmdc_driver = {
   .driver        = {
       .name    = "imx-mmdc",
       .of_match_table = imx_mmdc_dt_ids,
   },
   .probe        = imx_mmdc_probe,
};
 
static int __init imx_mmdc_init(void)
{
   return platform_driver_register(&imx_mmdc_driver);
}
postcore_initcall(imx_mmdc_init);