mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-15 14:36:46 +07:00
a0d2f20650
Ethernet AVB device includes the gPTP timer, so we can implement a PTP clock driver. We're doing that in a separate file, with the main Ethernet driver calling the PTP driver's [de]initialization and interrupt handler functions. Unfortunately, the clock seems tightly coupled with the AVB-DMAC, so when that one leaves the operation mode, we have to unregister the PTP clock... :-( Based on the original patches by Masaru Nagai. Signed-off-by: Masaru Nagai <masaru.nagai.vx@renesas.com> Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com> Signed-off-by: David S. Miller <davem@davemloft.net>
10 lines
148 B
Makefile
10 lines
148 B
Makefile
#
|
|
# Makefile for the Renesas device drivers.
|
|
#
|
|
|
|
obj-$(CONFIG_SH_ETH) += sh_eth.o
|
|
|
|
ravb-objs := ravb_main.o ravb_ptp.o
|
|
|
|
obj-$(CONFIG_RAVB) += ravb.o
|