aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/misc/sram.c
diff options
context:
space:
mode:
authorAbhilash Kesavan <[email protected]>2015-02-06 13:45:28 +0000
committerGreg Kroah-Hartman <[email protected]>2015-03-16 20:11:32 +0000
commit0ab163ad1ea0bb0ccd4ada2a54834041611d76f1 (patch)
tree8e3859e91ef5944990ad7b3555803c4af3891598 /drivers/misc/sram.c
parentlib: devres: add a helper function for ioremap_wc (diff)
downloadkernel-0ab163ad1ea0bb0ccd4ada2a54834041611d76f1.tar.gz
kernel-0ab163ad1ea0bb0ccd4ada2a54834041611d76f1.zip
misc: sram: switch to ioremap_wc from ioremap
Currently, the SRAM allocator returns device memory via ioremap. This causes issues on ARM64 when the internal SoC SRAM allocated by the generic sram driver is used for audio playback. The destination buffer address (which is ioremapped SRAM) is not 64-bit aligned for certain streams (e.g. 44.1k sampling rate). In such cases we get unhandled alignment faults. Use ioremap_wc in place of ioremap which gives us normal non-cacheable memory instead of device memory. Signed-off-by: Abhilash Kesavan <[email protected]> Tested-by: Tony Lindgren <[email protected]> Tested-by: Heiko Stuebner <[email protected]> Acked-by: Catalin Marinas <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
Diffstat (limited to 'drivers/misc/sram.c')
-rw-r--r--drivers/misc/sram.c17
1 files changed, 14 insertions, 3 deletions
diff --git a/drivers/misc/sram.c b/drivers/misc/sram.c
index 1ed37cedff49..eeaaf5fca105 100644
--- a/drivers/misc/sram.c
+++ b/drivers/misc/sram.c
@@ -69,12 +69,23 @@ static int sram_probe(struct platform_device *pdev)
INIT_LIST_HEAD(&reserve_list);
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
- virt_base = devm_ioremap_resource(&pdev->dev, res);
- if (IS_ERR(virt_base))
- return PTR_ERR(virt_base);
+ if (!res) {
+ dev_err(&pdev->dev, "found no memory resource\n");
+ return -EINVAL;
+ }
size = resource_size(res);
+ if (!devm_request_mem_region(&pdev->dev,
+ res->start, size, pdev->name)) {
+ dev_err(&pdev->dev, "could not request region for resource\n");
+ return -EBUSY;
+ }
+
+ virt_base = devm_ioremap_wc(&pdev->dev, res->start, size);
+ if (IS_ERR(virt_base))
+ return PTR_ERR(virt_base);
+
sram = devm_kzalloc(&pdev->dev, sizeof(*sram), GFP_KERNEL);
if (!sram)
return -ENOMEM;