diff options
author | Alexandre Mergnat <amergnat@baylibre.com> | 2019-07-25 19:42:36 +0300 |
---|---|---|
committer | Jerome Brunet <jbrunet@baylibre.com> | 2019-07-29 13:42:49 +0300 |
commit | 3a36044e7f3909c7ddb7ddfc727ab8104a563439 (patch) | |
tree | d2d271b937b6c05150b5d20d480d4dd356ba6f07 /drivers/clk/meson/g12a.c | |
parent | 4b5b85c0e6505c50d4a986f75effe5b88d923737 (diff) | |
download | linux-3a36044e7f3909c7ddb7ddfc727ab8104a563439.tar.xz |
clk: meson: clk-regmap: migrate to new parent description method
This clock controller use the string comparison method to describe parent
relation between the clocks, which is not optimized.
Migrate to the new way by using .parent_hws where possible (ie. when
all clocks are local to the controller) and use .parent_data otherwise.
Signed-off-by: Alexandre Mergnat <amergnat@baylibre.com>
Signed-off-by: Jerome Brunet <jbrunet@baylibre.com>
Diffstat (limited to 'drivers/clk/meson/g12a.c')
-rw-r--r-- | drivers/clk/meson/g12a.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/clk/meson/g12a.c b/drivers/clk/meson/g12a.c index 8cc7f5acf7ab..a8f706de811b 100644 --- a/drivers/clk/meson/g12a.c +++ b/drivers/clk/meson/g12a.c @@ -3325,6 +3325,12 @@ static struct clk_regmap g12a_ts = { }, }; +#define MESON_GATE(_name, _reg, _bit) \ + MESON_PCLK(_name, _reg, _bit, &g12a_clk81.hw) + +#define MESON_GATE_RO(_name, _reg, _bit) \ + MESON_PCLK_RO(_name, _reg, _bit, &g12a_clk81.hw) + /* Everything Else (EE) domain gates */ static MESON_GATE(g12a_ddr, HHI_GCLK_MPEG0, 0); static MESON_GATE(g12a_dos, HHI_GCLK_MPEG0, 1); |