]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
soc: aspeed-lpc-ctrl: Fail probe of lpc-ctrl if reserved memory is not aligned
authorAndrew Jeffery <andrew@aj.id.au>
Wed, 16 Oct 2019 23:39:50 +0000 (10:09 +1030)
committerJoel Stanley <joel@jms.id.au>
Fri, 25 Sep 2020 04:38:14 +0000 (14:08 +0930)
Alignment is a hardware constraint of the LPC2AHB bridge, and misaligned
reserved memory will present as corrupted data.

Signed-off-by: Andrew Jeffery <andrew@aj.id.au>
Reviewed-by: Joel Stanley <joel@jms.id.au>
Link: https://lore.kernel.org/r/20191016233950.10100-1-andrew@aj.id.au
Signed-off-by: Joel Stanley <joel@jms.id.au>
drivers/soc/aspeed/aspeed-lpc-ctrl.c

index 12e4421dee371f6410010592a564191d494428f6..d8f3dff97cd4cb6581feee4955fe9ab61df10328 100644 (file)
@@ -4,6 +4,7 @@
  */
 
 #include <linux/clk.h>
+#include <linux/log2.h>
 #include <linux/mfd/syscon.h>
 #include <linux/miscdevice.h>
 #include <linux/mm.h>
@@ -241,6 +242,18 @@ static int aspeed_lpc_ctrl_probe(struct platform_device *pdev)
 
                lpc_ctrl->mem_size = resource_size(&resm);
                lpc_ctrl->mem_base = resm.start;
+
+               if (!is_power_of_2(lpc_ctrl->mem_size)) {
+                       dev_err(dev, "Reserved memory size must be a power of 2, got %u\n",
+                              (unsigned int)lpc_ctrl->mem_size);
+                       return -EINVAL;
+               }
+
+               if (!IS_ALIGNED(lpc_ctrl->mem_base, lpc_ctrl->mem_size)) {
+                       dev_err(dev, "Reserved memory must be naturally aligned for size %u\n",
+                              (unsigned int)lpc_ctrl->mem_size);
+                       return -EINVAL;
+               }
        }
 
        lpc_ctrl->regmap = syscon_node_to_regmap(