* [PATCH 1/2] clk: at91: clk-master: add 5th divisor for mck master @ 2020-10-08 11:46 Eugen Hristev 2020-10-08 11:46 ` [PATCH 2/2] clk: at91: sama7g5: add 5th divisor for mck0 layout and characteristics Eugen Hristev 2020-10-19 6:28 ` [PATCH 1/2] clk: at91: clk-master: add 5th divisor for mck master Eugen.Hristev at microchip.com 0 siblings, 2 replies; 3+ messages in thread From: Eugen Hristev @ 2020-10-08 11:46 UTC (permalink / raw) To: u-boot clk-master can have 5 divisors with a field width of 3 bits on some products. Change the mask and number of divisors accordingly. Reported-by: Mihai Sain <mihai.sain@microchip.com> Signed-off-by: Eugen Hristev <eugen.hristev@microchip.com> Reviewed-by: Claudiu Beznea <claudiu.beznea@microchip.com> --- drivers/clk/at91/clk-master.c | 2 +- drivers/clk/at91/pmc.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/clk/at91/clk-master.c b/drivers/clk/at91/clk-master.c index 759df93697..5d93e6a7e5 100644 --- a/drivers/clk/at91/clk-master.c +++ b/drivers/clk/at91/clk-master.c @@ -24,7 +24,7 @@ #define MASTER_PRES_MASK 0x7 #define MASTER_PRES_MAX MASTER_PRES_MASK #define MASTER_DIV_SHIFT 8 -#define MASTER_DIV_MASK 0x3 +#define MASTER_DIV_MASK 0x7 #define PMC_MCR 0x30 #define PMC_MCR_ID_MSK GENMASK(3, 0) diff --git a/drivers/clk/at91/pmc.h b/drivers/clk/at91/pmc.h index a6a714fd22..f07f535e49 100644 --- a/drivers/clk/at91/pmc.h +++ b/drivers/clk/at91/pmc.h @@ -30,7 +30,7 @@ extern const struct clk_master_layout at91sam9x5_master_layout; struct clk_master_characteristics { struct clk_range output; - u32 divisors[4]; + u32 divisors[5]; u8 have_div3_pres; }; -- 2.25.1 ^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH 2/2] clk: at91: sama7g5: add 5th divisor for mck0 layout and characteristics 2020-10-08 11:46 [PATCH 1/2] clk: at91: clk-master: add 5th divisor for mck master Eugen Hristev @ 2020-10-08 11:46 ` Eugen Hristev 2020-10-19 6:28 ` [PATCH 1/2] clk: at91: clk-master: add 5th divisor for mck master Eugen.Hristev at microchip.com 1 sibling, 0 replies; 3+ messages in thread From: Eugen Hristev @ 2020-10-08 11:46 UTC (permalink / raw) To: u-boot This SoC has the 5th divisor for the mck0 master clock. Adapt the characteristics accordingly. Reported-by: Mihai Sain <mihai.sain@microchip.com> Signed-off-by: Eugen Hristev <eugen.hristev@microchip.com> Reviewed-by: Claudiu Beznea <claudiu.beznea@microchip.com> --- drivers/clk/at91/sama7g5.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/clk/at91/sama7g5.c b/drivers/clk/at91/sama7g5.c index b96937673b..c0d9271966 100644 --- a/drivers/clk/at91/sama7g5.c +++ b/drivers/clk/at91/sama7g5.c @@ -189,13 +189,13 @@ static const struct clk_pll_layout pll_layout_divio = { /* MCK0 characteristics. */ static const struct clk_master_characteristics mck0_characteristics = { .output = { .min = 140000000, .max = 200000000 }, - .divisors = { 1, 2, 4, 3 }, + .divisors = { 1, 2, 4, 3, 5 }, .have_div3_pres = 1, }; /* MCK0 layout. */ static const struct clk_master_layout mck0_layout = { - .mask = 0x373, + .mask = 0x773, .pres_shift = 4, .offset = 0x28, }; -- 2.25.1 ^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH 1/2] clk: at91: clk-master: add 5th divisor for mck master 2020-10-08 11:46 [PATCH 1/2] clk: at91: clk-master: add 5th divisor for mck master Eugen Hristev 2020-10-08 11:46 ` [PATCH 2/2] clk: at91: sama7g5: add 5th divisor for mck0 layout and characteristics Eugen Hristev @ 2020-10-19 6:28 ` Eugen.Hristev at microchip.com 1 sibling, 0 replies; 3+ messages in thread From: Eugen.Hristev at microchip.com @ 2020-10-19 6:28 UTC (permalink / raw) To: u-boot On 08.10.2020 14:46, Eugen Hristev wrote: > clk-master can have 5 divisors with a field width of 3 bits > on some products. > > Change the mask and number of divisors accordingly. > > Reported-by: Mihai Sain <mihai.sain@microchip.com> > Signed-off-by: Eugen Hristev <eugen.hristev@microchip.com> > Reviewed-by: Claudiu Beznea <claudiu.beznea@microchip.com> > --- Applied both to u-boot-atmel/master ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2020-10-19 6:28 UTC | newest] Thread overview: 3+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2020-10-08 11:46 [PATCH 1/2] clk: at91: clk-master: add 5th divisor for mck master Eugen Hristev 2020-10-08 11:46 ` [PATCH 2/2] clk: at91: sama7g5: add 5th divisor for mck0 layout and characteristics Eugen Hristev 2020-10-19 6:28 ` [PATCH 1/2] clk: at91: clk-master: add 5th divisor for mck master Eugen.Hristev at microchip.com
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox