On Friday 16 March 2018 08:22 AM, David Lechner wrote:
+static struct resource dm644x_pll1_resources[] = {
+ {
+ .start = DAVINCI_PLL1_BASE,
+ .end = DAVINCI_PLL1_BASE + SZ_4K - 1,
The .end should be DAVINCI_PLL1_BASE + SZ_1K - 1, otherwise it prevents
PLL2 from getting registered.
+ .flags = IORESOURCE_MEM,
+ },
+};
+
+static struct platform_device dm644x_pll1_device = {
+ .name = "dm644x-pll1",
+ .id = -1,
+ .resource = dm644x_pll1_resources,
+ .num_resources = ARRAY_SIZE(dm644x_pll1_resources),
+};
+
+static struct resource dm644x_pll2_resources[] = {
+ {
+ .start = DAVINCI_PLL2_BASE,
+ .end = DAVINCI_PLL2_BASE + SZ_4K - 1,
And this too should be fixed, else it prevents the PSC from getting
registered.