Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
514 changes: 514 additions & 0 deletions Documentation/netlink/specs/dpll.yaml

Large diffs are not rendered by default.

347 changes: 347 additions & 0 deletions Documentation/networking/dpll.rst

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions Documentation/networking/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ Contents:
dsa/index
devlink/index
caif/index
dpll
ethtool-netlink
ieee802154
j1939
Expand Down
8 changes: 8 additions & 0 deletions MAINTAINERS
Original file line number Diff line number Diff line change
Expand Up @@ -6289,6 +6289,14 @@ F: Documentation/networking/device_drivers/ethernet/freescale/dpaa2/switch-drive
F: drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
F: drivers/net/ethernet/freescale/dpaa2/dpsw*

DPLL CLOCK SUBSYSTEM
M: Vadim Fedorenko <[email protected]>
L: [email protected]
S: Maintained
F: drivers/dpll/*
F: include/net/dpll.h
F: include/uapi/linux/dpll.h

DRBD DRIVER
M: Philipp Reisner <[email protected]>
M: Lars Ellenberg <[email protected]>
Expand Down
2 changes: 2 additions & 0 deletions drivers/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -241,4 +241,6 @@ source "drivers/peci/Kconfig"

source "drivers/hte/Kconfig"

source "drivers/dpll/Kconfig"

endmenu
1 change: 1 addition & 0 deletions drivers/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -194,3 +194,4 @@ obj-$(CONFIG_MOST) += most/
obj-$(CONFIG_PECI) += peci/
obj-$(CONFIG_HTE) += hte/
obj-$(CONFIG_DRM_ACCEL) += accel/
obj-$(CONFIG_DPLL) += dpll/
7 changes: 7 additions & 0 deletions drivers/dpll/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# SPDX-License-Identifier: GPL-2.0-only
#
# Generic DPLL drivers configuration
#

config DPLL
bool
10 changes: 10 additions & 0 deletions drivers/dpll/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# SPDX-License-Identifier: GPL-2.0
#
# Makefile for DPLL drivers.
#

obj-$(CONFIG_DPLL) += dpll_sys.o
dpll_sys-y += dpll_core.o
dpll_sys-y += dpll_netlink.o
dpll_sys-y += dpll_nl.o

Loading