Received: by 2002:a05:6a10:22f:0:0:0:0 with SMTP id 15csp1955370pxk; Sat, 26 Sep 2020 10:50:38 -0700 (PDT) X-Google-Smtp-Source: ABdhPJxEBAxkbOVYbukRWkSwGO2WQIj11CWMxDMoLT4ELbc7/T/XopAJDEo5MvlvddcMxcmFSu+I X-Received: by 2002:a17:906:2b83:: with SMTP id m3mr8238683ejg.456.1601142637884; Sat, 26 Sep 2020 10:50:37 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1601142637; cv=none; d=google.com; s=arc-20160816; b=Lv7jNHf1Tnl63gp2D8gx5OPLDnXcQKCKAtRC7f2l5YyFPXLjKKLp3otjRtEqXndjz0 U2UjfXxc1U0J4Bsy/RRs+tBx7591/SYH4rtWKfEk8ac5RCV+4SHffVSkvXxGo3I/jG8X Keguq1xrrkRjxfWEAN0ox61BDlxIbm2/wkHkn5QohqStzCAEKPoULlO4IjkX7fVQrhxx 69oIi33vsatnynm47cixdCdr7U1e2wXyWFqdyhz1pV4j3RCDC5svtnf7ZqHeKr8VVkso eLBSoZriYDABDGi5dUjAsB5ZRP9QEWsNuzi/7O/DXL054EwrZUwPwrb2RajiIHjYJUsM 6sdA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:mime-version :references:in-reply-to:message-id:date:subject:cc:to:from; bh=kua0Ra5c7IV9IkXCH0uf9rDNHUQzSfrx/hq+KYHsEkM=; b=PangEDWmnP9wbk4LLqD0mftV/d6jcIwxjgbmBUgpe2Vt61zwDCciz9YkWt56mugVxU GNUPPeXHa2Z4gNBcqo3AAESEESkwprGmgXyyecP6dBQl3+4VGVBMcpr3iUVmJD44/zgN B65Ss1PZ6Yi4xE8nIgLV1v6LvOTqHUdVOzGrkARNwvfGIxouPeZpBQ69TYnalg4wKMS2 N4VvDAB1lWx1G7MGd2xdQnigf6IPxr/fwxmDaCyZQo2FpV3shy7wNBIfSiCgzug5DWCT hIuzmtqVoq+FRg1l7Yjv/tHDAxS5hFKaslj2nXgDAc3jxQ0qUhqtjkHTMJx2PKJ3E+6Y FiYw== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id g24si4730337edu.262.2020.09.26.10.50.15; Sat, 26 Sep 2020 10:50:37 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730079AbgIZRq3 (ORCPT + 99 others); Sat, 26 Sep 2020 13:46:29 -0400 Received: from smtp11.smtpout.orange.fr ([80.12.242.133]:29447 "EHLO smtp.smtpout.orange.fr" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1730064AbgIZRq1 (ORCPT ); Sat, 26 Sep 2020 13:46:27 -0400 Received: from tomoyo.flets-east.jp ([153.230.197.127]) by mwinf5d89 with ME id Yhlm230082lQRaH03hmM6M; Sat, 26 Sep 2020 19:46:24 +0200 X-ME-Helo: tomoyo.flets-east.jp X-ME-Auth: bWFpbGhvbC52aW5jZW50QHdhbmFkb28uZnI= X-ME-Date: Sat, 26 Sep 2020 19:46:24 +0200 X-ME-IP: 153.230.197.127 From: Vincent Mailhol To: linux-can@vger.kernel.org, Wolfgang Grandegger , Marc Kleine-Budde , "David S . Miller" Cc: Vincent Mailhol , Jakub Kicinski , netdev@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH 4/6] can: dev: add a helper function to calculate the duration of one bit Date: Sun, 27 Sep 2020 02:45:34 +0900 Message-Id: <20200926174542.278166-5-mailhol.vincent@wanadoo.fr> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20200926174542.278166-1-mailhol.vincent@wanadoo.fr> References: <20200926174542.278166-1-mailhol.vincent@wanadoo.fr> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Rename macro CAN_CALC_SYNC_SEG to CAN_SYNC_SEG and make it available through include/linux/can/dev.h Add an helper function can_bit_time() which returns the duration (in time quanta) of one CAN bit. Rationale for this patch: the sync segment and the bit time are two concepts which are defined in the CAN ISO standard. Device drivers for CAN might need those. Please refer to ISO 11898-1:2015, section 11.3.1.1 "Bit time" for additional information. Signed-off-by: Vincent Mailhol --- drivers/net/can/dev.c | 13 ++++++------- include/linux/can/dev.h | 15 +++++++++++++++ 2 files changed, 21 insertions(+), 7 deletions(-) diff --git a/drivers/net/can/dev.c b/drivers/net/can/dev.c index 8c3e11820e03..6070b4ab3bd8 100644 --- a/drivers/net/can/dev.c +++ b/drivers/net/can/dev.c @@ -60,7 +60,6 @@ EXPORT_SYMBOL_GPL(can_len2dlc); #ifdef CONFIG_CAN_CALC_BITTIMING #define CAN_CALC_MAX_ERROR 50 /* in one-tenth of a percent */ -#define CAN_CALC_SYNC_SEG 1 /* Bit-timing calculation derived from: * @@ -86,8 +85,8 @@ can_update_sample_point(const struct can_bittiming_const *btc, int i; for (i = 0; i <= 1; i++) { - tseg2 = tseg + CAN_CALC_SYNC_SEG - - (sample_point_nominal * (tseg + CAN_CALC_SYNC_SEG)) / + tseg2 = tseg + CAN_SYNC_SEG - + (sample_point_nominal * (tseg + CAN_SYNC_SEG)) / 1000 - i; tseg2 = clamp(tseg2, btc->tseg2_min, btc->tseg2_max); tseg1 = tseg - tseg2; @@ -96,8 +95,8 @@ can_update_sample_point(const struct can_bittiming_const *btc, tseg2 = tseg - tseg1; } - sample_point = 1000 * (tseg + CAN_CALC_SYNC_SEG - tseg2) / - (tseg + CAN_CALC_SYNC_SEG); + sample_point = 1000 * (tseg + CAN_SYNC_SEG - tseg2) / + (tseg + CAN_SYNC_SEG); sample_point_error = abs(sample_point_nominal - sample_point); if (sample_point <= sample_point_nominal && @@ -145,7 +144,7 @@ static int can_calc_bittiming(struct net_device *dev, struct can_bittiming *bt, /* tseg even = round down, odd = round up */ for (tseg = (btc->tseg1_max + btc->tseg2_max) * 2 + 1; tseg >= (btc->tseg1_min + btc->tseg2_min) * 2; tseg--) { - tsegall = CAN_CALC_SYNC_SEG + tseg / 2; + tsegall = CAN_SYNC_SEG + tseg / 2; /* Compute all possible tseg choices (tseg=tseg1+tseg2) */ brp = priv->clock.freq / (tsegall * bt->bitrate) + tseg % 2; @@ -223,7 +222,7 @@ static int can_calc_bittiming(struct net_device *dev, struct can_bittiming *bt, /* real bitrate */ bt->bitrate = priv->clock.freq / - (bt->brp * (CAN_CALC_SYNC_SEG + tseg1 + tseg2)); + (bt->brp * (CAN_SYNC_SEG + tseg1 + tseg2)); return 0; } diff --git a/include/linux/can/dev.h b/include/linux/can/dev.h index 72a8a60c0094..30b327f1a4bd 100644 --- a/include/linux/can/dev.h +++ b/include/linux/can/dev.h @@ -82,6 +82,21 @@ struct can_priv { #endif }; +#define CAN_SYNC_SEG 1 + +/* + * can_bit_time() - Duration of one bit + * + * Please refer to ISO 11898-1:2015, section 11.3.1.1 "Bit time" for + * additional information. + * + * Return: the number of time quanta in one bit. + */ +static inline int can_bit_time(struct can_bittiming *bt) +{ + return CAN_SYNC_SEG + bt->prop_seg + bt->phase_seg1 + bt->phase_seg2; +} + /* * get_can_dlc(value) - helper macro to cast a given data length code (dlc) * to __u8 and ensure the dlc value to be max. 8 bytes. -- 2.26.2