Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

clk: at91: sama7g5: set low limit for mck0 at 32KHz

MCK0 could go as low as 32KHz. Set this limit.

Signed-off-by: Claudiu Beznea <claudiu.beznea@microchip.com>
Link: https://lore.kernel.org/r/20211011112719.3951784-15-claudiu.beznea@microchip.com
Acked-by: Nicolas Ferre <nicolas.ferre@microchip.com>
Signed-off-by: Stephen Boyd <sboyd@kernel.org>

authored by

Claudiu Beznea and committed by
Stephen Boyd
0b59e619 facb87ad

+1 -1
+1 -1
drivers/clk/at91/sama7g5.c
··· 850 850 851 851 /* MCK0 characteristics. */ 852 852 static const struct clk_master_characteristics mck0_characteristics = { 853 - .output = { .min = 50000000, .max = 200000000 }, 853 + .output = { .min = 32768, .max = 200000000 }, 854 854 .divisors = { 1, 2, 4, 3, 5 }, 855 855 .have_div3_pres = 1, 856 856 };