2 * Copyright (C) 2015 - 2016 Samsung Electronics Co., Ltd.
4 * Authors: Inha Song <ideal.song@samsung.com>
5 * Sylwester Nawrocki <s.nawrocki@samsung.com>
7 * Samsung Exynos SoC series Low Power Audio Subsystem driver.
9 * This module provides regmap for the Top SFR region and instantiates
10 * devices for IP blocks like DMAC, I2S, UART.
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License version 2 and
14 * only version 2 as published by the Free Software Foundation.
17 #include <linux/clk.h>
18 #include <linux/delay.h>
20 #include <linux/module.h>
21 #include <linux/mfd/syscon.h>
23 #include <linux/of_platform.h>
24 #include <linux/platform_device.h>
25 #include <linux/pm_runtime.h>
26 #include <linux/regmap.h>
27 #include <linux/soc/samsung/exynos-regs-pmu.h>
28 #include <linux/types.h>
30 /* LPASS Top register definitions */
31 #define SFR_LPASS_CORE_SW_RESET 0x08
32 #define LPASS_SB_SW_RESET BIT(11)
33 #define LPASS_UART_SW_RESET BIT(10)
34 #define LPASS_PCM_SW_RESET BIT(9)
35 #define LPASS_I2S_SW_RESET BIT(8)
36 #define LPASS_WDT1_SW_RESET BIT(4)
37 #define LPASS_WDT0_SW_RESET BIT(3)
38 #define LPASS_TIMER_SW_RESET BIT(2)
39 #define LPASS_MEM_SW_RESET BIT(1)
40 #define LPASS_DMA_SW_RESET BIT(0)
42 #define SFR_LPASS_INTR_CA5_MASK 0x48
43 #define SFR_LPASS_INTR_CPU_MASK 0x58
44 #define LPASS_INTR_APM BIT(9)
45 #define LPASS_INTR_MIF BIT(8)
46 #define LPASS_INTR_TIMER BIT(7)
47 #define LPASS_INTR_DMA BIT(6)
48 #define LPASS_INTR_GPIO BIT(5)
49 #define LPASS_INTR_I2S BIT(4)
50 #define LPASS_INTR_PCM BIT(3)
51 #define LPASS_INTR_SLIMBUS BIT(2)
52 #define LPASS_INTR_UART BIT(1)
53 #define LPASS_INTR_SFR BIT(0)
56 /* pointer to the LPASS TOP regmap */
61 static void exynos_lpass_core_sw_reset(struct exynos_lpass
*lpass
, int mask
)
65 regmap_read(lpass
->top
, SFR_LPASS_CORE_SW_RESET
, &val
);
68 regmap_write(lpass
->top
, SFR_LPASS_CORE_SW_RESET
, val
);
70 usleep_range(100, 150);
73 regmap_write(lpass
->top
, SFR_LPASS_CORE_SW_RESET
, val
);
76 static void exynos_lpass_enable(struct exynos_lpass
*lpass
)
78 clk_prepare_enable(lpass
->sfr0_clk
);
80 /* Unmask SFR, DMA and I2S interrupt */
81 regmap_write(lpass
->top
, SFR_LPASS_INTR_CA5_MASK
,
82 LPASS_INTR_SFR
| LPASS_INTR_DMA
| LPASS_INTR_I2S
);
84 regmap_write(lpass
->top
, SFR_LPASS_INTR_CPU_MASK
,
85 LPASS_INTR_SFR
| LPASS_INTR_DMA
| LPASS_INTR_I2S
);
87 exynos_lpass_core_sw_reset(lpass
, LPASS_I2S_SW_RESET
);
88 exynos_lpass_core_sw_reset(lpass
, LPASS_DMA_SW_RESET
);
89 exynos_lpass_core_sw_reset(lpass
, LPASS_MEM_SW_RESET
);
92 static void exynos_lpass_disable(struct exynos_lpass
*lpass
)
94 /* Mask any unmasked IP interrupt sources */
95 regmap_write(lpass
->top
, SFR_LPASS_INTR_CPU_MASK
, 0);
96 regmap_write(lpass
->top
, SFR_LPASS_INTR_CA5_MASK
, 0);
98 clk_disable_unprepare(lpass
->sfr0_clk
);
101 static const struct regmap_config exynos_lpass_reg_conf
= {
105 .max_register
= 0xfc,
109 static int exynos_lpass_probe(struct platform_device
*pdev
)
111 struct device
*dev
= &pdev
->dev
;
112 struct exynos_lpass
*lpass
;
113 void __iomem
*base_top
;
114 struct resource
*res
;
116 lpass
= devm_kzalloc(dev
, sizeof(*lpass
), GFP_KERNEL
);
120 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
121 base_top
= devm_ioremap_resource(dev
, res
);
122 if (IS_ERR(base_top
))
123 return PTR_ERR(base_top
);
125 lpass
->sfr0_clk
= devm_clk_get(dev
, "sfr0_ctrl");
126 if (IS_ERR(lpass
->sfr0_clk
))
127 return PTR_ERR(lpass
->sfr0_clk
);
129 lpass
->top
= regmap_init_mmio(dev
, base_top
,
130 &exynos_lpass_reg_conf
);
131 if (IS_ERR(lpass
->top
)) {
132 dev_err(dev
, "LPASS top regmap initialization failed\n");
133 return PTR_ERR(lpass
->top
);
136 platform_set_drvdata(pdev
, lpass
);
137 pm_runtime_set_active(dev
);
138 pm_runtime_enable(dev
);
139 exynos_lpass_enable(lpass
);
141 return devm_of_platform_populate(dev
);
144 static int exynos_lpass_remove(struct platform_device
*pdev
)
146 struct exynos_lpass
*lpass
= platform_get_drvdata(pdev
);
148 exynos_lpass_disable(lpass
);
149 pm_runtime_disable(&pdev
->dev
);
150 if (!pm_runtime_status_suspended(&pdev
->dev
))
151 exynos_lpass_disable(lpass
);
152 regmap_exit(lpass
->top
);
157 static int __maybe_unused
exynos_lpass_suspend(struct device
*dev
)
159 struct exynos_lpass
*lpass
= dev_get_drvdata(dev
);
161 exynos_lpass_disable(lpass
);
166 static int __maybe_unused
exynos_lpass_resume(struct device
*dev
)
168 struct exynos_lpass
*lpass
= dev_get_drvdata(dev
);
170 exynos_lpass_enable(lpass
);
175 static const struct dev_pm_ops lpass_pm_ops
= {
176 SET_RUNTIME_PM_OPS(exynos_lpass_suspend
, exynos_lpass_resume
, NULL
)
177 SET_LATE_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend
,
178 pm_runtime_force_resume
)
181 static const struct of_device_id exynos_lpass_of_match
[] = {
182 { .compatible
= "samsung,exynos5433-lpass" },
185 MODULE_DEVICE_TABLE(of
, exynos_lpass_of_match
);
187 static struct platform_driver exynos_lpass_driver
= {
189 .name
= "exynos-lpass",
191 .of_match_table
= exynos_lpass_of_match
,
193 .probe
= exynos_lpass_probe
,
194 .remove
= exynos_lpass_remove
,
196 module_platform_driver(exynos_lpass_driver
);
198 MODULE_DESCRIPTION("Samsung Low Power Audio Subsystem driver");
199 MODULE_LICENSE("GPL v2");