Message ID | cover.1725392645.git.Ryan.Wanner@microchip.com (mailing list archive) |
---|---|
Headers | show |
Series | clk: at91: add sama7d65 clock support | expand |
On 04/09/2024 at 17:54, Ryan.Wanner@microchip.com wrote: > From: Ryan Wanner <Ryan.Wanner@microchip.com> > > Hello, > > This series adds clock support for the SAMA7D65 SoC. There are also > changes to the master clock driver and PLL driver in order to account for > the increased amount of clocks being supported in this new SoC. > > Trying to account for all the updates happening in this system, this > patch set is based off of the most recent updates to at91-next branch. > > Changes in v2: > - Correct PLL ID from PLL_ID_IMG to PLL_ID_GPU in the description. > - Adjust master clock description to match amount of master clocks 0-9. > - Correct bad spacing and bad alignment. > - Remove double variable definition. > - Add missing kfree() at end of function. > - Reorganize clk and pll driver changes in patch set. To the whole series: Acked-by: Nicolas Ferre <nicolas.ferre@microchip.com> > Ryan Wanner (3): > clk: at91: clk-master: increase maximum number of clocks > clk: at91: clk-sam9x60-pll: increase maximum amount of plls > clk: at91: sama7d65: add sama7d65 pmc driver For the record, additions to the DT binding are posed here: https://lore.kernel.org/lkml/20240829-sama7d65-next-v1-1-53d4e50b550d@microchip.com/ Best regards, Nicolas > drivers/clk/at91/Makefile | 1 + > drivers/clk/at91/clk-master.c | 2 +- > drivers/clk/at91/clk-sam9x60-pll.c | 2 +- > drivers/clk/at91/pmc.c | 1 + > drivers/clk/at91/sama7d65.c | 1373 ++++++++++++++++++++++++++++ > 5 files changed, 1377 insertions(+), 2 deletions(-) > create mode 100644 drivers/clk/at91/sama7d65.c >
Hi, Ryan, Can you, please, re-submit this series and include also the dt-binding patch, to follow the process highlighted in [1] ? Thank you, Claudiu Beznea [1] https://lore.kernel.org/lkml/20240829-sama7d65-next-v1-1-53d4e50b550d@microchip.com/ On 04.09.2024 18:54, Ryan.Wanner@microchip.com wrote: > From: Ryan Wanner <Ryan.Wanner@microchip.com> > > Hello, > > This series adds clock support for the SAMA7D65 SoC. There are also > changes to the master clock driver and PLL driver in order to account for > the increased amount of clocks being supported in this new SoC. > > Trying to account for all the updates happening in this system, this > patch set is based off of the most recent updates to at91-next branch. > > Changes in v2: > - Correct PLL ID from PLL_ID_IMG to PLL_ID_GPU in the description. > - Adjust master clock description to match amount of master clocks 0-9. > - Correct bad spacing and bad alignment. > - Remove double variable definition. > - Add missing kfree() at end of function. > - Reorganize clk and pll driver changes in patch set. > > > Ryan Wanner (3): > clk: at91: clk-master: increase maximum number of clocks > clk: at91: clk-sam9x60-pll: increase maximum amount of plls > clk: at91: sama7d65: add sama7d65 pmc driver > > drivers/clk/at91/Makefile | 1 + > drivers/clk/at91/clk-master.c | 2 +- > drivers/clk/at91/clk-sam9x60-pll.c | 2 +- > drivers/clk/at91/pmc.c | 1 + > drivers/clk/at91/sama7d65.c | 1373 ++++++++++++++++++++++++++++ > 5 files changed, 1377 insertions(+), 2 deletions(-) > create mode 100644 drivers/clk/at91/sama7d65.c >
From: Ryan Wanner <Ryan.Wanner@microchip.com> Hello, This series adds clock support for the SAMA7D65 SoC. There are also changes to the master clock driver and PLL driver in order to account for the increased amount of clocks being supported in this new SoC. Trying to account for all the updates happening in this system, this patch set is based off of the most recent updates to at91-next branch. Changes in v2: - Correct PLL ID from PLL_ID_IMG to PLL_ID_GPU in the description. - Adjust master clock description to match amount of master clocks 0-9. - Correct bad spacing and bad alignment. - Remove double variable definition. - Add missing kfree() at end of function. - Reorganize clk and pll driver changes in patch set. Ryan Wanner (3): clk: at91: clk-master: increase maximum number of clocks clk: at91: clk-sam9x60-pll: increase maximum amount of plls clk: at91: sama7d65: add sama7d65 pmc driver drivers/clk/at91/Makefile | 1 + drivers/clk/at91/clk-master.c | 2 +- drivers/clk/at91/clk-sam9x60-pll.c | 2 +- drivers/clk/at91/pmc.c | 1 + drivers/clk/at91/sama7d65.c | 1373 ++++++++++++++++++++++++++++ 5 files changed, 1377 insertions(+), 2 deletions(-) create mode 100644 drivers/clk/at91/sama7d65.c