From nobody Tue Sep 16 17:50:17 2025 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 6AF77C3DA7A for ; Mon, 2 Jan 2023 05:10:13 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230000AbjABFKK (ORCPT ); Mon, 2 Jan 2023 00:10:10 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:42394 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231658AbjABFJN (ORCPT ); Mon, 2 Jan 2023 00:09:13 -0500 Received: from esa.microchip.iphmx.com (esa.microchip.iphmx.com [68.232.154.123]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id C8B8C267B; Sun, 1 Jan 2023 21:07:57 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=microchip.com; i=@microchip.com; q=dns/txt; s=mchp; t=1672636077; x=1704172077; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=AywxAw6iy2fYgGi2enNCBlMFocVYi/u2W5ZiYXn8P3g=; b=ZMHZBck+138HgIw/1/gXwp7LhIfzsOb91coZQr9pz//E8f3j3BDtXIt0 l8RSUSRsuWjAw0sYkF86D90rUaPNar/aeMQa1uJ7ogU0ZsC4HXMX/gWAv 3Ct2EXi3VFi/oPDu2YRc3Lq7JVi+l4xINw2IUQkyDVcayt3MwsLIZfjtW YGOxcJiwMrH+7fXkiO37eDEATpvPXUrme+xazqng1PziO1Phik5R77Tvv ia4jlwOmUEiN+MSnZ0OKoixagPgDCk3nqDVtoIbuOmcAaVITj+OfMFdeu zg98HE/9FWVS5dreY73y7nFECNDziMOFxq0/ytZgFDetQZf5NMm/9MZTQ A==; X-IronPort-AV: E=Sophos;i="5.96,293,1665471600"; d="scan'208";a="130397780" Received: from unknown (HELO email.microchip.com) ([170.129.1.10]) by esa6.microchip.iphmx.com with ESMTP/TLS/AES256-SHA256; 01 Jan 2023 22:07:57 -0700 Received: from chn-vm-ex04.mchp-main.com (10.10.85.152) by chn-vm-ex02.mchp-main.com (10.10.85.144) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2507.16; Sun, 1 Jan 2023 22:07:56 -0700 Received: from CHE-LT-I17769U.microchip.com (10.10.115.15) by chn-vm-ex04.mchp-main.com (10.10.85.152) with Microsoft SMTP Server id 15.1.2507.16 via Frontend Transport; Sun, 1 Jan 2023 22:07:50 -0700 From: Arun Ramadoss To: , CC: , , , , , , , , , , , , , , Subject: [Patch net-next v6 11/13] net: dsa: microchip: ptp: add support for perout programmable pins Date: Mon, 2 Jan 2023 10:34:57 +0530 Message-ID: <20230102050459.31023-12-arun.ramadoss@microchip.com> X-Mailer: git-send-email 2.36.1 In-Reply-To: <20230102050459.31023-1-arun.ramadoss@microchip.com> References: <20230102050459.31023-1-arun.ramadoss@microchip.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" There are two programmable pins available for Trigger output unit to generate periodic pulses. This patch add verify_pin for the available 2 pins and configure it with respect to GPIO index for the TOU unit. Tested using testptp ./testptp -i 0 -L 0,2 ./testptp -i 0 -d /dev/ptp0 -p 1000000000 ./testptp -i 1 -L 1,2 ./testptp -i 1 -d /dev/ptp0 -p 100000000 Signed-off-by: Arun Ramadoss --- v1 - v2 - checkpatch warning to limit 80 chars Patch v1 - patch is new --- drivers/net/dsa/microchip/ksz_ptp.c | 35 +++++++++++++++++++++++++++++ drivers/net/dsa/microchip/ksz_ptp.h | 3 +++ 2 files changed, 38 insertions(+) diff --git a/drivers/net/dsa/microchip/ksz_ptp.c b/drivers/net/dsa/microchi= p/ksz_ptp.c index 0f6642cb448d..2d52a3d4771e 100644 --- a/drivers/net/dsa/microchip/ksz_ptp.c +++ b/drivers/net/dsa/microchip/ksz_ptp.c @@ -171,6 +171,10 @@ static int ksz_ptp_enable_perout(struct ksz_device *de= v, ptp_data->tou_mode !=3D KSZ_PTP_TOU_IDLE) return -EBUSY; =20 + pin =3D ptp_find_pin(ptp_data->clock, PTP_PF_PEROUT, request->index); + if (pin < 0) + return -EINVAL; + data32 =3D FIELD_PREP(PTP_GPIO_INDEX, pin) | FIELD_PREP(PTP_TOU_INDEX, request->index); ret =3D ksz_rmw32(dev, REG_PTP_UNIT_INDEX__4, @@ -781,6 +785,23 @@ static int ksz_ptp_enable(struct ptp_clock_info *ptp, return ret; } =20 +static int ksz_ptp_verify_pin(struct ptp_clock_info *ptp, unsigned int pin, + enum ptp_pin_function func, unsigned int chan) +{ + int ret =3D 0; + + switch (func) { + case PTP_PF_NONE: + case PTP_PF_PEROUT: + break; + default: + ret =3D -1; + break; + } + + return ret; +} + /* Function is pointer to the do_aux_work in the ptp_clock capability */ static long ksz_ptp_do_aux_work(struct ptp_clock_info *ptp) { @@ -816,6 +837,7 @@ int ksz_ptp_clock_register(struct dsa_switch *ds) struct ksz_device *dev =3D ds->priv; struct ksz_ptp_data *ptp_data; int ret; + u8 i; =20 ptp_data =3D &dev->ptp_data; mutex_init(&ptp_data->lock); @@ -830,12 +852,25 @@ int ksz_ptp_clock_register(struct dsa_switch *ds) ptp_data->caps.adjtime =3D ksz_ptp_adjtime; ptp_data->caps.do_aux_work =3D ksz_ptp_do_aux_work; ptp_data->caps.enable =3D ksz_ptp_enable; + ptp_data->caps.verify =3D ksz_ptp_verify_pin; + ptp_data->caps.n_pins =3D KSZ_PTP_N_GPIO; ptp_data->caps.n_per_out =3D 3; =20 ret =3D ksz_ptp_start_clock(dev); if (ret) return ret; =20 + for (i =3D 0; i < KSZ_PTP_N_GPIO; i++) { + struct ptp_pin_desc *ptp_pin =3D &ptp_data->pin_config[i]; + + snprintf(ptp_pin->name, + sizeof(ptp_pin->name), "ksz_ptp_pin_%02d", i); + ptp_pin->index =3D i; + ptp_pin->func =3D PTP_PF_NONE; + } + + ptp_data->caps.pin_config =3D ptp_data->pin_config; + /* Currently only P2P mode is supported. When 802_1AS bit is set, it * forwards all PTP packets to host port and none to other ports. */ diff --git a/drivers/net/dsa/microchip/ksz_ptp.h b/drivers/net/dsa/microchi= p/ksz_ptp.h index 9451e3a76375..0ca8ca4f804e 100644 --- a/drivers/net/dsa/microchip/ksz_ptp.h +++ b/drivers/net/dsa/microchip/ksz_ptp.h @@ -12,6 +12,8 @@ =20 #include =20 +#define KSZ_PTP_N_GPIO 2 + enum ksz_ptp_tou_mode { KSZ_PTP_TOU_IDLE, KSZ_PTP_TOU_PEROUT, @@ -20,6 +22,7 @@ enum ksz_ptp_tou_mode { struct ksz_ptp_data { struct ptp_clock_info caps; struct ptp_clock *clock; + struct ptp_pin_desc pin_config[KSZ_PTP_N_GPIO]; /* Serializes all operations on the PTP hardware clock */ struct mutex lock; /* lock for accessing the clock_time */ --=20 2.36.1