[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20220626192444.29321-1-vfedorenko@novek.ru>
Date: Sun, 26 Jun 2022 22:24:41 +0300
From: Vadim Fedorenko <vfedorenko@...ek.ru>
To: Jakub Kicinski <kuba@...nel.org>,
Arkadiusz Kubalewski <arkadiusz.kubalewski@...el.com>,
Jonathan Lemon <jonathan.lemon@...il.com>
Cc: Vadim Fedorenko <vadfed@...com>, Aya Levin <ayal@...dia.com>,
netdev@...r.kernel.org, linux-arm-kernel@...ts.infradead.org,
linux-clk@...r.kernel.org
Subject: [RFC PATCH v2 0/3] Create common DPLL/clock configuration API
From: Vadim Fedorenko <vadfed@...com>
Implement common API for clock/DPLL configuration and status reporting.
The API utilises netlink interface as transport for commands and event
notifications. This API aim to extend current pin configuration and
make it flexible and easy to cover special configurations.
v1 -> v2:
* implement returning supported input/output types
* ptp_ocp: follow suggestions from Jonathan
* add linux-clk mailing list
v0 -> v1:
* fix code style and errors
* add linux-arm mailing list
Vadim Fedorenko (3):
dpll: Add DPLL framework base functions
dpll: add netlink events
ptp_ocp: implement DPLL ops
MAINTAINERS | 8 +
drivers/Kconfig | 2 +
drivers/Makefile | 1 +
drivers/dpll/Kconfig | 7 +
drivers/dpll/Makefile | 7 +
drivers/dpll/dpll_core.c | 161 ++++++++++
drivers/dpll/dpll_core.h | 40 +++
drivers/dpll/dpll_netlink.c | 595 ++++++++++++++++++++++++++++++++++++
drivers/dpll/dpll_netlink.h | 14 +
drivers/ptp/Kconfig | 1 +
drivers/ptp/ptp_ocp.c | 169 +++++++---
include/linux/dpll.h | 29 ++
include/uapi/linux/dpll.h | 81 +++++
13 files changed, 1079 insertions(+), 36 deletions(-)
create mode 100644 drivers/dpll/Kconfig
create mode 100644 drivers/dpll/Makefile
create mode 100644 drivers/dpll/dpll_core.c
create mode 100644 drivers/dpll/dpll_core.h
create mode 100644 drivers/dpll/dpll_netlink.c
create mode 100644 drivers/dpll/dpll_netlink.h
create mode 100644 include/linux/dpll.h
create mode 100644 include/uapi/linux/dpll.h
--
2.27.0
Powered by blists - more mailing lists