]> git.baikalelectronics.ru Git - uboot.git/commitdiff
ARM: tegra: clock: add clock_decode_pair helper
authorSvyatoslav Ryhel <clamor95@gmail.com>
Tue, 14 Feb 2023 17:35:26 +0000 (19:35 +0200)
committerTom <twarren@nvidia.com>
Thu, 23 Feb 2023 19:55:36 +0000 (12:55 -0700)
Get periph clock id and its parent from device tree.
This works by looking up the peripheral's 'clocks' node and
reading out the second and fourth cells, which are the
peripheral and PLL clock numbers.

Tested-by: Andreas Westman Dorcsak <hedmoo@yahoo.com> # ASUS TF T30
Tested-by: Robert Eckelmann <longnoserob@gmail.com> # ASUS TF101 T20
Tested-by: Svyatoslav Ryhel <clamor95@gmail.com> # HTC One X
Signed-off-by: Svyatoslav Ryhel <clamor95@gmail.com>
Signed-off-by: Tom <twarren@nvidia.com>
arch/arm/include/asm/arch-tegra/clock.h
arch/arm/mach-tegra/clock.c

index 2270501406466aef90304e9d604991d5c828a835..61ef81e7fe43b43283872ca3a74db7ff21377134 100644 (file)
@@ -270,6 +270,19 @@ void clock_ll_start_uart(enum periph_id periph_id);
  */
 int clock_decode_periph_id(struct udevice *dev);
 
+/**
+ * Get periph clock id and its parent from device tree.
+ *
+ * This works by looking up the peripheral's 'clocks' node and reading out
+ * the second and fourth cells, which are the peripheral and PLL clock numbers.
+ *
+ * @param dev          udevice associated with FDT node
+ * @param clk_id       pointer to int array of 2 values
+ *                     first is periph clock, second is
+ *                     its PLL parent according to FDT.
+ */
+int clock_decode_pair(struct udevice *dev, int *clk_id);
+
 /**
  * Checks if the oscillator bypass is enabled (XOBP bit)
  *
index 11bffc170168c499b889355cd453b9e852737d04..966009f3752c22c4c2a09afb06a14b774bb03005 100644 (file)
@@ -678,6 +678,29 @@ int clock_decode_periph_id(struct udevice *dev)
        assert(clock_periph_id_isvalid(id));
        return id;
 }
+
+/*
+ * Get periph clock id and its parent from device tree.
+ *
+ * @param dev          udevice associated with FDT node
+ * @param clk_id       pointer to u32 array of 2 values
+ *                     first is periph clock, second is
+ *                     its PLL parent according to FDT.
+ */
+int clock_decode_pair(struct udevice *dev, int *clk_id)
+{
+       u32 cell[4];
+       int err;
+
+       err = dev_read_u32_array(dev, "clocks", cell, ARRAY_SIZE(cell));
+       if (err)
+               return -EINVAL;
+
+       clk_id[0] = clk_id_to_periph_id(cell[1]);
+       clk_id[1] = clk_id_to_pll_id(cell[3]);
+
+       return 0;
+}
 #endif /* CONFIG_IS_ENABLED(OF_CONTROL) */
 
 int clock_verify(void)