From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Authentication-Results: lists.ozlabs.org; spf=permerror (mailfrom) smtp.mailfrom=kernel.crashing.org (client-ip=63.228.1.57; helo=gate.crashing.org; envelope-from=benh@kernel.crashing.org; receiver=) Authentication-Results: lists.ozlabs.org; dmarc=none (p=none dis=none) header.from=kernel.crashing.org Received: from gate.crashing.org (gate.crashing.org [63.228.1.57]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 41Qzh81FB1zF364; Thu, 12 Jul 2018 12:01:43 +1000 (AEST) Received: from localhost (localhost.localdomain [127.0.0.1]) by gate.crashing.org (8.14.1/8.14.1) with ESMTP id w6C21Tmq015528; Wed, 11 Jul 2018 21:01:32 -0500 Message-ID: Subject: Re: [PATCH 06/14] fsi: master-gpio: Add more tracepoints From: Benjamin Herrenschmidt To: Joel Stanley Cc: linux-aspeed@lists.ozlabs.org, OpenBMC Maillist , devicetree , Andrew Jeffery , Linux Kernel Mailing List Date: Thu, 12 Jul 2018 12:01:29 +1000 In-Reply-To: References: <20180626232605.13420-1-benh@kernel.crashing.org> <20180626232605.13420-7-benh@kernel.crashing.org> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.28.3 (3.28.3-1.fc28) Mime-Version: 1.0 Content-Transfer-Encoding: 7bit X-BeenThere: openbmc@lists.ozlabs.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Development list for OpenBMC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Jul 2018 02:01:44 -0000 On Thu, 2018-06-28 at 13:41 +0930, Joel Stanley wrote: > On 27 June 2018 at 08:55, Benjamin Herrenschmidt > wrote: > > This adds a few more tracepoints that have proven useful when > > debugging issues with the FSI bus. > > > > Signed-off-by: Benjamin Herrenschmidt > > Reviewed-by: Joel Stanley > > > --- > > drivers/fsi/fsi-master-gpio.c | 16 ++++--- > > include/trace/events/fsi_master_gpio.h | 59 ++++++++++++++++++++++++++ > > 2 files changed, 69 insertions(+), 6 deletions(-) > > > > diff --git a/drivers/fsi/fsi-master-gpio.c b/drivers/fsi/fsi-master-gpio.c > > index 48e0e65b2982..a00a85aa6d56 100644 > > --- a/drivers/fsi/fsi-master-gpio.c > > +++ b/drivers/fsi/fsi-master-gpio.c > > @@ -130,10 +130,17 @@ static void set_sda_output(struct fsi_master_gpio *master, int value) > > > > static void clock_zeros(struct fsi_master_gpio *master, int count) > > { > > + trace_fsi_master_gpio_clock_zeros(master, count); > > set_sda_output(master, 1); > > clock_toggle(master, count); > > } > > > > +static void echo_delay(struct fsi_master_gpio *master) > > +{ > > + clock_zeros(master, master->t_echo_delay); > > +} > > This doesn't look like it belongs in this patch. > > You've just moved it up. Not worth a re-spin. I've done more, I made it use clock_zeros() instead of open coding it in order to share the tracepoint. > > > + > > + > > static void serial_in(struct fsi_master_gpio *master, struct fsi_gpio_msg *msg, > > uint8_t num_bits) > > { > > @@ -279,16 +286,19 @@ static void build_ar_command(struct fsi_master_gpio *master, > > addr_bits = 2; > > opcode_bits = 2; > > opcode = FSI_GPIO_CMD_SAME_AR; > > + trace_fsi_master_gpio_cmd_same_addr(master); > > > > } else if (check_relative_address(master, id, addr, &rel_addr)) { > > /* 8 bits plus sign */ > > addr_bits = 9; > > addr = rel_addr; > > opcode = FSI_GPIO_CMD_REL_AR; > > + trace_fsi_master_gpio_cmd_rel_addr(master, rel_addr); > > > > } else { > > addr_bits = 21; > > opcode = FSI_GPIO_CMD_ABS_AR; > > + trace_fsi_master_gpio_cmd_abs_addr(master, addr); > > } > > > > /* > > @@ -337,12 +347,6 @@ static void build_epoll_command(struct fsi_gpio_msg *cmd, uint8_t slave_id) > > msg_push_crc(cmd); > > } > > > > -static void echo_delay(struct fsi_master_gpio *master) > > -{ > > - set_sda_output(master, 1); > > - clock_toggle(master, master->t_echo_delay); > > -} > > - > > static void build_term_command(struct fsi_gpio_msg *cmd, uint8_t slave_id) > > { > > cmd->bits = 0;